diff --git a/PRs/607-codex-rich-link-previews--rich-route-aware-thingtime-link-previews.md b/PRs/607-codex-rich-link-previews--rich-route-aware-thingtime-link-previews.md new file mode 100644 index 0000000000..dd40858600 --- /dev/null +++ b/PRs/607-codex-rich-link-previews--rich-route-aware-thingtime-link-previews.md @@ -0,0 +1,118 @@ +# PR #607 — Rich route-aware Thingtime link previews + +## Outcome + +Every public Thingtime URL now unfurls with route-specific Open Graph/Twitter +text tags **and** a server-rendered 1200×630 PNG card, instead of the previous +`/post/:id` + `/profile/:username`-only text tags pointing at a 192px brand +icon. + +- `app/api/utils/meta/socialPreview.ts` is the single anonymous projection. + One `SocialPreview` model feeds both the head tags and the image, so a card + can never reveal something the meta tags do not. +- `app/api/utils/meta/socialCard.ts` renders that model to SVG and rasterises + it with `@resvg/resvg-js`. +- `server/routes/[...].ts` gains the `/social-card` endpoint beside the + existing shell-meta injection. + +## Surfaces + +`kind` (semantic surface) and `variant` (card composition) stay separate, so a +shared photo set is a share that still gets a collage, and a comment carrying a +video keeps the comment treatment with a video panel. + +Resolved: posts (text / image / gallery / poll / listing / structured +`thingtime`), shares, comments, replies, standalone `/media/:id` (image, video, +audio, file), `/profile/:username`, `/thing/:id`, published `/p/:id` pages, and +the static feed / explore / docs / design-system / schemas / themes / +components / actions / search / things routes. Named catalogue leaves +(`/components/button`) get a distinguishable title rather than the generic card. + +## Safety boundaries + +- **Anonymous projection only.** Data-backed previews go through + `getThing(viewerOf(null), …)` → `findViewableThingAs`, plus a belt-and-braces + `ACL_ALL`/`ACL_INHERIT` re-check in `publicPostPreview`. Private or missing + targets fall back to the generic card, indistinguishable from each other. +- **No image proxy.** Only stored, public Thingtime image attachments are + fetched, through `getAttachmentDownload(null, …)`, which independently + re-enforces the anonymous ACL. Linked remote attachments (`crystal.url`) are + excluded before resolution and would fail the download guard anyway. So a + preview that names an attachment the caller cannot see degrades to the + branded tile rather than leaking it. +- **Bounded reads.** `readBodyWithin` enforces the 2 MB cap on the stream + itself rather than trusting `content-length`, which is absent on a chunked + response. Content-Type must be in the image allowlist; the fetch has a 5s + timeout. +- **No caller-selected data plane.** `/social-card` deliberately skips + `runWithMongoEndpoint`. The response is shared-cacheable and shared caches + key on URL alone, so honouring an unauthenticated `x-tt-mongo-url` header + would let a caller store a card rendered from a data plane they control under + the public URL every later unfurler receives. The HTML shell still honours + the override because it is `private, no-store`. +- **Path normalisation.** `normaliseSocialPreviewPath` accepts only a local + path (no `//`, no `\`, ≤2048 chars, query/fragment stripped), so the card URL + can never become a redirect or name an arbitrary route. + +## Fonts + +Cards embed Liberation Sans as base64 (`socialCardFontData.ts`, SIL OFL 1.1, +`LICENSE-Liberation.txt`, regenerated by `scripts/generate-social-card-font.mjs`). + +resvg-js 2.6 can only load a font from a filesystem **path** — there is no +`fontBuffers` option — and the deployed Vercel Node runtime ships no fonts at +all. `font-family="Arial, sans-serif"` therefore resolved to nothing in +production and every card came back with its gradient, chrome and panel art +drawn and **not one glyph on it**, while CI and dev machines rendered perfectly +from their system fonts. Bytes inside the bundle cannot be lost by Nitro +bundling or Vercel dependency tracing, and the unit suite then exercises the +exact face production draws with. `loadSystemFonts` is off deliberately so the +deployed card stays byte-identical to the one CI renders. + +Known gap: the bundled face has no pictographs, so emoji are stripped from the +PNG (they would draw as `.notdef` tofu) while the `og:`/`twitter:` text tags +keep them. Non-Latin scripts the face lacks (CJK, Arabic, Thai) still draw as +tofu. + +## Layout is measured, not counted + +A character budget cannot express "must not run under the art panel": the same +27 characters are 470px of narrow letters or 700px of capitals. Every label — +headline, description, eyebrow, author line, badge pills, poll rows — is +clamped against a measured width estimate (`socialTextWidth`) calibrated to the +widest advance resvg reports for the bundled face, with the eyebrow's +`letter-spacing` modelled explicitly. Tests assert measured widths, not +character counts. + +## Vercel routing + +`patch-vercel-output.mjs` replaces the two permalink rewrites with +`^/social-card$` plus one public-surface route list, and moves `^/$` onto the +Nitro handler so the homepage gets request-derived absolute URLs. +`verify-vercel-output.mjs` now also asserts the traced server output declares +both `@resvg/resvg-js` and its platform-specific N-API package, since Nitro may +leave the native renderer external. + +## Validation + +- `npm --prefix remix run test:social-previews` — **25/25 pass** + (`socialPreview.test.ts` + `socialCard.test.ts`). +- Focused ESLint on the six changed source files — pass (existing Remix v7 + deprecation warning only). +- Card tests are pixel-level, not just PNG-magic-byte: they count drawn ink in + the title band and the wordmark band, so a fontless render (the production + defect above) fails rather than passing on byte length. + +## Follow-ups (not blocking) + +- `/social-card` is public, unauthenticated, and does real work per request: an + anonymous `getThing` (uncapped parent walk on a comment/attachment), up to + four S3 fetches, and a synchronous resvg rasterisation. `path` is + attacker-variable, so the CDN key can be busted arbitrarily. Consider a + resolved-path allowlist check, a render concurrency guard, or a short + negative cache if abuse shows up. +- `^/$` now costs a function invocation on the highest-traffic route where the + card content is entirely static; only the request-derived origin needs the + server. +- `resolveSocialPreview(origin, …)` and `mediaLayout(…, theme)` each take a + parameter they never read. diff --git a/TESTING.md b/TESTING.md index 3b2453ce45..3521a996d0 100644 --- a/TESTING.md +++ b/TESTING.md @@ -425,42 +425,69 @@ is fixed, and cite the checklist you ran in the PR description. - [ ] Run `npm run test:attachments` (it carries the public-upload permission unit tests alongside the upload-gate regression test). -## Social meta / link unfurls (`remix/app/api/utils/meta/socialMeta.ts`) +## Social meta / link unfurls (`remix/app/api/utils/meta/socialMeta.ts`, `socialPreview.ts`, `socialCard.ts`) Crawlers never run JS, so verify with plain `curl` against the Nitro port (the Vite dev port serves the raw shell without injection; in production, Vercel -routes `/post/:id` and `/profile/:username` to the Nitro `__server` function — -`remix/scripts/patch-vercel-output.mjs`). +routes every public share surface plus `/social-card` to the Nitro `__server` +function — `remix/scripts/patch-vercel-output.mjs`). - [ ] `curl -s /post/` returns `og:type article`, an `og:title` carrying the author + truncated text (or the poll question), an `og:description` capped near 200 chars, an absolute `og:url` / - `og:image`, and `twitter:card summary` (`summary_large_image` when the - post has an image attachment or a legacy `images[0]` URL, which then - becomes the `og:image`). + `/social-card?path=...` `og:image`, and `twitter:card summary_large_image`. +- [ ] `curl -o card.png '/social-card?path=/post/'` + yields a valid 1200×630 PNG. A two-photo post is a two-tile collage; a + four-or-more-photo post is a four-tile collage, while its excerpt, author + and `N photos` badge remain visible alongside it. Text, image, + marketplace, and structured Thingtime posts each have their own card + variant; polls show question + options, listings show + price/category/location, and shares identify the original content type. +- [ ] A rich comment permalink has the comment treatment; a reply permalink + has the threaded reply treatment and identifies its visible parent. + Comments with photos retain their collage, while text-post attachments + select a video, audio, or file treatment rather than the generic card. +- [ ] `/media/:id`, `/thing/:id`, `/p/:id`, `/profile/:username`, `/feed`, + `/explore`, deep docs/catalogue URLs, and `/social-card?path=/...` each + produce a route-appropriate title, eyebrow and descriptive card rather + than the indistinguishable pink placeholder. Standalone image, video, + audio, and file routes have distinct media treatments. A published + `/p/:id` page uses its name, description or safely extracted block text. - [ ] Fail closed: `curl -s /post/` and `/post/` both return ONLY the generic site block — indistinguishable from each other, and no post text, author, or image may appear anywhere in the HTML. (Status stays 200 by design: h3 treats a 404 Response from this middleware as "unhandled" and would fall through to the raw source template — see `server/routes/[...].ts`.) -- [ ] `curl -s /profile/` returns `og:type profile`, the - `displayName (@username)` title, the bio as description, and the avatar - as `og:image` when set; an unknown username gets the generic block. +- [ ] The image renderer fetches only stored, public Thingtime image + attachments via a short-lived download URL; a linked remote attachment, + private attachment, oversized response, malformed `path`, or non-image + MIME type never becomes a server-side fetch or an image-card leak. - [ ] User-authored text with `<`, `>`, `&`, quotes, and newlines arrives - HTML-escaped and whitespace-collapsed inside `content="…"`. + HTML/XML-escaped and whitespace-collapsed inside both `content="…"` and + the generated card. - [ ] `curl -s -H 'x-forwarded-host: thingtime.com' -H 'x-forwarded-proto: https' /post/` derives `https://thingtime.com/...` absolute URLs (the request-origin pattern, not a hardcoded host). -- [ ] Every other page (`/`, `/feed`, deep unknown paths) carries the injected - site-default block (site_name Thingtime, generic description, brand - image, `twitter:card summary`) with absolute URLs, and responses from - the shell handler carry the `X-TT-Shell: social-meta` header. +- [ ] The colourful Thingtime browser-card (wordmark, five-colour mark and + playful icon treatment) remains readable at 1200×630 and iMessage-sized + previews; no text or photo tile clips at the edge. +- [ ] Check the card from the **deployed** preview, not just locally: + `curl -o card.png '/social-card?path=/feed'` and open it. + Cards ship their own Liberation Sans (`socialCardFontData.ts`) because the + Vercel runtime has no system fonts, and a dev machine's fonts hide a + missing one — a fontless deploy renders full artwork with zero glyphs. + Emoji are deliberately dropped from the PNG (the face has no pictographs, + so they would draw as tofu boxes) while the `og:`/`twitter:` text tags + keep them. Non-Latin scripts the face lacks (CJK, Arabic, Thai) still draw + as tofu — known gap. +- [ ] `npm --prefix remix run test:social-previews` passes. - [ ] After `npm run build`, `verify:vercel-output` passes: the permalink - routes sit between the API routes and the SPA fallback and point at the - Nitro server function. -- [ ] A normal browser load of `/post/` and `/profile/` still - renders the SPA (the injected head block must not break the shell). + and social-card routes sit between the API routes and the SPA fallback, + point at the Nitro server function, and trace the native PNG renderer. +- [ ] A normal browser load of `/post/`, `/profile/`, and + `/p/` still renders the SPA (the injected head block must not break + the shell). ## Emailed-link origin trust (`remix/app/api/utils/auth/appOrigin.ts`) diff --git a/graphify-out/snapshots/v1/4ddaafa1a7274b70d85fb051c2202466dc9a78691cf8eaa8d532756d22eac0e3/b79e5f1f088efb7dc1de552d6c40ff6d0e8976988261934134648bb5fdb30db1/snapshot.json b/graphify-out/snapshots/v1/4ddaafa1a7274b70d85fb051c2202466dc9a78691cf8eaa8d532756d22eac0e3/b79e5f1f088efb7dc1de552d6c40ff6d0e8976988261934134648bb5fdb30db1/snapshot.json deleted file mode 100644 index bec29f6104..0000000000 --- a/graphify-out/snapshots/v1/4ddaafa1a7274b70d85fb051c2202466dc9a78691cf8eaa8d532756d22eac0e3/b79e5f1f088efb7dc1de552d6c40ff6d0e8976988261934134648bb5fdb30db1/snapshot.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "schema": "thingtime.graphify-snapshot.v1", - "source_fingerprint": "4ddaafa1a7274b70d85fb051c2202466dc9a78691cf8eaa8d532756d22eac0e3", - "source_tree": "16dbfcc806584b6cf1656176600f10f46c8321d7", - "artifact_hash": "b79e5f1f088efb7dc1de552d6c40ff6d0e8976988261934134648bb5fdb30db1", - "graphify_version": "graphify 0.9.4", - "node_count": 41109, - "link_count": 103329 -} diff --git a/graphify-out/snapshots/v1/4ddaafa1a7274b70d85fb051c2202466dc9a78691cf8eaa8d532756d22eac0e3/b79e5f1f088efb7dc1de552d6c40ff6d0e8976988261934134648bb5fdb30db1/GRAPH_REPORT.md b/graphify-out/snapshots/v1/96364f533539f7e0a309f8170f65e72edfa29a2a8670c1e5ac758257ff7c8372/7e6b7dbc2c48b212ec1c9e897971a814765e541a14f737ee90d1ba2cf1a6fb39/GRAPH_REPORT.md similarity index 80% rename from graphify-out/snapshots/v1/4ddaafa1a7274b70d85fb051c2202466dc9a78691cf8eaa8d532756d22eac0e3/b79e5f1f088efb7dc1de552d6c40ff6d0e8976988261934134648bb5fdb30db1/GRAPH_REPORT.md rename to graphify-out/snapshots/v1/96364f533539f7e0a309f8170f65e72edfa29a2a8670c1e5ac758257ff7c8372/7e6b7dbc2c48b212ec1c9e897971a814765e541a14f737ee90d1ba2cf1a6fb39/GRAPH_REPORT.md index ae7975ba94..ca62662d40 100644 --- a/graphify-out/snapshots/v1/4ddaafa1a7274b70d85fb051c2202466dc9a78691cf8eaa8d532756d22eac0e3/b79e5f1f088efb7dc1de552d6c40ff6d0e8976988261934134648bb5fdb30db1/GRAPH_REPORT.md +++ b/graphify-out/snapshots/v1/96364f533539f7e0a309f8170f65e72edfa29a2a8670c1e5ac758257ff7c8372/7e6b7dbc2c48b212ec1c9e897971a814765e541a14f737ee90d1ba2cf1a6fb39/GRAPH_REPORT.md @@ -1,40 +1,40 @@ -# Graph Report - thingtime-vault-verified-reveal (2026-09-09) +# Graph Report - thingtime (2026-09-09) ## Corpus Check -- 2183 files · ~8,210,782 words +- 2190 files · ~8,237,075 words - Verdict: corpus is large enough that graph structure adds value. ## Summary -- 41109 nodes · 103329 edges · 1812 communities (974 shown, 838 thin omitted) -- Extraction: 98% EXTRACTED · 2% INFERRED · 0% AMBIGUOUS · INFERRED: 2497 edges (avg confidence: 0.67) +- 41204 nodes · 103540 edges · 1806 communities (967 shown, 839 thin omitted) +- Extraction: 98% EXTRACTED · 2% INFERRED · 0% AMBIGUOUS · INFERRED: 2507 edges (avg confidence: 0.67) - Token cost: 0 input · 0 output ## Graph Freshness -- Built from commit: `6b7ee830` +- Built from commit: `ee47ac76` - Run `git rev-parse HEAD` and compare to check if the graph is stale. - Run `graphify update .` after code changes (no API cost). ## Community Hubs (Navigation) - [[_COMMUNITY_react.js|react.js]] - [[_COMMUNITY_PostCard.tsx|PostCard.tsx]] -- [[_COMMUNITY_latestRevisionAutosave.ts|latestRevisionAutosave.ts]] +- [[_COMMUNITY_error|error]] - [[_COMMUNITY_json|json]] -- [[_COMMUNITY_tierCatalogStore.ts|tierCatalogStore.ts]] +- [[_COMMUNITY_SearchPage.tsx|SearchPage.tsx]] - [[_COMMUNITY_ThingContextMenuStories.tsx|ThingContextMenuStories.tsx]] -- [[_COMMUNITY_messenger.ts|messenger.ts]] -- [[_COMMUNITY_ComponentDetailPage.tsx|ComponentDetailPage.tsx]] +- [[_COMMUNITY_getThingsCollection|getThingsCollection]] +- [[_COMMUNITY_lopuBuildBridge.ts|lopuBuildBridge.ts]] - [[_COMMUNITY_apps.ts|apps.ts]] - [[_COMMUNITY_endpoint.ts|endpoint.ts]] -- [[_COMMUNITY_date|date]] +- [[_COMMUNITY_ThingtimeNodeError|ThingtimeNodeError]] - [[_COMMUNITY_react.js|react.js]] - [[_COMMUNITY_registry.ts|registry.ts]] - [[_COMMUNITY_react.js|react.js]] - [[_COMMUNITY_react.js|react.js]] - [[_COMMUNITY_react.js|react.js]] -- [[_COMMUNITY_attachments.ts|attachments.ts]] -- [[_COMMUNITY_AdminDashboard.tsx|AdminDashboard.tsx]] -- [[_COMMUNITY_thing.tsx|thing.tsx]] -- [[_COMMUNITY_SafeActionKind|SafeActionKind]] +- [[_COMMUNITY_attachmentCore.ts|attachmentCore.ts]] +- [[_COMMUNITY_beginWork|beginWork]] +- [[_COMMUNITY_ThingsPage.tsx|ThingsPage.tsx]] +- [[_COMMUNITY_SafeActionRequest|SafeActionRequest]] - [[_COMMUNITY_react.js|react.js]] - [[_COMMUNITY_react.js|react.js]] - [[_COMMUNITY_ThingtimeWatchStore|ThingtimeWatchStore]] @@ -42,7 +42,7 @@ - [[_COMMUNITY_react.js|react.js]] - [[_COMMUNITY_react.js|react.js]] - [[_COMMUNITY_react.js|react.js]] -- [[_COMMUNITY_emojiSearch.ts|emojiSearch.ts]] +- [[_COMMUNITY_ensureRootIsScheduled|ensureRootIsScheduled]] - [[_COMMUNITY_react.js|react.js]] - [[_COMMUNITY_thingtime-bundle.js|thingtime-bundle.js]] - [[_COMMUNITY_thingtime-bundle.js|thingtime-bundle.js]] @@ -56,39 +56,39 @@ - [[_COMMUNITY_thingtime-bundle.js|thingtime-bundle.js]] - [[_COMMUNITY_thingtime-bundle.js|thingtime-bundle.js]] - [[_COMMUNITY_thingtime-bundle.js|thingtime-bundle.js]] -- [[_COMMUNITY_patTokens.ts|patTokens.ts]] +- [[_COMMUNITY_accounts.ts|accounts.ts]] - [[_COMMUNITY_passkeys.ts|passkeys.ts]] - [[_COMMUNITY_RecoveryComponent|RecoveryComponent]] - [[_COMMUNITY_thingtime-bundle.js|thingtime-bundle.js]] -- [[_COMMUNITY_COLLECTION_SCHEMA_VERSIONS|COLLECTION_SCHEMA_VERSIONS]] -- [[_COMMUNITY_behaviourSuites.ts|behaviourSuites.ts]] +- [[_COMMUNITY_notifications.ts|notifications.ts]] +- [[_COMMUNITY_DemoDetailPage.tsx|DemoDetailPage.tsx]] - [[_COMMUNITY_users.ts|users.ts]] - [[_COMMUNITY_PostComposer.tsx|PostComposer.tsx]] - [[_COMMUNITY_accounting.ts|accounting.ts]] - [[_COMMUNITY_collections.ts|collections.ts]] -- [[_COMMUNITY_lopuPosition.ts|lopuPosition.ts]] +- [[_COMMUNITY_mergeLanes|mergeLanes]] - [[_COMMUNITY_analyzeText.ts|analyzeText.ts]] - [[_COMMUNITY_useLopu|useLopu]] -- [[_COMMUNITY_error|error]] +- [[_COMMUNITY_captureCommitPhaseError|captureCommitPhaseError]] - [[_COMMUNITY_beginWork|beginWork]] - [[_COMMUNITY_Foundation|Foundation]] -- [[_COMMUNITY_ThingtimeWebDestination|ThingtimeWebDestination]] -- [[_COMMUNITY_WatchPairingPage.tsx|WatchPairingPage.tsx]] +- [[_COMMUNITY_ThingtimeWebDestinationTests|ThingtimeWebDestinationTests]] +- [[_COMMUNITY_Login.tsx|Login.tsx]] - [[_COMMUNITY_ThingtimeNativeNotifications|ThingtimeNativeNotifications]] -- [[_COMMUNITY_seed.ts|seed.ts]] -- [[_COMMUNITY_migrationDiagnostics.ts|migrationDiagnostics.ts]] +- [[_COMMUNITY_mergeLanes|mergeLanes]] +- [[_COMMUNITY_COLLECTION_SCHEMA_VERSIONS|COLLECTION_SCHEMA_VERSIONS]] - [[_COMMUNITY_adminRowQuery.ts|adminRowQuery.ts]] -- [[_COMMUNITY_SearchPage.tsx|SearchPage.tsx]] -- [[_COMMUNITY_LopuHost.tsx|LopuHost.tsx]] +- [[_COMMUNITY_SchemasBrowsePage.tsx|SchemasBrowsePage.tsx]] +- [[_COMMUNITY_ThingtimeWatchAttachmentUploader|ThingtimeWatchAttachmentUploader]] - [[_COMMUNITY_index.ts|index.ts]] -- [[_COMMUNITY_kindRenderersCommerce.tsx|kindRenderersCommerce.tsx]] -- [[_COMMUNITY_Sendable|Sendable]] +- [[_COMMUNITY_kindRenderersPlanning.tsx|kindRenderersPlanning.tsx]] +- [[_COMMUNITY_String|String]] - [[_COMMUNITY_beginWork|beginWork]] - [[_COMMUNITY_voice.ts|voice.ts]] - [[_COMMUNITY_lopuChatStore.ts|lopuChatStore.ts]] -- [[_COMMUNITY_ThingtimeNodeError|ThingtimeNodeError]] +- [[_COMMUNITY_diffHydratedProperties|diffHydratedProperties]] - [[_COMMUNITY_beginWork|beginWork]] -- [[_COMMUNITY_messengerTypes.ts|messengerTypes.ts]] +- [[_COMMUNITY_readLocalCache|readLocalCache]] - [[_COMMUNITY_beginWork|beginWork]] - [[_COMMUNITY_beginWork|beginWork]] - [[_COMMUNITY_beginWork|beginWork]] @@ -97,120 +97,120 @@ - [[_COMMUNITY_scripts|scripts]] - [[_COMMUNITY_lib.rs|lib.rs]] - [[_COMMUNITY_namespace.ts|namespace.ts]] -- [[_COMMUNITY_notifications.ts|notifications.ts]] +- [[_COMMUNITY_completeWork|completeWork]] - [[_COMMUNITY_error|error]] -- [[_COMMUNITY_lopuProviderCore.ts|lopuProviderCore.ts]] -- [[_COMMUNITY_String|String]] +- [[_COMMUNITY_dispatchEventWithEnableCapturePhaseSelectiveHydrationWithoutDiscreteEventReplay|dispatchEventWithEnableCapturePhaseSelectiveHydrationWithoutDiscreteEventReplay]] +- [[_COMMUNITY_AccessibilityElementReference|AccessibilityElementReference]] - [[_COMMUNITY_mapIntoArray|mapIntoArray]] - [[_COMMUNITY_completeWork|completeWork]] -- [[_COMMUNITY_throwException|throwException]] - [[_COMMUNITY_error|error]] -- [[_COMMUNITY_String|String]] +- [[_COMMUNITY_commitRootImpl|commitRootImpl]] +- [[_COMMUNITY_.index_source|.index_source]] - [[_COMMUNITY_mergeLanes|mergeLanes]] - [[_COMMUNITY_beginWork|beginWork]] - [[_COMMUNITY_beginWork|beginWork]] - [[_COMMUNITY_ensureRootIsScheduled|ensureRootIsScheduled]] -- [[_COMMUNITY_SystemControls.swift|SystemControls.swift]] +- [[_COMMUNITY_SafeActionKind|SafeActionKind]] - [[_COMMUNITY_error|error]] - [[_COMMUNITY_ensureRootIsScheduled|ensureRootIsScheduled]] - [[_COMMUNITY_beginWork|beginWork]] -- [[_COMMUNITY_updateDehydratedSuspenseComponent|updateDehydratedSuspenseComponent]] +- [[_COMMUNITY_completeWork|completeWork]] - [[_COMMUNITY_mergeLanes|mergeLanes]] -- [[_COMMUNITY_commitRootImpl|commitRootImpl]] -- [[_COMMUNITY_LongTextEditor.tsx|LongTextEditor.tsx]] +- [[_COMMUNITY_ensureRootIsScheduled|ensureRootIsScheduled]] +- [[_COMMUNITY_editorBlockChrome.ts|editorBlockChrome.ts]] - [[_COMMUNITY_create|create]] - [[_COMMUNITY_index.ts|index.ts]] -- [[_COMMUNITY_commitRootImpl|commitRootImpl]] +- [[_COMMUNITY_ensureRootIsScheduled|ensureRootIsScheduled]] - [[_COMMUNITY_lopuTurnCore.ts|lopuTurnCore.ts]] - [[_COMMUNITY_chatTools.ts|chatTools.ts]] - [[_COMMUNITY_error|error]] - [[_COMMUNITY_quota.ts|quota.ts]] -- [[_COMMUNITY_error|error]] +- [[_COMMUNITY_captureCommitPhaseError|captureCommitPhaseError]] - [[_COMMUNITY_legacyCreateRootFromDOMContainer|legacyCreateRootFromDOMContainer]] -- [[_COMMUNITY_error|error]] +- [[_COMMUNITY_captureCommitPhaseError|captureCommitPhaseError]] - [[_COMMUNITY_kindRenderersMedia.tsx|kindRenderersMedia.tsx]] - [[_COMMUNITY_prConflictResolverModelWaterfallCore.ts|prConflictResolverModelWaterfallCore.ts]] -- [[_COMMUNITY_useLopuAccount.ts|useLopuAccount.ts]] -- [[_COMMUNITY_error|error]] -- [[_COMMUNITY_ensureRootIsScheduled|ensureRootIsScheduled]] +- [[_COMMUNITY_throwException|throwException]] +- [[_COMMUNITY_captureCommitPhaseError|captureCommitPhaseError]] +- [[_COMMUNITY_commitRootImpl|commitRootImpl]] - [[_COMMUNITY_ConnectorRuntime|ConnectorRuntime]] - [[_COMMUNITY_chat.ts|chat.ts]] - [[_COMMUNITY_diffHydratedProperties|diffHydratedProperties]] - [[_COMMUNITY_credentialVault.ts|credentialVault.ts]] - [[_COMMUNITY_modelsCore.ts|modelsCore.ts]] -- [[_COMMUNITY_storageCore.ts|storageCore.ts]] +- [[_COMMUNITY_ApplicationResponsivenessService|ApplicationResponsivenessService]] - [[_COMMUNITY_DeviceDetailsDrawer.tsx|DeviceDetailsDrawer.tsx]] - [[_COMMUNITY_ThingtimeEmbedRuntime|ThingtimeEmbedRuntime]] -- [[_COMMUNITY_captureCommitPhaseError|captureCommitPhaseError]] +- [[_COMMUNITY_error|error]] - [[_COMMUNITY_LiveAISyncCoordinator|LiveAISyncCoordinator]] -- [[_COMMUNITY_throwException|throwException]] -- [[_COMMUNITY_mergeLanes|mergeLanes]] +- [[_COMMUNITY_legacyCreateRootFromDOMContainer|legacyCreateRootFromDOMContainer]] +- [[_COMMUNITY_scheduleUpdateOnFiber|scheduleUpdateOnFiber]] - [[_COMMUNITY_styleTokens.ts|styleTokens.ts]] - [[_COMMUNITY_diffHydratedProperties|diffHydratedProperties]] - [[_COMMUNITY_unstable_scheduleCallback|unstable_scheduleCallback]] -- [[_COMMUNITY_mergeLanes|mergeLanes]] -- [[_COMMUNITY_appData.ts|appData.ts]] -- [[_COMMUNITY_isFail|isFail]] +- [[_COMMUNITY_getComponentNameFromFiber|getComponentNameFromFiber]] +- [[_COMMUNITY_socialCard.ts|socialCard.ts]] +- [[_COMMUNITY_dispatchEventWithEnableCapturePhaseSelectiveHydrationWithoutDiscreteEventReplay|dispatchEventWithEnableCapturePhaseSelectiveHydrationWithoutDiscreteEventReplay]] - [[_COMMUNITY_codexAppServer.ts|codexAppServer.ts]] -- [[_COMMUNITY_battle.ts|battle.ts]] -- [[_COMMUNITY_deviceCore.ts|deviceCore.ts]] +- [[_COMMUNITY_push|push]] +- [[_COMMUNITY_kindRenderersCommerce.tsx|kindRenderersCommerce.tsx]] - [[_COMMUNITY_mergeLanes|mergeLanes]] - [[_COMMUNITY_DesktopChatRuntime|DesktopChatRuntime]] - [[_COMMUNITY_CIControlDashboard.tsx|CIControlDashboard.tsx]] -- [[_COMMUNITY_deviceLiveAiCore.ts|deviceLiveAiCore.ts]] -- [[_COMMUNITY_commitRootImpl|commitRootImpl]] -- [[_COMMUNITY_notificationCore.ts|notificationCore.ts]] +- [[_COMMUNITY_updateWorkInProgressHook|updateWorkInProgressHook]] +- [[_COMMUNITY_throwException|throwException]] +- [[_COMMUNITY_NotificationsPage.tsx|NotificationsPage.tsx]] - [[_COMMUNITY_dependencies|dependencies]] - [[_COMMUNITY_CommanderNativeBridge|CommanderNativeBridge]] - [[_COMMUNITY_apiTests.ts|apiTests.ts]] -- [[_COMMUNITY_attachmentResponses.ts|attachmentResponses.ts]] +- [[_COMMUNITY_attachments.ts|attachments.ts]] - [[_COMMUNITY_diffHydratedProperties|diffHydratedProperties]] - [[_COMMUNITY_manifest.ts|manifest.ts]] - [[_COMMUNITY_execute.ts|execute.ts]] -- [[_COMMUNITY_getHomeThingsCollection|getHomeThingsCollection]] +- [[_COMMUNITY_dispatchEventWithEnableCapturePhaseSelectiveHydrationWithoutDiscreteEventReplay|dispatchEventWithEnableCapturePhaseSelectiveHydrationWithoutDiscreteEventReplay]] - [[_COMMUNITY_indexing.ts|indexing.ts]] -- [[_COMMUNITY_getComponentNameFromFiber|getComponentNameFromFiber]] +- [[_COMMUNITY_mergeLanes|mergeLanes]] - [[_COMMUNITY_themes.ts|themes.ts]] - [[_COMMUNITY_push|push]] - [[_COMMUNITY_commitRootImpl|commitRootImpl]] -- [[_COMMUNITY_ensureRootIsScheduled|ensureRootIsScheduled]] +- [[_COMMUNITY_commitRootImpl|commitRootImpl]] - [[_COMMUNITY_diffHydratedProperties|diffHydratedProperties]] - [[_COMMUNITY_diffHydratedProperties|diffHydratedProperties]] -- [[_COMMUNITY_mapIntoArray|mapIntoArray]] +- [[_COMMUNITY_EditorSplit.tsx|EditorSplit.tsx]] - [[_COMMUNITY_diffHydratedProperties|diffHydratedProperties]] - [[_COMMUNITY_completeWork|completeWork]] -- [[_COMMUNITY_deviceLiveAi.ts|deviceLiveAi.ts]] +- [[_COMMUNITY_commitRootImpl|commitRootImpl]] - [[_COMMUNITY_diffHydratedProperties|diffHydratedProperties]] - [[_COMMUNITY_LauncherPanelController|LauncherPanelController]] - [[_COMMUNITY_lib.rs|lib.rs]] - [[_COMMUNITY_push|push]] -- [[_COMMUNITY_completeWork|completeWork]] -- [[_COMMUNITY_dispatchEventWithEnableCapturePhaseSelectiveHydrationWithoutDiscreteEventReplay|dispatchEventWithEnableCapturePhaseSelectiveHydrationWithoutDiscreteEventReplay]] +- [[_COMMUNITY_updateDehydratedSuspenseComponent|updateDehydratedSuspenseComponent]] +- [[_COMMUNITY_popHydrationState|popHydrationState]] - [[_COMMUNITY_inlineHtmlText.ts|inlineHtmlText.ts]] - [[_COMMUNITY_diffHydratedProperties|diffHydratedProperties]] - [[_COMMUNITY_throwException|throwException]] -- [[_COMMUNITY_commitRootImpl|commitRootImpl]] -- [[_COMMUNITY_updown.ts|updown.ts]] +- [[_COMMUNITY_ensureRootIsScheduled|ensureRootIsScheduled]] +- [[_COMMUNITY_things.ts|things.ts]] - [[_COMMUNITY_diffHydratedProperties|diffHydratedProperties]] - [[_COMMUNITY_diffHydratedProperties|diffHydratedProperties]] - [[_COMMUNITY_world.ts|world.ts]] -- [[_COMMUNITY_.applicationDidFinishLaunching|.applicationDidFinishLaunching]] +- [[_COMMUNITY_commitRootImpl|commitRootImpl]] - [[_COMMUNITY_graphify-cas.mjs|graphify-cas.mjs]] -- [[_COMMUNITY_LeasedCommand|LeasedCommand]] +- [[_COMMUNITY_NodeResponse|NodeResponse]] - [[_COMMUNITY_push|push]] - [[_COMMUNITY_push|push]] - [[_COMMUNITY_push|push]] - [[_COMMUNITY_constructor|constructor]] - [[_COMMUNITY_completeWork|completeWork]] - [[_COMMUNITY_push|push]] -- [[_COMMUNITY_accountHints.ts|accountHints.ts]] +- [[_COMMUNITY_animateTarget|animateTarget]] - [[_COMMUNITY_push|push]] - [[_COMMUNITY_.getVersion|.getVersion]] - [[_COMMUNITY_pokeworld.ts|pokeworld.ts]] - [[_COMMUNITY_CommanderWebView|CommanderWebView]] - [[_COMMUNITY_support.js|support.js]] - [[_COMMUNITY_withAdminPrivateResponse|withAdminPrivateResponse]] -- [[_COMMUNITY_userStorage.ts|userStorage.ts]] +- [[_COMMUNITY_DevKit.tsx|DevKit.tsx]] - [[_COMMUNITY_useDeviceStore.ts|useDeviceStore.ts]] - [[_COMMUNITY_CommanderAppDelegate|CommanderAppDelegate]] - [[_COMMUNITY_support.js|support.js]] @@ -229,18 +229,18 @@ - [[_COMMUNITY_peerDiscovery.ts|peerDiscovery.ts]] - [[_COMMUNITY_useAgentSession.ts|useAgentSession.ts]] - [[_COMMUNITY_push|push]] +- [[_COMMUNITY_updateWorkInProgressHook|updateWorkInProgressHook]] - [[_COMMUNITY_mergeLanes|mergeLanes]] -- [[_COMMUNITY_scheduleUpdateOnFiber|scheduleUpdateOnFiber]] - [[_COMMUNITY_push|push]] - [[_COMMUNITY_plugin.ts|plugin.ts]] -- [[_COMMUNITY_unstable_scheduleCallback|unstable_scheduleCallback]] -- [[_COMMUNITY_updateDehydratedSuspenseComponent|updateDehydratedSuspenseComponent]] +- [[_COMMUNITY_dispatchEventWithEnableCapturePhaseSelectiveHydrationWithoutDiscreteEventReplay|dispatchEventWithEnableCapturePhaseSelectiveHydrationWithoutDiscreteEventReplay]] - [[_COMMUNITY_updateDehydratedSuspenseComponent|updateDehydratedSuspenseComponent]] +- [[_COMMUNITY_commitRootImpl|commitRootImpl]] - [[_COMMUNITY_conceptBits.tsx|conceptBits.tsx]] -- [[_COMMUNITY_ensureRootIsScheduled|ensureRootIsScheduled]] -- [[_COMMUNITY_createFiberFromTypeAndProps|createFiberFromTypeAndProps]] +- [[_COMMUNITY_commitRootImpl|commitRootImpl]] +- [[_COMMUNITY_updateDehydratedSuspenseComponent|updateDehydratedSuspenseComponent]] - [[_COMMUNITY_server.ts|server.ts]] -- [[_COMMUNITY_ThingtimeWatchAudioRecorder|ThingtimeWatchAudioRecorder]] +- [[_COMMUNITY_updateDehydratedSuspenseComponent|updateDehydratedSuspenseComponent]] - [[_COMMUNITY_api.tsx|api.tsx]] - [[_COMMUNITY_verify-vercel-output.mjs|verify-vercel-output.mjs]] - [[_COMMUNITY_index.ts|index.ts]] @@ -250,7 +250,7 @@ - [[_COMMUNITY_deviceTypes.ts|deviceTypes.ts]] - [[_COMMUNITY_index.tsx|index.tsx]] - [[_COMMUNITY_dependencies|dependencies]] -- [[_COMMUNITY_mergeLanes|mergeLanes]] +- [[_COMMUNITY_updateWorkInProgressHook|updateWorkInProgressHook]] - [[_COMMUNITY_completeWork|completeWork]] - [[_COMMUNITY_replace|replace]] - [[_COMMUNITY_forEach|forEach]] @@ -260,16 +260,16 @@ - [[_COMMUNITY_replace|replace]] - [[_COMMUNITY_replace|replace]] - [[_COMMUNITY_replace|replace]] -- [[_COMMUNITY_forEach|forEach]] +- [[_COMMUNITY_update|update]] - [[_COMMUNITY_replace|replace]] - [[_COMMUNITY_replace|replace]] - [[_COMMUNITY_replace|replace]] -- [[_COMMUNITY_completeWork|completeWork]] +- [[_COMMUNITY_updateDehydratedSuspenseComponent|updateDehydratedSuspenseComponent]] - [[_COMMUNITY_replace|replace]] - [[_COMMUNITY_completeWork|completeWork]] -- [[_COMMUNITY_commitRootImpl|commitRootImpl]] +- [[_COMMUNITY_integrations.ts|integrations.ts]] - [[_COMMUNITY_constructor|constructor]] -- [[_COMMUNITY_completeWork|completeWork]] +- [[_COMMUNITY_popHydrationState|popHydrationState]] - [[_COMMUNITY_constructor|constructor]] - [[_COMMUNITY_scripts|scripts]] - [[_COMMUNITY_setup.ts|setup.ts]] @@ -281,13 +281,13 @@ - [[_COMMUNITY_parse|parse]] - [[_COMMUNITY_getProps|getProps]] - [[_COMMUNITY_captureCommitPhaseError|captureCommitPhaseError]] -- [[_COMMUNITY_updateWorkInProgressHook|updateWorkInProgressHook]] +- [[_COMMUNITY_mergeLanes|mergeLanes]] - [[_COMMUNITY_PR 387 — Action Thing v1 declarative capability-bounded programs|PR #387 — Action Thing v1: declarative capability-bounded programs]] - [[_COMMUNITY_querySafety.ts|querySafety.ts]] -- [[_COMMUNITY_getValue|getValue]] -- [[_COMMUNITY_commitRootImpl|commitRootImpl]] +- [[_COMMUNITY_trim|trim]] +- [[_COMMUNITY_animateTarget|animateTarget]] - [[_COMMUNITY_getProps|getProps]] -- [[_COMMUNITY_initialState|initialState]] +- [[_COMMUNITY_updateWorkInProgressHook|updateWorkInProgressHook]] - [[_COMMUNITY_constructor|constructor]] - [[_COMMUNITY_updateWorkInProgressHook|updateWorkInProgressHook]] - [[_COMMUNITY_popHydrationState|popHydrationState]] @@ -318,107 +318,107 @@ - [[_COMMUNITY_package.json|package.json]] - [[_COMMUNITY_updateDehydratedSuspenseComponent|updateDehydratedSuspenseComponent]] - [[_COMMUNITY_jsonlRpc.ts|jsonlRpc.ts]] -- [[_COMMUNITY_pokeworld.test.ts|pokeworld.test.ts]] +- [[_COMMUNITY_encounters.ts|encounters.ts]] - [[_COMMUNITY_status.ts|status.ts]] - [[_COMMUNITY_ensure-dependencies.js|ensure-dependencies.js]] - [[_COMMUNITY_popHydrationState|popHydrationState]] -- [[_COMMUNITY_getValue|getValue]] +- [[_COMMUNITY_trim|trim]] - [[_COMMUNITY_constructor|constructor]] - [[_COMMUNITY_astro.test.ts|astro.test.ts]] -- [[_COMMUNITY_trainer.ts|trainer.ts]] +- [[_COMMUNITY_battle.ts|battle.ts]] - [[_COMMUNITY_completeWork|completeWork]] - [[_COMMUNITY_captureCommitPhaseError|captureCommitPhaseError]] - [[_COMMUNITY_popHydrationState|popHydrationState]] -- [[_COMMUNITY_.testNewestFrameBackpressureDropsSupersededPendingFrame|.testNewestFrameBackpressureDropsSupersededPendingFrame]] +- [[_COMMUNITY_ScreenCapture.swift|ScreenCapture.swift]] - [[_COMMUNITY_commitRootImpl|commitRootImpl]] - [[_COMMUNITY_generate-branding-assets.mjs|generate-branding-assets.mjs]] - [[_COMMUNITY_DocsLayout.tsx|DocsLayout.tsx]] -- [[_COMMUNITY_stop|stop]] -- [[_COMMUNITY_runOperation.ts|runOperation.ts]] -- [[_COMMUNITY_getValue|getValue]] +- [[_COMMUNITY_initPlayback|initPlayback]] +- [[_COMMUNITY_utils.ts|utils.ts]] +- [[_COMMUNITY_trim|trim]] - [[_COMMUNITY_.evidence|.evidence]] - [[_COMMUNITY_vite.config.ts|vite.config.ts]] -- [[_COMMUNITY_useThingtime|useThingtime]] +- [[_COMMUNITY__react.tsx|_react.tsx]] - [[_COMMUNITY_deviceCore.ts|deviceCore.ts]] - [[_COMMUNITY_DaemonSupervisor|DaemonSupervisor]] - [[_COMMUNITY_commitRootImpl|commitRootImpl]] -- [[_COMMUNITY_utils.ts|utils.ts]] +- [[_COMMUNITY_moveImageResultsToFinalDestination|moveImageResultsToFinalDestination]] - [[_COMMUNITY_adminDiagnostic.ts|adminDiagnostic.ts]] - [[_COMMUNITY_updateDehydratedSuspenseComponent|updateDehydratedSuspenseComponent]] -- [[_COMMUNITY_webpageRuntime.tsx|webpageRuntime.tsx]] +- [[_COMMUNITY_ComponentDetailPage.tsx|ComponentDetailPage.tsx]] - [[_COMMUNITY_getProps|getProps]] -- [[_COMMUNITY_model.ts|model.ts]] -- [[_COMMUNITY_ThingtimeMenuBarIconID|ThingtimeMenuBarIconID]] +- [[_COMMUNITY_importer.ts|importer.ts]] +- [[_COMMUNITY_forEach|forEach]] - [[_COMMUNITY_FooterStatusPanel.tsx|FooterStatusPanel.tsx]] - [[_COMMUNITY_SearchResultCache|SearchResultCache]] -- [[_COMMUNITY_trim|trim]] - [[_COMMUNITY_getValue|getValue]] +- [[_COMMUNITY_trim|trim]] - [[_COMMUNITY_getValue|getValue]] - [[_COMMUNITY_trim|trim]] - [[_COMMUNITY_desktop.ts|desktop.ts]] -- [[_COMMUNITY_index.ts|index.ts]] +- [[_COMMUNITY_pokeworld.test.ts|pokeworld.test.ts]] - [[_COMMUNITY_starsalign.ts|starsalign.ts]] - [[_COMMUNITY_algorithms.ts|algorithms.ts]] - [[_COMMUNITY_sideload.ts|sideload.ts]] - [[_COMMUNITY_DaemonReady|DaemonReady]] - [[_COMMUNITY_scripts|scripts]] -- [[_COMMUNITY_stop|stop]] -- [[_COMMUNITY_stop|stop]] -- [[_COMMUNITY_editorJsHtml.ts|editorJsHtml.ts]] - [[_COMMUNITY_initPlayback|initPlayback]] +- [[_COMMUNITY_initPlayback|initPlayback]] +- [[_COMMUNITY_commitRootImpl|commitRootImpl]] - [[_COMMUNITY_stop|stop]] - [[_COMMUNITY_stop|stop]] - [[_COMMUNITY_stop|stop]] -- [[_COMMUNITY_createElement|createElement]] - [[_COMMUNITY_stop|stop]] +- [[_COMMUNITY_completeWork|completeWork]] - [[_COMMUNITY_stop|stop]] -- [[_COMMUNITY_ensureRootIsScheduled|ensureRootIsScheduled]] -- [[_COMMUNITY_devices.ts|devices.ts]] - [[_COMMUNITY_stop|stop]] -- [[_COMMUNITY_build-production-app.mjs|build-production-app.mjs]] +- [[_COMMUNITY_scheduleUpdateOnFiber|scheduleUpdateOnFiber]] +- [[_COMMUNITY_getHomeThingsCollection|getHomeThingsCollection]] - [[_COMMUNITY_stop|stop]] +- [[_COMMUNITY_build-production-app.mjs|build-production-app.mjs]] +- [[_COMMUNITY_getProps|getProps]] - [[_COMMUNITY_calculator.ts|calculator.ts]] - [[_COMMUNITY_Path|Path]] -- [[_COMMUNITY_commitRootImpl|commitRootImpl]] +- [[_COMMUNITY_providerProbe.ts|providerProbe.ts]] - [[_COMMUNITY_popHydrationState|popHydrationState]] -- [[_COMMUNITY_LopuChatView.tsx|LopuChatView.tsx]] +- [[_COMMUNITY_getValue|getValue]] - [[_COMMUNITY_forEach|forEach]] - [[_COMMUNITY_push|push]] - [[_COMMUNITY_popHydrationState|popHydrationState]] - [[_COMMUNITY_popHydrationState|popHydrationState]] - [[_COMMUNITY_CodexAppServerConnector|CodexAppServerConnector]] -- [[_COMMUNITY_popHydrationState|popHydrationState]] +- [[_COMMUNITY_completeWork|completeWork]] - [[_COMMUNITY_install-local-app.mjs|install-local-app.mjs]] -- [[_COMMUNITY_embeddedThings.ts|embeddedThings.ts]] +- [[_COMMUNITY_createRoot|createRoot]] - [[_COMMUNITY_LopuVoiceSessionController|LopuVoiceSessionController]] - [[_COMMUNITY_updateWorkInProgressHook|updateWorkInProgressHook]] - [[_COMMUNITY_updateWorkInProgressHook|updateWorkInProgressHook]] -- [[_COMMUNITY_mergeLanes|mergeLanes]] +- [[_COMMUNITY_updateWorkInProgressHook|updateWorkInProgressHook]] - [[_COMMUNITY_Thingtime Owned Email Architecture|Thingtime Owned Email Architecture]] - [[_COMMUNITY_thingtime.ts|thingtime.ts]] - [[_COMMUNITY_api.ts|api.ts]] - [[_COMMUNITY_PR 308 — NSFWTOS media moderation pipeline|PR #308 — NSFW/TOS media moderation pipeline]] - [[_COMMUNITY_getValue|getValue]] - [[_COMMUNITY_updateWorkInProgressHook|updateWorkInProgressHook]] -- [[_COMMUNITY_getValue|getValue]] +- [[_COMMUNITY_trim|trim]] - [[_COMMUNITY_githubClient.ts|githubClient.ts]] -- [[_COMMUNITY_getProps|getProps]] -- [[_COMMUNITY_electronBridge.ts|electronBridge.ts]] +- [[_COMMUNITY_stop|stop]] +- [[_COMMUNITY_GlobalHotKeyRegistry|GlobalHotKeyRegistry]] - [[_COMMUNITY_stop|stop]] - [[_COMMUNITY_helpers.ts|helpers.ts]] -- [[_COMMUNITY_initPlayback|initPlayback]] +- [[_COMMUNITY_stop|stop]] - [[_COMMUNITY_LiveAISyncCoordinatorTests|LiveAISyncCoordinatorTests]] -- [[_COMMUNITY_.start|.start]] +- [[_COMMUNITY_CommanderSettingsTab|CommanderSettingsTab]] - [[_COMMUNITY_SystemMetricsService|SystemMetricsService]] -- [[_COMMUNITY_diffHydratedProperties|diffHydratedProperties]] +- [[_COMMUNITY_error|error]] - [[_COMMUNITY_replace|replace]] -- [[_COMMUNITY_legacyCreateRootFromDOMContainer|legacyCreateRootFromDOMContainer]] +- [[_COMMUNITY_error|error]] - [[_COMMUNITY_package.json|package.json]] - [[_COMMUNITY_Raw.tsx|Raw.tsx]] - [[_COMMUNITY_editorJsPopoverViewport.ts|editorJsPopoverViewport.ts]] - [[_COMMUNITY_nativeBridge.ts|nativeBridge.ts]] - [[_COMMUNITY_eachAxis|eachAxis]] -- [[_COMMUNITY_mapIntoArray|mapIntoArray]] +- [[_COMMUNITY_error|error]] - [[_COMMUNITY_popHydrationState|popHydrationState]] - [[_COMMUNITY_update|update]] - [[_COMMUNITY_scrapeMotionValuesFromProps|scrapeMotionValuesFromProps]] @@ -426,28 +426,28 @@ - [[_COMMUNITY_animateTarget|animateTarget]] - [[_COMMUNITY_update|update]] - [[_COMMUNITY_forEach|forEach]] -- [[_COMMUNITY_eachAxis|eachAxis]] -- [[_COMMUNITY_mapIntoArray|mapIntoArray]] +- [[_COMMUNITY_getProps|getProps]] +- [[_COMMUNITY_error|error]] - [[_COMMUNITY_featureStackProgress.ts|featureStackProgress.ts]] - [[_COMMUNITY_PersistentStore|PersistentStore]] - [[_COMMUNITY_store.ts|store.ts]] - [[_COMMUNITY_forEach|forEach]] - [[_COMMUNITY_forEach|forEach]] - [[_COMMUNITY_update|update]] -- [[_COMMUNITY_animateTarget|animateTarget]] +- [[_COMMUNITY_forEach|forEach]] - [[_COMMUNITY_.make|.make]] - [[_COMMUNITY_getProps|getProps]] - [[_COMMUNITY_update|update]] - [[_COMMUNITY_getProps|getProps]] - [[_COMMUNITY_animateTarget|animateTarget]] - [[_COMMUNITY_getProps|getProps]] -- [[_COMMUNITY_update|update]] +- [[_COMMUNITY_forEach|forEach]] - [[_COMMUNITY_userVault.ts|userVault.ts]] -- [[_COMMUNITY_update|update]] +- [[_COMMUNITY_featureStackStore.ts|featureStackStore.ts]] - [[_COMMUNITY_nodeRuntime.ts|nodeRuntime.ts]] - [[_COMMUNITY_update|update]] -- [[_COMMUNITY_EventHandler|EventHandler]] -- [[_COMMUNITY_ThingtimeProvider.tsx|ThingtimeProvider.tsx]] +- [[_COMMUNITY_unstable_scheduleCallback|unstable_scheduleCallback]] +- [[_COMMUNITY_thingtimeSyncChannel.ts|thingtimeSyncChannel.ts]] - [[_COMMUNITY_docsSearchIndex.ts|docsSearchIndex.ts]] - [[_COMMUNITY_devDependencies|devDependencies]] - [[_COMMUNITY_media-cache-sw.mjs|media-cache-sw.mjs]] @@ -455,15 +455,15 @@ - [[_COMMUNITY_main.rs|main.rs]] - [[_COMMUNITY_popHydrationState|popHydrationState]] - [[_COMMUNITY_animateTarget|animateTarget]] -- [[_COMMUNITY_trim|trim]] +- [[_COMMUNITY_getValue|getValue]] - [[_COMMUNITY_updateDehydratedSuspenseComponent|updateDehydratedSuspenseComponent]] - [[_COMMUNITY_update|update]] - [[_COMMUNITY_getValue|getValue]] - [[_COMMUNITY_PR 53 — Nested data viewer concepts + kind renderers with live docsconcepts section|PR #53 — Nested data viewer concepts + kind renderers with live /docs/concepts section]] -- [[_COMMUNITY_updateDehydratedSuspenseComponent|updateDehydratedSuspenseComponent]] -- [[_COMMUNITY_getValue|getValue]] +- [[_COMMUNITY_integrationCore.ts|integrationCore.ts]] +- [[_COMMUNITY_trim|trim]] - [[_COMMUNITY_AI Advice Agents And Councils|AI Advice: Agents And Councils]] -- [[_COMMUNITY_update|update]] +- [[_COMMUNITY_String|String]] - [[_COMMUNITY_getProps|getProps]] - [[_COMMUNITY_vercelRunner.ts|vercelRunner.ts]] - [[_COMMUNITY_BrandAssetSection.tsx|BrandAssetSection.tsx]] @@ -484,16 +484,16 @@ - [[_COMMUNITY_adminPreviewController.ts|adminPreviewController.ts]] - [[_COMMUNITY_GradientPath.js|GradientPath.js]] - [[_COMMUNITY_Thingtime Pink Icon (SVG source)|Thingtime Pink Icon (SVG source)]] -- [[_COMMUNITY_.process|.process]] +- [[_COMMUNITY_ThingtimeWebView|ThingtimeWebView]] - [[_COMMUNITY_IndexingSettings.tsx|IndexingSettings.tsx]] -- [[_COMMUNITY_DeviceCard.tsx|DeviceCard.tsx]] +- [[_COMMUNITY_todayBody|todayBody]] - [[_COMMUNITY_runtime.ts|runtime.ts]] -- [[_COMMUNITY_first|first]] +- [[_COMMUNITY_stop|stop]] - [[_COMMUNITY_useLocalThingtimeNode.ts|useLocalThingtimeNode.ts]] - [[_COMMUNITY_tt-logo Custom Element|tt-logo Custom Element]] - [[_COMMUNITY_mapIntoArray|mapIntoArray]] - [[_COMMUNITY_PR 485 — Design system alignment + block-based Thingtime builder|PR #485 — Design system alignment + block-based Thingtime builder]] -- [[_COMMUNITY_error|error]] +- [[_COMMUNITY_mapIntoArray|mapIntoArray]] - [[_COMMUNITY_BrandMarkStories.tsx|BrandMarkStories.tsx]] - [[_COMMUNITY_Thingtime Logo (SVG pixel-art wordmark source)|Thingtime Logo (SVG pixel-art wordmark source)]] - [[_COMMUNITY_compilerOptions|compilerOptions]] @@ -501,31 +501,31 @@ - [[_COMMUNITY_raycastLocal.ts|raycastLocal.ts]] - [[_COMMUNITY_IndexerError|IndexerError]] - [[_COMMUNITY_webhooks.ts|webhooks.ts]] -- [[_COMMUNITY_things.ts|things.ts]] -- [[_COMMUNITY_TierManager.tsx|TierManager.tsx]] -- [[_COMMUNITY_updateWorkInProgressHook|updateWorkInProgressHook]] +- [[_COMMUNITY_search.ts|search.ts]] +- [[_COMMUNITY_tierCatalogStore.ts|tierCatalogStore.ts]] +- [[_COMMUNITY_mergeLanes|mergeLanes]] - [[_COMMUNITY_Thingtime Icon (SVG source, greenbrown plus mark)|Thingtime Icon (SVG source, green/brown plus mark)]] - [[_COMMUNITY_Thingtime Pink Logo Master (SVG)|Thingtime Pink Logo Master (SVG)]] - [[_COMMUNITY_SearchService|SearchService]] -- [[_COMMUNITY_crypto.tsx|crypto.tsx]] +- [[_COMMUNITY_thing.tsx|thing.tsx]] - [[_COMMUNITY_ThingtimeWKWebView|ThingtimeWKWebView]] -- [[_COMMUNITY_ScreenCapture.swift|ScreenCapture.swift]] +- [[_COMMUNITY_thingtimeSerialization.ts|thingtimeSerialization.ts]] - [[_COMMUNITY_deviceCache.ts|deviceCache.ts]] -- [[_COMMUNITY_routes.tsx|routes.tsx]] +- [[_COMMUNITY_DeploymentPeersPage.tsx|DeploymentPeersPage.tsx]] - [[_COMMUNITY_editorJsBlockReorder.ts|editorJsBlockReorder.ts]] - [[_COMMUNITY_workflow-caller-contract.mjs|workflow-caller-contract.mjs]] - [[_COMMUNITY_forEach|forEach]] -- [[_COMMUNITY_IndexDatabase|IndexDatabase]] -- [[_COMMUNITY_FigmaControls.tsx|FigmaControls.tsx]] +- [[_COMMUNITY_Result|Result]] +- [[_COMMUNITY_optIn|optIn]] - [[_COMMUNITY_update|update]] - [[_COMMUNITY_Setup for Forks|Setup for Forks]] - [[_COMMUNITY_unstable_scheduleCallback|unstable_scheduleCallback]] - [[_COMMUNITY_vercel.tsx|vercel.tsx]] -- [[_COMMUNITY_editorJsValue.ts|editorJsValue.ts]] -- [[_COMMUNITY_physicalCollectionName|physicalCollectionName]] +- [[_COMMUNITY_LongTextEditor.tsx|LongTextEditor.tsx]] +- [[_COMMUNITY_el|el]] - [[_COMMUNITY_compilerOptions|compilerOptions]] - [[_COMMUNITY_nativeFileIcons.ts|nativeFileIcons.ts]] -- [[_COMMUNITY_migrationFailure.ts|migrationFailure.ts]] +- [[_COMMUNITY_DestinationPickerDrawer|DestinationPickerDrawer]] - [[_COMMUNITY_mcp.tsx|mcp.tsx]] - [[_COMMUNITY_webhookStore.ts|webhookStore.ts]] - [[_COMMUNITY_4. 🔧 THE FIX LIST — 12 review findings (do these next)|4. 🔧 THE FIX LIST — 12 review findings (do these next)]] @@ -535,10 +535,10 @@ - [[_COMMUNITY_.listener|.listener]] - [[_COMMUNITY_build-web.mjs|build-web.mjs]] - [[_COMMUNITY_verify-native-node.mjs|verify-native-node.mjs]] -- [[_COMMUNITY_stop|stop]] +- [[_COMMUNITY_animateTarget|animateTarget]] - [[_COMMUNITY_partialJson.ts|partialJson.ts]] - [[_COMMUNITY_FilterBuilder.tsx|FilterBuilder.tsx]] -- [[_COMMUNITY_LopuVoiceControls.tsx|LopuVoiceControls.tsx]] +- [[_COMMUNITY_ThingtimeWebDestination|ThingtimeWebDestination]] - [[_COMMUNITY_verify-lopu.mjs|verify-lopu.mjs]] - [[_COMMUNITY_entry.client.tsx|entry.client.tsx]] - [[_COMMUNITY_applyAxisDelta|applyAxisDelta]] @@ -570,7 +570,7 @@ - [[_COMMUNITY_verify-signed-app.mjs|verify-signed-app.mjs]] - [[_COMMUNITY_compilerOptions|compilerOptions]] - [[_COMMUNITY_PR 578 — App suites Pokeworld + StarsAlign on Thingtime|PR #578 — App suites: Pokeworld + StarsAlign on Thingtime]] -- [[_COMMUNITY_getProps|getProps]] +- [[_COMMUNITY_stop|stop]] - [[_COMMUNITY_queryBuilderState.ts|queryBuilderState.ts]] - [[_COMMUNITY_LocalProjectRegistry|LocalProjectRegistry]] - [[_COMMUNITY__sync.tsx|_sync.tsx]] @@ -579,12 +579,12 @@ - [[_COMMUNITY_package.json|package.json]] - [[_COMMUNITY_Thingtime production MongoDB index storage audit and restructure|Thingtime production MongoDB: index storage audit and restructure]] - [[_COMMUNITY_error|error]] -- [[_COMMUNITY_networkProbe.ts|networkProbe.ts]] +- [[_COMMUNITY_featureStackLifecycleCore.ts|featureStackLifecycleCore.ts]] - [[_COMMUNITY_liveSessionDiscovery.ts|liveSessionDiscovery.ts]] - [[_COMMUNITY_JsonlRpcProcess|JsonlRpcProcess]] -- [[_COMMUNITY_bridge.tsx|bridge.tsx]] +- [[_COMMUNITY_commitPlacement|commitPlacement]] - [[_COMMUNITY_editorJsKeyboard.ts|editorJsKeyboard.ts]] -- [[_COMMUNITY_lopuChatStream.ts|lopuChatStream.ts]] +- [[_COMMUNITY_commitPlacement|commitPlacement]] - [[_COMMUNITY_error|error]] - [[_COMMUNITY_completeWork|completeWork]] - [[_COMMUNITY_....ts|[...].ts]] @@ -595,7 +595,7 @@ - [[_COMMUNITY_PR 201 — Add private S3 post attachments with tier accounting|PR #201 — Add private S3 post attachments with tier accounting]] - [[_COMMUNITY_PR 30 — Add iOS web destination picker (branch `codexios-deployment-url-picker`)|PR #30 — Add iOS web destination picker (branch `codex/ios-deployment-url-picker`)]] - [[_COMMUNITY_Delivered|Delivered]] -- [[_COMMUNITY_entry.ts|entry.ts]] +- [[_COMMUNITY_commitPlacement|commitPlacement]] - [[_COMMUNITY_🦄 Handoff Schema browser builder search-by-schema|🦄 Handoff: Schema browser / builder / search-by-schema]] - [[_COMMUNITY_unstable_scheduleCallback|unstable_scheduleCallback]] - [[_COMMUNITY_package.json|package.json]] @@ -603,25 +603,25 @@ - [[_COMMUNITY_build_and_run.sh|build_and_run.sh]] - [[_COMMUNITY_compilerOptions|compilerOptions]] - [[_COMMUNITY_embed.tsx|embed.tsx]] -- [[_COMMUNITY_rateLimit.ts|rateLimit.ts]] +- [[_COMMUNITY_musing.ts|musing.ts]] - [[_COMMUNITY_unstable_scheduleCallback|unstable_scheduleCallback]] - [[_COMMUNITY_describeNativeComponentFrame|describeNativeComponentFrame]] -- [[_COMMUNITY_landingSections.tsx|landingSections.tsx]] +- [[_COMMUNITY_describeNativeComponentFrame|describeNativeComponentFrame]] - [[_COMMUNITY_Coordinator|Coordinator]] - [[_COMMUNITY_update|update]] -- [[_COMMUNITY_theme.tsx|theme.tsx]] +- [[_COMMUNITY_commitPlacement|commitPlacement]] - [[_COMMUNITY_.startRealtimeAudio|.startRealtimeAudio]] -- [[_COMMUNITY_ScreenCaptureError|ScreenCaptureError]] -- [[_COMMUNITY_groups.ts|groups.ts]] -- [[_COMMUNITY_scrapeMotionValuesFromProps|scrapeMotionValuesFromProps]] +- [[_COMMUNITY_DeploymentOptionRow|DeploymentOptionRow]] +- [[_COMMUNITY_createContext|createContext]] +- [[_COMMUNITY_copyRawValuesOnly|copyRawValuesOnly]] - [[_COMMUNITY_mapIntoArray|mapIntoArray]] - [[_COMMUNITY_package.json|package.json]] - [[_COMMUNITY_PR 154 — Unified Things page|PR #154 — Unified Things page]] - [[_COMMUNITY_PR 212 — secure `develop`-target PR previews|PR #212 — secure `develop`-target PR previews]] - [[_COMMUNITY_PR 263 — Add cross-platform Commander launcher|PR #263 — Add cross-platform Commander launcher]] -- [[_COMMUNITY_passkeyCeremony.ts|passkeyCeremony.ts]] +- [[_COMMUNITY_String|String]] - [[_COMMUNITY_Thingtime Embed SDK|Thingtime Embed SDK]] -- [[_COMMUNITY_mapIntoArray|mapIntoArray]] +- [[_COMMUNITY_credentialVaultCore.ts|credentialVaultCore.ts]] - [[_COMMUNITY_rules|rules]] - [[_COMMUNITY_verify-app-storage.mjs|verify-app-storage.mjs]] - [[_COMMUNITY_20 — Run actions from the component tester ⚡|20 — Run actions from the component tester ⚡]] @@ -636,11 +636,11 @@ - [[_COMMUNITY_PR 388 — Unlimited AI model waterfall with the full Claude + OpenAI catalog|PR #388 — Unlimited AI model waterfall with the full Claude + OpenAI catalog]] - [[_COMMUNITY_PR 613 — Re-land hidden 🕵️ links + PAT GET bridge + custom audiences 🎭 (`claudehidden-links-custom-audiences-reland`)|PR #613 — Re-land hidden 🕵️ links + PAT GET bridge + custom audiences 🎭 (`claude/hidden-links-custom-audiences-reland`)]] - [[_COMMUNITY_index.ts|index.ts]] -- [[_COMMUNITY_FakeScreenCaptureBackend|FakeScreenCaptureBackend]] -- [[_COMMUNITY_README|README.md]] -- [[_COMMUNITY_ScreenCaptureRawFrame|ScreenCaptureRawFrame]] +- [[_COMMUNITY_useStyleConfigImpl|useStyleConfigImpl]] +- [[_COMMUNITY_useStyleConfigImpl|useStyleConfigImpl]] +- [[_COMMUNITY_useStyleConfigImpl|useStyleConfigImpl]] - [[_COMMUNITY_RawResults.tsx|RawResults.tsx]] -- [[_COMMUNITY_legacyCreateRootFromDOMContainer|legacyCreateRootFromDOMContainer]] +- [[_COMMUNITY_createRoot|createRoot]] - [[_COMMUNITY_deviceDrawerPreferences.ts|deviceDrawerPreferences.ts]] - [[_COMMUNITY_verify-app-suites.mjs|verify-app-suites.mjs]] - [[_COMMUNITY_README|README.md]] @@ -654,28 +654,28 @@ - [[_COMMUNITY_buildSVGAttrs|buildSVGAttrs]] - [[_COMMUNITY_buildSVGAttrs|buildSVGAttrs]] - [[_COMMUNITY_buildSVGAttrs|buildSVGAttrs]] -- [[_COMMUNITY_appendChildToContainer|appendChildToContainer]] +- [[_COMMUNITY_commitPlacement|commitPlacement]] - [[_COMMUNITY_promote|promote]] - [[_COMMUNITY_buildSVGAttrs|buildSVGAttrs]] -- [[_COMMUNITY_unstable_scheduleCallback|unstable_scheduleCallback]] +- [[_COMMUNITY_dispatchEventWithEnableCapturePhaseSelectiveHydrationWithoutDiscreteEventReplay|dispatchEventWithEnableCapturePhaseSelectiveHydrationWithoutDiscreteEventReplay]] - [[_COMMUNITY_buildSVGAttrs|buildSVGAttrs]] - [[_COMMUNITY_commitPlacement|commitPlacement]] - [[_COMMUNITY_buildSVGAttrs|buildSVGAttrs]] -- [[_COMMUNITY_useStyleConfigImpl|useStyleConfigImpl]] +- [[_COMMUNITY_getHomeCollection|getHomeCollection]] - [[_COMMUNITY_buildSVGAttrs|buildSVGAttrs]] -- [[_COMMUNITY_Electron production release control plane|Electron production release control plane]] +- [[_COMMUNITY_root-data.server.ts|root-data.server.ts]] - [[_COMMUNITY_buildSVGAttrs|buildSVGAttrs]] - [[_COMMUNITY_commitPlacement|commitPlacement]] - [[_COMMUNITY_buildSVGAttrs|buildSVGAttrs]] -- [[_COMMUNITY__template.tsx|_template.tsx]] +- [[_COMMUNITY_DeploymentPresentation|DeploymentPresentation]] - [[_COMMUNITY_🏛️ Thingtime Fundamentals|🏛️ Thingtime Fundamentals]] - [[_COMMUNITY_Follow-Up Notes From PR 16|Follow-Up Notes From PR #16]] - [[_COMMUNITY_PR 232 — Add media galleries and managed profile attachments|PR #232 — Add media galleries and managed profile attachments]] - [[_COMMUNITY_PR 59 — Everything is a thing crystal payloads, thingtime schemas, schemas browser, admin migrations|PR 59 — Everything is a thing: crystal payloads, thingtime schemas, /schemas browser, admin migrations]] - [[_COMMUNITY_useStyleConfigImpl|useStyleConfigImpl]] - [[_COMMUNITY_brandingExport.ts|brandingExport.ts]] -- [[_COMMUNITY_describeNativeComponentFrame|describeNativeComponentFrame]] -- [[_COMMUNITY_useStyleConfigImpl|useStyleConfigImpl]] +- [[_COMMUNITY_Snapshot|Snapshot]] +- [[_COMMUNITY_PR 607 — Rich route-aware Thingtime link previews|PR #607 — Rich route-aware Thingtime link previews]] - [[_COMMUNITY_web-ci-required-context-contract.mjs|web-ci-required-context-contract.mjs]] - [[_COMMUNITY_03 — Auth Login Register Sessions JWT 🟢|03 — Auth: Login / Register / Sessions / JWT 🟢]] - [[_COMMUNITY_16 — Full-power app namespaces|16 — Full-power app namespaces]] @@ -684,7 +684,7 @@ - [[_COMMUNITY_20 — Versioned experience history return to any moment 🕰️|20 — Versioned experience history: return to any moment 🕰️]] - [[_COMMUNITY_dependencies|dependencies]] - [[_COMMUNITY_Thingtime AI instructions|Thingtime AI instructions]] -- [[_COMMUNITY_useStyleConfigImpl|useStyleConfigImpl]] +- [[_COMMUNITY_models.route.test.ts|models.route.test.ts]] - [[_COMMUNITY_package.json|package.json]] - [[_COMMUNITY_Geo-distributing Thingtime — one URL, region-local speed, one source of truth|Geo-distributing Thingtime — one URL, region-local speed, one source of truth]] - [[_COMMUNITY_buildSVGAttrs|buildSVGAttrs]] @@ -713,10 +713,10 @@ - [[_COMMUNITY_compilerOptions|compilerOptions]] - [[_COMMUNITY_geo-distribution|geo-distribution.md]] - [[_COMMUNITY_Thing index consolidation — September 2026|Thing index consolidation — September 2026]] -- [[_COMMUNITY_AccountHints.tsx|AccountHints.tsx]] +- [[_COMMUNITY_BsonValueEditor.tsx|BsonValueEditor.tsx]] - [[_COMMUNITY_componentDidMount|componentDidMount]] - [[_COMMUNITY_verify-web-build.mjs|verify-web-build.mjs]] -- [[_COMMUNITY_LopuActivityBadge.tsx|LopuActivityBadge.tsx]] +- [[_COMMUNITY_PipelineBuilder.tsx|PipelineBuilder.tsx]] - [[_COMMUNITY_PR 13 - Hydration, Vercel Status, and Deployment Hygiene|PR #13 - Hydration, Vercel Status, and Deployment Hygiene]] - [[_COMMUNITY_PR 220 — CI provider control plane and Vercel runners|PR #220 — CI provider control plane and Vercel runners]] - [[_COMMUNITY_Frontend — bundle size and code splitting|Frontend — bundle size and code splitting]] @@ -733,16 +733,16 @@ - [[_COMMUNITY_appLifecycleCore.ts|appLifecycleCore.ts]] - [[_COMMUNITY_Commander testing checklist|Commander testing checklist]] - [[_COMMUNITY_.eslintrc.json|.eslintrc.json]] -- [[_COMMUNITY_commitPlacement|commitPlacement]] -- [[_COMMUNITY_scrapeMotionValuesFromProps|scrapeMotionValuesFromProps]] +- [[_COMMUNITY_thingIn|thingIn]] +- [[_COMMUNITY_getValue|getValue]] - [[_COMMUNITY_scrapeMotionValuesFromProps|scrapeMotionValuesFromProps]] -- [[_COMMUNITY_verify-subspaces.mjs|verify-subspaces.mjs]] +- [[_COMMUNITY_stringify|stringify]] - [[_COMMUNITY_scrapeMotionValuesFromProps|scrapeMotionValuesFromProps]] -- [[_COMMUNITY_authReturn.ts|authReturn.ts]] -- [[_COMMUNITY_getVercelDeploymentsOverview|getVercelDeploymentsOverview]] +- [[_COMMUNITY_promote|promote]] +- [[_COMMUNITY_isVercelStatusEnabled|isVercelStatusEnabled]] - [[_COMMUNITY_useStyleConfigImpl|useStyleConfigImpl]] -- [[_COMMUNITY_scrapeMotionValuesFromProps|scrapeMotionValuesFromProps]] -- [[_COMMUNITY_scrapeMotionValuesFromProps|scrapeMotionValuesFromProps]] +- [[_COMMUNITY_copyRawValuesOnly|copyRawValuesOnly]] +- [[_COMMUNITY_copyRawValuesOnly|copyRawValuesOnly]] - [[_COMMUNITY_verify-unsigned-app.mjs|verify-unsigned-app.mjs]] - [[_COMMUNITY_mobile-oauth-login.mjs|mobile-oauth-login.mjs]] - [[_COMMUNITY_iOS|iOS]] @@ -764,12 +764,12 @@ - [[_COMMUNITY_PR 99 — Persisted-state, CSP, and register body-cap hardening|PR #99 — Persisted-state, CSP, and register body-cap hardening]] - [[_COMMUNITY_Subspaces 🪐 — Reddit-style communities + updown votes 🔼|Subspaces 🪐 — Reddit-style communities + up/down votes 🔼]] - [[_COMMUNITY_browseStorageProjection.test.ts|browseStorageProjection.test.ts]] -- [[_COMMUNITY_verify-embed-bundle.mjs|verify-embed-bundle.mjs]] +- [[_COMMUNITY_getVercelDeploymentsPage|getVercelDeploymentsPage]] - [[_COMMUNITY_promote|promote]] -- [[_COMMUNITY_webpageAttachments.ts|webpageAttachments.ts]] +- [[_COMMUNITY_InlineStyle|InlineStyle]] - [[_COMMUNITY_UiErrorBoundary|UiErrorBoundary]] -- [[_COMMUNITY_useStyleConfigImpl|useStyleConfigImpl]] -- [[_COMMUNITY_thingtimeMutationQueue.ts|thingtimeMutationQueue.ts]] +- [[_COMMUNITY_Source|Source]] +- [[_COMMUNITY_generate-social-card-font.mjs|generate-social-card-font.mjs]] - [[_COMMUNITY_verify-components.mjs|verify-components.mjs]] - [[_COMMUNITY_verify-webpages.mjs|verify-webpages.mjs]] - [[_COMMUNITY_Thingtime architecture, security, moderation, and media merge order|Thingtime architecture, security, moderation, and media merge order]] @@ -788,8 +788,8 @@ - [[_COMMUNITY_scrapeMotionValuesFromProps|scrapeMotionValuesFromProps]] - [[_COMMUNITY_index.js|index.js]] - [[_COMMUNITY_promote|promote]] -- [[_COMMUNITY_copyRawValuesOnly|copyRawValuesOnly]] -- [[_COMMUNITY_deviceDrawerLayout.ts|deviceDrawerLayout.ts]] +- [[_COMMUNITY_scrapeMotionValuesFromProps|scrapeMotionValuesFromProps]] +- [[_COMMUNITY_StyleSheet2|StyleSheet2]] - [[_COMMUNITY_promote|promote]] - [[_COMMUNITY_promote|promote]] - [[_COMMUNITY_promote|promote]] @@ -799,7 +799,6 @@ - [[_COMMUNITY_PR 482 — Make Thingtime MCP limitless, composable, and safe|PR #482 — Make Thingtime MCP limitless, composable, and safe]] - [[_COMMUNITY_verify-release-archive.mjs|verify-release-archive.mjs]] - [[_COMMUNITY_Thingtime MCP architecture|Thingtime MCP architecture]] -- [[_COMMUNITY_StyleSheet2|StyleSheet2]] - [[_COMMUNITY_Security Follow-Up - 2026-06-23|Security Follow-Up - 2026-06-23]] - [[_COMMUNITY_PR 183 — Add automatic AI rebase support for PRs and stacks|PR #183 — Add automatic AI rebase support for PRs and stacks]] - [[_COMMUNITY_PR 190 — Per-feature develop to main promotion PRs with stacks|PR 190 — Per-feature develop to main promotion PRs with stacks]] @@ -833,7 +832,6 @@ - [[_COMMUNITY_tsconfig.json|tsconfig.json]] - [[_COMMUNITY_worker.ts|worker.ts]] - [[_COMMUNITY_tsconfig.json|tsconfig.json]] -- [[_COMMUNITY_StyleSheet2|StyleSheet2]] - [[_COMMUNITY_scrapeMotionValuesFromProps|scrapeMotionValuesFromProps]] - [[_COMMUNITY_push|push]] - [[_COMMUNITY_Thingtime iOS Agent Runbook|Thingtime iOS Agent Runbook]] @@ -907,14 +905,11 @@ - [[_COMMUNITY_PR 39 Add API self-documentation routes|PR 39: Add API self-documentation routes]] - [[_COMMUNITY_PR 427 — Overhaul web search and Commander results|PR #427 — Overhaul web search and Commander results]] - [[_COMMUNITY_PR 487 Add Verified Multi-target Feature Stacks|PR #487 Add Verified Multi-target Feature Stacks]] -- [[_COMMUNITY_useThingtimeMachine.tsx|useThingtimeMachine.tsx]] - [[_COMMUNITY_PR 491 — Add an ordered Lopu credential vault|PR #491 — Add an ordered Lopu credential vault]] - [[_COMMUNITY_PR 513 — Admin CI refresh resilience|PR #513 — Admin CI refresh resilience]] - [[_COMMUNITY_PR 530 — Exact Feature Stack run history and terminal status|PR #530 — Exact Feature Stack run history and terminal status]] - [[_COMMUNITY_PR 533 — Feature Stack progress heartbeats|PR #533 — Feature Stack progress heartbeats]] -- [[_COMMUNITY_attachmentCascadeCore.ts|attachmentCascadeCore.ts]] - [[_COMMUNITY_2026-07-15 — Native Thingtime rendering for feed things (ThingView)|2026-07-15 — Native Thingtime rendering for feed things (ThingView)]] -- [[_COMMUNITY_isVercelStatusEnabled|isVercelStatusEnabled]] - [[_COMMUNITY_namespaceStorageRecovery.test.ts|namespaceStorageRecovery.test.ts]] - [[_COMMUNITY_API Capability Manifest|API Capability Manifest]] - [[_COMMUNITY_Builder Changelog Entries|Builder Changelog Entries]] @@ -1239,7 +1234,6 @@ - [[_COMMUNITY_Lopu AI assistant (`lopu`, floating launcher, `remixappcomponentsLopu`, `apiv1lopuchats`, `apiv1aimodels`)|Lopu AI assistant (`/lopu`, floating launcher, `remix/app/components/Lopu/`, `/api/v1/lopu/chats*`, `/api/v1/ai/models`)]] - [[_COMMUNITY_Landing Directions|Landing Directions]] - [[_COMMUNITY_StyleSheet2|StyleSheet2]] -- [[_COMMUNITY_StyleSheet2|StyleSheet2]] - [[_COMMUNITY_Editable Thingtime Launch Celebration Source|Editable Thingtime Launch Celebration Source]] - [[_COMMUNITY_Self-contained index.html|Self-contained index.html]] - [[_COMMUNITY_Thingtime Launch Celebration README|Thingtime Launch Celebration README]] @@ -1814,21 +1808,20 @@ docs/design/claude-design-mockup-v1/index.html → docs/design-inspiration/human-ai/image-examples/gold-star-flashy-saas-theme-design.jpg - `Thingtime Commander Raycast extension` --references--> `Command Icon Image` [AMBIGUOUS] Commander/extensions/raycast/README.md → Commander/extensions/raycast/assets/command-icon.png -- `serveStatic()` --calls--> `Stat()` [INFERRED] - Commander/apps/daemon/src/server.ts → remix/app/components/Lopu/LopuCreditsPanel.tsx - `mountState()` --calls--> `initialState()` [INFERRED] docs/design/claude-design-mockup-v2-fable/ds/react.js → Commander/apps/daemon/src/services/persistence.ts - `mountState()` --calls--> `initialState()` [INFERRED] docs/design/thingtime-app/ds/react.js → Commander/apps/daemon/src/services/persistence.ts +- `mountState()` --calls--> `initialState()` [INFERRED] + docs/design/thingtime-directions/ds/react.js → Commander/apps/daemon/src/services/persistence.ts ## Import Cycles +- 1-file cycle: `remix/app/api/utils/mongodb/mongodb.ts -> remix/app/api/utils/mongodb/mongodb.ts` +- 2-file cycle: `remix/app/api/utils/ciControl/githubClient.ts -> remix/app/api/utils/ciControl/vercelRunner.ts -> remix/app/api/utils/ciControl/githubClient.ts` - 2-file cycle: `remix/app/api/utils/moderation/claudeProvider.ts -> remix/app/api/utils/moderation/providers.ts -> remix/app/api/utils/moderation/claudeProvider.ts` - 2-file cycle: `remix/app/api/utils/moderation/openaiProvider.ts -> remix/app/api/utils/moderation/providers.ts -> remix/app/api/utils/moderation/openaiProvider.ts` -- 2-file cycle: `remix/app/api/utils/ciControl/githubClient.ts -> remix/app/api/utils/ciControl/vercelRunner.ts -> remix/app/api/utils/ciControl/githubClient.ts` - 3-file cycle: `remix/app/components/Feed/MentionAutocomplete.tsx -> remix/app/components/Profile/ProfilePage.tsx -> remix/app/components/Feed/PostComposer.tsx -> remix/app/components/Feed/MentionAutocomplete.tsx` - 3-file cycle: `remix/app/Providers/ThingtimeProvider.tsx -> remix/app/hooks/useThingtimeMachine.tsx -> remix/app/components/Thingtime/useThingtime.tsx -> remix/app/Providers/ThingtimeProvider.tsx` -- 3-file cycle: `remix/app/api/utils/mongodb/mongodb.ts -> remix/app/routes/api/v1/health/mongodb/_mongodb.tsx -> remix/app/api/utils/mongodb/status.ts -> remix/app/api/utils/mongodb/mongodb.ts` -- 4-file cycle: `remix/app/api/utils/mongodb/endpoint.ts -> remix/app/api/utils/mongodb/mongodb.ts -> remix/app/routes/api/v1/health/mongodb/_mongodb.tsx -> remix/app/api/utils/mongodb/status.ts -> remix/app/api/utils/mongodb/endpoint.ts` - 5-file cycle: `remix/app/components/Feed/MentionAutocomplete.tsx -> remix/app/components/Profile/ProfilePage.tsx -> remix/app/components/Feed/PostList.tsx -> remix/app/components/Feed/PostCard.tsx -> remix/app/components/Feed/PostComposer.tsx -> remix/app/components/Feed/MentionAutocomplete.tsx` ## Hyperedges (group relationships) @@ -1856,379 +1849,379 @@ - **AWS Restoration Configuration Hierarchy** — configurations_readme_document, configurations_aws_readme_document, configurations_aws_s3_readme_document, configurations_aws_ses_readme_document [EXTRACTED 1.00] - **Content-addressed Graphify Snapshot Workflow** — docs_graphify_content_addressed_snapshots_document, docs_graphify_content_addressed_snapshots_snapshot_router, remix_changelog_document [EXTRACTED 0.95] -## Communities (1812 total, 838 thin omitted) +## Communities (1806 total, 839 thin omitted) ### Community 0 - "react.js" -Cohesion: 0.01 -Nodes (191): accumulateOrCreateContinuousQueuedReplayableEvent(), addEventBubbleListener(), addEventBubbleListenerWithPassiveFlag(), addEventCaptureListener(), addEventCaptureListenerWithPassiveFlag(), addTrappedEventListener(), appendChild(), appendChildToContainer() (+183 more) +Cohesion: 0.02 +Nodes (172): accumulateOrCreateContinuousQueuedReplayableEvent(), addEventBubbleListener(), addEventBubbleListenerWithPassiveFlag(), addEventCaptureListener(), addEventCaptureListenerWithPassiveFlag(), addTrappedEventListener(), assertIsMounted(), attemptExplicitHydrationTarget() (+164 more) ### Community 1 - "PostCard.tsx" -Cohesion: 0.02 -Nodes (123): Baseline, BASELINES, Cap, CAP_OPTIONS, CustomAudienceModal(), MiniGroup, MiniUser, Selected (+115 more) +Cohesion: 0.01 +Nodes (196): CachedBoard, CachedStrip, cacheKeyFor(), ExplorePage(), readCachedBoard(), readCachedStrip(), stripCacheKeyFor(), AdvancedFilters() (+188 more) -### Community 2 - "latestRevisionAutosave.ts" -Cohesion: 0.14 -Nodes (11): createLatestRevisionAutosave(), defaultTimers, LatestRevisionAutosaveCoordinator, LatestRevisionAutosaveErrorContext, LatestRevisionAutosaveOptions, LatestRevisionAutosavePhase, LatestRevisionAutosaveState, LatestRevisionAutosaveTimers (+3 more) +### Community 2 - "error" +Cohesion: 0.03 +Nodes (143): act(), attemptReplayContinuousQueuedEvent(), attemptReplayContinuousQueuedEventInMap(), callComponentWillMount(), captureCommitPhaseError(), checkAttributeStringCoercion(), checkCSSPropertyStringCoercion(), checkFormFieldValueStringCoercion() (+135 more) ### Community 3 - "json" Cohesion: 0.03 -Nodes (242): json(), JsonInit, readJsonBody(), requireJsonContentType(), AppRequestContext, resolveAppRequest(), resolveAppToken(), appCorsHeaders() (+234 more) +Nodes (242): json(), JsonInit, readJsonBody(), requireJsonContentType(), AppRequestContext, resolveAppRequest(), AppTokenContext, resolveAppToken() (+234 more) -### Community 4 - "tierCatalogStore.ts" -Cohesion: 0.13 -Nodes (39): getSettingsCollection(), computeTierDiscounts(), sanitizeTierQuotas(), acquirePublishLock(), archiveSubscriptionTierVersion(), createSubscriptionTierDraft(), createSubscriptionTierDraftVersion(), descriptorFromDoc() (+31 more) +### Community 4 - "SearchPage.tsx" +Cohesion: 0.03 +Nodes (82): AdminRowField, AdminRowFieldKind, AdminRowQuery, AdminRowSort, ACCESSIBLE_OPERATOR_LABELS, AdminRowQueryControls(), AdminRowQueryControlsProps, DATE_OPERATOR_LABELS (+74 more) ### Community 5 - "ThingContextMenuStories.tsx" Cohesion: 0.01 -Nodes (110): cleanText(), LopuMessageInput, normalizeLopuMessage(), buildPermissionsSubmenu(), buildTemplatesSubmenu(), buildThingContextMenuModel(), BuildThingContextMenuModelArgs, buildTypesSubmenu() (+102 more) +Nodes (137): Icon(), BrutalButton(), BrutalVariant, burstAtEvent(), burstConfetti(), DemoSection(), ECOSYSTEM, FAQS (+129 more) -### Community 6 - "messenger.ts" +### Community 6 - "getThingsCollection" Cohesion: 0.02 -Nodes (254): orderAttachmentDocsByStoredSort(), createReadyAttachmentEmojiInsertHook(), getUserReadReceiptsEnabled(), getUsersReadReceiptsMap(), ensureLiveMembership(), syncDeviceLiveAi(), hasUserVaultProvider(), safeVaultId() (+246 more) +Nodes (260): writeRunRecord(), orderAttachmentDocsByStoredSort(), toAttachmentPublicMetadata(), createReadyAttachmentEmojiInsertHook(), createReadyAttachmentInsertHook(), createReadyAttachmentMessageInsertHook(), findUsersByIds(), getUserReadReceiptsEnabled() (+252 more) -### Community 7 - "ComponentDetailPage.tsx" -Cohesion: 0.01 -Nodes (402): ApplyPageOpsResult, checkBlockShape(), isValidBlockId(), normaliseSubtree(), PAGE_BLOCK_TYPES, PageOpsValidation, PatchTargetValidation, prefixFor() (+394 more) +### Community 7 - "lopuBuildBridge.ts" +Cohesion: 0.02 +Nodes (191): ApplyPageOpsResult, checkBlockShape(), containerField(), idField(), isPlainObject(), isValidBlockId(), normaliseSubtree(), PAGE_BLOCK_TYPES (+183 more) ### Community 8 - "apps.ts" -Cohesion: 0.05 -Nodes (92): AccountLink, AccountLinkKind, createAccountLink(), Fail, isAccountLinkKind(), linkMatch(), linkShareId(), listAccountLinksForTarget() (+84 more) +Cohesion: 0.03 +Nodes (150): AccountLink, AccountLinkKind, createAccountLink(), Fail, isAccountLinkKind(), linkMatch(), linkShareId(), listAccountLinksForTarget() (+142 more) ### Community 9 - "endpoint.ts" -Cohesion: 0.04 -Nodes (96): addUserMongoEndpoint(), getUserMongoEndpoints(), normalizeSavedMongoEndpoints(), removeUserMongoEndpoint(), base64UrlToBase64(), configuredPublicPem(), CRYPTO_STANDARDS, CryptoStandard (+88 more) +Cohesion: 0.05 +Nodes (87): getUserMongoEndpoints(), SavedMongoEndpoint, base64UrlToBase64(), configuredPublicPem(), CRYPTO_STANDARDS, CryptoStandard, decodeBase64UrlText(), decodeKeyMaterial() (+79 more) -### Community 10 - "date" -Cohesion: 0.04 -Nodes (54): Body, Error, date, CommandExecutionReport, CommandReportStatus, failed, succeeded, uncertain (+46 more) +### Community 10 - "ThingtimeNodeError" +Cohesion: 0.03 +Nodes (86): IOPMAssertionID, date, CommandJournal, Bool, Data, FileManager, Int, URL (+78 more) ### Community 11 - "react.js" Cohesion: 0.02 -Nodes (165): addEventBubbleListener(), addEventBubbleListenerWithPassiveFlag(), addEventCaptureListener(), addEventCaptureListenerWithPassiveFlag(), addTrappedEventListener(), basicStateReducer(), callCallback(), canHydrateInstance() (+157 more) +Nodes (149): addEventBubbleListener(), addEventBubbleListenerWithPassiveFlag(), addEventCaptureListener(), addEventCaptureListenerWithPassiveFlag(), addTrappedEventListener(), appendChild(), appendChildToContainer(), appendInitialChild() (+141 more) ### Community 12 - "registry.ts" Cohesion: 0.01 -Nodes (202): buildLopuStablePrompt(), buildLopuSystemPrompt(), buildLopuVolatilePrompt(), compactJson(), describeApproved(), describePage(), expressionDocs(), fewShot() (+194 more) +Nodes (215): countSeededComponents(), fail(), genuineSeededComponent(), seedComponents(), SeedComponentsResult, seededCount(), SeedFail, buildLopuStablePrompt() (+207 more) ### Community 13 - "react.js" Cohesion: 0.02 -Nodes (176): addEventBubbleListener(), addEventBubbleListenerWithPassiveFlag(), addEventCaptureListener(), addEventCaptureListenerWithPassiveFlag(), addTrappedEventListener(), appendChild(), appendChildToContainer(), appendInitialChild() (+168 more) +Nodes (182): accumulateOrCreateContinuousQueuedReplayableEvent(), addEventBubbleListener(), addEventBubbleListenerWithPassiveFlag(), addEventCaptureListener(), addEventCaptureListenerWithPassiveFlag(), addTrappedEventListener(), assertIsMounted(), attemptExplicitHydrationTarget() (+174 more) ### Community 14 - "react.js" Cohesion: 0.02 -Nodes (183): accumulateEnterLeaveTwoPhaseListeners(), accumulateOrCreateContinuousQueuedReplayableEvent(), addEventBubbleListener(), addEventBubbleListenerWithPassiveFlag(), addEventCaptureListener(), addEventCaptureListenerWithPassiveFlag(), addTrappedEventListener(), assertIsMounted() (+175 more) +Nodes (179): accumulateOrCreateContinuousQueuedReplayableEvent(), addEventBubbleListener(), addEventBubbleListenerWithPassiveFlag(), addEventCaptureListener(), addEventCaptureListenerWithPassiveFlag(), addTrappedEventListener(), assertIsMounted(), attemptExplicitHydrationTarget() (+171 more) ### Community 15 - "react.js" Cohesion: 0.02 -Nodes (166): accumulateEnterLeaveTwoPhaseListeners(), accumulateOrCreateContinuousQueuedReplayableEvent(), addEventBubbleListener(), addEventBubbleListenerWithPassiveFlag(), addEventCaptureListener(), addEventCaptureListenerWithPassiveFlag(), addTrappedEventListener(), assertIsMounted() (+158 more) +Nodes (179): accumulateOrCreateContinuousQueuedReplayableEvent(), addEventBubbleListener(), addEventBubbleListenerWithPassiveFlag(), addEventCaptureListener(), addEventCaptureListenerWithPassiveFlag(), addTrappedEventListener(), assertIsMounted(), attemptExplicitHydrationTarget() (+171 more) -### Community 16 - "attachments.ts" +### Community 16 - "attachmentCore.ts" Cohesion: 0.02 -Nodes (169): AttachmentAccessDocument, AttachmentAccessViewer, attachmentRootAclAllows(), AttachmentTargetAccessDependencies, attachmentTargetAclAllows(), AttachmentTargetAclDoc, canViewCommentAttachment(), canViewEmojiAttachment() (+161 more) - -### Community 17 - "AdminDashboard.tsx" -Cohesion: 0.08 -Nodes (29): ADMIN_TAB_STYLES, AdminDashboard(), APP_QUERY_FIELDS, AppRow, appRowId(), CHIP_TONE_STYLES, ChipTone, QUOTA_FIELDS (+21 more) +Nodes (141): AttachmentAccessDocument, AttachmentAccessViewer, attachmentRootAclAllows(), AttachmentTargetAccessDependencies, attachmentTargetAclAllows(), AttachmentTargetAclDoc, canViewCommentAttachment(), canViewEmojiAttachment() (+133 more) -### Community 18 - "thing.tsx" -Cohesion: 0.02 -Nodes (155): ActionBuilder(), emptyStep(), InputRow, monoLabel, rowInput, StepRow, ValueRow, ActionChip() (+147 more) +### Community 17 - "beginWork" +Cohesion: 0.05 +Nodes (103): adoptClassInstance(), applyDerivedStateFromProps(), attemptEarlyBailoutIfNoScheduledUpdate(), bailoutHooks(), bailoutOnAlreadyFinishedWork(), beginWork(), cacheContext(), callComponentWillReceiveProps() (+95 more) -### Community 19 - "SafeActionKind" +### Community 18 - "ThingsPage.tsx" Cohesion: 0.03 -Nodes (77): CGEventFlags, CGEventSource, CGKeyCode, Bool, Double, Set, String, UInt32 (+69 more) +Nodes (111): DeviceCard, DeviceListRow, useDeviceStore(), useLocalThingtimeNode(), Baseline, BASELINES, Cap, CAP_OPTIONS (+103 more) + +### Community 19 - "SafeActionRequest" +Cohesion: 0.08 +Nodes (21): CGEventFlags, CGKeyCode, Bool, Double, Set, String, UInt32, SystemRemoteInput (+13 more) ### Community 20 - "react.js" -Cohesion: 0.01 -Nodes (196): accumulateEnterLeaveTwoPhaseListeners(), accumulateOrCreateContinuousQueuedReplayableEvent(), addEventBubbleListener(), addEventBubbleListenerWithPassiveFlag(), addEventCaptureListener(), addEventCaptureListenerWithPassiveFlag(), addTrappedEventListener(), appendChild() (+188 more) +Cohesion: 0.02 +Nodes (184): accumulateOrCreateContinuousQueuedReplayableEvent(), addEventBubbleListener(), addEventBubbleListenerWithPassiveFlag(), addEventCaptureListener(), addEventCaptureListenerWithPassiveFlag(), addTrappedEventListener(), assertIsMounted(), attemptExplicitHydrationTarget() (+176 more) ### Community 21 - "react.js" Cohesion: 0.02 -Nodes (191): accumulateOrCreateContinuousQueuedReplayableEvent(), addEventBubbleListener(), addEventBubbleListenerWithPassiveFlag(), addEventCaptureListener(), addEventCaptureListenerWithPassiveFlag(), addTrappedEventListener(), appendChild(), appendChildToContainer() (+183 more) +Nodes (165): addEventBubbleListener(), addEventBubbleListenerWithPassiveFlag(), addEventCaptureListener(), addEventCaptureListenerWithPassiveFlag(), addTrappedEventListener(), appendChild(), appendChildToContainer(), appendInitialChild() (+157 more) ### Community 22 - "ThingtimeWatchStore" Cohesion: 0.02 -Nodes (124): CaseIterable, Data, String, Data, Error, UNNotification, UNNotificationPresentationOptions, UNNotificationResponse (+116 more) +Nodes (141): App, CaseIterable, Identifiable, Scene, ThingtimeApp, Scene, ThingtimeWatchApp, Data (+133 more) ### Community 23 - "react.js" -Cohesion: 0.01 -Nodes (193): accumulateOrCreateContinuousQueuedReplayableEvent(), addEventBubbleListener(), addEventBubbleListenerWithPassiveFlag(), addEventCaptureListener(), addEventCaptureListenerWithPassiveFlag(), addTrappedEventListener(), appendChild(), appendChildToContainer() (+185 more) +Cohesion: 0.02 +Nodes (158): accumulateOrCreateContinuousQueuedReplayableEvent(), addEventBubbleListener(), addEventBubbleListenerWithPassiveFlag(), addEventCaptureListener(), addEventCaptureListenerWithPassiveFlag(), addTrappedEventListener(), appendChild(), appendChildToContainer() (+150 more) ### Community 24 - "react.js" -Cohesion: 0.01 -Nodes (950): accumulateEnterLeaveListenersForEvent(), accumulateEnterLeaveTwoPhaseListeners(), accumulateOrCreateContinuousQueuedReplayableEvent(), accumulateSinglePhaseListeners(), accumulateTwoPhaseListeners(), act(), addEventBubbleListener(), addEventBubbleListenerWithPassiveFlag() (+942 more) +Cohesion: 0.02 +Nodes (195): accumulateEnterLeaveListenersForEvent(), accumulateEnterLeaveTwoPhaseListeners(), accumulateOrCreateContinuousQueuedReplayableEvent(), accumulateSinglePhaseListeners(), addEventBubbleListener(), addEventBubbleListenerWithPassiveFlag(), addEventCaptureListener(), addEventCaptureListenerWithPassiveFlag() (+187 more) ### Community 25 - "react.js" Cohesion: 0.02 -Nodes (185): accumulateOrCreateContinuousQueuedReplayableEvent(), addEventBubbleListener(), addEventBubbleListenerWithPassiveFlag(), addEventCaptureListener(), addEventCaptureListenerWithPassiveFlag(), addTrappedEventListener(), appendChild(), appendChildToContainer() (+177 more) +Nodes (158): addEventBubbleListener(), addEventBubbleListenerWithPassiveFlag(), addEventCaptureListener(), addEventCaptureListenerWithPassiveFlag(), addTrappedEventListener(), appendChild(), appendChildToContainer(), appendInitialChild() (+150 more) ### Community 26 - "react.js" Cohesion: 0.02 -Nodes (169): accumulateEnterLeaveTwoPhaseListeners(), accumulateOrCreateContinuousQueuedReplayableEvent(), addEventBubbleListener(), addEventBubbleListenerWithPassiveFlag(), addEventCaptureListener(), addEventCaptureListenerWithPassiveFlag(), addTrappedEventListener(), assertIsMounted() (+161 more) +Nodes (159): addEventBubbleListener(), addEventBubbleListenerWithPassiveFlag(), addEventCaptureListener(), addEventCaptureListenerWithPassiveFlag(), addTrappedEventListener(), batchedUpdates(), callCallback(), canHydrateInstance() (+151 more) -### Community 27 - "emojiSearch.ts" -Cohesion: 0.50 -Nodes (3): emojiByEmoji, EmojiMetadata, emojiTokensForSearchTerm() +### Community 27 - "ensureRootIsScheduled" +Cohesion: 0.03 +Nodes (101): addFiberToLanesMap(), attemptContinuousHydration$1(), attemptHydrationAtCurrentPriority$1(), attemptSynchronousHydration$1(), cancelCallback$1(), captureCommitPhaseErrorOnRoot(), checkForNestedUpdates(), checkIfSnapshotChanged() (+93 more) ### Community 28 - "react.js" -Cohesion: 0.01 -Nodes (193): accumulateEnterLeaveTwoPhaseListeners(), accumulateOrCreateContinuousQueuedReplayableEvent(), addEventBubbleListener(), addEventBubbleListenerWithPassiveFlag(), addEventCaptureListener(), addEventCaptureListenerWithPassiveFlag(), addTrappedEventListener(), appendChild() (+185 more) +Cohesion: 0.02 +Nodes (166): addEventBubbleListener(), addEventBubbleListenerWithPassiveFlag(), addEventCaptureListener(), addEventCaptureListenerWithPassiveFlag(), addTrappedEventListener(), appendChild(), appendChildToContainer(), appendInitialChild() (+158 more) ### Community 29 - "thingtime-bundle.js" Cohesion: 0.01 -Nodes (55): AlertIcon(), approximateRoot(), axisEquals(), boxEquals(), calcAngularFreq(), checkVariantsDidChange(), convertOffsetToTimes(), copyAxisInto() (+47 more) +Nodes (70): AlertIcon(), approximateRoot(), axisEquals(), boxEquals(), calcAngularFreq(), checkVariantsDidChange(), convertOffsetToTimes(), copyAxisInto() (+62 more) ### Community 30 - "thingtime-bundle.js" Cohesion: 0.01 -Nodes (56): AlertIcon(), approximateRoot(), axisEquals(), boxEquals(), calcAngularFreq(), checkVariantsDidChange(), convertOffsetToTimes(), copyAxisInto() (+48 more) +Nodes (54): AlertIcon(), approximateRoot(), axisEquals(), boxEquals(), calcAngularFreq(), checkVariantsDidChange(), convertOffsetToTimes(), copyAxisInto() (+46 more) ### Community 31 - "thingtime-bundle.js" Cohesion: 0.01 -Nodes (56): AlertIcon(), approximateRoot(), axisEquals(), boxEquals(), calcAngularFreq(), checkVariantsDidChange(), convertOffsetToTimes(), copyAxisInto() (+48 more) +Nodes (64): AlertIcon(), animateList(), approximateRoot(), axisEquals(), boxEquals(), calcAngularFreq(), checkVariantsDidChange(), convertOffsetToTimes() (+56 more) ### Community 32 - "thingtime-bundle.js" Cohesion: 0.01 -Nodes (55): AlertIcon(), approximateRoot(), axisEquals(), boxEquals(), calcAngularFreq(), checkVariantsDidChange(), convertOffsetToTimes(), copyAxisInto() (+47 more) +Nodes (56): AlertIcon(), approximateRoot(), axisEquals(), boxEquals(), calcAngularFreq(), checkVariantsDidChange(), convertOffsetToTimes(), copyAxisInto() (+48 more) ### Community 33 - "subspaces.ts" -Cohesion: 0.03 -Nodes (207): emitNotificationsBulk(), accessOf(), assertSubspaceInteraction(), assertSubspacePosting(), AuthorFlairs, banMessage(), canModerate(), Fail (+199 more) +Cohesion: 0.02 +Nodes (262): DeploymentSyncMode, SavedDeploymentLink, authTokenFromSetCookies(), ipv4Blocked(), ipv6Blocked(), ipv6Groups(), isBlockedDeploymentAddress(), isBlockedDeploymentHostname() (+254 more) ### Community 34 - "thingtime-bundle.js" Cohesion: 0.01 -Nodes (55): AlertIcon(), approximateRoot(), axisEquals(), boxEquals(), calcAngularFreq(), checkVariantsDidChange(), convertOffsetToTimes(), copyAxisInto() (+47 more) +Nodes (67): AlertIcon(), approximateRoot(), axisEquals(), boxEquals(), calcAngularFreq(), checkVariantsDidChange(), convertOffsetToTimes(), copyAxisInto() (+59 more) ### Community 35 - "thingtime-bundle.js" Cohesion: 0.01 -Nodes (65): AlertIcon(), approximateRoot(), axisEquals(), boxEquals(), calcAngularFreq(), checkVariantsDidChange(), convertOffsetToTimes(), copyAxisInto() (+57 more) +Nodes (56): AlertIcon(), approximateRoot(), axisEquals(), boxEquals(), calcAngularFreq(), checkVariantsDidChange(), convertOffsetToTimes(), copyAxisInto() (+48 more) ### Community 36 - "thingtime-bundle.js" Cohesion: 0.01 -Nodes (59): AlertIcon(), axisEquals(), boxEquals(), checkVariantsDidChange(), convertOffsetToTimes(), copyAxisInto(), copyBoxInto(), createMixers() (+51 more) +Nodes (69): AlertIcon(), animateList(), axisEquals(), boxEquals(), checkVariantsDidChange(), convertOffsetToTimes(), copyAxisInto(), copyBoxInto() (+61 more) ### Community 37 - "thingtime-bundle.js" Cohesion: 0.01 -Nodes (65): AlertIcon(), approximateRoot(), axisEquals(), boxEquals(), calcAngularFreq(), checkVariantsDidChange(), convertOffsetToTimes(), copyAxisInto() (+57 more) +Nodes (54): AlertIcon(), approximateRoot(), axisEquals(), boxEquals(), calcAngularFreq(), checkVariantsDidChange(), convertOffsetToTimes(), copyAxisInto() (+46 more) ### Community 38 - "thingtime-bundle.js" Cohesion: 0.01 -Nodes (65): AlertIcon(), approximateRoot(), axisEquals(), boxEquals(), calcAngularFreq(), checkVariantsDidChange(), convertOffsetToTimes(), copyAxisInto() (+57 more) +Nodes (66): AlertIcon(), approximateRoot(), axisEquals(), boxEquals(), calcAngularFreq(), checkVariantsDidChange(), convertOffsetToTimes(), copyAxisInto() (+58 more) ### Community 39 - "thingtime-bundle.js" Cohesion: 0.01 -Nodes (56): AlertIcon(), approximateRoot(), axisEquals(), boxEquals(), calcAngularFreq(), checkVariantsDidChange(), convertOffsetToTimes(), copyAxisInto() (+48 more) +Nodes (67): AlertIcon(), approximateRoot(), axisEquals(), boxEquals(), calcAngularFreq(), checkVariantsDidChange(), convertOffsetToTimes(), copyAxisInto() (+59 more) ### Community 40 - "thingtime-bundle.js" Cohesion: 0.01 -Nodes (66): AlertIcon(), approximateRoot(), axisEquals(), boxEquals(), calcAngularFreq(), checkVariantsDidChange(), convertOffsetToTimes(), copyAxisInto() (+58 more) +Nodes (64): AlertIcon(), animateList(), approximateRoot(), axisEquals(), boxEquals(), calcAngularFreq(), checkVariantsDidChange(), convertOffsetToTimes() (+56 more) -### Community 41 - "patTokens.ts" -Cohesion: 0.03 -Nodes (133): userOwnsLinkedAccount(), mintSandboxToken(), SandboxTokenGrant, findLiveRosterDoc(), getCookieAuthToken(), mergeAccountSession(), mintAccountToken(), mutateRoster() (+125 more) +### Community 41 - "accounts.ts" +Cohesion: 0.05 +Nodes (71): CookieOptions, userOwnsLinkedAccount(), AccountHint, AccountHintUser, resolveAccountHints(), ResolvedAccountHints, resolveOwnOriginHints(), toHintUser() (+63 more) ### Community 42 - "passkeys.ts" -Cohesion: 0.03 -Nodes (110): CookieOptions, createCookie(), getEs256SigningKey(), getEs256VerifyKey(), getJwtKeyId(), getLegacySecret(), getPrivateKeyPem(), getPublicJwk() (+102 more) +Cohesion: 0.05 +Nodes (69): createCookie(), PASSKEY_PROVIDER_NAMES, PASSKEY_PROVIDERS, providerNameForAaguid(), boundedTrimmed(), consumePasskeyChallenge(), deletePasskey(), deriveWebAuthnParams() (+61 more) ### Community 43 - "RecoveryComponent" Cohesion: 0.03 -Nodes (114): CodingKey, Hashable, HTTPURLResponse, Scene, ThingtimeRecoveryApp, RecoveryBuildMetadata, RecoveryProduct, commander (+106 more) +Nodes (115): CodingKey, Hashable, HTTPURLResponse, Scene, ThingtimeRecoveryApp, RecoveryBuildMetadata, RecoveryRelease, URL (+107 more) ### Community 44 - "thingtime-bundle.js" Cohesion: 0.01 -Nodes (64): AlertIcon(), animateList(), approximateRoot(), axisEquals(), boxEquals(), calcAngularFreq(), checkVariantsDidChange(), convertOffsetToTimes() (+56 more) +Nodes (66): AlertIcon(), approximateRoot(), axisEquals(), boxEquals(), calcAngularFreq(), checkVariantsDidChange(), convertOffsetToTimes(), copyAxisInto() (+58 more) -### Community 45 - "COLLECTION_SCHEMA_VERSIONS" +### Community 45 - "notifications.ts" Cohesion: 0.03 -Nodes (134): redirect(), resolveTrustedOrigin(), ENV_KEYS, origin(), toOrigin(), vercelDeploymentOrigin(), consumeOtpChallenge(), ConsumeOtpResult (+126 more) +Nodes (131): consumeOtpChallenge(), ConsumeOtpResult, createOtpChallenge(), deleteOtpChallenge(), generateOtpCode(), hashOtpCode(), OtpPurpose, shouldShowDevVerificationLink() (+123 more) -### Community 46 - "behaviourSuites.ts" -Cohesion: 0.03 -Nodes (75): runListDemos(), DEMO_KINDS, ListedBehaviourSuite, ListedWebpageDemo, listWebpageDemos(), ListWebpageDemosResult, seededDemoShareIds(), APP_SUITES (+67 more) +### Community 46 - "DemoDetailPage.tsx" +Cohesion: 0.02 +Nodes (168): POKEWORLD_SPECIES_SEED, pickDemoPage(), runGetDemo(), DEMO_KINDS, ListedBehaviourSuite, ListedWebpageDemo, listWebpageDemos(), ListWebpageDemosResult (+160 more) ### Community 47 - "users.ts" -Cohesion: 0.03 -Nodes (127): AdminAppOverviewRow, AdminAppOverviewSnapshot, AdminAppsCursor, AdminStorageOverview, AdminUserOverviewRow, AdminUserOverviewSnapshot, listAdminAppsOverview(), listAdminUsersOverview() (+119 more) +Cohesion: 0.02 +Nodes (203): AdminAppOverviewRow, AdminAppOverviewSnapshot, AdminAppsCursor, AdminStorageOverview, AdminUserOverviewRow, AdminUserOverviewSnapshot, listAdminAppsOverview(), listAdminUsersOverview() (+195 more) ### Community 48 - "PostComposer.tsx" Cohesion: 0.02 -Nodes (182): CapabilityManifest, requireThingtimeCapability(), AttachmentAnnotatePopover(), AttachmentAnnotatePopoverProps, AttachmentComposerInner, AttachmentComposerProps, uploadDisplayName(), UploadFileRow (+174 more) +Nodes (171): AttachmentAnnotatePopover(), AttachmentAnnotatePopoverProps, AttachmentComposerInner, AttachmentComposerProps, uploadDisplayName(), UploadFileRow, uploadMediaKind(), UploadReorderProps (+163 more) ### Community 49 - "accounting.ts" Cohesion: 0.02 -Nodes (159): pathNeighbours(), AI_MODEL_CATALOG_IDS, addCacheTokens(), AI_MODEL_PRICING, AiModelPrice, AiModelPricingPublic, anthropic(), creditsToMicros() (+151 more) +Nodes (174): pathNeighbours(), AI_MODEL_CATALOG_IDS, addCacheTokens(), AI_MODEL_PRICING, AiModelPrice, AiModelPricingPublic, anthropic(), creditsToMicros() (+166 more) ### Community 50 - "collections.ts" -Cohesion: 0.04 -Nodes (103): asText(), configuredGenericHosts(), EndpointInput, EndpointProvider, EndpointWriteMode, isUnsafeHostname(), methodForOperation(), normalizeEndpointInput() (+95 more) +Cohesion: 0.03 +Nodes (112): buildMongoshSnippet(), costOf(), generatePassword(), hashPasswordForStorage(), HashPasswordInput, HashPasswordResult, getMigrationStatus(), legacyResidue() (+104 more) -### Community 51 - "lopuPosition.ts" -Cohesion: 0.31 -Nodes (12): isLopuPosition(), LOPU_POSITION_LABELS, LOPU_POSITIONS, LopuContainerStyle, LopuPosition, lopuToastPlacement(), normalizeLopuPosition(), readLopuPositionCache() (+4 more) +### Community 51 - "mergeLanes" +Cohesion: 0.04 +Nodes (75): attachRetryListener(), attemptContinuousHydration$1(), attemptHydrationAtCurrentPriority$1(), attemptSynchronousHydration$1(), batchedUpdates$1(), captureCommitPhaseErrorOnRoot(), checkForNestedUpdates(), checkIfSnapshotChanged() (+67 more) ### Community 52 - "analyzeText.ts" -Cohesion: 0.03 -Nodes (135): ANALYZABLE_IMAGE_CONTENT_TYPES, AnalyzeAttachmentDependencies, AnalyzeAttachmentResult, analyzeReadyAttachment, createAnalyzeReadyAttachment(), defaultDependencies(), defaultFetchBytes(), MODERATION_FLAG_THINGTIME (+127 more) +Cohesion: 0.02 +Nodes (136): ANALYZABLE_IMAGE_CONTENT_TYPES, AnalyzeAttachmentDependencies, AnalyzeAttachmentResult, analyzeReadyAttachment, createAnalyzeReadyAttachment(), defaultDependencies(), defaultFetchBytes(), MODERATION_FLAG_THINGTIME (+128 more) ### Community 53 - "useLopu" Cohesion: 0.01 -Nodes (409): SubscriptionTierDescriptor, AccountSwitcher(), OwnedAccount, RowAvatar(), AutoLoginPopup(), HIDDEN_PATHS, isThingtimeFamilyHost(), SwitcherAccount (+401 more) +Nodes (330): RunPanel(), useTtActionClicks(), ADMIN_TAB_STYLES, AdminDashboard(), APP_QUERY_FIELDS, AppRow, appRowId(), AppsTab() (+322 more) -### Community 54 - "error" -Cohesion: 0.03 -Nodes (159): act(), callComponentWillMount(), captureCommitPhaseError(), checkAttributeStringCoercion(), checkCSSPropertyStringCoercion(), checkFormFieldValueStringCoercion(), checkHtmlStringCoercion(), checkKeyStringCoercion() (+151 more) +### Community 54 - "captureCommitPhaseError" +Cohesion: 0.04 +Nodes (91): captureCommitPhaseError(), clearContainer(), clearSuspenseBoundary(), clearSuspenseBoundaryFromContainer(), commitAttachRef(), commitBeforeMutationEffects_complete(), commitBeforeMutationEffectsOnFiber(), commitDeletionEffects() (+83 more) ### Community 55 - "beginWork" -Cohesion: 0.06 -Nodes (90): adoptClassInstance(), applyDerivedStateFromProps(), bailoutHooks(), bailoutOnAlreadyFinishedWork(), beginWork(), cacheContext(), callComponentWillReceiveProps(), checkDidRenderIdHook() (+82 more) +Cohesion: 0.05 +Nodes (100): adoptClassInstance(), applyDerivedStateFromProps(), attemptEarlyBailoutIfNoScheduledUpdate(), bailoutHooks(), bailoutOnAlreadyFinishedWork(), beginWork(), cacheContext(), callComponentWillMount() (+92 more) ### Community 56 - "Foundation" -Cohesion: 0.03 -Nodes (74): AppKit, ApplicationServices, Combine, Commander, AccessibilityProbeResult, responded, timedOut, unavailable (+66 more) +Cohesion: 0.02 +Nodes (90): AppKit, ApplicationServices, CGPoint, Combine, Commander, ClosureMenuItem, NSCoder, String (+82 more) -### Community 57 - "ThingtimeWebDestination" -Cohesion: 0.04 -Nodes (55): Binding, EdgeInsets, Gesture, Identifiable, DeploymentPresentation, Color, String, DeploymentLoadStatus (+47 more) +### Community 57 - "ThingtimeWebDestinationTests" +Cohesion: 0.13 +Nodes (3): Any, Int, ThingtimeWebDestinationTests -### Community 58 - "WatchPairingPage.tsx" -Cohesion: 0.14 -Nodes (15): supportsWatchApproval(), WATCH_CODE_ENTRY_REQUIREMENTS, WATCH_QUICK_APPROVAL_REQUIREMENTS, WatchCodeField(), normalizeWatchCodeInput(), watchCodeSlotCount(), checkPairingSupport(), fetchJson() (+7 more) +### Community 58 - "Login.tsx" +Cohesion: 0.04 +Nodes (63): AccountHintOriginPresentation, accountHintOriginsSummary(), hostFromOrigin(), AccountHintRow(), HintAvatar(), hintDisplayName(), hintOriginsLabel(), AutoLoginPopup() (+55 more) ### Community 59 - "ThingtimeNativeNotifications" -Cohesion: 0.02 -Nodes (109): Character, Any, Bool, Int, Int64, String, ThingtimeWatchAttachmentMetadata, ThingtimeWatchAttachmentTransfer (+101 more) +Cohesion: 0.03 +Nodes (80): Any, Self, String, ThingtimeWatchApprovalHandoff, String, Any, Bool, Int (+72 more) -### Community 60 - "seed.ts" -Cohesion: 0.09 -Nodes (25): POKEWORLD_SPECIES_SEED, appContentDefinitions(), countSeededWebpages(), genuineSeeded(), SeedDefinition, seedDemoSuites(), seedDemoWebpages(), seededCount() (+17 more) +### Community 60 - "mergeLanes" +Cohesion: 0.05 +Nodes (67): attemptContinuousHydration$1(), attemptHydrationAtCurrentPriority$1(), attemptSynchronousHydration$1(), batchedUpdates$1(), captureCommitPhaseErrorOnRoot(), checkForNestedUpdates(), checkIfSnapshotChanged(), claimNextTransitionLane() (+59 more) -### Community 61 - "migrationDiagnostics.ts" -Cohesion: 0.11 -Nodes (35): fromBin(), buildMigrationDiagnosticThing(), createMigrationDiagnostic(), CreateMigrationDiagnosticInput, DiagnosticOutcome, findMigrationDiagnostic(), formatMigrationDiagnosticDetail(), getMigrationDiagnostic() (+27 more) +### Community 61 - "COLLECTION_SCHEMA_VERSIONS" +Cohesion: 0.06 +Nodes (57): redirect(), resolveTrustedOrigin(), ENV_KEYS, origin(), toOrigin(), vercelDeploymentOrigin(), consumeEmailVerification(), ConsumeResult (+49 more) ### Community 62 - "adminRowQuery.ts" Cohesion: 0.12 Nodes (32): adminFilterValueForOperatorChange(), adminRowFieldExists(), AdminRowFieldOption, adminRowMatchesFilter(), applyAdminRowQuery(), asBoolean(), asDateMs(), asNumber() (+24 more) -### Community 63 - "SearchPage.tsx" -Cohesion: 0.02 -Nodes (172): AdminRowField, AdminRowFieldKind, AdminRowQuery, AdminRowSort, ACCESSIBLE_OPERATOR_LABELS, AdminRowQueryControls(), AdminRowQueryControlsProps, DATE_OPERATOR_LABELS (+164 more) +### Community 63 - "SchemasBrowsePage.tsx" +Cohesion: 0.04 +Nodes (88): systemThingFields(), systemThingFields(), EmojiData, EmojiEntry, EmojiGroup, GROUP_TAB_EMOJI, loadEmojiData(), RawGroup (+80 more) -### Community 64 - "LopuHost.tsx" -Cohesion: 0.05 -Nodes (77): describeProviderKey(), EMPTY_DEFAULTS, KEY_STATE_MARKS, KEY_STATE_TONES, LopuModelsEditor(), normalizeDefaults(), PROVIDER_ENV_HINTS, PROVIDER_LABELS (+69 more) +### Community 64 - "ThingtimeWatchAttachmentUploader" +Cohesion: 0.07 +Nodes (37): Character, Any, Bool, Int, Int64, String, ThingtimeWatchAttachmentMetadata, ThingtimeWatchAttachmentTransfer (+29 more) ### Community 65 - "index.ts" Cohesion: 0.03 -Nodes (107): normalizedSettings(), ActionFilter, ActivitySettings, addRecentSearch(), Appearance, BootstrapResponse, boundedInteger(), BUILT_IN_COMMANDER_THINGTIME_CLIENT_IDS (+99 more) +Nodes (103): ActionFilter, ActivitySettings, addRecentSearch(), Appearance, BootstrapResponse, boundedInteger(), BUILT_IN_COMMANDER_THINGTIME_CLIENT_IDS, CalculationResult (+95 more) -### Community 66 - "kindRenderersCommerce.tsx" -Cohesion: 0.03 -Nodes (122): ActiveBurst, activeBursts, leadingEmoji(), removeBurst(), splashEmoji(), BodyText(), cardShell, CardTitle() (+114 more) +### Community 66 - "kindRenderersPlanning.tsx" +Cohesion: 0.04 +Nodes (88): ActiveBurst, activeBursts, leadingEmoji(), removeBurst(), splashEmoji(), BodyText(), cardShell, CardTitle() (+80 more) -### Community 67 - "Sendable" -Cohesion: 0.05 -Nodes (54): AudioDeviceID, AudioObjectPropertyScope, AudioObjectPropertySelector, AudioToolbox, Codable, CoreAudio, CoreWLAN, Equatable (+46 more) +### Community 67 - "String" +Cohesion: 0.04 +Nodes (86): AudioDeviceID, AudioObjectPropertyScope, AudioObjectPropertySelector, AudioToolbox, Codable, LauncherWindowMode, compact, standard (+78 more) ### Community 68 - "beginWork" -Cohesion: 0.06 -Nodes (93): adoptClassInstance(), applyDerivedStateFromProps(), attemptEarlyBailoutIfNoScheduledUpdate(), bailoutHooks(), bailoutOnAlreadyFinishedWork(), beginWork(), cacheContext(), callComponentWillReceiveProps() (+85 more) +Cohesion: 0.05 +Nodes (105): adoptClassInstance(), applyDerivedStateFromProps(), attemptEarlyBailoutIfNoScheduledUpdate(), bailoutHooks(), bailoutOnAlreadyFinishedWork(), beginWork(), cacheContext(), callComponentWillMount() (+97 more) ### Community 69 - "voice.ts" Cohesion: 0.04 -Nodes (100): LopuDebitResult, LopuUsageInput, blockedIpv4, blockedIpv6, CLAUDE_REASONING, defaultVaultProviderModel(), GOOGLE_REASONING, isBlockedLopuProviderHostname() (+92 more) +Nodes (102): LopuDebitResult, LopuUsageInput, vaultClientOptions(), blockedIpv4, blockedIpv6, CLAUDE_REASONING, defaultVaultProviderModel(), GOOGLE_REASONING (+94 more) ### Community 70 - "lopuChatStore.ts" -Cohesion: 0.04 -Nodes (117): applyLopuPartialPageOps(), applyLopuPatchEvent(), applyPageOps(), describeActiveWebpageDraft(), discardLopuPartialComponent(), discardLopuPartialPageOps(), getActiveWebpageDraft(), getWebpageDraftsVersion() (+109 more) +Cohesion: 0.01 +Nodes (302): ActionRunArgs, buildActionRunBody(), describeProviderKey(), EMPTY_DEFAULTS, KEY_STATE_MARKS, KEY_STATE_TONES, LopuModelsEditor(), normalizeDefaults() (+294 more) -### Community 71 - "ThingtimeNodeError" -Cohesion: 0.03 -Nodes (98): IOPMAssertionID, DirectParentAuthenticator, OneShotReply, Bool, Data, Double, Never, pid_t (+90 more) +### Community 71 - "diffHydratedProperties" +Cohesion: 0.06 +Nodes (62): assertValidProps(), checkControlledValueProps(), checkSelectPropTypes(), createDangerousStringForStyles(), dangerousStyleValue(), diffHydratedProperties(), diffProperties(), finalizeInitialChildren() (+54 more) ### Community 72 - "beginWork" -Cohesion: 0.06 -Nodes (87): adoptClassInstance(), applyDerivedStateFromProps(), attemptEarlyBailoutIfNoScheduledUpdate(), bailoutHooks(), bailoutOnAlreadyFinishedWork(), beginWork(), cacheContext(), callComponentWillMount() (+79 more) +Cohesion: 0.05 +Nodes (98): adoptClassInstance(), applyDerivedStateFromProps(), attemptEarlyBailoutIfNoScheduledUpdate(), bailoutHooks(), bailoutOnAlreadyFinishedWork(), beginWork(), cacheContext(), callComponentWillReceiveProps() (+90 more) -### Community 73 - "messengerTypes.ts" -Cohesion: 0.04 -Nodes (99): AttachmentComposer, AttachmentComposerHandle, AttachmentComposerSnapshot, useDeviceApi(), timeAgo(), AgentComposerControls(), AgentComposerControlState, AgentSendMode (+91 more) +### Community 73 - "readLocalCache" +Cohesion: 0.02 +Nodes (173): AccountSwitcher(), OwnedAccount, RowAvatar(), SwitcherAccount, SwitcherAccountUser, useAccountSwitcher(), CHIP_STYLES, EntryCard() (+165 more) ### Community 74 - "beginWork" Cohesion: 0.05 -Nodes (107): adoptClassInstance(), applyDerivedStateFromProps(), attemptEarlyBailoutIfNoScheduledUpdate(), bailoutHooks(), bailoutOnAlreadyFinishedWork(), beginWork(), cacheContext(), callComponentWillReceiveProps() (+99 more) +Nodes (96): adoptClassInstance(), applyDerivedStateFromProps(), attemptEarlyBailoutIfNoScheduledUpdate(), bailoutHooks(), bailoutOnAlreadyFinishedWork(), beginWork(), cacheContext(), callComponentWillReceiveProps() (+88 more) ### Community 75 - "beginWork" Cohesion: 0.05 -Nodes (103): adoptClassInstance(), applyDerivedStateFromProps(), attemptEarlyBailoutIfNoScheduledUpdate(), bailoutHooks(), bailoutOnAlreadyFinishedWork(), beginWork(), cacheContext(), callComponentWillMount() (+95 more) +Nodes (97): adoptClassInstance(), applyDerivedStateFromProps(), attemptEarlyBailoutIfNoScheduledUpdate(), bailoutHooks(), bailoutOnAlreadyFinishedWork(), beginWork(), cacheContext(), callComponentWillReceiveProps() (+89 more) ### Community 76 - "beginWork" Cohesion: 0.06 -Nodes (92): adoptClassInstance(), applyDerivedStateFromProps(), attemptEarlyBailoutIfNoScheduledUpdate(), bailoutHooks(), bailoutOnAlreadyFinishedWork(), beginWork(), cacheContext(), callComponentWillReceiveProps() (+84 more) +Nodes (89): adoptClassInstance(), applyDerivedStateFromProps(), attemptEarlyBailoutIfNoScheduledUpdate(), bailoutHooks(), bailoutOnAlreadyFinishedWork(), beginWork(), cacheContext(), callComponentWillReceiveProps() (+81 more) ### Community 77 - "mergeLanes" Cohesion: 0.04 -Nodes (78): attachRetryListener(), attemptContinuousHydration$1(), attemptHydrationAtCurrentPriority$1(), attemptSynchronousHydration$1(), batchedUpdates$1(), captureCommitPhaseErrorOnRoot(), checkForNestedUpdates(), checkIfSnapshotChanged() (+70 more) +Nodes (79): attachRetryListener(), attemptContinuousHydration$1(), attemptHydrationAtCurrentPriority$1(), attemptSynchronousHydration$1(), batchedUpdates$1(), captureCommitPhaseErrorOnRoot(), checkForNestedUpdates(), checkIfSnapshotChanged() (+71 more) ### Community 78 - "beginWork" -Cohesion: 0.03 -Nodes (136): addSubtreeSuspenseContext(), adoptClassInstance(), applyDerivedStateFromProps(), attemptEarlyBailoutIfNoScheduledUpdate(), bailoutHooks(), bailoutOnAlreadyFinishedWork(), beginWork(), cacheContext() (+128 more) +Cohesion: 0.05 +Nodes (97): adoptClassInstance(), applyDerivedStateFromProps(), attemptEarlyBailoutIfNoScheduledUpdate(), bailoutHooks(), bailoutOnAlreadyFinishedWork(), beginWork(), cacheContext(), callComponentWillReceiveProps() (+89 more) ### Community 79 - "scripts" Cohesion: 0.02 -Nodes (102): scripts, branding-assets, build, build:client, build:embed, build:server, dev, dev:nitro (+94 more) +Nodes (103): scripts, branding-assets, build, build:client, build:embed, build:server, dev, dev:nitro (+95 more) ### Community 80 - "lib.rs" Cohesion: 0.06 Nodes (88): action_filter_applies_any_all_and_none_constraints(), ActionFilter, app_name_word_boost_requires_complete_words_not_substrings_or_typos(), best_contiguous_match(), best_edit_cell(), Cell, cell_is_better(), character_overlap() (+80 more) ### Community 81 - "namespace.ts" -Cohesion: 0.05 -Nodes (96): appStoragePolicyOf(), admitAppAndUserStorage(), AppStorageReservation, DualStorageAdmission, effectiveAppUserAllowance(), FiniteStorageUsage, remainingStorageBytes(), storageUsage (+88 more) - -### Community 82 - "notifications.ts" Cohesion: 0.04 -Nodes (77): findUsersByUsernames(), getUserNotificationPrefs(), PublicProfile, ACTIONS, ApnsConfig, base64url(), buildApnsPayload(), notificationURL() (+69 more) +Nodes (108): APP_DATA_KEY_RE, AppDataEntry, AppDataVisibility, AppDataWriteConflict, buildKeyFilter(), decodeCursor(), decodeKeyCursor(), deleteAppData() (+100 more) + +### Community 82 - "completeWork" +Cohesion: 0.06 +Nodes (52): checkForUnmatchedText(), commitUpdate(), completeWork(), createInstance(), createTextInstance(), createTextNode(), cutOffTailIfNeeded(), didNotMatchHydratedContainerTextInstance() (+44 more) ### Community 83 - "error" Cohesion: 0.03 -Nodes (126): act(), callComponentWillMount(), captureCommitPhaseError(), clearContainer(), clearSuspenseBoundary(), clearSuspenseBoundaryFromContainer(), coerceRef(), commitAttachRef() (+118 more) +Nodes (136): act(), callComponentWillMount(), captureCommitPhaseError(), checkAttributeStringCoercion(), checkCSSPropertyStringCoercion(), checkFormFieldValueStringCoercion(), checkHtmlStringCoercion(), checkKeyStringCoercion() (+128 more) -### Community 84 - "lopuProviderCore.ts" -Cohesion: 0.06 -Nodes (48): LopuChatDefaults, LopuChatSettings, LopuComposer(), LopuComposerPreferences, LopuComposerProps, describeModelChoice(), LopuModelPicker(), LopuModelPickerProps (+40 more) - -### Community 85 - "String" +### Community 84 - "dispatchEventWithEnableCapturePhaseSelectiveHydrationWithoutDiscreteEventReplay" Cohesion: 0.05 -Nodes (55): AXUIElement, Fixture, AccessibilityChildrenPage, AccessibilityElementMetadata, AccessibilityElementReference, AccessibilityTextValue, DesktopChatAccessibilityBackend, DesktopChatAccessibilityCapabilities (+47 more) +Nodes (50): accumulateOrCreateContinuousQueuedReplayableEvent(), assertIsMounted(), attemptExplicitHydrationTarget(), attemptReplayContinuousQueuedEvent(), attemptReplayContinuousQueuedEventInMap(), attemptSynchronousHydration(), batchedUpdates(), clearIfContinuousEvent() (+42 more) + +### Community 85 - "AccessibilityElementReference" +Cohesion: 0.06 +Nodes (43): AXUIElement, Fixture, AccessibilityElementMetadata, AccessibilityElementReference, DesktopChatAccessibilityBackend, DesktopChatAccessibilityConnector, DesktopChatAccessibilityError, actionUnavailable (+35 more) ### Community 86 - "mapIntoArray" -Cohesion: 0.17 -Nodes (16): checkDepsAreArrayDev(), cloneAndReplaceKey(), cloneElementWithValidation(), escape(), escapeUserProvidedKey(), getCurrentComponentErrorInfo(), getElementKey(), getIteratorFn() (+8 more) +Cohesion: 0.11 +Nodes (25): checkDepsAreArrayDev(), cloneAndReplaceKey(), cloneElementWithValidation(), createElementWithValidation(), escape(), escapeUserProvidedKey(), getCurrentComponentErrorInfo(), getElementKey() (+17 more) ### Community 87 - "completeWork" -Cohesion: 0.04 -Nodes (77): addSubtreeSuspenseContext(), bubbleProperties(), checkForUnmatchedText(), commitUpdate(), completeDehydratedSuspenseBoundary(), completeWork(), createCapturedValue(), createInstance() (+69 more) +Cohesion: 0.06 +Nodes (52): bubbleProperties(), checkForUnmatchedText(), commitUpdate(), completeDehydratedSuspenseBoundary(), completeWork(), createInstance(), createTextInstance(), createTextNode() (+44 more) -### Community 88 - "throwException" -Cohesion: 0.05 -Nodes (52): attachPingListener(), attachRetryListener(), attachSuspenseRetryListeners(), createContainer(), createContext(), createFactoryWithValidation(), createFiberRoot(), createHostRootFiber() (+44 more) +### Community 88 - "error" +Cohesion: 0.04 +Nodes (93): act(), checkAttributeStringCoercion(), checkCSSPropertyStringCoercion(), checkDepsAreArrayDev(), checkFormFieldValueStringCoercion(), checkHtmlStringCoercion(), checkKeyStringCoercion(), checkPropStringCoercion() (+85 more) -### Community 89 - "error" +### Community 89 - "commitRootImpl" Cohesion: 0.04 -Nodes (98): act(), checkAttributeStringCoercion(), checkCSSPropertyStringCoercion(), checkDepsAreArrayDev(), checkFormFieldValueStringCoercion(), checkHtmlStringCoercion(), checkKeyStringCoercion(), checkPropStringCoercion() (+90 more) +Nodes (72): commitLayoutEffects(), commitLayoutEffects_begin(), commitPassiveEffectDurations(), commitPassiveMountEffects(), commitPassiveMountEffects_begin(), commitPassiveUnmountEffects(), commitRoot(), commitRootImpl() (+64 more) -### Community 90 - "String" -Cohesion: 0.08 -Nodes (38): Arc, BTreeMap, application_kind(), candidate_from_entry(), CandidateRecord, CustomIgnoreMatcher, default_query_limit(), emit_index_progress() (+30 more) +### Community 90 - ".index_source" +Cohesion: 0.09 +Nodes (29): Arc, BTreeMap, CustomIgnoreMatcher, descendant_globs_also_prune_the_matching_directory(), duration_ms(), emit_index_progress(), IgnoreRule, IgnoreRuleKind (+21 more) ### Community 91 - "mergeLanes" Cohesion: 0.04 -Nodes (83): attachRetryListener(), attemptContinuousHydration$1(), attemptHydrationAtCurrentPriority$1(), attemptSynchronousHydration$1(), batchedUpdates$1(), captureCommitPhaseErrorOnRoot(), checkForNestedUpdates(), checkIfSnapshotChanged() (+75 more) +Nodes (88): attachRetryListener(), attemptContinuousHydration$1(), attemptHydrationAtCurrentPriority$1(), attemptSynchronousHydration$1(), batchedUpdates$1(), captureCommitPhaseErrorOnRoot(), checkForNestedUpdates(), checkIfSnapshotChanged() (+80 more) ### Community 92 - "beginWork" Cohesion: 0.05 -Nodes (103): adoptClassInstance(), applyDerivedStateFromProps(), attemptEarlyBailoutIfNoScheduledUpdate(), bailoutHooks(), bailoutOnAlreadyFinishedWork(), beginWork(), cacheContext(), callComponentWillReceiveProps() (+95 more) +Nodes (103): adoptClassInstance(), applyDerivedStateFromProps(), attemptEarlyBailoutIfNoScheduledUpdate(), bailoutHooks(), bailoutOnAlreadyFinishedWork(), beginWork(), cacheContext(), callComponentWillMount() (+95 more) ### Community 93 - "beginWork" Cohesion: 0.05 @@ -2236,15 +2229,15 @@ Nodes (97): adoptClassInstance(), applyDerivedStateFromProps(), attemptEarlyBail ### Community 94 - "ensureRootIsScheduled" Cohesion: 0.05 -Nodes (67): addFiberToLanesMap(), attachPingListener(), attachRetryListener(), attachSuspenseRetryListeners(), cancelCallback$1(), computeExpirationTime(), enqueueCapturedUpdate(), ensureRootIsScheduled() (+59 more) +Nodes (64): addFiberToLanesMap(), attachPingListener(), attachRetryListener(), attachSuspenseRetryListeners(), cancelCallback$1(), computeExpirationTime(), enqueueCapturedUpdate(), ensureRootIsScheduled() (+56 more) -### Community 95 - "SystemControls.swift" -Cohesion: 0.05 -Nodes (39): AVFoundation, CGDisplayConfigRef, CGDisplayMode, CGError, IOBluetooth, IOKit.ps, IOKit.pwr_mgt, Scope (+31 more) +### Community 95 - "SafeActionKind" +Cohesion: 0.02 +Nodes (97): AVFoundation, CGDisplayConfigRef, CGDisplayMode, CGError, CGEventSource, IOBluetooth, IOKit.ps, IOKit.pwr_mgt (+89 more) ### Community 96 - "error" Cohesion: 0.03 -Nodes (135): act(), callComponentWillMount(), captureCommitPhaseError(), checkAttributeStringCoercion(), checkCSSPropertyStringCoercion(), checkFormFieldValueStringCoercion(), checkHtmlStringCoercion(), checkKeyStringCoercion() (+127 more) +Nodes (140): act(), callComponentWillMount(), captureCommitPhaseError(), checkAttributeStringCoercion(), checkCSSPropertyStringCoercion(), checkFormFieldValueStringCoercion(), checkHtmlStringCoercion(), checkKeyStringCoercion() (+132 more) ### Community 97 - "ensureRootIsScheduled" Cohesion: 0.05 @@ -2252,195 +2245,195 @@ Nodes (67): addFiberToLanesMap(), attachPingListener(), attachRetryListener(), a ### Community 98 - "beginWork" Cohesion: 0.06 -Nodes (87): adoptClassInstance(), applyDerivedStateFromProps(), attemptEarlyBailoutIfNoScheduledUpdate(), bailoutHooks(), bailoutOnAlreadyFinishedWork(), beginWork(), cacheContext(), callComponentWillMount() (+79 more) +Nodes (92): adoptClassInstance(), applyDerivedStateFromProps(), attemptEarlyBailoutIfNoScheduledUpdate(), bailoutHooks(), bailoutOnAlreadyFinishedWork(), beginWork(), cacheContext(), callComponentWillMount() (+84 more) -### Community 99 - "updateDehydratedSuspenseComponent" -Cohesion: 0.08 -Nodes (32): addSubtreeSuspenseContext(), createCapturedValue(), createFiberFromFragment(), createFiberFromOffscreen(), findFirstSuspended(), findLastContentRow(), getRemainingWorkInPrimaryTree(), getSuspendedCache() (+24 more) +### Community 99 - "completeWork" +Cohesion: 0.04 +Nodes (77): addSubtreeSuspenseContext(), checkForUnmatchedText(), commitUpdate(), completeWork(), createCapturedValue(), createFiberFromFragment(), createFiberFromOffscreen(), createInstance() (+69 more) ### Community 100 - "mergeLanes" -Cohesion: 0.07 -Nodes (47): attemptContinuousHydration$1(), attemptHydrationAtCurrentPriority$1(), attemptSynchronousHydration$1(), batchedUpdates$1(), checkForNestedUpdates(), checkIfSnapshotChanged(), claimNextTransitionLane(), dispatchReducerAction() (+39 more) +Cohesion: 0.04 +Nodes (77): attachRetryListener(), attemptContinuousHydration$1(), attemptHydrationAtCurrentPriority$1(), attemptSynchronousHydration$1(), batchedUpdates$1(), captureCommitPhaseErrorOnRoot(), checkForNestedUpdates(), checkIfSnapshotChanged() (+69 more) -### Community 101 - "commitRootImpl" +### Community 101 - "ensureRootIsScheduled" Cohesion: 0.04 -Nodes (92): addFiberToLanesMap(), attachPingListener(), attachSuspenseRetryListeners(), cancelCallback$1(), commitPassiveMountEffects(), commitPassiveMountEffects_begin(), commitPassiveUnmountEffects(), commitRoot() (+84 more) +Nodes (83): addFiberToLanesMap(), attachPingListener(), attachRetryListener(), attachSuspenseRetryListeners(), cancelCallback$1(), computeExpirationTime(), createClassErrorUpdate(), createRootErrorUpdate() (+75 more) -### Community 102 - "LongTextEditor.tsx" -Cohesion: 0.07 -Nodes (39): watchEditorBlockChrome(), EditorHistoryControls(), EditorHistoryHandle, HistoryAction, createOrderedEditorJsChangeQueue(), OrderedEditorJsChangeQueue, OrderedEditorJsChangeQueueOptions, SaveResult (+31 more) +### Community 102 - "editorBlockChrome.ts" +Cohesion: 0.28 +Nodes (14): watchEditorBlockChrome(), inlineToolbarPosition(), layoutEditorJsInlineToolbar(), watchEditorJsInlinePosition(), editorOverlayBounds(), editorTextObstacles(), moveEditorOverlay(), overlayIntersects() (+6 more) ### Community 103 - "create" -Cohesion: 0.29 -Nodes (7): imperativeHandleEffect(), imperativeHandleEffect(), imperativeHandleEffect(), imperativeHandleEffect(), imperativeHandleEffect(), imperativeHandleEffect(), create() +Cohesion: 0.18 +Nodes (12): imperativeHandleEffect(), imperativeHandleEffect(), imperativeHandleEffect(), imperativeHandleEffect(), imperativeHandleEffect(), basic(), clone(), create() (+4 more) ### Community 104 - "index.ts" Cohesion: 0.05 Nodes (87): CATEGORY_WEIGHT, Transit, ASPECT_CLAUSE, daySummary(), houseLine(), MOON_MOOD, moonLine(), PHASE_TONE (+79 more) -### Community 105 - "commitRootImpl" -Cohesion: 0.04 -Nodes (75): cancelCallback$1(), commitRoot(), commitRootImpl(), computeExpirationTime(), discreteUpdates(), dispatchContinuousEvent(), dispatchDiscreteEvent(), dispatchEvent() (+67 more) +### Community 105 - "ensureRootIsScheduled" +Cohesion: 0.05 +Nodes (62): addFiberToLanesMap(), attachPingListener(), attachSuspenseRetryListeners(), cancelCallback$1(), computeExpirationTime(), ensureRootIsScheduled(), errorHydratingContainer(), finishConcurrentRender() (+54 more) ### Community 106 - "lopuTurnCore.ts" -Cohesion: 0.04 -Nodes (82): TurnBubble(), ConversationRow(), relativeTime(), ConfirmBlock(), LopuToolCallRow(), LopuToolCard(), patchCaption(), rowFrame (+74 more) +Cohesion: 0.02 +Nodes (207): AccessSettingsEditor(), AccountRow(), CREDIT_ENTRIES, CreditEntry, inputSx, readAccessCache(), readAccountsCache(), sameAccess() (+199 more) ### Community 107 - "chatTools.ts" Cohesion: 0.05 -Nodes (93): Fail, actionConfirmation(), activePageFromContext(), anthropicToolDefinitions(), blockSchema, blocksInput(), boundedSummary(), boundThing() (+85 more) +Nodes (87): InspectActionProgramResult, Fail, actionConfirmation(), activePageFromContext(), anthropicToolDefinitions(), blockSchema, blocksInput(), boundedSummary() (+79 more) ### Community 108 - "error" Cohesion: 0.03 -Nodes (129): act(), callComponentWillMount(), captureCommitPhaseError(), clearContainer(), clearSuspenseBoundary(), clearSuspenseBoundaryFromContainer(), cloneElement(), coerceRef() (+121 more) +Nodes (130): act(), callComponentWillMount(), captureCommitPhaseError(), checkAttributeStringCoercion(), checkCSSPropertyStringCoercion(), checkFormFieldValueStringCoercion(), checkHtmlStringCoercion(), checkKeyStringCoercion() (+122 more) ### Community 109 - "quota.ts" Cohesion: 0.07 Nodes (83): migrateLegacyServiceQuotaThings(), childHistorySizeExpression(), claimedChildCountExpression(), documentToState(), getServiceQuotaStatus(), initializeQuotaThing(), mutateServiceQuota(), normalizePipeline() (+75 more) -### Community 110 - "error" -Cohesion: 0.03 -Nodes (135): act(), captureCommitPhaseError(), checkAttributeStringCoercion(), checkCSSPropertyStringCoercion(), checkFormFieldValueStringCoercion(), checkHtmlStringCoercion(), checkKeyStringCoercion(), checkPropStringCoercion() (+127 more) +### Community 110 - "captureCommitPhaseError" +Cohesion: 0.05 +Nodes (81): captureCommitPhaseError(), clearContainer(), commitAttachRef(), commitBeforeMutationEffects_complete(), commitBeforeMutationEffectsOnFiber(), commitDeletionEffects(), commitDeletionEffectsOnFiber(), commitDoubleInvokeEffectsInDEV() (+73 more) ### Community 111 - "legacyCreateRootFromDOMContainer" -Cohesion: 0.08 -Nodes (34): createContainer(), createContext(), createFactoryWithValidation(), createFiberRoot(), createHostRootFiber(), createPortal(), createPortal$1(), createRoot() (+26 more) +Cohesion: 0.09 +Nodes (30): createContainer(), createFiberRoot(), createHostRootFiber(), createPortal(), createPortal$1(), createRoot(), createRoot$1(), getPublicRootInstance() (+22 more) -### Community 112 - "error" +### Community 112 - "captureCommitPhaseError" Cohesion: 0.04 -Nodes (119): act(), callComponentWillMount(), captureCommitPhaseError(), clearContainer(), coerceRef(), commitAttachRef(), commitBeforeMutationEffects_complete(), commitBeforeMutationEffectsOnFiber() (+111 more) +Nodes (96): callComponentWillMount(), captureCommitPhaseError(), clearContainer(), clearSuspenseBoundary(), clearSuspenseBoundaryFromContainer(), commitAttachRef(), commitBeforeMutationEffects_complete(), commitBeforeMutationEffectsOnFiber() (+88 more) ### Community 113 - "kindRenderersMedia.tsx" -Cohesion: 0.04 -Nodes (74): Avatar(), maybeTimeAgo(), ACTION_OP_DOTS, ActionKindRenderer(), ActionKindValue, ChakraKindRenderer(), ChartRenderer(), ChartValue (+66 more) +Cohesion: 0.08 +Nodes (40): Avatar(), CoverArea(), ListingRenderer(), ProfileRenderer(), VideoRenderer(), ArticleValue, AudioRenderer(), AudioValue (+32 more) ### Community 114 - "prConflictResolverModelWaterfallCore.ts" -Cohesion: 0.04 -Nodes (68): composeAiWorkflowModelChoice(), ALL_MODES, buildContextLine(), buildUserPrompt(), createLopuModelChoicesResolver(), getLopuModelChoices, LopuContext, LopuMode (+60 more) +Cohesion: 0.05 +Nodes (58): createLopuModelChoicesResolver(), createPrConflictResolverModelWaterfallStore(), store, StoreDependencies, AI_MODEL_EFFORT_LABELS, AI_MODEL_PROVIDER_LABELS, AiModelEffort, AiModelProvider (+50 more) -### Community 115 - "useLopuAccount.ts" -Cohesion: 0.07 -Nodes (64): creditsToMicros(), LopuBilling, LopuTurnGate, microsOrNull(), microsToCredits(), AccountCache, applyLopuTurnBilling(), bindLopuAccountApi() (+56 more) +### Community 115 - "throwException" +Cohesion: 0.06 +Nodes (49): attachPingListener(), attachRetryListener(), attachSuspenseRetryListeners(), createCapturedValueAtFiber(), enqueueCapturedUpdate(), errorHydratingContainer(), finishQueueingConcurrentUpdates(), getCurrentFiberStackInDev() (+41 more) -### Community 116 - "error" -Cohesion: 0.03 -Nodes (159): act(), callComponentWillMount(), captureCommitPhaseError(), captureCommitPhaseErrorOnRoot(), clearContainer(), clearSuspenseBoundary(), clearSuspenseBoundaryFromContainer(), coerceRef() (+151 more) +### Community 116 - "captureCommitPhaseError" +Cohesion: 0.04 +Nodes (95): captureCommitPhaseError(), clearContainer(), clearSuspenseBoundary(), clearSuspenseBoundaryFromContainer(), commitAttachRef(), commitBeforeMutationEffects_complete(), commitBeforeMutationEffectsOnFiber(), commitDeletionEffects() (+87 more) -### Community 117 - "ensureRootIsScheduled" -Cohesion: 0.05 -Nodes (65): scheduleTimeout(), addFiberToLanesMap(), attachPingListener(), attachSuspenseRetryListeners(), cancelCallback$1(), computeExpirationTime(), ensureRootIsScheduled(), errorHydratingContainer() (+57 more) +### Community 117 - "commitRootImpl" +Cohesion: 0.04 +Nodes (92): scheduleTimeout(), addFiberToLanesMap(), attachPingListener(), attachSuspenseRetryListeners(), cancelCallback$1(), commitPassiveMountEffects(), commitPassiveMountEffects_begin(), commitPassiveUnmountEffects() (+84 more) ### Community 118 - "ConnectorRuntime" -Cohesion: 0.06 -Nodes (35): FileHandle, ConnectorCommand, ConnectorProjectReference, ConnectorRuntime, ConnectorRuntimeConfiguration, ConnectorRuntimeHealth, ConnectorRuntimeState, degraded (+27 more) +Cohesion: 0.05 +Nodes (44): FileHandle, ConnectorCommand, ConnectorProjectReference, ConnectorReply, ConnectorRuntime, ConnectorRuntimeConfiguration, ConnectorRuntimeHealth, ConnectorRuntimeState (+36 more) ### Community 119 - "chat.ts" -Cohesion: 0.03 -Nodes (64): AnthropicClientOptions, AnthropicProviderOptions, boundedJson(), ENVELOPE_KEYS, FENCE_MARKERS, getDefaultLopuClaudeModel(), getDefaultLopuOpenAiModel(), LoopOptions (+56 more) +Cohesion: 0.04 +Nodes (61): AnthropicClientOptions, AnthropicProviderOptions, boundedJson(), ENVELOPE_KEYS, FENCE_MARKERS, getDefaultLopuClaudeModel(), getDefaultLopuOpenAiModel(), LoopOptions (+53 more) ### Community 120 - "diffHydratedProperties" Cohesion: 0.06 -Nodes (61): assertValidProps(), checkControlledValueProps(), checkSelectPropTypes(), createDangerousStringForStyles(), dangerousStyleValue(), diffHydratedProperties(), diffProperties(), escape() (+53 more) +Nodes (58): assertValidProps(), checkControlledValueProps(), checkSelectPropTypes(), diffHydratedProperties(), diffProperties(), finalizeInitialChildren(), getCurrentFiberOwnerNameInDevOrNull(), getDeclarationErrorAddendum() (+50 more) ### Community 121 - "credentialVault.ts" -Cohesion: 0.14 -Nodes (30): bootstrapLopuCredentialsIfEmpty(), claimLopuCredentialFetch(), createLopuCredential(), decrypt(), deleteLopuCredential(), encrypt(), fetchLopuCredentialBundle(), listLopuCredentials() (+22 more) +Cohesion: 0.19 +Nodes (21): bootstrapLopuCredentialsIfEmpty(), claimLopuCredentialFetch(), createLopuCredential(), decrypt(), deleteLopuCredential(), encrypt(), fetchLopuCredentialBundle(), listLopuCredentials() (+13 more) ### Community 122 - "modelsCore.ts" -Cohesion: 0.03 -Nodes (91): AiModelsServiceDependencies, AiModelsViewer, AiModelThingsCollection, createAiModelsService(), EnsureAiModelCatalogResult, Fail, ListAiModelsOptions, ListAiModelsResult (+83 more) +Cohesion: 0.05 +Nodes (71): AiModelsServiceDependencies, AiModelsViewer, AiModelThingsCollection, createAiModelsService(), EnsureAiModelCatalogResult, Fail, ListAiModelsOptions, ListAiModelsResult (+63 more) -### Community 123 - "storageCore.ts" -Cohesion: 0.06 -Nodes (57): storedAlgorithmSizeBytes(), revokeCommunityChannelMemberships(), accountedOptions(), deleteMessengerThing(), HOME_MESSENGER_STORAGE_OPTIONS, MessengerMutationOptions, MessengerPlane, stampMessengerStorageDocument (+49 more) +### Community 123 - "ApplicationResponsivenessService" +Cohesion: 0.08 +Nodes (32): AccessibilityProbeResult, responded, timedOut, unavailable, ApplicationControlAction, forceQuit, quit, restart (+24 more) ### Community 124 - "DeviceDetailsDrawer.tsx" -Cohesion: 0.05 -Nodes (48): DeviceApplications, DeviceApplicationsProps, DeviceApprovalCard, DeviceApprovalCardProps, AudioLevelControl(), DeviceAudioControls, DeviceAudioControlsProps, percent() (+40 more) +Cohesion: 0.04 +Nodes (63): DeviceApplications, DeviceApplicationsProps, DeviceApprovalCard, DeviceApprovalCardProps, AudioLevelControl(), DeviceAudioControls, DeviceAudioControlsProps, percent() (+55 more) ### Community 125 - "ThingtimeEmbedRuntime" -Cohesion: 0.08 -Nodes (20): setAt(), cloneJson(), errorMessage(), FORBIDDEN_PATH_PARTS, getJsonPath(), JsonValue, parseThingPath(), sanitizeJson() (+12 more) +Cohesion: 0.05 +Nodes (33): setAt(), BridgeThingIdentity, readBridgeThingIdentity(), savedThingPayload, configure(), init(), script, ThingtimeGlobal (+25 more) -### Community 126 - "captureCommitPhaseError" +### Community 126 - "error" Cohesion: 0.04 -Nodes (88): captureCommitPhaseError(), clearContainer(), clearSuspenseBoundary(), clearSuspenseBoundaryFromContainer(), commitAttachRef(), commitBeforeMutationEffects_complete(), commitBeforeMutationEffectsOnFiber(), commitDeletionEffects() (+80 more) +Nodes (114): act(), callComponentWillMount(), captureCommitPhaseError(), captureCommitPhaseErrorOnRoot(), clearContainer(), clearSuspenseBoundary(), clearSuspenseBoundaryFromContainer(), coerceRef() (+106 more) ### Community 127 - "LiveAISyncCoordinator" -Cohesion: 0.09 +Cohesion: 0.10 Nodes (28): LiveAISyncTransport, Kind, activity, visible, LiveAISyncConfiguration, LiveAISyncCoordinator, LiveAISyncError, corruptJournal (+20 more) -### Community 128 - "throwException" -Cohesion: 0.05 -Nodes (61): attachPingListener(), attachRetryListener(), attachSuspenseRetryListeners(), createClassErrorUpdate(), createContainer(), createContext(), createFactoryWithValidation(), createFiberRoot() (+53 more) +### Community 128 - "legacyCreateRootFromDOMContainer" +Cohesion: 0.08 +Nodes (33): createContainer(), createContext(), createFactoryWithValidation(), createFiberRoot(), createHostRootFiber(), createPortal(), createPortal$1(), createRoot() (+25 more) -### Community 129 - "mergeLanes" -Cohesion: 0.04 -Nodes (77): attachRetryListener(), attemptContinuousHydration$1(), attemptHydrationAtCurrentPriority$1(), attemptSynchronousHydration$1(), batchedUpdates$1(), captureCommitPhaseErrorOnRoot(), checkForNestedUpdates(), checkIfSnapshotChanged() (+69 more) +### Community 129 - "scheduleUpdateOnFiber" +Cohesion: 0.08 +Nodes (44): attemptContinuousHydration$1(), attemptHydrationAtCurrentPriority$1(), attemptSynchronousHydration$1(), batchedUpdates$1(), checkForNestedUpdates(), checkIfSnapshotChanged(), claimNextRetryLane(), claimNextTransitionLane() (+36 more) ### Community 130 - "styleTokens.ts" -Cohesion: 0.08 -Nodes (35): inlineToolbarPosition(), makeEditorPanelMovable(), makeEditorPanelResizable(), sanitizeEditorJsInlineHtml(), applySelectionStyle(), fieldFor(), InlineStyle, clamp() (+27 more) +Cohesion: 0.07 +Nodes (49): blockToHtml(), elementToBlocks(), elementToUnstyledBlocks(), escapeHtml(), ListItem, listItemsToHtml(), nodesToBlocks(), SCRUB_DROP_TAGS (+41 more) ### Community 131 - "diffHydratedProperties" -Cohesion: 0.05 -Nodes (71): assertValidProps(), checkControlledValueProps(), checkSelectPropTypes(), detachTracker(), diffHydratedProperties(), diffProperties(), finalizeInitialChildren(), getBitLength() (+63 more) +Cohesion: 0.06 +Nodes (59): assertValidProps(), detachTracker(), diffHydratedProperties(), diffProperties(), finalizeInitialChildren(), getEventListenerSet(), getHostProps(), getHostProps$1() (+51 more) ### Community 132 - "unstable_scheduleCallback" -Cohesion: 0.18 -Nodes (19): advanceTimers(), attemptReplayContinuousQueuedEvent(), attemptReplayContinuousQueuedEventInMap(), cancelHostTimeout(), flushWork(), handleTimeout(), markTaskErrored(), peek() (+11 more) +Cohesion: 0.29 +Nodes (13): advanceTimers(), cancelHostTimeout(), flushWork(), handleTimeout(), markTaskErrored(), peek(), requestHostCallback(), requestHostTimeout() (+5 more) -### Community 133 - "mergeLanes" -Cohesion: 0.05 -Nodes (65): attemptContinuousHydration$1(), attemptHydrationAtCurrentPriority$1(), attemptSynchronousHydration$1(), batchedUpdates$1(), captureCommitPhaseErrorOnRoot(), checkForNestedUpdates(), checkIfSnapshotChanged(), claimNextTransitionLane() (+57 more) +### Community 133 - "getComponentNameFromFiber" +Cohesion: 0.04 +Nodes (90): attemptContinuousHydration$1(), attemptHydrationAtCurrentPriority$1(), attemptSynchronousHydration$1(), batchedUpdates$1(), callComponentWillMount(), captureCommitPhaseErrorOnRoot(), checkForNestedUpdates(), checkIfSnapshotChanged() (+82 more) -### Community 134 - "appData.ts" -Cohesion: 0.07 -Nodes (53): APP_DATA_KEY_RE, AppDataEntry, AppDataVisibility, AppDataWriteConflict, buildKeyFilter(), decodeCursor(), decodeKeyCursor(), deleteAppData() (+45 more) +### Community 134 - "socialCard.ts" +Cohesion: 0.05 +Nodes (79): asciiAt(), AVIF_CONTAINER_BOXES, avifExtent(), badgeRenders(), buildSocialCardSvg(), CARD_THEMES, CardImage, cardInitial() (+71 more) -### Community 135 - "isFail" -Cohesion: 0.09 -Nodes (42): authTokenFromSetCookies(), ipv4Blocked(), ipv6Blocked(), ipv6Groups(), isBlockedDeploymentAddress(), isBlockedDeploymentHostname(), isLocalHostname(), isUsableRemoteIdentity() (+34 more) +### Community 135 - "dispatchEventWithEnableCapturePhaseSelectiveHydrationWithoutDiscreteEventReplay" +Cohesion: 0.06 +Nodes (47): accumulateOrCreateContinuousQueuedReplayableEvent(), assertIsMounted(), attemptExplicitHydrationTarget(), attemptReplayContinuousQueuedEvent(), attemptReplayContinuousQueuedEventInMap(), attemptSynchronousHydration(), batchedUpdates(), clearIfContinuousEvent() (+39 more) ### Community 136 - "codexAppServer.ts" -Cohesion: 0.10 -Nodes (23): CodexThread, CodexTurn, CommandExecution, CONNECTOR_WARNING_MESSAGES, connectorWarning(), ConnectorWarningCode, DeltaGuard, isoFromSeconds() (+15 more) - -### Community 137 - "battle.ts" Cohesion: 0.09 -Nodes (38): applyBattleItem(), applyEndOfTurn(), BALL_BONUS, BALL_BREAK_FLAVOR, BattleMon, battleMonFromMember(), BattleMove, concludeIfFainted() (+30 more) +Nodes (25): CodexThread, CodexTurn, CommandExecution, CONNECTOR_WARNING_MESSAGES, connectorWarning(), ConnectorWarningCode, DeltaGuard, isoFromSeconds() (+17 more) -### Community 138 - "deviceCore.ts" -Cohesion: 0.04 -Nodes (60): bounded(), boundedInteger(), commandMessageText(), ConnectorInput, containsUnsafeInputControl(), CursorPageInput, DEVICE_APPROVAL_STATUSES, DEVICE_CAPABILITY_ALIASES (+52 more) +### Community 137 - "push" +Cohesion: 0.07 +Nodes (45): accumulateTwoPhaseListeners(), advanceTimers(), cancelHostTimeout(), compare(), constructSelectEvent(), createAndAccumulateChangeEvent(), createLaneMap(), enqueuePendingPassiveProfilerEffect() (+37 more) + +### Community 138 - "kindRenderersCommerce.tsx" +Cohesion: 0.10 +Nodes (38): formatPrice(), ensureBuiltinKinds(), getKindRenderer(), getKindRenderers(), isKindSafeForUntrusted(), KindRenderContext, KindRenderer, PollRenderPollContext (+30 more) ### Community 139 - "mergeLanes" -Cohesion: 0.05 -Nodes (65): attemptContinuousHydration$1(), attemptHydrationAtCurrentPriority$1(), attemptSynchronousHydration$1(), batchedUpdates$1(), captureCommitPhaseErrorOnRoot(), checkForNestedUpdates(), checkIfSnapshotChanged(), claimNextTransitionLane() (+57 more) +Cohesion: 0.06 +Nodes (60): attemptContinuousHydration$1(), attemptHydrationAtCurrentPriority$1(), attemptSynchronousHydration$1(), batchedUpdates$1(), captureCommitPhaseErrorOnRoot(), checkForNestedUpdates(), checkIfSnapshotChanged(), claimNextTransitionLane() (+52 more) ### Community 140 - "DesktopChatRuntime" Cohesion: 0.08 -Nodes (25): ConnectorEvent, ActiveSession, DesktopChatAccessibilityConnector, DesktopChatCommand, DesktopChatCommanding, DesktopChatRuntime, ObservedMessage, Profile (+17 more) +Nodes (26): ConnectorEvent, DesktopVisibleConversation, ActiveSession, DesktopChatAccessibilityConnector, DesktopChatCommand, DesktopChatCommanding, DesktopChatRuntime, ObservedMessage (+18 more) ### Community 141 - "CIControlDashboard.tsx" Cohesion: 0.04 -Nodes (53): ACTIVE_STATUSES, AutomationProvidersProps, CONFLICT_STATUSES, defaultWorkflowRef(), DetailProps, DispatchModal(), DispatchModalProps, FeatureStackComposerProps (+45 more) +Nodes (54): ACTIVE_STATUSES, AutomationProvidersProps, CIControlDashboard(), CONFLICT_STATUSES, defaultWorkflowRef(), DetailProps, DispatchModal(), DispatchModalProps (+46 more) -### Community 142 - "deviceLiveAiCore.ts" -Cohesion: 0.08 -Nodes (58): DeviceCreateCommandRequest, DeviceNodeCommandRequest, DeviceNodeCommandResponse, DeviceNodeStateRequest, DeviceNodeStateResponse, DevicePairingClaimRequest, DevicePairingClaimResponse, DevicePairingCompleteRequest (+50 more) +### Community 142 - "updateWorkInProgressHook" +Cohesion: 0.07 +Nodes (41): areHookInputsEqual(), basicStateReducer(), createFunctionComponentUpdateQueue(), getWorkInProgressRoot(), includesBlockingLane(), includesOnlyNonUrgentLanes(), markWorkInProgressReceivedUpdate(), mountCallback() (+33 more) -### Community 143 - "commitRootImpl" -Cohesion: 0.03 -Nodes (107): addFiberToLanesMap(), attemptContinuousHydration$1(), attemptHydrationAtCurrentPriority$1(), attemptSynchronousHydration$1(), batchedUpdates$1(), cancelCallback$1(), captureCommitPhaseErrorOnRoot(), checkForNestedUpdates() (+99 more) +### Community 143 - "throwException" +Cohesion: 0.05 +Nodes (61): addFiberToLanesMap(), attachPingListener(), attachRetryListener(), attachSuspenseRetryListeners(), computeExpirationTime(), enqueueCapturedUpdate(), errorHydratingContainer(), finishQueueingConcurrentUpdates() (+53 more) -### Community 144 - "notificationCore.ts" -Cohesion: 0.08 -Nodes (46): buildNotificationListFilters(), escapeRegex(), NOTIFICATION_SEARCH_FIELDS, NotificationListFilters, NotificationListOptions, parseBoolean(), parseDate(), parseTypes() (+38 more) +### Community 144 - "NotificationsPage.tsx" +Cohesion: 0.05 +Nodes (67): buildNotificationListFilters(), escapeRegex(), NOTIFICATION_SEARCH_FIELDS, NotificationListFilters, NotificationListOptions, parseBoolean(), parseDate(), parseTypes() (+59 more) ### Community 145 - "dependencies" Cohesion: 0.03 -Nodes (70): dependencies, @anthropic-ai/sdk, astronomy-engine, @aws-sdk/client-s3, @aws-sdk/client-sesv2, @aws-sdk/s3-request-presigner, axios, bcrypt (+62 more) +Nodes (72): dependencies, @anthropic-ai/sdk, astronomy-engine, @aws-sdk/client-s3, @aws-sdk/client-sesv2, @aws-sdk/s3-request-presigner, axios, bcrypt (+64 more) ### Community 146 - "CommanderNativeBridge" Cohesion: 0.06 @@ -2450,13 +2443,13 @@ Nodes (45): BridgeError, credentialMissing, daemon, invalidApplicationControl, i Cohesion: 0.05 Nodes (47): CHIP_TONES, ChipTone, createApiTestContext(), createPayloadTexts(), EmailTestConfig, ResultMap, RunOptions, ApiTestContext (+39 more) -### Community 148 - "attachmentResponses.ts" -Cohesion: 0.06 -Nodes (39): applyPrivateHeaders(), AttachmentMutationDependencies, attachmentPostOnlyLoader(), createAttachmentMutationAction(), defaultDependencies, MutationService, PRIVATE_UPLOAD_PURPOSES, PUBLIC_UPLOAD_PURPOSES (+31 more) +### Community 148 - "attachments.ts" +Cohesion: 0.04 +Nodes (62): applyPrivateHeaders(), AttachmentMutationDependencies, attachmentPostOnlyLoader(), createAttachmentMutationAction(), defaultDependencies, MutationService, PRIVATE_UPLOAD_PURPOSES, PUBLIC_UPLOAD_PURPOSES (+54 more) ### Community 149 - "diffHydratedProperties" Cohesion: 0.05 -Nodes (73): assertValidProps(), checkAttributeStringCoercion(), checkControlledValueProps(), checkCSSPropertyStringCoercion(), checkFormFieldValueStringCoercion(), checkHtmlStringCoercion(), checkKeyStringCoercion(), checkPropStringCoercion() (+65 more) +Nodes (80): assertValidProps(), checkAttributeStringCoercion(), checkControlledValueProps(), checkCSSPropertyStringCoercion(), checkFormFieldValueStringCoercion(), checkHtmlStringCoercion(), checkKeyStringCoercion(), checkPropStringCoercion() (+72 more) ### Community 150 - "manifest.ts" Cohesion: 0.09 @@ -2466,157 +2459,157 @@ Nodes (32): buildCandidates(), buildExtensions, commandFrom(), detectPackageMana Cohesion: 0.06 Nodes (64): ActionBudget, ActionProgram, ActionRunError, ActionRunSummary, ActionRunTraceEntry, capabilityOf(), capBytes(), consumeOp() (+56 more) -### Community 152 - "getHomeThingsCollection" -Cohesion: 0.12 -Nodes (54): availableDeviceApprovalSlot(), bounded(), claimNextDeviceCommand(), commandApprovalState(), commandOutputReference(), commandStatus(), CreateCommandInput, createDeviceCommand() (+46 more) +### Community 152 - "dispatchEventWithEnableCapturePhaseSelectiveHydrationWithoutDiscreteEventReplay" +Cohesion: 0.07 +Nodes (38): accumulateOrCreateContinuousQueuedReplayableEvent(), assertIsMounted(), attemptExplicitHydrationTarget(), attemptReplayContinuousQueuedEvent(), attemptReplayContinuousQueuedEventInMap(), attemptSynchronousHydration(), batchedUpdates(), clearIfContinuousEvent() (+30 more) ### Community 153 - "indexing.ts" Cohesion: 0.07 Nodes (32): applicationDirectories(), applicationItem(), deduplicateApplications(), discoverApplications(), discoverApplicationsIn(), discoverApplicationsQuick(), discoverApplicationsWithSpotlight(), execFileAsync (+24 more) -### Community 154 - "getComponentNameFromFiber" -Cohesion: 0.03 -Nodes (116): addFiberToLanesMap(), attachPingListener(), attachRetryListener(), attachSuspenseRetryListeners(), attemptContinuousHydration$1(), attemptHydrationAtCurrentPriority$1(), attemptSynchronousHydration$1(), batchedUpdates$1() (+108 more) +### Community 154 - "mergeLanes" +Cohesion: 0.04 +Nodes (78): attachRetryListener(), attemptContinuousHydration$1(), attemptHydrationAtCurrentPriority$1(), attemptSynchronousHydration$1(), batchedUpdates$1(), captureCommitPhaseErrorOnRoot(), checkForNestedUpdates(), checkIfSnapshotChanged() (+70 more) ### Community 155 - "themes.ts" -Cohesion: 0.07 -Nodes (39): assertLegacyAlgorithmMutationAllowed(), AttachmentBindingError, clearUserActiveTheme(), setUserActiveTheme(), updateUserProfile, getThemesCollection(), StorageMutationError, readyUserStorageMatch() (+31 more) +Cohesion: 0.09 +Nodes (33): assertLegacyAlgorithmMutationAllowed(), getThemesCollection(), readyUserStorageMatch(), assertLegacyThemeMutationAllowed(), deleteTheme(), findThemeThing(), getOwnedTheme(), getSharedTheme() (+25 more) ### Community 156 - "push" -Cohesion: 0.06 -Nodes (54): accumulateEnterLeaveListenersForEvent(), accumulateEnterLeaveTwoPhaseListeners(), accumulateSinglePhaseListeners(), accumulateTwoPhaseListeners(), advanceTimers(), cancelHostTimeout(), compare(), createAndAccumulateChangeEvent() (+46 more) +Cohesion: 0.05 +Nodes (66): accumulateEnterLeaveListenersForEvent(), accumulateEnterLeaveTwoPhaseListeners(), accumulateSinglePhaseListeners(), accumulateTwoPhaseListeners(), advanceTimers(), cancelHostTimeout(), compare(), constructSelectEvent() (+58 more) ### Community 157 - "commitRootImpl" -Cohesion: 0.03 -Nodes (113): addFiberToLanesMap(), attemptContinuousHydration$1(), attemptHydrationAtCurrentPriority$1(), attemptSynchronousHydration$1(), batchedUpdates$1(), cancelCallback$1(), captureCommitPhaseErrorOnRoot(), checkForNestedUpdates() (+105 more) +Cohesion: 0.04 +Nodes (93): addFiberToLanesMap(), attachPingListener(), attachSuspenseRetryListeners(), cancelCallback$1(), commitPassiveMountEffects(), commitPassiveMountEffects_begin(), commitPassiveUnmountEffects(), commitRoot() (+85 more) -### Community 158 - "ensureRootIsScheduled" -Cohesion: 0.06 -Nodes (58): addFiberToLanesMap(), attachPingListener(), attachSuspenseRetryListeners(), cancelCallback$1(), computeExpirationTime(), ensureRootIsScheduled(), errorHydratingContainer(), finishConcurrentRender() (+50 more) +### Community 158 - "commitRootImpl" +Cohesion: 0.04 +Nodes (94): addFiberToLanesMap(), attachPingListener(), attachSuspenseRetryListeners(), cancelCallback$1(), commitPassiveMountEffects(), commitPassiveMountEffects_begin(), commitPassiveUnmountEffects(), commitRoot() (+86 more) ### Community 159 - "diffHydratedProperties" Cohesion: 0.05 -Nodes (82): assertValidProps(), checkAttributeStringCoercion(), checkControlledValueProps(), checkCSSPropertyStringCoercion(), checkFormFieldValueStringCoercion(), checkHtmlStringCoercion(), checkKeyStringCoercion(), checkPropStringCoercion() (+74 more) +Nodes (68): assertValidProps(), checkControlledValueProps(), checkSelectPropTypes(), createDangerousStringForStyles(), dangerousStyleValue(), diffHydratedProperties(), diffProperties(), finalizeInitialChildren() (+60 more) ### Community 160 - "diffHydratedProperties" -Cohesion: 0.06 -Nodes (59): assertValidProps(), checkControlledValueProps(), checkSelectPropTypes(), diffHydratedProperties(), diffProperties(), finalizeInitialChildren(), getBitLength(), getEventListenerSet() (+51 more) +Cohesion: 0.05 +Nodes (67): assertValidProps(), checkControlledValueProps(), checkSelectPropTypes(), detachTracker(), diffHydratedProperties(), diffProperties(), finalizeInitialChildren(), getBitLength() (+59 more) -### Community 161 - "mapIntoArray" -Cohesion: 0.08 -Nodes (33): checkDepsAreArrayDev(), cloneAndReplaceKey(), cloneElementWithValidation(), createCapturedValueAtFiber(), describeBuiltInComponentFrame(), describeClassComponentFrame(), describeFiber(), describeFunctionComponentFrame() (+25 more) +### Community 161 - "EditorSplit.tsx" +Cohesion: 0.07 +Nodes (27): clampFloatingGeometry(), collectLeaves(), defaultTree(), DropSide, DropTarget, EditorBranch, EditorContentMode, EditorLayoutSnapshot (+19 more) ### Community 162 - "diffHydratedProperties" -Cohesion: 0.06 -Nodes (58): assertValidProps(), checkControlledValueProps(), checkSelectPropTypes(), diffHydratedProperties(), diffProperties(), finalizeInitialChildren(), getCurrentFiberOwnerNameInDevOrNull(), getDeclarationErrorAddendum() (+50 more) +Cohesion: 0.04 +Nodes (98): assertValidProps(), checkAttributeStringCoercion(), checkControlledValueProps(), checkCSSPropertyStringCoercion(), checkDepsAreArrayDev(), checkFormFieldValueStringCoercion(), checkForUnmatchedText(), checkHtmlStringCoercion() (+90 more) ### Community 163 - "completeWork" -Cohesion: 0.07 -Nodes (49): checkForUnmatchedText(), commitUpdate(), completeWork(), createInstance(), createTextInstance(), createTextNode(), cutOffTailIfNeeded(), didNotMatchHydratedContainerTextInstance() (+41 more) +Cohesion: 0.04 +Nodes (83): addSubtreeSuspenseContext(), checkForUnmatchedText(), commitUpdate(), completeWork(), createCapturedValue(), createFiberFromFragment(), createFiberFromOffscreen(), createInstance() (+75 more) -### Community 164 - "deviceLiveAi.ts" -Cohesion: 0.11 -Nodes (46): decideDeviceRevision(), deviceHash(), devicePayloadHash(), deviceSnapshotHash(), appendLiveEvents(), applyDeltaGuardEvent(), deltaGuardEvent(), DeviceLiveConnectorContext (+38 more) +### Community 164 - "commitRootImpl" +Cohesion: 0.08 +Nodes (37): batchedUpdates$1(), commitPassiveMountEffects(), commitPassiveMountEffects_begin(), commitPassiveUnmountEffects(), commitRoot(), commitRootImpl(), discreteUpdates(), dispatchContinuousEvent() (+29 more) ### Community 165 - "diffHydratedProperties" -Cohesion: 0.05 -Nodes (75): assertValidProps(), checkAttributeStringCoercion(), checkControlledValueProps(), checkCSSPropertyStringCoercion(), checkFormFieldValueStringCoercion(), checkForUnmatchedText(), checkHtmlStringCoercion(), checkKeyStringCoercion() (+67 more) +Cohesion: 0.06 +Nodes (61): assertValidProps(), checkControlledValueProps(), checkSelectPropTypes(), detachTracker(), diffHydratedProperties(), diffProperties(), finalizeInitialChildren(), getEventListenerSet() (+53 more) ### Community 166 - "LauncherPanelController" -Cohesion: 0.07 -Nodes (22): CommanderPanel, LauncherPanelController, PasteboardSnapshot, Any, Bool, Data, Never, Notification (+14 more) +Cohesion: 0.08 +Nodes (20): CommanderPanel, LauncherPanelController, PasteboardSnapshot, Any, Bool, Data, Never, Notification (+12 more) ### Community 167 - "lib.rs" Cohesion: 0.14 -Nodes (37): broad_fuzzy_fts_can_be_interrupted_by_its_time_budget(), concurrent_clients_can_initialize_the_same_database(), configuration(), custom_glob_and_regex_rules_are_both_enforced(), database(), database_and_live_sidecars_are_owner_only(), deduplicate_records(), deeply_nested_application_bundles_are_indexed_without_walking_their_contents() (+29 more) +Nodes (36): broad_fuzzy_fts_can_be_interrupted_by_its_time_budget(), concurrent_clients_can_initialize_the_same_database(), configuration(), custom_glob_and_regex_rules_are_both_enforced(), database(), database_and_live_sidecars_are_owner_only(), deduplicate_records(), deeply_nested_application_bundles_are_indexed_without_walking_their_contents() (+28 more) ### Community 168 - "push" -Cohesion: 0.06 -Nodes (54): accumulateEnterLeaveListenersForEvent(), accumulateSinglePhaseListeners(), accumulateTwoPhaseListeners(), advanceTimers(), cancelHostTimeout(), constructSelectEvent(), createAndAccumulateChangeEvent(), createDispatchListener() (+46 more) - -### Community 169 - "completeWork" Cohesion: 0.05 -Nodes (62): addSubtreeSuspenseContext(), completeWork(), createCapturedValue(), createFiberFromFragment(), createFiberFromOffscreen(), cutOffTailIfNeeded(), findFirstSuspended(), findLastContentRow() (+54 more) +Nodes (61): accumulateEnterLeaveListenersForEvent(), accumulateEnterLeaveTwoPhaseListeners(), accumulateSinglePhaseListeners(), accumulateTwoPhaseListeners(), advanceTimers(), cancelHostTimeout(), constructSelectEvent(), createAndAccumulateChangeEvent() (+53 more) -### Community 170 - "dispatchEventWithEnableCapturePhaseSelectiveHydrationWithoutDiscreteEventReplay" -Cohesion: 0.05 -Nodes (50): accumulateOrCreateContinuousQueuedReplayableEvent(), assertIsMounted(), attemptExplicitHydrationTarget(), attemptReplayContinuousQueuedEvent(), attemptReplayContinuousQueuedEventInMap(), attemptSynchronousHydration(), batchedUpdates(), clearIfContinuousEvent() (+42 more) +### Community 169 - "updateDehydratedSuspenseComponent" +Cohesion: 0.08 +Nodes (35): addSubtreeSuspenseContext(), createCapturedValue(), createFiberFromFragment(), createFiberFromOffscreen(), findFirstSuspended(), findLastContentRow(), getRemainingWorkInPrimaryTree(), getSuspendedCache() (+27 more) + +### Community 170 - "popHydrationState" +Cohesion: 0.08 +Nodes (37): bubbleProperties(), completeDehydratedSuspenseBoundary(), createFiberFromHostInstanceForDeletion(), deleteHydratableInstance(), didNotFindHydratableInstance(), didNotFindHydratableInstanceWithinContainer(), didNotFindHydratableInstanceWithinSuspenseInstance(), didNotFindHydratableTextInstance() (+29 more) ### Community 171 - "inlineHtmlText.ts" -Cohesion: 0.23 -Nodes (14): checklistItems(), ALLOWED_INLINE_TAGS, decodeEntitiesOnce(), decodeEntityOnce(), DROPPED_CONTENT_TAGS, escapeAttribute(), escapeHtmlText(), inlineHtmlToText() (+6 more) +Cohesion: 0.19 +Nodes (16): checklistItems(), ALLOWED_INLINE_TAGS, decodeEntitiesOnce(), decodeEntityOnce(), DROPPED_CONTENT_TAGS, escapeAttribute(), escapeHtmlText(), inlineHtmlToText() (+8 more) ### Community 172 - "diffHydratedProperties" -Cohesion: 0.04 -Nodes (89): assertValidProps(), checkAttributeStringCoercion(), checkControlledValueProps(), checkCSSPropertyStringCoercion(), checkFormFieldValueStringCoercion(), checkHtmlStringCoercion(), checkKeyStringCoercion(), checkPropStringCoercion() (+81 more) +Cohesion: 0.06 +Nodes (58): assertValidProps(), checkControlledValueProps(), checkSelectPropTypes(), diffHydratedProperties(), diffProperties(), finalizeInitialChildren(), getCurrentFiberOwnerNameInDevOrNull(), getDeclarationErrorAddendum() (+50 more) ### Community 173 - "throwException" Cohesion: 0.05 -Nodes (53): attachPingListener(), attachRetryListener(), attachSuspenseRetryListeners(), enqueueCapturedUpdate(), errorHydratingContainer(), finishQueueingConcurrentUpdates(), getIsUpdatingOpaqueValueInRenderPhaseInDEV(), getLanesToRetrySynchronouslyOnError() (+45 more) +Nodes (51): addFiberToLanesMap(), attachPingListener(), attachRetryListener(), attachSuspenseRetryListeners(), createClassErrorUpdate(), createRootErrorUpdate(), createUpdate(), enqueueCapturedUpdate() (+43 more) -### Community 174 - "commitRootImpl" -Cohesion: 0.04 -Nodes (93): addFiberToLanesMap(), attachPingListener(), attachSuspenseRetryListeners(), cancelCallback$1(), commitPassiveMountEffects(), commitPassiveMountEffects_begin(), commitPassiveUnmountEffects(), commitRoot() (+85 more) +### Community 174 - "ensureRootIsScheduled" +Cohesion: 0.06 +Nodes (58): addFiberToLanesMap(), attachPingListener(), attachSuspenseRetryListeners(), cancelCallback$1(), computeExpirationTime(), ensureRootIsScheduled(), errorHydratingContainer(), finishConcurrentRender() (+50 more) -### Community 175 - "updown.ts" -Cohesion: 0.08 -Nodes (46): pollOptionsOf(), PollShape, pollShapeOfCrystal(), PollVoteEntry, PublicPollVotes, tallyPollVotes(), voteKeyOf(), patSandboxOf() (+38 more) +### Community 175 - "things.ts" +Cohesion: 0.02 +Nodes (180): AttachmentCascadeCandidate, AttachmentCascadeCleanupTarget, attachmentCascadeCleanupTargets(), isAttachmentCandidate(), loadServerDeps(), createTranscriptPage(), interactionPlan(), isBillableStorageThing() (+172 more) ### Community 176 - "diffHydratedProperties" Cohesion: 0.06 -Nodes (58): assertValidProps(), checkControlledValueProps(), checkSelectPropTypes(), diffHydratedProperties(), diffProperties(), finalizeInitialChildren(), getCurrentFiberOwnerNameInDevOrNull(), getDeclarationErrorAddendum() (+50 more) +Nodes (61): assertValidProps(), detachTracker(), diffHydratedProperties(), diffProperties(), finalizeInitialChildren(), getBitLength(), getEventListenerSet(), getHostProps() (+53 more) ### Community 177 - "diffHydratedProperties" -Cohesion: 0.04 -Nodes (89): assertValidProps(), checkAttributeStringCoercion(), checkControlledValueProps(), checkCSSPropertyStringCoercion(), checkFormFieldValueStringCoercion(), checkHtmlStringCoercion(), checkKeyStringCoercion(), checkPropStringCoercion() (+81 more) +Cohesion: 0.06 +Nodes (60): assertValidProps(), checkControlledValueProps(), checkSelectPropTypes(), diffHydratedProperties(), diffProperties(), finalizeInitialChildren(), getBitLength(), getEventListenerSet() (+52 more) ### Community 178 - "world.ts" Cohesion: 0.07 Nodes (50): BIOME_PROFILES, biomeFor(), BiomeName, BiomeProfile, BIOMES, blockCache, BlockPortals, buildRoles() (+42 more) -### Community 179 - ".applicationDidFinishLaunching" -Cohesion: 0.05 -Nodes (43): AccountRuntime, AppDelegate, LocalPairingPresenceGate, MultiAccountControlPlaneRuntime, NodeControllerRelay, PeerSignatureValidator, Any, Bool (+35 more) +### Community 179 - "commitRootImpl" +Cohesion: 0.08 +Nodes (35): commitPassiveMountEffects(), commitPassiveMountEffects_begin(), commitPassiveUnmountEffects(), commitRoot(), commitRootImpl(), discreteUpdates(), dispatchContinuousEvent(), dispatchDiscreteEvent() (+27 more) ### Community 180 - "graphify-cas.mjs" Cohesion: 0.09 Nodes (51): activateSnapshot(), artifactHash(), baselineNodeCount(), compareSnapshotQuality(), computeSourceFingerprint(), copyPortableFiles(), ensureSnapshot(), fail() (+43 more) -### Community 181 - "LeasedCommand" -Cohesion: 0.09 -Nodes (31): async, CommandLeaseBatch, CommandLeaseRequest, ControlPlaneClient, ControlPlaneScheduler, ControlPlaneSchedulerHooks, LeasedCommand, Bool (+23 more) +### Community 181 - "NodeResponse" +Cohesion: 0.04 +Nodes (57): async, OneShotReply, Data, Double, Never, ThingtimeNodeBridge, CommandExecutionReport, CommandLeaseBatch (+49 more) ### Community 182 - "push" Cohesion: 0.06 -Nodes (56): accumulateEnterLeaveListenersForEvent(), accumulateSinglePhaseListeners(), accumulateTwoPhaseListeners(), advanceTimers(), cancelHostTimeout(), constructSelectEvent(), createAndAccumulateChangeEvent(), createDispatchListener() (+48 more) +Nodes (50): accumulateEnterLeaveListenersForEvent(), accumulateEnterLeaveTwoPhaseListeners(), accumulateSinglePhaseListeners(), accumulateTwoPhaseListeners(), compare(), constructSelectEvent(), createAndAccumulateChangeEvent(), createDispatchListener() (+42 more) ### Community 183 - "push" Cohesion: 0.05 -Nodes (58): accumulateEnterLeaveListenersForEvent(), accumulateEnterLeaveTwoPhaseListeners(), accumulateSinglePhaseListeners(), accumulateTwoPhaseListeners(), compare(), constructSelectEvent(), createAndAccumulateChangeEvent(), createDispatchListener() (+50 more) +Nodes (55): accumulateEnterLeaveListenersForEvent(), accumulateEnterLeaveTwoPhaseListeners(), accumulateSinglePhaseListeners(), accumulateTwoPhaseListeners(), compare(), constructSelectEvent(), createAndAccumulateChangeEvent(), createDispatchListener() (+47 more) ### Community 184 - "push" -Cohesion: 0.06 -Nodes (48): accumulateEnterLeaveListenersForEvent(), accumulateEnterLeaveTwoPhaseListeners(), accumulateSinglePhaseListeners(), accumulateTwoPhaseListeners(), compare(), constructSelectEvent(), createAndAccumulateChangeEvent(), createDispatchListener() (+40 more) +Cohesion: 0.05 +Nodes (61): accumulateEnterLeaveListenersForEvent(), accumulateEnterLeaveTwoPhaseListeners(), accumulateSinglePhaseListeners(), accumulateTwoPhaseListeners(), cancelCallback$1(), compare(), constructSelectEvent(), createAndAccumulateChangeEvent() (+53 more) ### Community 185 - "constructor" Cohesion: 0.06 -Nodes (38): animateList(), calcGeneratorVelocity(), constructor(), createAnimationState(), createState(), createTypeState(), distance2D(), end() (+30 more) +Nodes (34): animateList(), calcGeneratorVelocity(), constructor(), createAnimationState(), createState(), createTypeState(), distance2D(), end() (+26 more) ### Community 186 - "completeWork" -Cohesion: 0.08 -Nodes (44): bubbleProperties(), commitUpdate(), compare(), completeDehydratedSuspenseBoundary(), completeWork(), createInstance(), createTextInstance(), createTextNode() (+36 more) +Cohesion: 0.06 +Nodes (54): bubbleProperties(), checkForUnmatchedText(), commitUpdate(), compare(), completeDehydratedSuspenseBoundary(), completeWork(), createInstance(), createTextInstance() (+46 more) ### Community 187 - "push" Cohesion: 0.06 -Nodes (51): accumulateEnterLeaveListenersForEvent(), accumulateSinglePhaseListeners(), accumulateTwoPhaseListeners(), compare(), constructSelectEvent(), createAndAccumulateChangeEvent(), createDispatchListener(), createLaneMap() (+43 more) +Nodes (53): accumulateEnterLeaveListenersForEvent(), accumulateEnterLeaveTwoPhaseListeners(), accumulateSinglePhaseListeners(), accumulateTwoPhaseListeners(), compare(), constructSelectEvent(), createAndAccumulateChangeEvent(), createDispatchListener() (+45 more) -### Community 188 - "accountHints.ts" -Cohesion: 0.10 -Nodes (30): AccountHint, AccountHintUser, resolveAccountHints(), ResolvedAccountHints, resolveOwnOriginHints(), toHintUser(), AccountHintPointer, appendAccountHintPointer() (+22 more) +### Community 188 - "animateTarget" +Cohesion: 0.09 +Nodes (35): addValue(), addValueToWillChange(), animateSingleValue(), animateTarget(), animateVariant(), animateVisualElement(), applyConstraints(), cancelTreeOptimisedTransformAnimations() (+27 more) ### Community 189 - "push" -Cohesion: 0.03 -Nodes (95): accumulateEnterLeaveListenersForEvent(), accumulateEnterLeaveTwoPhaseListeners(), accumulateOrCreateContinuousQueuedReplayableEvent(), accumulateSinglePhaseListeners(), accumulateTwoPhaseListeners(), assertIsMounted(), attemptExplicitHydrationTarget(), attemptSynchronousHydration() (+87 more) +Cohesion: 0.05 +Nodes (54): accumulateEnterLeaveListenersForEvent(), accumulateEnterLeaveTwoPhaseListeners(), accumulateSinglePhaseListeners(), accumulateTwoPhaseListeners(), compare(), constructSelectEvent(), createAndAccumulateChangeEvent(), createDispatchListener() (+46 more) ### Community 190 - ".getVersion" Cohesion: 0.10 @@ -2624,31 +2617,31 @@ Nodes (27): createContainer(), createPortal(), createPortal$1(), createRoot(), c ### Community 191 - "pokeworld.ts" Cohesion: 0.04 -Nodes (58): activeBattleSearch(), addPokemonAction, BAG_FIELDS, bagAdjust(), bagComponent, bagCount(), battleBallAction, battleComponent (+50 more) +Nodes (43): activeBattleSearch(), addPokemonAction, BAG_FIELDS, bagAdjust(), bagComponent, bagCount(), battleBallAction, battleComponent (+35 more) ### Community 192 - "CommanderWebView" -Cohesion: 0.04 -Nodes (44): CommanderFileDragError, invalidPath, missingFile, protectedPath, CommanderFileIconError, couldNotEncode, CommanderResizeEdges, CommanderWebView (+36 more) +Cohesion: 0.06 +Nodes (32): CommanderFileDragError, invalidPath, missingFile, protectedPath, CommanderFileIconError, couldNotEncode, CommanderResizeEdges, CommanderWebView (+24 more) ### Community 193 - "support.js" Cohesion: 0.07 Nodes (41): boot(), collectProps(), compileAttr(), compileTemplate(), contentKey(), createComponentFactory(), createExternalModules(), createHelmetManager() (+33 more) ### Community 194 - "withAdminPrivateResponse" -Cohesion: 0.03 -Nodes (80): applyAdminPrivateHeaders(), withAdminPrivateResponse(), allowed, blocked, createAdmin(), requireAdmin(), ciDashboardCapacityFailure(), isCiDashboardSortMemoryError() (+72 more) +Cohesion: 0.04 +Nodes (69): applyAdminPrivateHeaders(), withAdminPrivateResponse(), requireAdmin(), ciDashboardCapacityFailure(), isCiDashboardSortMemoryError(), MongoLikeError, safeToken(), COMMON_HEADERS (+61 more) -### Community 195 - "userStorage.ts" -Cohesion: 0.12 -Nodes (36): upgradeUserSubscriptionLedgerEnvelopes(), normalizedStorageUsage(), explainPositiveAdmissionFailure(), getUserStorageUsage(), getUserStorageUsages(), hasOwn(), reconcileUserStorage(), unavailableUserStorageUsage() (+28 more) +### Community 195 - "DevKit.tsx" +Cohesion: 0.11 +Nodes (30): API_TONE_COLOR, clamp(), clampPanelPosition(), clampTriggerPosition(), EMPTY_API_CALLS, FixedPosition, getDevKitBottomGuard(), getDevKitRightGuard() (+22 more) ### Community 196 - "useDeviceStore.ts" Cohesion: 0.06 -Nodes (47): CreateDeviceCommandInput, DeviceEventsPage, PUBLIC_DEVICE_COMMAND_KINDS, PublicDevice, PublicDeviceApproval, PublicDeviceCommandKind, PublicDeviceCommandStatus, PublicDeviceConnector (+39 more) +Nodes (46): DeviceExecutionPermissionMode, CreateDeviceCommandInput, DeviceEventsPage, PUBLIC_DEVICE_COMMAND_KINDS, PublicDevice, PublicDeviceApproval, PublicDeviceCommandKind, PublicDeviceCommandStatus (+38 more) ### Community 197 - "CommanderAppDelegate" -Cohesion: 0.06 -Nodes (33): Carbon, CommanderAppDelegate, CommanderHostError, invalidWindowMode, launcherUnavailable, windowPinningDisabled, Any, Bool (+25 more) +Cohesion: 0.10 +Nodes (19): CommanderAppDelegate, CommanderHostError, invalidWindowMode, launcherUnavailable, windowPinningDisabled, Any, Bool, Error (+11 more) ### Community 198 - "support.js" Cohesion: 0.07 @@ -2699,76 +2692,76 @@ Cohesion: 0.07 Nodes (40): boot(), collectProps(), compileAttr(), compileTemplate(), contentKey(), createComponentFactory(), createExternalModules(), createHelmetManager() (+32 more) ### Community 210 - "apiDocs.ts" -Cohesion: 0.08 -Nodes (37): capabilitySatisfies(), thingtimeCapabilityManifest(), ApiAuthMode, ApiCapabilitiesManifest, apiDocMap, apiEndpointDocs, ApiPlatformExamples, ApiResponseExample (+29 more) +Cohesion: 0.06 +Nodes (44): capabilitySatisfies(), CapabilityManifest, requireThingtimeCapability(), thingtimeCapabilityManifest(), uuid(), bound(), HistoryMessage, NOTIFICATION_HISTORY_REQUIREMENTS (+36 more) ### Community 211 - "peerDiscovery.ts" Cohesion: 0.10 Nodes (51): getDeploymentPeersCollection(), allowedPeerHost(), announcePeer(), base64url(), bodyDigest(), boundedPeerLimit(), canonicalJson(), decodePeerCursor() (+43 more) ### Community 212 - "useAgentSession.ts" -Cohesion: 0.07 -Nodes (42): PublicDeviceEvent, AgentLiveActivity(), agentSessionCacheKey(), CachedAgentSession, isMessage(), readAgentSessionCache(), restoreAgentSessionCache(), token() (+34 more) +Cohesion: 0.08 +Nodes (41): PublicDeviceEvent, agentSessionCacheKey(), CachedAgentSession, isMessage(), readAgentSessionCache(), restoreAgentSessionCache(), token(), writeAgentSessionCache() (+33 more) ### Community 213 - "push" -Cohesion: 0.07 -Nodes (45): accumulateEnterLeaveListenersForEvent(), accumulateSinglePhaseListeners(), accumulateTwoPhaseListeners(), constructSelectEvent(), createAndAccumulateChangeEvent(), createDispatchListener(), createLaneMap(), enqueueStateRestore() (+37 more) - -### Community 214 - "mergeLanes" Cohesion: 0.05 -Nodes (62): areHookInputsEqual(), claimNextTransitionLane(), createFunctionComponentUpdateQueue(), dispatchReducerAction(), dispatchSetState(), enqueueConcurrentClassUpdate(), enqueueConcurrentHookUpdate(), enqueueConcurrentHookUpdateAndEagerlyBailout() (+54 more) +Nodes (55): accumulateEnterLeaveListenersForEvent(), accumulateEnterLeaveTwoPhaseListeners(), accumulateSinglePhaseListeners(), accumulateTwoPhaseListeners(), compare(), constructSelectEvent(), createAndAccumulateChangeEvent(), createDispatchListener() (+47 more) -### Community 215 - "scheduleUpdateOnFiber" +### Community 214 - "updateWorkInProgressHook" +Cohesion: 0.07 +Nodes (43): areHookInputsEqual(), basicStateReducer(), createFunctionComponentUpdateQueue(), getWorkInProgressRoot(), includesBlockingLane(), includesOnlyNonUrgentLanes(), markSkippedUpdateLanes(), markWorkInProgressReceivedUpdate() (+35 more) + +### Community 215 - "mergeLanes" Cohesion: 0.04 -Nodes (74): attachRetryListener(), attemptContinuousHydration$1(), attemptHydrationAtCurrentPriority$1(), attemptSynchronousHydration$1(), batchedUpdates$1(), captureCommitPhaseErrorOnRoot(), checkForNestedUpdates(), checkIfSnapshotChanged() (+66 more) +Nodes (85): attachRetryListener(), attemptContinuousHydration$1(), attemptHydrationAtCurrentPriority$1(), attemptSynchronousHydration$1(), batchedUpdates$1(), captureCommitPhaseErrorOnRoot(), checkForNestedUpdates(), checkIfSnapshotChanged() (+77 more) ### Community 216 - "push" Cohesion: 0.05 -Nodes (58): accumulateEnterLeaveListenersForEvent(), accumulateEnterLeaveTwoPhaseListeners(), accumulateSinglePhaseListeners(), accumulateTwoPhaseListeners(), compare(), constructSelectEvent(), createAndAccumulateChangeEvent(), createDispatchListener() (+50 more) +Nodes (61): accumulateEnterLeaveListenersForEvent(), accumulateEnterLeaveTwoPhaseListeners(), accumulateSinglePhaseListeners(), accumulateTwoPhaseListeners(), advanceTimers(), cancelHostTimeout(), constructSelectEvent(), createAndAccumulateChangeEvent() (+53 more) ### Community 217 - "plugin.ts" -Cohesion: 0.03 -Nodes (141): accountFor(), accountResourceRequest(), accountScopeCovers(), appendHistory(), applyMutationOperation(), applyMutationPreview(), asRecord(), authChallenge() (+133 more) +Cohesion: 0.02 +Nodes (207): sessionPurposeCanActAsAccount(), resolveSessionUser(), serviceAccountAuthenticationAllowed(), serviceEmailVerificationDueAt(), getEs256SigningKey(), getEs256VerifyKey(), getJwtKeyId(), getLegacySecret() (+199 more) -### Community 218 - "unstable_scheduleCallback" -Cohesion: 0.18 -Nodes (19): advanceTimers(), attemptReplayContinuousQueuedEvent(), attemptReplayContinuousQueuedEventInMap(), cancelHostTimeout(), flushWork(), handleTimeout(), markTaskErrored(), peek() (+11 more) +### Community 218 - "dispatchEventWithEnableCapturePhaseSelectiveHydrationWithoutDiscreteEventReplay" +Cohesion: 0.07 +Nodes (44): accumulateOrCreateContinuousQueuedReplayableEvent(), advanceTimers(), assertIsMounted(), attemptExplicitHydrationTarget(), attemptReplayContinuousQueuedEvent(), attemptReplayContinuousQueuedEventInMap(), attemptSynchronousHydration(), cancelHostTimeout() (+36 more) ### Community 219 - "updateDehydratedSuspenseComponent" -Cohesion: 0.06 -Nodes (45): addSubtreeSuspenseContext(), attemptEarlyBailoutIfNoScheduledUpdate(), createCapturedValue(), createFiberFromFragment(), createFiberFromOffscreen(), findFirstSuspended(), findLastContentRow(), getChildHostContext() (+37 more) +Cohesion: 0.08 +Nodes (35): addSubtreeSuspenseContext(), createCapturedValue(), createFiberFromFragment(), createFiberFromOffscreen(), findFirstSuspended(), findLastContentRow(), getRemainingWorkInPrimaryTree(), getSuspendedCache() (+27 more) -### Community 220 - "updateDehydratedSuspenseComponent" -Cohesion: 0.07 -Nodes (38): addSubtreeSuspenseContext(), createCapturedValue(), createFiberFromFragment(), createFiberFromOffscreen(), findFirstSuspended(), findLastContentRow(), getRemainingWorkInPrimaryTree(), getSuspendedCache() (+30 more) +### Community 220 - "commitRootImpl" +Cohesion: 0.09 +Nodes (33): commitPassiveMountEffects(), commitPassiveMountEffects_begin(), commitPassiveUnmountEffects(), commitRoot(), commitRootImpl(), discreteUpdates(), dispatchContinuousEvent(), dispatchDiscreteEvent() (+25 more) ### Community 221 - "conceptBits.tsx" Cohesion: 0.16 -Nodes (41): getEditorJsDoc(), PostTextBody(), AddChildButton(), ConceptCrumbs(), ConceptViewerProps, DeleteButton(), KindFlip(), LeafValueEditor() (+33 more) +Nodes (40): AddChildButton(), ConceptCrumbs(), ConceptViewerProps, DeleteButton(), KindFlip(), LeafValueEditor(), useConceptLayout(), useContainerWidth() (+32 more) -### Community 222 - "ensureRootIsScheduled" -Cohesion: 0.05 -Nodes (66): addFiberToLanesMap(), attachPingListener(), attachRetryListener(), attachSuspenseRetryListeners(), cancelCallback$1(), computeExpirationTime(), enqueueCapturedUpdate(), ensureRootIsScheduled() (+58 more) +### Community 222 - "commitRootImpl" +Cohesion: 0.04 +Nodes (94): addFiberToLanesMap(), attachPingListener(), attachSuspenseRetryListeners(), cancelCallback$1(), commitPassiveMountEffects(), commitPassiveMountEffects_begin(), commitPassiveUnmountEffects(), commitRoot() (+86 more) -### Community 223 - "createFiberFromTypeAndProps" -Cohesion: 0.13 -Nodes (21): cloneChildFibers(), createFiberFromElement(), createFiberFromFragment(), createFiberFromOffscreen(), createFiberFromProfiler(), createFiberFromSuspense(), createFiberFromSuspenseList(), createFiberFromTypeAndProps() (+13 more) +### Community 223 - "updateDehydratedSuspenseComponent" +Cohesion: 0.06 +Nodes (51): addSubtreeSuspenseContext(), cloneChildFibers(), createCapturedValue(), createFiberFromElement(), createFiberFromFragment(), createFiberFromOffscreen(), createFiberFromProfiler(), createFiberFromSuspense() (+43 more) ### Community 224 - "server.ts" -Cohesion: 0.06 -Nodes (27): options, callbackPage(), CommanderServer, createCommanderServer(), escapeHtml(), json(), MIME, serveStatic() (+19 more) +Cohesion: 0.07 +Nodes (24): options, callbackPage(), CommanderServer, createCommanderServer(), escapeHtml(), MIME, StreamEvent, streamEvents() (+16 more) -### Community 225 - "ThingtimeWatchAudioRecorder" -Cohesion: 0.11 -Nodes (19): App, Scene, ThingtimeApp, Scene, ThingtimeWatchApp, Recording, RecordingError, recorderUnavailable (+11 more) +### Community 225 - "updateDehydratedSuspenseComponent" +Cohesion: 0.08 +Nodes (32): addSubtreeSuspenseContext(), createCapturedValue(), createFiberFromFragment(), createFiberFromOffscreen(), findFirstSuspended(), findLastContentRow(), getRemainingWorkInPrimaryTree(), getSuspendedCache() (+24 more) ### Community 226 - "api.tsx" -Cohesion: 0.06 -Nodes (33): CopyValueButton(), ApiEndpointDoc, ApiHttpMethod, ApiRequestExample, CopyDocLinkButton(), docPagePath(), DocsApi(), DocsPathLink (+25 more) +Cohesion: 0.05 +Nodes (42): CopyValueButton(), flattenDocFields(), schemaAnchor(), SchemaCard(), SchemaSection, SchemasPage(), SECTIONS, ApiEndpointDoc (+34 more) ### Community 227 - "verify-vercel-output.mjs" -Cohesion: 0.04 -Nodes (47): buildCsp(), designBundlesCsp, devCsp, directives(), mcpLabCsp, privateS3Origin(), prodCsp, serialize() (+39 more) +Cohesion: 0.03 +Nodes (60): buildCsp(), designBundlesCsp, devCsp, directives(), mcpLabCsp, privateS3Origin(), prodCsp, serialize() (+52 more) ### Community 228 - "index.ts" Cohesion: 0.06 @@ -2783,28 +2776,28 @@ Cohesion: 0.08 Nodes (15): Task, CredentialKey, FilesystemBreakdown, FullDiskAccessStatus, INativeBridge, LauncherWindowState, NativeRequest, NativeResponse (+7 more) ### Community 231 - "beginWork" -Cohesion: 0.05 -Nodes (111): adoptClassInstance(), applyDerivedStateFromProps(), attemptEarlyBailoutIfNoScheduledUpdate(), bailoutHooks(), bailoutOnAlreadyFinishedWork(), beginWork(), cacheContext(), callComponentWillMount() (+103 more) +Cohesion: 0.06 +Nodes (90): adoptClassInstance(), applyDerivedStateFromProps(), bailoutHooks(), bailoutOnAlreadyFinishedWork(), beginWork(), cacheContext(), callComponentWillMount(), callComponentWillReceiveProps() (+82 more) ### Community 232 - "deviceTypes.ts" -Cohesion: 0.06 -Nodes (45): iso(), makeCapability(), makeCommand(), makeSnapshot(), makeState(), makeSummary(), NOW, DeviceSystemControls (+37 more) +Cohesion: 0.07 +Nodes (40): iso(), makeCapability(), makeCommand(), makeSnapshot(), makeState(), makeSummary(), NOW, DeviceSystemControlsProps (+32 more) ### Community 233 - "index.tsx" -Cohesion: 0.04 -Nodes (85): addBindingsToContext(), addOpt(), anyOptsIn(), anyThingsIn(), babelPlugin(), basic(), clone(), context() (+77 more) +Cohesion: 0.06 +Nodes (34): babelPlugin(), createObjectProperties(), createScopedEval(), deepForEach(), deletesmart(), ee(), epp(), escapeEscapes() (+26 more) ### Community 234 - "dependencies" Cohesion: 0.04 Nodes (45): author, bugs, url, dependencies, axios, bcrypt, body-parser, cors (+37 more) -### Community 235 - "mergeLanes" -Cohesion: 0.06 -Nodes (51): areHookInputsEqual(), basicStateReducer(), createFunctionComponentUpdateQueue(), enterDisallowedContextReadInDEV(), exitDisallowedContextReadInDEV(), getStateFromUpdate(), getWorkInProgressRoot(), includesBlockingLane() (+43 more) +### Community 235 - "updateWorkInProgressHook" +Cohesion: 0.07 +Nodes (44): areHookInputsEqual(), basicStateReducer(), createFunctionComponentUpdateQueue(), getWorkInProgressRoot(), includesBlockingLane(), includesOnlyNonUrgentLanes(), markSkippedUpdateLanes(), markWorkInProgressReceivedUpdate() (+36 more) ### Community 236 - "completeWork" -Cohesion: 0.05 -Nodes (64): bubbleProperties(), checkForUnmatchedText(), cloneElement(), commitUpdate(), compare(), completeDehydratedSuspenseBoundary(), completeWork(), createElement() (+56 more) +Cohesion: 0.04 +Nodes (79): addSubtreeSuspenseContext(), commitUpdate(), completeWork(), createCapturedValue(), createFiberFromFragment(), createFiberFromOffscreen(), createInstance(), createTextInstance() (+71 more) ### Community 237 - "replace" Cohesion: 0.05 @@ -2838,9 +2831,9 @@ Nodes (46): toArray(), addPrefix(), addPrefix2(), analyzeBreakpoints(), analyzeC Cohesion: 0.05 Nodes (46): toArray(), addPrefix(), addPrefix2(), analyzeBreakpoints(), analyzeCSSValue(), createResolver(), createThemeVars(), cssVar() (+38 more) -### Community 245 - "forEach" -Cohesion: 0.09 -Nodes (26): animateChildren(), clear(), clearListeners(), destroy(), filterEvents(), flushKeyframeResolvers(), forEach(), getRegisteredStyles() (+18 more) +### Community 245 - "update" +Cohesion: 0.05 +Nodes (48): isEnabled(), add(), addDomEvent(), addListeners(), addPointerEvent(), addScaleCorrector(), addUniqueItem(), addVariantChild() (+40 more) ### Community 246 - "replace" Cohesion: 0.05 @@ -2854,61 +2847,61 @@ Nodes (46): toArray(), addPrefix(), addPrefix2(), analyzeBreakpoints(), analyzeC Cohesion: 0.05 Nodes (46): toArray(), addPrefix(), addPrefix2(), analyzeBreakpoints(), analyzeCSSValue(), createResolver(), createThemeVars(), cssVar() (+38 more) -### Community 249 - "completeWork" -Cohesion: 0.05 -Nodes (62): addSubtreeSuspenseContext(), completeWork(), createCapturedValue(), createFiberFromFragment(), createFiberFromOffscreen(), cutOffTailIfNeeded(), findFirstSuspended(), findLastContentRow() (+54 more) +### Community 249 - "updateDehydratedSuspenseComponent" +Cohesion: 0.07 +Nodes (39): addSubtreeSuspenseContext(), createCapturedValue(), createFiberFromFragment(), createFiberFromOffscreen(), findFirstSuspended(), findLastContentRow(), getRemainingWorkInPrimaryTree(), getSuspendedCache() (+31 more) ### Community 250 - "replace" Cohesion: 0.05 Nodes (46): toArray(), addPrefix(), addPrefix2(), analyzeBreakpoints(), analyzeCSSValue(), createResolver(), createThemeVars(), cssVar() (+38 more) ### Community 251 - "completeWork" -Cohesion: 0.07 -Nodes (47): checkForUnmatchedText(), commitUpdate(), compare(), completeWork(), createInstance(), createTextInstance(), createTextNode(), cutOffTailIfNeeded() (+39 more) +Cohesion: 0.06 +Nodes (55): checkForUnmatchedText(), commitUpdate(), completeWork(), createInstance(), createTextInstance(), createTextNode(), cutOffTailIfNeeded(), didNotMatchHydratedContainerTextInstance() (+47 more) -### Community 252 - "commitRootImpl" -Cohesion: 0.08 -Nodes (38): commitLayoutEffects(), commitLayoutEffects_begin(), commitPassiveMountEffects(), commitPassiveMountEffects_begin(), commitPassiveUnmountEffects(), commitRoot(), commitRootImpl(), discreteUpdates() (+30 more) +### Community 252 - "integrations.ts" +Cohesion: 0.16 +Nodes (29): methodForOperation(), operationAllowed(), publicEndpoint(), assertVercelEnvAbsent(), audit(), boundedText(), claimCreate(), createAdminSecret() (+21 more) ### Community 253 - "constructor" Cohesion: 0.06 Nodes (34): animateList(), calcGeneratorVelocity(), constructor(), createAnimationState(), createState(), createTypeState(), distance2D(), end() (+26 more) -### Community 254 - "completeWork" -Cohesion: 0.05 -Nodes (74): bubbleProperties(), commitUpdate(), completeDehydratedSuspenseBoundary(), completeWork(), createFiberFromHostInstanceForDeletion(), createInstance(), createTextInstance(), createTextNode() (+66 more) +### Community 254 - "popHydrationState" +Cohesion: 0.07 +Nodes (42): bubbleProperties(), completeDehydratedSuspenseBoundary(), createFiberFromHostInstanceForDeletion(), deleteHydratableInstance(), didNotFindHydratableInstance(), didNotFindHydratableInstanceWithinContainer(), didNotFindHydratableInstanceWithinSuspenseInstance(), didNotFindHydratableTextInstance() (+34 more) ### Community 255 - "constructor" -Cohesion: 0.06 -Nodes (34): animateList(), calcGeneratorVelocity(), constructor(), createAnimationState(), createState(), createTypeState(), distance2D(), end() (+26 more) +Cohesion: 0.05 +Nodes (50): isEnabled(), add(), addDomEvent(), addListeners(), addPointerEvent(), addScaleCorrector(), addUniqueItem(), addVariantChild() (+42 more) ### Community 256 - "scripts" Cohesion: 0.04 Nodes (44): author, bugs, url, dependencies, smarts, ts-node, typescript, description (+36 more) ### Community 257 - "setup.ts" -Cohesion: 0.11 -Nodes (28): createPost(), listExistingThingShareIds(), avatar(), getAlgorithms(), getComments(), getFeedUsers(), getPosts(), getProfiles() (+20 more) +Cohesion: 0.10 +Nodes (34): updateUserProfile, createPost(), listExistingThingShareIds(), avatar(), getAlgorithms(), getComments(), getFeedUsers(), getPosts() (+26 more) ### Community 258 - "ConceptStories.tsx" Cohesion: 0.06 -Nodes (34): LONG_TEXT_BLOCK_TYPES, LongTextBlockType, LongTextBlockTypes, sanitizeParsedJson(), BLOCK_TYPE_META, columnsStories, ColumnsStory(), ConceptStory (+26 more) +Nodes (33): LONG_TEXT_BLOCK_TYPES, LongTextBlockType, LongTextBlockTypes, sanitizeParsedJson(), BLOCK_TYPE_META, columnsStories, ColumnsStory(), ConceptStory (+25 more) ### Community 259 - "resources.rs" -Cohesion: 0.09 -Nodes (27): AtomicBool, AtomicU64, AtomicUsize, average_cpu_percent(), cpu_throttle_delay(), CpuWindow, duration_ms(), effective_resource_limits() (+19 more) +Cohesion: 0.11 +Nodes (20): AtomicBool, AtomicU64, AtomicUsize, average_cpu_percent(), cpu_throttle_delay(), CpuWindow, duration_ms(), effective_resource_limits() (+12 more) ### Community 260 - "ThingtimeAPIClient.swift" -Cohesion: 0.14 -Nodes (41): Decodable, Encodable, App, AppleMusic, AudioDevice, Battery, BluetoothDevice, Camera (+33 more) +Cohesion: 0.05 +Nodes (73): Body, Decodable, Encodable, Error, App, AppleMusic, AudioDevice, Battery (+65 more) ### Community 261 - "migrations.ts" -Cohesion: 0.04 -Nodes (80): appStorageCounterShareId, builtinSchemaSeedNeedsRefresh(), bulkWriteErrorCodesByOp(), ConversionBuildOutcome, conversionBuildOutcomes(), exactDocumentSnapshotMatch(), storageMigrationOwnership(), upsertedOpIndexes() (+72 more) +Cohesion: 0.02 +Nodes (165): storedAlgorithmSizeBytes(), registeredStorageSize(), appStorageCounterShareId, canonicalStoredBytes(), pickFallbackMusing(), builtinSchemaSeedNeedsRefresh(), bulkWriteErrorCodesByOp(), ConversionBuildOutcome (+157 more) ### Community 262 - "mapIntoArray" -Cohesion: 0.07 -Nodes (36): checkDepsAreArrayDev(), cloneAndReplaceKey(), cloneElementWithValidation(), createElementWithValidation(), describeBuiltInComponentFrame(), describeClassComponentFrame(), describeFiber(), describeFunctionComponentFrame() (+28 more) +Cohesion: 0.10 +Nodes (27): checkDepsAreArrayDev(), cloneAndReplaceKey(), cloneElementWithValidation(), createContext(), createElementWithValidation(), createFactoryWithValidation(), escapeUserProvidedKey(), getCurrentComponentErrorInfo() (+19 more) ### Community 263 - "parse" Cohesion: 0.08 @@ -2920,35 +2913,35 @@ Nodes (29): calcRelativeAxisConstraints(), calcRelativeConstraints(), calcViewpo ### Community 265 - "captureCommitPhaseError" Cohesion: 0.04 -Nodes (86): captureCommitPhaseError(), clearContainer(), clearSuspenseBoundary(), clearSuspenseBoundaryFromContainer(), commitAttachRef(), commitBeforeMutationEffects_complete(), commitBeforeMutationEffectsOnFiber(), commitDeletionEffects() (+78 more) +Nodes (93): captureCommitPhaseError(), clearContainer(), clearSuspenseBoundary(), clearSuspenseBoundaryFromContainer(), commitAttachRef(), commitBeforeMutationEffects_complete(), commitBeforeMutationEffectsOnFiber(), commitDeletionEffects() (+85 more) -### Community 266 - "updateWorkInProgressHook" -Cohesion: 0.10 -Nodes (30): areHookInputsEqual(), createFunctionComponentUpdateQueue(), getWorkInProgressRoot(), includesBlockingLane(), includesOnlyNonUrgentLanes(), markSkippedUpdateLanes(), markWorkInProgressReceivedUpdate(), mountSyncExternalStore() (+22 more) +### Community 266 - "mergeLanes" +Cohesion: 0.06 +Nodes (52): areHookInputsEqual(), basicStateReducer(), createFunctionComponentUpdateQueue(), getBitLength(), getLeadingBit(), getTreeId(), getWorkInProgressRoot(), includesBlockingLane() (+44 more) ### Community 267 - "PR #387 — Action Thing v1: declarative capability-bounded programs" Cohesion: 0.04 Nodes (41): Debugging history worth keeping, Deferred (with rationale), PR #387 — Action Thing v1: declarative capability-bounded programs, Round 3 — Lopu review round 2 rebuilt on-branch (2026-08-25, commit 7706c3eef), Round 4 — ttAction reachability, precisely mapped (2026-08-25), Round 5 — functional multi-review pass (2026-08-25, post-completion directive), Round 5b — correctness-lens fixes (same review pass), Round 6 — defensive security review + fixes (2026-08-25) (+33 more) ### Community 268 - "querySafety.ts" -Cohesion: 0.09 -Nodes (40): baseOptions(), boundedDistinctPipeline(), collectValues(), Fail, runMongoQuery(), normalized(), aggregationStageSet, ALL_PROBE_PREDICATES (+32 more) +Cohesion: 0.10 +Nodes (31): normalized(), aggregationStageSet, ALL_PROBE_PREDICATES, blockedKeySet, boundedInteger(), collectionSet, COMPUTE_PROBE_PREDICATES, deserializeExtendedJson() (+23 more) -### Community 269 - "getValue" -Cohesion: 0.06 -Nodes (46): addValue(), analyseComplexValue(), convertBoundingBoxToBox(), createTransformer(), get(), getAnimatableNone(), getAnimatableNone2(), getComputedStyle() (+38 more) +### Community 269 - "trim" +Cohesion: 0.11 +Nodes (25): analyseComplexValue(), createTransformer(), get(), getAnimatableNone(), getAnimatableNone2(), getTheme3(), getVariableValue(), guard() (+17 more) -### Community 270 - "commitRootImpl" -Cohesion: 0.08 -Nodes (36): commitLayoutEffects(), commitLayoutEffects_begin(), commitPassiveMountEffects(), commitPassiveMountEffects_begin(), commitPassiveUnmountEffects(), commitRoot(), commitRootImpl(), discreteUpdates() (+28 more) +### Community 270 - "animateTarget" +Cohesion: 0.12 +Nodes (27): addValue(), addValueToWillChange(), animateSingleValue(), animateTarget(), animateVariant(), animateVisualElement(), cancelTreeOptimisedTransformAnimations(), getAnimationState() (+19 more) ### Community 271 - "getProps" -Cohesion: 0.09 -Nodes (29): calcRelativeAxisConstraints(), calcRelativeConstraints(), calcViewportAxisConstraints(), calcViewportConstraints(), convertBoundingBoxToBox(), convertBoxToBoundingBox(), createProjectionNode(), eachAxis() (+21 more) +Cohesion: 0.10 +Nodes (26): applyConstraints(), calcRelativeAxisConstraints(), calcRelativeConstraints(), calcViewportAxisConstraints(), calcViewportConstraints(), convertBoundingBoxToBox(), convertBoxToBoundingBox(), createProjectionNode() (+18 more) -### Community 272 - "initialState" -Cohesion: 0.06 -Nodes (48): initialState(), areHookInputsEqual(), basicStateReducer(), createFunctionComponentUpdateQueue(), getBitLength(), getLeadingBit(), getTreeId(), getWorkInProgressRoot() (+40 more) +### Community 272 - "updateWorkInProgressHook" +Cohesion: 0.07 +Nodes (44): areHookInputsEqual(), basicStateReducer(), createFunctionComponentUpdateQueue(), getWorkInProgressRoot(), includesBlockingLane(), includesOnlyNonUrgentLanes(), markSkippedUpdateLanes(), markWorkInProgressReceivedUpdate() (+36 more) ### Community 273 - "constructor" Cohesion: 0.06 @@ -2956,19 +2949,19 @@ Nodes (34): animateList(), calcGeneratorVelocity(), constructor(), createAnimati ### Community 274 - "updateWorkInProgressHook" Cohesion: 0.07 -Nodes (43): areHookInputsEqual(), basicStateReducer(), createFunctionComponentUpdateQueue(), getWorkInProgressRoot(), includesBlockingLane(), includesOnlyNonUrgentLanes(), markSkippedUpdateLanes(), markWorkInProgressReceivedUpdate() (+35 more) +Nodes (44): areHookInputsEqual(), basicStateReducer(), createFunctionComponentUpdateQueue(), getWorkInProgressRoot(), includesBlockingLane(), includesOnlyNonUrgentLanes(), markSkippedUpdateLanes(), markWorkInProgressReceivedUpdate() (+36 more) ### Community 275 - "popHydrationState" -Cohesion: 0.08 -Nodes (37): bubbleProperties(), completeDehydratedSuspenseBoundary(), createFiberFromHostInstanceForDeletion(), deleteHydratableInstance(), didNotFindHydratableInstance(), didNotFindHydratableInstanceWithinContainer(), didNotFindHydratableInstanceWithinSuspenseInstance(), didNotFindHydratableTextInstance() (+29 more) +Cohesion: 0.09 +Nodes (32): createFiberFromHostInstanceForDeletion(), deleteHydratableInstance(), didNotFindHydratableInstance(), didNotFindHydratableInstanceWithinContainer(), didNotFindHydratableInstanceWithinSuspenseInstance(), didNotFindHydratableTextInstance(), didNotFindHydratableTextInstanceWithinContainer(), didNotFindHydratableTextInstanceWithinSuspenseInstance() (+24 more) ### Community 276 - "TESTING.md — per-area manual test checklists" Cohesion: 0.02 Nodes (95): Account birthday & profile.birthday scope (`api/utils/auth/birthday.ts`, `/api/v1/oauth/userinfo`), Actions (/actions, `remix/app/api/utils/actions/`, `/api/v1/actions/run`, `/api/v1/actions/runs`), Admin CI control plane (`/admin` → CI Control, `api/utils/ciControl/`), Admin dashboard, subscription tiers & ownership links (`/admin`, `api/utils/subscriptions/`, `api/utils/accounts/accountLinks.ts`), Admin integration vault + policy proxy, Admin integration vault + policy proxy, Admin migrations & collection generations (`remix/app/components/Schemas/MigrationsPanel.tsx`), AI merge-conflict resolver (`.github/workflows/resolve-pr-conflicts.yml`) (+87 more) ### Community 277 - "store.ts" -Cohesion: 0.10 -Nodes (42): byKey, CI_AUTOMATION_DEFINITIONS, CI_WORKFLOW_KEYS, CiAutomationDefinition, CiAutomationPolicy, CiExecutionProvider, CiWorkflowKey, defaultCiAutomationPolicy() (+34 more) +Cohesion: 0.14 +Nodes (33): CI_DASHBOARD_UPDATED_INDEX, CI_DASHBOARD_UPDATED_SORT, ciDashboardFieldFilter(), ciDashboardKindFilter(), ciDashboardReadLimit(), UNBOUNDED_SELECTION_KINDS, CiEntityEventPolicy, CiEntityUpsertOutcome (+25 more) ### Community 278 - "commitRootImpl" Cohesion: 0.08 @@ -2976,47 +2969,47 @@ Nodes (35): commitPassiveMountEffects(), commitPassiveMountEffects_begin(), comm ### Community 279 - "constructor" Cohesion: 0.05 -Nodes (41): animateList(), calcGeneratorVelocity(), componentWillUnmount(), constructor(), createAnimationState(), createState(), createTypeState(), distance2D() (+33 more) +Nodes (54): isEnabled(), add(), addDomEvent(), addListeners(), addPointerEvent(), addScaleCorrector(), addUniqueItem(), addVariantChild() (+46 more) ### Community 280 - "constructor" -Cohesion: 0.06 -Nodes (34): animateList(), calcGeneratorVelocity(), constructor(), createAnimationState(), createState(), createTypeState(), distance2D(), end() (+26 more) +Cohesion: 0.07 +Nodes (32): animateList(), calcGeneratorVelocity(), constructor(), createAnimationState(), createState(), createTypeState(), distance2D(), end() (+24 more) ### Community 281 - "constructor" -Cohesion: 0.06 -Nodes (34): animateList(), calcGeneratorVelocity(), constructor(), createAnimationState(), createState(), createTypeState(), distance2D(), end() (+26 more) +Cohesion: 0.07 +Nodes (32): animateList(), calcGeneratorVelocity(), constructor(), createAnimationState(), createState(), createTypeState(), distance2D(), end() (+24 more) ### Community 282 - "constructor" -Cohesion: 0.06 -Nodes (39): animateList(), calcGeneratorVelocity(), componentWillUnmount(), constructor(), createAnimationState(), createState(), createTypeState(), distance2D() (+31 more) +Cohesion: 0.05 +Nodes (41): animateList(), calcGeneratorVelocity(), componentWillUnmount(), constructor(), createAnimationState(), createState(), createTypeState(), distance2D() (+33 more) ### Community 283 - "constructor" Cohesion: 0.06 -Nodes (38): animateList(), calcGeneratorVelocity(), constructor(), createAnimationState(), createState(), createTypeState(), distance2D(), end() (+30 more) +Nodes (34): animateList(), calcGeneratorVelocity(), constructor(), createAnimationState(), createState(), createTypeState(), distance2D(), end() (+26 more) ### Community 284 - "constructor" Cohesion: 0.06 -Nodes (34): animateList(), calcGeneratorVelocity(), constructor(), createAnimationState(), createState(), createTypeState(), distance2D(), end() (+26 more) +Nodes (35): animateList(), calcGeneratorVelocity(), constructor(), createAnimationState(), createState(), createTypeState(), distance2D(), end() (+27 more) ### Community 285 - "constructor" -Cohesion: 0.05 -Nodes (50): isEnabled(), add(), addDomEvent(), addListeners(), addPointerEvent(), addScaleCorrector(), addUniqueItem(), addVariantChild() (+42 more) +Cohesion: 0.08 +Nodes (24): animateList(), calcGeneratorVelocity(), constructor(), createAnimationState(), createState(), createTypeState(), distance2D(), end() (+16 more) ### Community 286 - "ciControlRelocationCore.ts" -Cohesion: 0.09 -Nodes (31): CI_RETENTION_ENV, ciExpiresAt(), CiRetentionClass, CiRetentionPolicy, daysFor(), DEFAULT_CI_RETENTION_DAYS, describeCiRetention(), parseDays() (+23 more) +Cohesion: 0.10 +Nodes (29): CI_RETENTION_ENV, ciExpiresAt(), CiRetentionClass, CiRetentionPolicy, daysFor(), DEFAULT_CI_RETENTION_DAYS, describeCiRetention(), parseDays() (+21 more) ### Community 287 - "apiFailure.ts" -Cohesion: 0.04 -Nodes (81): request(), API_TONE_COLOR, clamp(), clampPanelPosition(), clampTriggerPosition(), DevKit(), EMPTY_API_CALLS, FixedPosition (+73 more) +Cohesion: 0.10 +Nodes (35): request(), requestEvents(), toQuery(), localActionErrorMessage(), isUnknownReactionFailure(), reactionFailureMessage(), shouldReconcileReactionFailure(), sensitiveRevealErrorMessage() (+27 more) ### Community 288 - "parse" Cohesion: 0.08 Nodes (40): alloc(), append(), asRGBA(), caret(), char(), charat(), comment(), commenter() (+32 more) ### Community 289 - "parse" -Cohesion: 0.08 -Nodes (40): alloc(), append(), asRGBA(), caret(), char(), charat(), comment(), commenter() (+32 more) +Cohesion: 0.09 +Nodes (36): alloc(), append(), asRGBA(), caret(), char(), charat(), comment(), commenter() (+28 more) ### Community 290 - "parse" Cohesion: 0.08 @@ -3055,28 +3048,28 @@ Cohesion: 0.08 Nodes (40): alloc(), append(), asRGBA(), caret(), char(), charat(), comment(), commenter() (+32 more) ### Community 299 - "completeWork" -Cohesion: 0.11 -Nodes (34): commitUpdate(), completeWork(), createInstance(), createTextInstance(), createTextNode(), cutOffTailIfNeeded(), getHostContext(), getOwnerDocumentFromRootContainer() (+26 more) +Cohesion: 0.06 +Nodes (53): bubbleProperties(), checkForUnmatchedText(), commitUpdate(), completeDehydratedSuspenseBoundary(), completeWork(), createInstance(), createTextInstance(), createTextNode() (+45 more) ### Community 300 - "package.json" Cohesion: 0.05 Nodes (38): author, categories, commands, contributors, dependencies, fuse.js, mathjs, @raycast/api (+30 more) ### Community 301 - "updateDehydratedSuspenseComponent" -Cohesion: 0.06 -Nodes (51): addSubtreeSuspenseContext(), cloneChildFibers(), createCapturedValue(), createFiberFromElement(), createFiberFromFragment(), createFiberFromOffscreen(), createFiberFromProfiler(), createFiberFromSuspense() (+43 more) +Cohesion: 0.05 +Nodes (53): addSubtreeSuspenseContext(), cloneChildFibers(), createCapturedValue(), createFiberFromElement(), createFiberFromFragment(), createFiberFromOffscreen(), createFiberFromProfiler(), createFiberFromSuspense() (+45 more) ### Community 302 - "jsonlRpc.ts" Cohesion: 0.12 Nodes (9): JsonRpcTransport, LOCAL_CONNECTOR_ERROR_MESSAGES, LocalConnectorErrorCode, PendingRequest, RpcId, RpcMessage, RpcMessageHandler, sanitizeLocalConnectorError() (+1 more) -### Community 303 - "pokeworld.test.ts" -Cohesion: 0.07 -Nodes (48): catchAttempt(), CAVE_SPECIES, defaultBiomesFor(), defaultRuleId(), defaultRulesFor(), defaultSpawnRules(), ENCOUNTER_BIOMES, ENCOUNTER_STEP_CHANCE (+40 more) +### Community 303 - "encounters.ts" +Cohesion: 0.08 +Nodes (38): CAVE_SPECIES, defaultBiomesFor(), defaultRuleId(), defaultRulesFor(), defaultSpawnRules(), ENCOUNTER_BIOMES, ENCOUNTER_STEP_CHANCE, EncounterBiome (+30 more) ### Community 304 - "status.ts" -Cohesion: 0.11 -Nodes (42): appendDeploymentIdToDashboardUrl(), clampPercent(), deploymentPageCache, formatBuildPhase(), formatRelativeTime(), getBuildProgressFromChecks(), getCachedJson(), getDashboardOwnerSlug() (+34 more) +Cohesion: 0.12 +Nodes (37): appendDeploymentIdToDashboardUrl(), clampPercent(), deploymentPageCache, formatBuildPhase(), formatRelativeTime(), getBuildProgressFromChecks(), getDashboardOwnerSlug(), getDashboardProjectSlug() (+29 more) ### Community 305 - "ensure-dependencies.js" Cohesion: 0.06 @@ -3086,182 +3079,182 @@ Nodes (31): children, devContext, { ensureDependencies }, loadLocalEnv(), parseE Cohesion: 0.09 Nodes (32): createFiberFromHostInstanceForDeletion(), deleteHydratableInstance(), didNotFindHydratableInstance(), didNotFindHydratableInstanceWithinContainer(), didNotFindHydratableInstanceWithinSuspenseInstance(), didNotFindHydratableTextInstance(), didNotFindHydratableTextInstanceWithinContainer(), didNotFindHydratableTextInstanceWithinSuspenseInstance() (+24 more) -### Community 307 - "getValue" -Cohesion: 0.07 -Nodes (44): addValue(), analyseComplexValue(), convertBoundingBoxToBox(), createTransformer(), get(), getAnimatableNone(), getAnimatableNone2(), getComputedStyle() (+36 more) +### Community 307 - "trim" +Cohesion: 0.08 +Nodes (34): analyseComplexValue(), createTransformer(), get(), getAnimatableNone(), getAnimatableNone2(), getComputedStyle(), getTheme3(), getVariableValue() (+26 more) ### Community 308 - "constructor" -Cohesion: 0.07 -Nodes (32): animateList(), calcGeneratorVelocity(), constructor(), createAnimationState(), createState(), createTypeState(), distance2D(), end() (+24 more) +Cohesion: 0.05 +Nodes (50): isEnabled(), add(), addDomEvent(), addListeners(), addPointerEvent(), addScaleCorrector(), addUniqueItem(), addVariantChild() (+42 more) ### Community 309 - "astro.test.ts" Cohesion: 0.12 Nodes (29): findTransits(), context, melbourneProfile, NOW, arcBetween(), ascendant(), birthInstant(), BirthProfile (+21 more) -### Community 310 - "trainer.ts" -Cohesion: 0.10 -Nodes (34): grantBattleExp(), moveId(), movesFor(), toBattleMove(), calcStats(), expForLevel(), expGainForDefeat(), levelForExp() (+26 more) +### Community 310 - "battle.ts" +Cohesion: 0.06 +Nodes (70): applyEndOfTurn(), BattleMon, battleMonFromMember(), BattleMove, catchAttempt(), concludeIfFainted(), decrementPp(), effectiveAttack() (+62 more) ### Community 311 - "completeWork" -Cohesion: 0.04 -Nodes (78): bubbleProperties(), commitUpdate(), completeDehydratedSuspenseBoundary(), completeWork(), createFiberFromHostInstanceForDeletion(), createInstance(), createTextInstance(), createTextNode() (+70 more) +Cohesion: 0.05 +Nodes (72): bubbleProperties(), commitUpdate(), completeDehydratedSuspenseBoundary(), completeWork(), createFiberFromHostInstanceForDeletion(), createInstance(), createTextInstance(), createTextNode() (+64 more) ### Community 312 - "captureCommitPhaseError" Cohesion: 0.04 -Nodes (99): captureCommitPhaseError(), clearContainer(), clearSuspenseBoundary(), clearSuspenseBoundaryFromContainer(), commitAttachRef(), commitBeforeMutationEffects_complete(), commitBeforeMutationEffectsOnFiber(), commitDeletionEffects() (+91 more) +Nodes (89): captureCommitPhaseError(), clearContainer(), clearSuspenseBoundary(), clearSuspenseBoundaryFromContainer(), commitAttachRef(), commitBeforeMutationEffects_complete(), commitBeforeMutationEffectsOnFiber(), commitDeletionEffects() (+81 more) ### Community 313 - "popHydrationState" -Cohesion: 0.09 -Nodes (32): createFiberFromHostInstanceForDeletion(), deleteHydratableInstance(), didNotFindHydratableInstance(), didNotFindHydratableInstanceWithinContainer(), didNotFindHydratableInstanceWithinSuspenseInstance(), didNotFindHydratableTextInstance(), didNotFindHydratableTextInstanceWithinContainer(), didNotFindHydratableTextInstanceWithinSuspenseInstance() (+24 more) +Cohesion: 0.08 +Nodes (37): bubbleProperties(), completeDehydratedSuspenseBoundary(), createFiberFromHostInstanceForDeletion(), deleteHydratableInstance(), didNotFindHydratableInstance(), didNotFindHydratableInstanceWithinContainer(), didNotFindHydratableInstanceWithinSuspenseInstance(), didNotFindHydratableTextInstance() (+29 more) -### Community 314 - ".testNewestFrameBackpressureDropsSupersededPendingFrame" -Cohesion: 0.15 -Nodes (17): CoreVideo, ScreenCaptureEvent, failed, frame, stopped, ScreenCaptureLimits, FakeScreenCaptureBackendSnapshot, GatedScreenCaptureEncoder (+9 more) +### Community 314 - "ScreenCapture.swift" +Cohesion: 0.03 +Nodes (101): CMSampleBuffer, CoreImage, CoreMedia, CoreVideo, unstable_next(), unstable_runWithPriority(), unstable_next(), unstable_runWithPriority() (+93 more) ### Community 315 - "commitRootImpl" -Cohesion: 0.09 -Nodes (33): commitPassiveMountEffects(), commitPassiveMountEffects_begin(), commitPassiveUnmountEffects(), commitRoot(), commitRootImpl(), discreteUpdates(), dispatchContinuousEvent(), dispatchDiscreteEvent() (+25 more) +Cohesion: 0.08 +Nodes (35): commitPassiveMountEffects(), commitPassiveMountEffects_begin(), commitPassiveUnmountEffects(), commitRoot(), commitRootImpl(), discreteUpdates(), dispatchContinuousEvent(), dispatchDiscreteEvent() (+27 more) ### Community 316 - "generate-branding-assets.mjs" Cohesion: 0.07 Nodes (35): resolveLogoColour(), blit(), cellColours(), CONFETTI_COLOURS, coverageMap(), crc32(), CRC_TABLE, encodePng() (+27 more) ### Community 317 - "DocsLayout.tsx" -Cohesion: 0.08 -Nodes (29): designEntries, DesignEntry, DesignEntryKind, designKindColors, getDesignEntryBySlug(), getDesignEntryPreviewSrc(), DesignWorkspace(), DesignWorkspaceProps (+21 more) +Cohesion: 0.07 +Nodes (31): conceptEntries, designSystemEntries, designEntries, DesignEntry, DesignEntryKind, designKindColors, getDesignEntryBySlug(), getDesignEntryPreviewSrc() (+23 more) -### Community 318 - "stop" -Cohesion: 0.09 -Nodes (32): attachTimeline(), calcGeneratorDuration(), calcStartTime(), canAnimate(), cancel(), clearAnimation(), complete(), duration() (+24 more) +### Community 318 - "initPlayback" +Cohesion: 0.10 +Nodes (28): attachTimeline(), calcGeneratorDuration(), calcStartTime(), canAnimate(), cancel(), complete(), finish(), flatten() (+20 more) -### Community 319 - "runOperation.ts" -Cohesion: 0.15 -Nodes (27): Command(), convertFormats, formats, openNewFinderWindow(), regexToReplacementConverter(), REPLACEMENT_ESCAPES, unescapeRegexReplacementText(), regexTrim() (+19 more) +### Community 319 - "utils.ts" +Cohesion: 0.09 +Nodes (45): Command(), convertFormats, formats, openNewFinderWindow(), regexToReplacementConverter(), REPLACEMENT_ESCAPES, unescapeRegexReplacementText(), regexTrim() (+37 more) -### Community 320 - "getValue" +### Community 320 - "trim" Cohesion: 0.08 -Nodes (40): addValue(), analyseComplexValue(), createTransformer(), get(), getAnimatableNone(), getAnimatableNone2(), getComputedStyle(), getStaticValue() (+32 more) +Nodes (34): analyseComplexValue(), createTransformer(), get(), getAnimatableNone(), getAnimatableNone2(), getComputedStyle(), getTheme3(), getVariableValue() (+26 more) ### Community 321 - ".evidence" -Cohesion: 0.11 -Nodes (15): Bool, Int32, String, ThingtimeNodeBridgeCodeIdentity, ThingtimeNodeBridgeParentEvidence, ThingtimeNodeBridgeParentPolicy, BridgeParentPolicyTests, Bool (+7 more) +Cohesion: 0.12 +Nodes (15): DirectParentAuthenticator, Bool, pid_t, String, Bool, Int32, String, ThingtimeNodeBridgeCodeIdentity (+7 more) ### Community 322 - "vite.config.ts" Cohesion: 0.08 Nodes (17): appleAppAssociation(), assetPath(), installPreviewBuildFreshness(), isStalePreviewEntry(), isVercelPreviewHost(), previewEntryAssetFromHtml(), previewEntryAssetFromSources(), PreviewFreshnessRuntime (+9 more) -### Community 323 - "useThingtime" +### Community 323 - "_react.tsx" Cohesion: 0.01 -Nodes (212): COMMANDER_CLICK_AWAY_EVENTS, CommanderClickAwayBoundary(), shouldCloseCommanderForTarget(), COMMANDER_COMMANDS, CommanderCommand, CommanderCommandContext, commanderCommandEnterIndex(), CommanderLopuStatus (+204 more) +Nodes (212): Submit(), TestAPI(), Branding(), BrandingAssetRecord, brandingAssetRecords, pressKitRecords, variantRecords, Logo() (+204 more) ### Community 324 - "deviceCore.ts" -Cohesion: 0.16 -Nodes (30): ACTION_CAPABILITY, blockedPolicy(), boundedInteger(), cacheAgentSession(), cacheCapability(), cacheCommand(), cacheDesired(), cacheError() (+22 more) +Cohesion: 0.13 +Nodes (34): ACTION_CAPABILITY, blockedPolicy(), boundedInteger(), cacheAgentSession(), cacheCapability(), cacheCommand(), cacheDesired(), cacheError() (+26 more) ### Community 325 - "DaemonSupervisor" Cohesion: 0.14 Nodes (19): DaemonError, alreadyRunning, invalidHandshake, missingResource, portInUse, stopped, timedOut, DaemonSupervisor (+11 more) ### Community 326 - "commitRootImpl" -Cohesion: 0.09 -Nodes (33): commitPassiveMountEffects(), commitPassiveMountEffects_begin(), commitPassiveUnmountEffects(), commitRoot(), commitRootImpl(), discreteUpdates(), dispatchContinuousEvent(), dispatchDiscreteEvent() (+25 more) +Cohesion: 0.04 +Nodes (75): cancelCallback$1(), commitMutationEffects(), commitPassiveMountEffects(), commitPassiveMountEffects_begin(), commitPassiveUnmountEffects(), commitRoot(), commitRootImpl(), computeExpirationTime() (+67 more) -### Community 327 - "utils.ts" -Cohesion: 0.09 -Nodes (49): Command(), Command(), any(), convert(), flip(), optimize(), optimizeJPEG(), optimizeSVG() (+41 more) +### Community 327 - "moveImageResultsToFinalDestination" +Cohesion: 0.13 +Nodes (30): Command(), Command(), flip(), optimize(), optimizeJPEG(), optimizeSVG(), optimizeWEBP(), pad() (+22 more) ### Community 328 - "adminDiagnostic.ts" -Cohesion: 0.15 -Nodes (28): AdminDiagnosticRevealable, AdminDiagnosticRevealContext, captureAdminErrorDiagnostic(), captureObjectId(), CaptureState, createCaptureState(), CREDENTIAL_COMPONENTS, credentialLabelComponents() (+20 more) +Cohesion: 0.09 +Nodes (40): AdminDiagnosticRevealable, AdminDiagnosticRevealContext, AdminErrorDiagnostic, captureAdminErrorDiagnostic(), captureObjectId(), CaptureState, createCaptureState(), CREDENTIAL_COMPONENTS (+32 more) ### Community 329 - "updateDehydratedSuspenseComponent" -Cohesion: 0.08 -Nodes (36): addSubtreeSuspenseContext(), createCapturedValue(), createFiberFromFragment(), createFiberFromOffscreen(), findFirstSuspended(), findLastContentRow(), getSuspendedCache(), getSuspenseInstanceFallbackErrorDetails() (+28 more) +Cohesion: 0.06 +Nodes (48): addSubtreeSuspenseContext(), attemptEarlyBailoutIfNoScheduledUpdate(), createCapturedValue(), createFiberFromFragment(), createFiberFromOffscreen(), findFirstSuspended(), findLastContentRow(), getChildHostContext() (+40 more) -### Community 330 - "webpageRuntime.tsx" -Cohesion: 0.10 -Nodes (27): withFetch(), evictSharedLoads(), INERT_RUNTIME, INERT_VIEWER, MAX_SHARED_SOURCE_LOADS, queryScopeOf(), readSourceCache(), sourceCacheKey() (+19 more) +### Community 330 - "ComponentDetailPage.tsx" +Cohesion: 0.02 +Nodes (175): DelegatedRunOutcome, messageOf(), runDelegatedAction(), TtActionUnownedHandler, DROP_TAGS, elementToNode(), htmlToNode(), styleTextToObject() (+167 more) ### Community 331 - "getProps" Cohesion: 0.09 Nodes (29): calcRelativeAxisConstraints(), calcRelativeConstraints(), calcViewportAxisConstraints(), calcViewportConstraints(), convertBoundingBoxToBox(), convertBoxToBoundingBox(), createProjectionNode(), eachAxis() (+21 more) -### Community 332 - "model.ts" +### Community 332 - "importer.ts" Cohesion: 0.11 -Nodes (18): connectorInfo(), server, prepareIngestion(), ThingtimeIngestionRecord, Attachment, attachmentSchema, Conversation, conversationSchema (+10 more) +Nodes (23): selectConnector(), archiveInput(), connectorInfo(), importArchive(), importArchiveBytes(), ingestCurrentConversation(), parseJsonBytes(), server (+15 more) -### Community 333 - "ThingtimeMenuBarIconID" -Cohesion: 0.10 -Nodes (19): CGPoint, Bool, Int, ThingtimeMenuBarIconID, custom, treeBlack, treeBlue, treeColor (+11 more) +### Community 333 - "forEach" +Cohesion: 0.08 +Nodes (27): animateChildren(), clear(), clearListeners(), destroy(), filterEvents(), flushKeyframeResolvers(), forEach(), getBaseTarget() (+19 more) ### Community 334 - "FooterStatusPanel.tsx" Cohesion: 0.11 -Nodes (29): BasicServiceHealthStatus, MongoStatus(), pulse, STATUS_COLORS, FooterStatusPanel(), StoredEnvironmentSelection, FrontendStatus(), NitroStatus() (+21 more) +Nodes (29): MongoConnectionStatus, MongoStatus(), pulse, STATUS_COLORS, FooterStatusPanel(), StoredEnvironmentSelection, FrontendStatus(), NitroStatus() (+21 more) ### Community 335 - "SearchResultCache" -Cohesion: 0.11 -Nodes (14): CacheEntry, expandDirectory(), LegacyCacheEntry, lookupFromEntry(), normalizedQuery(), parseEntry(), SearchCacheLookup, SearchCacheRequest (+6 more) - -### Community 336 - "trim" -Cohesion: 0.11 -Nodes (25): analyseComplexValue(), createTransformer(), get(), getAnimatableNone(), getAnimatableNone2(), getTheme3(), getVariableValue(), guard() (+17 more) +Cohesion: 0.10 +Nodes (16): commanderCacheDirectory(), CacheEntry, expandDirectory(), LegacyCacheEntry, lookupFromEntry(), normalizedQuery(), parseEntry(), SearchCacheLookup (+8 more) -### Community 337 - "getValue" +### Community 336 - "getValue" Cohesion: 0.07 -Nodes (45): addValue(), analyseComplexValue(), createTransformer(), get(), getAnimatableNone(), getAnimatableNone2(), getComputedStyle(), getStaticValue() (+37 more) +Nodes (44): addValue(), analyseComplexValue(), convertBoundingBoxToBox(), createTransformer(), get(), getAnimatableNone(), getAnimatableNone2(), getComputedStyle() (+36 more) -### Community 338 - "getValue" +### Community 337 - "trim" Cohesion: 0.08 -Nodes (38): addValue(), analyseComplexValue(), createTransformer(), get(), getAnimatableNone(), getAnimatableNone2(), getComputedStyle(), getStaticValue() (+30 more) +Nodes (30): analyseComplexValue(), createTransformer(), get(), getAnimatableNone(), getAnimatableNone2(), getBaseTarget(), getBaseTargetFromProps(), getTheme3() (+22 more) + +### Community 338 - "getValue" +Cohesion: 0.07 +Nodes (44): addValue(), analyseComplexValue(), convertBoundingBoxToBox(), createTransformer(), get(), getAnimatableNone(), getAnimatableNone2(), getComputedStyle() (+36 more) ### Community 339 - "trim" Cohesion: 0.08 Nodes (34): analyseComplexValue(), createTransformer(), get(), getAnimatableNone(), getAnimatableNone2(), getComputedStyle(), getTheme3(), getVariableValue() (+26 more) ### Community 340 - "desktop.ts" -Cohesion: 0.09 -Nodes (36): connectors, selectConnector(), APP_SUPPORT, bounded(), CHATGPT_STATE, CLAUDE_TRANSCRIPTS, cleanVisibleText(), contentText() (+28 more) +Cohesion: 0.10 +Nodes (30): APP_SUPPORT, bounded(), CHATGPT_STATE, CLAUDE_TRANSCRIPTS, cleanVisibleText(), contentText(), DesktopProvider, DesktopSourceDescriptor (+22 more) -### Community 341 - "index.ts" -Cohesion: 0.06 -Nodes (57): memberFromBattleMon(), asDirection(), asFinite(), asGender(), asInt(), asRecord(), asSpecies(), bagOfKeys() (+49 more) +### Community 341 - "pokeworld.test.ts" +Cohesion: 0.08 +Nodes (42): call(), context(), reachesPortal(), SAMPLE_BLOCKS, trainer(), ULURU, walkable(), wildOf() (+34 more) ### Community 342 - "starsalign.ts" -Cohesion: 0.07 -Nodes (45): birthFormComponent, button(), card(), chip(), combosAction, combosComponent, combosMetaAction, each() (+37 more) +Cohesion: 0.06 +Nodes (27): birthFormComponent, combosAction, combosComponent, combosMetaAction, each(), entryAction, entryComponent, eraseAction (+19 more) ### Community 343 - "algorithms.ts" -Cohesion: 0.09 -Nodes (45): algorithmThingToDoc(), createAlgorithm(), CreateAlgorithmInput, deleteAlgorithm(), Fail, FeedAlgorithmDoc, findOwnedAlgorithm(), findOwnedAlgorithmWithEra() (+37 more) +Cohesion: 0.08 +Nodes (46): algorithmThingToDoc(), createAlgorithm(), CreateAlgorithmInput, deleteAlgorithm(), Fail, FeedAlgorithmDoc, findOwnedAlgorithm(), findOwnedAlgorithmWithEra() (+38 more) ### Community 344 - "sideload.ts" -Cohesion: 0.11 -Nodes (28): findRaycastManifest(), loadManifest(), PreparedRaycastExtension, PrepareRaycastExtensionOptions, boundedLimit(), crc32(), CRC_TABLE, decodeZipName() (+20 more) +Cohesion: 0.10 +Nodes (30): json(), serveStatic(), findRaycastManifest(), loadManifest(), PreparedRaycastExtension, PrepareRaycastExtensionOptions, boundedLimit(), crc32() (+22 more) ### Community 345 - "DaemonReady" -Cohesion: 0.13 +Cohesion: 0.12 Nodes (14): DaemonReady, Int32, KeychainCredentialEnvironment, KeychainError, invalidData, status, KeychainStore, Set (+6 more) ### Community 346 - "scripts" Cohesion: 0.06 Nodes (32): description, devDependencies, prettier, @types/node, typescript, vitest, engines, node (+24 more) -### Community 347 - "stop" -Cohesion: 0.09 -Nodes (32): attachTimeline(), calcGeneratorDuration(), calcStartTime(), canAnimate(), cancel(), clearAnimation(), complete(), duration() (+24 more) - -### Community 348 - "stop" -Cohesion: 0.09 -Nodes (32): attachTimeline(), calcGeneratorDuration(), calcStartTime(), canAnimate(), cancel(), clearAnimation(), complete(), duration() (+24 more) - -### Community 349 - "editorJsHtml.ts" -Cohesion: 0.11 -Nodes (26): blockToHtml(), editorJsToHtml(), elementToBlocks(), elementToUnstyledBlocks(), escapeHtml(), htmlToEditorJs(), htmlToPlainText(), ListItem (+18 more) +### Community 347 - "initPlayback" +Cohesion: 0.10 +Nodes (28): attachTimeline(), calcGeneratorDuration(), calcStartTime(), canAnimate(), cancel(), complete(), finish(), flatten() (+20 more) -### Community 350 - "initPlayback" +### Community 348 - "initPlayback" Cohesion: 0.10 Nodes (28): attachTimeline(), calcGeneratorDuration(), calcStartTime(), canAnimate(), cancel(), complete(), finish(), flatten() (+20 more) +### Community 349 - "commitRootImpl" +Cohesion: 0.12 +Nodes (26): commitRoot(), commitRootImpl(), discreteUpdates(), dispatchContinuousEvent(), dispatchDiscreteEvent(), dispatchEvent(), flushPassiveEffects(), flushRenderPhaseStrictModeWarningsInDEV() (+18 more) + +### Community 350 - "stop" +Cohesion: 0.09 +Nodes (32): attachTimeline(), calcGeneratorDuration(), calcStartTime(), canAnimate(), cancel(), clearAnimation(), complete(), duration() (+24 more) + ### Community 351 - "stop" Cohesion: 0.09 Nodes (32): attachTimeline(), calcGeneratorDuration(), calcStartTime(), canAnimate(), cancel(), clearAnimation(), complete(), duration() (+24 more) @@ -3274,9 +3267,9 @@ Nodes (32): attachTimeline(), calcGeneratorDuration(), calcStartTime(), canAnima Cohesion: 0.09 Nodes (32): attachTimeline(), calcGeneratorDuration(), calcStartTime(), canAnimate(), cancel(), clearAnimation(), complete(), duration() (+24 more) -### Community 354 - "createElement" -Cohesion: 0.08 -Nodes (30): checkForUnmatchedText(), cloneElement(), commitUpdate(), createElement(), createInstance(), createTextInstance(), createTextNode(), defineKeyPropWarningGetter() (+22 more) +### Community 354 - "completeWork" +Cohesion: 0.06 +Nodes (52): bubbleProperties(), checkForUnmatchedText(), commitUpdate(), compare(), completeDehydratedSuspenseBoundary(), completeWork(), createInstance(), createTextInstance() (+44 more) ### Community 355 - "stop" Cohesion: 0.09 @@ -3286,13 +3279,13 @@ Nodes (32): attachTimeline(), calcGeneratorDuration(), calcStartTime(), canAnima Cohesion: 0.09 Nodes (32): attachTimeline(), calcGeneratorDuration(), calcStartTime(), canAnimate(), cancel(), clearAnimation(), complete(), duration() (+24 more) -### Community 357 - "ensureRootIsScheduled" -Cohesion: 0.04 -Nodes (92): addFiberToLanesMap(), attemptContinuousHydration$1(), attemptHydrationAtCurrentPriority$1(), attemptSynchronousHydration$1(), batchedUpdates$1(), cancelCallback$1(), captureCommitPhaseErrorOnRoot(), checkForNestedUpdates() (+84 more) +### Community 357 - "scheduleUpdateOnFiber" +Cohesion: 0.05 +Nodes (62): attemptContinuousHydration$1(), attemptHydrationAtCurrentPriority$1(), attemptSynchronousHydration$1(), batchedUpdates$1(), captureCommitPhaseErrorOnRoot(), checkForNestedUpdates(), checkIfSnapshotChanged(), claimNextTransitionLane() (+54 more) -### Community 358 - "devices.ts" -Cohesion: 0.06 -Nodes (67): isFullAccountSessionPurpose(), bearerCredential(), CanonicalDevicePairingClaim, canonicalDevicePairingClaimBytes(), createDevicePairingSession(), DeviceActor, deviceCredentialHash(), devicePairingProofHash() (+59 more) +### Community 358 - "getHomeThingsCollection" +Cohesion: 0.02 +Nodes (335): syncBoundTargetAttachments(), isFullAccountSessionPurpose(), bearerCredential(), CanonicalDevicePairingClaim, canonicalDevicePairingClaimBytes(), createDevicePairingSession(), DeviceActor, deviceCredentialHash() (+327 more) ### Community 359 - "stop" Cohesion: 0.09 @@ -3302,9 +3295,9 @@ Nodes (32): attachTimeline(), calcGeneratorDuration(), calcStartTime(), canAnima Cohesion: 0.08 Nodes (21): electronBuilder, electronDir, identity, resolveAppleDevelopmentIdentity(), run(), signingEnvironment, developerIdIdentity(), electronBuilder (+13 more) -### Community 361 - "stop" -Cohesion: 0.07 -Nodes (43): addValue(), addValueToWillChange(), animateSingleValue(), animateTarget(), animateVariant(), animateVisualElement(), applyConstraints(), cancelTreeOptimisedTransformAnimations() (+35 more) +### Community 361 - "getProps" +Cohesion: 0.06 +Nodes (43): addValueToWillChange(), animateSingleValue(), animateTarget(), animateVariant(), animateVisualElement(), applyConstraints(), calcRelativeAxisConstraints(), calcRelativeConstraints() (+35 more) ### Community 362 - "calculator.ts" Cohesion: 0.14 @@ -3312,19 +3305,19 @@ Nodes (22): applyFunction(), applyOperator(), bindingPower(), calculatorSearchHi ### Community 363 - "Path" Cohesion: 0.10 -Nodes (26): ImageGeneratorActionPanel(), SizeSelectionActionPanel(), applyFilter(), applyBasicFilter(), filters, getFilterThumbnail(), initializeFilterScript(), generatePlaceholder() (+18 more) +Nodes (27): ImageGeneratorActionPanel(), SizeSelectionActionPanel(), applyFilter(), ImageResultHandling, applyBasicFilter(), filters, getFilterThumbnail(), initializeFilterScript() (+19 more) -### Community 364 - "commitRootImpl" -Cohesion: 0.09 -Nodes (33): commitPassiveMountEffects(), commitPassiveMountEffects_begin(), commitPassiveUnmountEffects(), commitRoot(), commitRootImpl(), discreteUpdates(), dispatchContinuousEvent(), dispatchDiscreteEvent() (+25 more) +### Community 364 - "providerProbe.ts" +Cohesion: 0.10 +Nodes (21): AI_MODEL_PROVIDER_IDS, AI_PROVIDER_ENV_HINTS, AiModelProviderId, AiProviderProbeOutcome, AiProviderProbeDependencies, AiProviderProbeFetch, AiProviderProbeFetchInit, AiProviderProbeOptions (+13 more) ### Community 365 - "popHydrationState" -Cohesion: 0.09 -Nodes (32): createFiberFromHostInstanceForDeletion(), deleteHydratableInstance(), didNotFindHydratableInstance(), didNotFindHydratableInstanceWithinContainer(), didNotFindHydratableInstanceWithinSuspenseInstance(), didNotFindHydratableTextInstance(), didNotFindHydratableTextInstanceWithinContainer(), didNotFindHydratableTextInstanceWithinSuspenseInstance() (+24 more) +Cohesion: 0.08 +Nodes (37): bubbleProperties(), completeDehydratedSuspenseBoundary(), createFiberFromHostInstanceForDeletion(), deleteHydratableInstance(), didNotFindHydratableInstance(), didNotFindHydratableInstanceWithinContainer(), didNotFindHydratableInstanceWithinSuspenseInstance(), didNotFindHydratableTextInstance() (+29 more) -### Community 366 - "LopuChatView.tsx" -Cohesion: 0.06 -Nodes (45): AccountRow(), LopuRingAvatar(), LopuBalanceChip(), lopuBalanceChipLabel(), LopuBalanceChipProps, LopuBalanceTone, TONE_COLORS, LOPU_SUGGESTIONS (+37 more) +### Community 366 - "getValue" +Cohesion: 0.12 +Nodes (24): addValue(), calcViewportAxisConstraints(), calcViewportConstraints(), convertBoundingBoxToBox(), convertBoxToBoundingBox(), getComputedStyle(), getStaticValue(), getValue() (+16 more) ### Community 367 - "forEach" Cohesion: 0.08 @@ -3332,7 +3325,7 @@ Nodes (27): animateChildren(), clear(), clearListeners(), destroy(), filterEvent ### Community 368 - "push" Cohesion: 0.05 -Nodes (54): accumulateEnterLeaveListenersForEvent(), accumulateEnterLeaveTwoPhaseListeners(), accumulateSinglePhaseListeners(), accumulateTwoPhaseListeners(), compare(), constructSelectEvent(), createAndAccumulateChangeEvent(), createDispatchListener() (+46 more) +Nodes (63): accumulateEnterLeaveListenersForEvent(), accumulateEnterLeaveTwoPhaseListeners(), accumulateSinglePhaseListeners(), accumulateTwoPhaseListeners(), compare(), constructSelectEvent(), createDispatchListener(), createLaneMap() (+55 more) ### Community 369 - "popHydrationState" Cohesion: 0.09 @@ -3346,33 +3339,33 @@ Nodes (37): bubbleProperties(), completeDehydratedSuspenseBoundary(), createFibe Cohesion: 0.16 Nodes (4): CodexAppServerConnector, textInput(), SendMessageRequest, SendMessageResult -### Community 372 - "popHydrationState" -Cohesion: 0.08 -Nodes (37): bubbleProperties(), completeDehydratedSuspenseBoundary(), createFiberFromHostInstanceForDeletion(), deleteHydratableInstance(), didNotFindHydratableInstance(), didNotFindHydratableInstanceWithinContainer(), didNotFindHydratableInstanceWithinSuspenseInstance(), didNotFindHydratableTextInstance() (+29 more) +### Community 372 - "completeWork" +Cohesion: 0.04 +Nodes (87): bubbleProperties(), cloneElement(), commitUpdate(), completeDehydratedSuspenseBoundary(), completeWork(), createElement(), createFiberFromHostInstanceForDeletion(), createInstance() (+79 more) ### Community 373 - "install-local-app.mjs" Cohesion: 0.11 Nodes (29): executeCachedReleasePlan(), fail(), main(), parseArguments(), processExists(), readPlan(), verifyCachedReleaseSource(), waitForExit() (+21 more) -### Community 374 - "embeddedThings.ts" -Cohesion: 0.11 -Nodes (25): inspectHomeLegacyThingQueries(), activateIndexLayout(), homeLegacyThingLayoutReady(), invalidateLegacyThingLayout(), LEGACY_THING_INDEX_NAMES, migrateLegacyThingIndexLayout(), runLegacyThingIndexLayout(), fixture() (+17 more) +### Community 374 - "createRoot" +Cohesion: 0.10 +Nodes (24): createContext(), createFactoryWithValidation(), createPortal(), createPortal$1(), createRoot(), createRoot$1(), getReactRootElementInContainer(), hydrate() (+16 more) ### Community 375 - "LopuVoiceSessionController" Cohesion: 0.14 Nodes (16): Activity, AVSpeechSynthesizer, AVSpeechSynthesizerDelegate, AVSpeechUtterance, LopuVoiceSessionController, Any, Double, Never (+8 more) ### Community 376 - "updateWorkInProgressHook" -Cohesion: 0.08 -Nodes (37): areHookInputsEqual(), basicStateReducer(), createFunctionComponentUpdateQueue(), getWorkInProgressRoot(), includesBlockingLane(), markWorkInProgressReceivedUpdate(), mountCallback(), mountDeferredValue() (+29 more) +Cohesion: 0.07 +Nodes (43): areHookInputsEqual(), basicStateReducer(), createFunctionComponentUpdateQueue(), getWorkInProgressRoot(), includesBlockingLane(), includesOnlyNonUrgentLanes(), markSkippedUpdateLanes(), markWorkInProgressReceivedUpdate() (+35 more) ### Community 377 - "updateWorkInProgressHook" Cohesion: 0.07 -Nodes (44): areHookInputsEqual(), basicStateReducer(), createFunctionComponentUpdateQueue(), getWorkInProgressRoot(), includesBlockingLane(), includesOnlyNonUrgentLanes(), markSkippedUpdateLanes(), markWorkInProgressReceivedUpdate() (+36 more) +Nodes (43): areHookInputsEqual(), basicStateReducer(), createFunctionComponentUpdateQueue(), getWorkInProgressRoot(), includesBlockingLane(), includesOnlyNonUrgentLanes(), markSkippedUpdateLanes(), markWorkInProgressReceivedUpdate() (+35 more) -### Community 378 - "mergeLanes" -Cohesion: 0.04 -Nodes (78): areHookInputsEqual(), basicStateReducer(), claimNextTransitionLane(), createFunctionComponentUpdateQueue(), createHydrationContainer(), createUpdate(), dispatchReducerAction(), dispatchSetState() (+70 more) +### Community 378 - "updateWorkInProgressHook" +Cohesion: 0.07 +Nodes (42): areHookInputsEqual(), basicStateReducer(), createFunctionComponentUpdateQueue(), getWorkInProgressRoot(), includesBlockingLane(), includesOnlyNonUrgentLanes(), markWorkInProgressReceivedUpdate(), mountCallback() (+34 more) ### Community 379 - "Thingtime Owned Email Architecture" Cohesion: 0.06 @@ -3392,71 +3385,71 @@ Nodes (28): 1. What the Thingtime pipeline spends today, 2. Frontier multimodal ### Community 383 - "getValue" Cohesion: 0.07 -Nodes (44): addValue(), analyseComplexValue(), convertBoundingBoxToBox(), createTransformer(), get(), getAnimatableNone(), getAnimatableNone2(), getComputedStyle() (+36 more) +Nodes (42): addValue(), analyseComplexValue(), animateSingleValue(), createTransformer(), get(), getAnimatableNone(), getAnimatableNone2(), getComputedStyle() (+34 more) ### Community 384 - "updateWorkInProgressHook" -Cohesion: 0.10 -Nodes (30): areHookInputsEqual(), createFunctionComponentUpdateQueue(), getWorkInProgressRoot(), includesBlockingLane(), includesOnlyNonUrgentLanes(), markSkippedUpdateLanes(), markWorkInProgressReceivedUpdate(), mountSyncExternalStore() (+22 more) +Cohesion: 0.07 +Nodes (44): areHookInputsEqual(), basicStateReducer(), createFunctionComponentUpdateQueue(), getWorkInProgressRoot(), includesBlockingLane(), includesOnlyNonUrgentLanes(), markSkippedUpdateLanes(), markWorkInProgressReceivedUpdate() (+36 more) -### Community 385 - "getValue" -Cohesion: 0.08 -Nodes (38): addValue(), analyseComplexValue(), createTransformer(), get(), getAnimatableNone(), getAnimatableNone2(), getComputedStyle(), getStaticValue() (+30 more) +### Community 385 - "trim" +Cohesion: 0.06 +Nodes (42): analyseComplexValue(), createTransformer(), get(), getAnimatableNone(), getAnimatableNone2(), getBaseTarget(), getBaseTargetFromProps(), getComputedStyle() (+34 more) ### Community 386 - "githubClient.ts" -Cohesion: 0.07 -Nodes (53): featureStackTargetsForSource(), archiveFeatureStack(), dateString(), getFeatureStack(), linkDispatchWorkflowRun(), linkFeatureStackWorkflowRun(), listFeatureStacks(), markFeatureStackLifecycleStatus() (+45 more) +Cohesion: 0.13 +Nodes (23): featureStackTargetsForSource(), appJwt(), appPrivateKey(), buildFeatureStackInputs(), CachedToken, canonicalFeatureStackPlanFromPullRequests(), dispatchCiWorkflow(), encode() (+15 more) -### Community 387 - "getProps" -Cohesion: 0.06 -Nodes (43): addValueToWillChange(), animateSingleValue(), animateTarget(), animateVariant(), animateVisualElement(), applyConstraints(), calcRelativeAxisConstraints(), calcRelativeConstraints() (+35 more) +### Community 387 - "stop" +Cohesion: 0.10 +Nodes (29): addValueToWillChange(), animateTarget(), animateVariant(), animateVisualElement(), applyConstraints(), cancelTreeOptimisedTransformAnimations(), clearAnimation(), duration() (+21 more) -### Community 388 - "electronBridge.ts" -Cohesion: 0.08 -Nodes (25): cacheLabel(), releaseLabel(), electronUrlSettingKey(), electronUrlSettingPath(), getElectronSettingUrl(), ThingtimeAiDesktopSource, ThingtimeAiSyncBatch, ThingtimeDesktopBridge (+17 more) +### Community 388 - "GlobalHotKeyRegistry" +Cohesion: 0.16 +Nodes (14): Carbon, GlobalHotKeyRegistry, HotKeyError, invalidShortcut, registrationFailed, OSStatus, String, UInt32 (+6 more) ### Community 389 - "stop" Cohesion: 0.09 Nodes (32): attachTimeline(), calcGeneratorDuration(), calcStartTime(), canAnimate(), cancel(), clearAnimation(), complete(), duration() (+24 more) ### Community 390 - "helpers.ts" -Cohesion: 0.24 -Nodes (20): chatGptConnector, orderedMessages(), claudeConnector, arrayOf(), attachmentOf(), conversationBase(), idOf(), isoDate() (+12 more) +Cohesion: 0.23 +Nodes (19): chatGptConnector, orderedMessages(), claudeConnector, arrayOf(), attachmentOf(), conversationBase(), idOf(), isoDate() (+11 more) -### Community 391 - "initPlayback" -Cohesion: 0.10 -Nodes (28): attachTimeline(), calcGeneratorDuration(), calcStartTime(), canAnimate(), cancel(), complete(), finish(), flatten() (+20 more) +### Community 391 - "stop" +Cohesion: 0.09 +Nodes (32): attachTimeline(), calcGeneratorDuration(), calcStartTime(), canAnimate(), cancel(), clearAnimation(), complete(), duration() (+24 more) ### Community 392 - "LiveAISyncCoordinatorTests" -Cohesion: 0.24 -Nodes (9): LiveAISyncCoordinatorTests, RecordingLiveAISyncTransport, Int, JSONValue, String, T, URL, TestLiveAISyncFailure (+1 more) +Cohesion: 0.29 +Nodes (7): LiveAISyncCoordinatorTests, RecordingLiveAISyncTransport, Int, JSONValue, String, T, URL -### Community 393 - ".start" +### Community 393 - "CommanderSettingsTab" Cohesion: 0.13 -Nodes (12): CMSampleBuffer, backendFailure, displayUnavailable, ScreenCaptureKitBackend, ScreenCaptureKitOutput, ScreenCaptureKitSession, UUID, Void (+4 more) +Nodes (13): CommanderSettingsTab, about, account, activity, advanced, extensions, general, search (+5 more) ### Community 394 - "SystemMetricsService" Cohesion: 0.19 Nodes (12): ProcessCounters, Any, Double, Int, Int32, pid_t, String, UInt64 (+4 more) -### Community 395 - "diffHydratedProperties" -Cohesion: 0.06 -Nodes (60): assertValidProps(), checkControlledValueProps(), checkSelectPropTypes(), diffHydratedProperties(), diffProperties(), finalizeInitialChildren(), getBitLength(), getEventListenerSet() (+52 more) +### Community 395 - "error" +Cohesion: 0.03 +Nodes (119): act(), assertValidProps(), checkAttributeStringCoercion(), checkClassInstance(), checkControlledValueProps(), checkCSSPropertyStringCoercion(), checkDepsAreArrayDev(), checkFormFieldValueStringCoercion() (+111 more) ### Community 396 - "replace" Cohesion: 0.05 Nodes (47): toArray(), addPrefix(), addPrefix2(), analyzeBreakpoints(), analyzeCSSValue(), createResolver(), createThemeVars(), cssVar() (+39 more) -### Community 397 - "legacyCreateRootFromDOMContainer" -Cohesion: 0.08 -Nodes (34): createContainer(), createContext(), createFactoryWithValidation(), createFiberRoot(), createHostRootFiber(), createPortal(), createPortal$1(), createRoot() (+26 more) +### Community 397 - "error" +Cohesion: 0.04 +Nodes (93): act(), checkAttributeStringCoercion(), checkControlledValueProps(), checkCSSPropertyStringCoercion(), checkDepsAreArrayDev(), checkFormFieldValueStringCoercion(), checkHtmlStringCoercion(), checkKeyStringCoercion() (+85 more) ### Community 398 - "package.json" Cohesion: 0.07 Nodes (27): bin, thingtime-mcp, dependencies, fflate, @modelcontextprotocol/sdk, zod, description, devDependencies (+19 more) ### Community 399 - "Raw.tsx" -Cohesion: 0.09 -Nodes (22): MONGO_BLOCKED_QUERY_KEYS, MONGO_BSON_VALUE_TYPES, MONGO_PROTECTED_THING_FIELDS, MONGO_QUERY_COLLECTIONS, MONGO_QUERY_LIMITS, MONGO_QUERY_OPERATIONS, MONGO_READ_ONLY_AGGREGATION_STAGES, MongoQueryCollection (+14 more) +Cohesion: 0.13 +Nodes (14): MONGO_BLOCKED_QUERY_KEYS, MONGO_PROTECTED_THING_FIELDS, MONGO_QUERY_COLLECTIONS, MONGO_QUERY_LIMITS, MONGO_QUERY_OPERATIONS, MongoQueryCollection, MongoQueryOperation, MongoQueryRequest (+6 more) ### Community 400 - "editorJsPopoverViewport.ts" Cohesion: 0.09 @@ -3467,12 +3460,12 @@ Cohesion: 0.04 Nodes (39): App(), EmojiPicker, ActionsPanel(), CloudSyncSettings(), CommanderIcon(), bundledExtensionIds, CommandShortcutButton(), ExtensionMode (+31 more) ### Community 402 - "eachAxis" -Cohesion: 0.10 -Nodes (25): calcRelativeAxisConstraints(), calcRelativeConstraints(), calcViewportAxisConstraints(), calcViewportConstraints(), convertBoundingBoxToBox(), convertBoxToBoundingBox(), createProjectionNode(), eachAxis() (+17 more) +Cohesion: 0.11 +Nodes (22): calcRelativeAxisConstraints(), calcRelativeConstraints(), calcViewportAxisConstraints(), calcViewportConstraints(), convertBoundingBoxToBox(), convertBoxToBoundingBox(), createProjectionNode(), eachAxis() (+14 more) -### Community 403 - "mapIntoArray" -Cohesion: 0.08 -Nodes (33): checkDepsAreArrayDev(), cloneAndReplaceKey(), cloneElementWithValidation(), createCapturedValueAtFiber(), describeBuiltInComponentFrame(), describeClassComponentFrame(), describeFiber(), describeFunctionComponentFrame() (+25 more) +### Community 403 - "error" +Cohesion: 0.04 +Nodes (96): act(), checkAttributeStringCoercion(), checkControlledValueProps(), checkCSSPropertyStringCoercion(), checkDepsAreArrayDev(), checkFormFieldValueStringCoercion(), checkHtmlStringCoercion(), checkKeyStringCoercion() (+88 more) ### Community 404 - "popHydrationState" Cohesion: 0.08 @@ -3502,21 +3495,21 @@ Nodes (26): add(), addDomEvent(), addListeners(), addPointerEvent(), addScaleCor Cohesion: 0.08 Nodes (27): animateChildren(), clear(), clearListeners(), destroy(), filterEvents(), flushKeyframeResolvers(), forEach(), getBaseTarget() (+19 more) -### Community 411 - "eachAxis" -Cohesion: 0.11 -Nodes (22): calcRelativeAxisConstraints(), calcRelativeConstraints(), calcViewportAxisConstraints(), calcViewportConstraints(), convertBoundingBoxToBox(), convertBoxToBoundingBox(), createProjectionNode(), eachAxis() (+14 more) +### Community 411 - "getProps" +Cohesion: 0.09 +Nodes (29): calcRelativeAxisConstraints(), calcRelativeConstraints(), calcViewportAxisConstraints(), calcViewportConstraints(), convertBoundingBoxToBox(), convertBoxToBoundingBox(), createProjectionNode(), eachAxis() (+21 more) -### Community 412 - "mapIntoArray" -Cohesion: 0.10 -Nodes (27): checkDepsAreArrayDev(), cloneAndReplaceKey(), cloneElementWithValidation(), createContext(), createElementWithValidation(), createFactoryWithValidation(), escapeUserProvidedKey(), getCurrentComponentErrorInfo() (+19 more) +### Community 412 - "error" +Cohesion: 0.04 +Nodes (98): act(), checkAttributeStringCoercion(), checkCSSPropertyStringCoercion(), checkDepsAreArrayDev(), checkFormFieldValueStringCoercion(), checkHtmlStringCoercion(), checkKeyStringCoercion(), checkPropStringCoercion() (+90 more) ### Community 413 - "featureStackProgress.ts" -Cohesion: 0.13 -Nodes (23): ACTIVE_RUN_STATUSES, ACTIVE_STACK_STATUSES, FEATURE_STACK_USER_HELD_STATUSES, featureStackCanPause(), featureStackCanRestart(), featureStackCanStop(), FeatureStackLifecycleAction, featureStackLifecycleStatus() (+15 more) +Cohesion: 0.22 +Nodes (13): date(), FeatureStackProgressRequest, FeatureStackProgressTarget, parseFeatureStackProgressRequest(), percent(), recordFeatureStackProgress(), RUN_STATUSES, TARGET_STATUSES (+5 more) ### Community 414 - "PersistentStore" -Cohesion: 0.13 -Nodes (9): commanderDataDirectory(), AccountEnvironmentUpdate, normalizedAccountEnvironment(), normalizeExtensionPreferences(), PersistentSnapshot, PersistentState, PersistentStore, statePath() (+1 more) +Cohesion: 0.12 +Nodes (12): commanderDataDirectory(), AccountEnvironmentUpdate, normalizedAccountEnvironment(), normalizedSettings(), normalizeExtensionPreferences(), PersistentSnapshot, PersistentState, PersistentStore (+4 more) ### Community 415 - "store.ts" Cohesion: 0.12 @@ -3524,75 +3517,75 @@ Nodes (22): boundedInteger(), browseRaycastStore(), CheckoutLike, copyBoundedSou ### Community 416 - "forEach" Cohesion: 0.09 -Nodes (25): animateChildren(), clear(), clearListeners(), filterEvents(), flushKeyframeResolvers(), forEach(), getBaseTarget(), getBaseTargetFromProps() (+17 more) +Nodes (24): animateChildren(), clear(), clearListeners(), flushKeyframeResolvers(), forEach(), getBaseTarget(), getBaseTargetFromProps(), getRegisteredStyles() (+16 more) ### Community 417 - "forEach" -Cohesion: 0.09 -Nodes (25): animateChildren(), clear(), clearListeners(), filterEvents(), flushKeyframeResolvers(), forEach(), getBaseTarget(), getBaseTargetFromProps() (+17 more) +Cohesion: 0.08 +Nodes (27): animateChildren(), clear(), clearListeners(), destroy(), filterEvents(), flushKeyframeResolvers(), forEach(), getBaseTarget() (+19 more) ### Community 418 - "update" Cohesion: 0.10 Nodes (26): add(), addDomEvent(), addListeners(), addPointerEvent(), addScaleCorrector(), addUniqueItem(), addVariantChild(), bindToMotionValue() (+18 more) -### Community 419 - "animateTarget" -Cohesion: 0.10 -Nodes (25): addValueToWillChange(), animateSingleValue(), animateTarget(), animateVariant(), animateVisualElement(), applyConstraints(), cancelTreeOptimisedTransformAnimations(), getAnimationState() (+17 more) +### Community 419 - "forEach" +Cohesion: 0.08 +Nodes (27): animateChildren(), clear(), clearListeners(), destroy(), filterEvents(), flushKeyframeResolvers(), forEach(), getBaseTarget() (+19 more) ### Community 420 - ".make" -Cohesion: 0.12 -Nodes (12): CommanderApplicationMenu, CommanderEditResponderActions, Any, NSMenuItem, String, ClosureMenuItem, NSCoder, String (+4 more) +Cohesion: 0.26 +Nodes (6): CommanderApplicationMenu, CommanderEditResponderActions, Any, NSMenuItem, String, Selector ### Community 421 - "getProps" -Cohesion: 0.06 -Nodes (45): addValueToWillChange(), animateSingleValue(), animateTarget(), animateVariant(), animateVisualElement(), applyConstraints(), calcRelativeAxisConstraints(), calcRelativeConstraints() (+37 more) +Cohesion: 0.09 +Nodes (29): calcRelativeAxisConstraints(), calcRelativeConstraints(), calcViewportAxisConstraints(), calcViewportConstraints(), convertBoundingBoxToBox(), convertBoxToBoundingBox(), createProjectionNode(), eachAxis() (+21 more) ### Community 422 - "update" -Cohesion: 0.05 -Nodes (48): isEnabled(), add(), addDomEvent(), addListeners(), addPointerEvent(), addScaleCorrector(), addUniqueItem(), addVariantChild() (+40 more) +Cohesion: 0.10 +Nodes (26): add(), addDomEvent(), addListeners(), addPointerEvent(), addScaleCorrector(), addUniqueItem(), addVariantChild(), bindToMotionValue() (+18 more) ### Community 423 - "getProps" -Cohesion: 0.09 -Nodes (29): calcRelativeAxisConstraints(), calcRelativeConstraints(), calcViewportAxisConstraints(), calcViewportConstraints(), convertBoundingBoxToBox(), convertBoxToBoundingBox(), createProjectionNode(), eachAxis() (+21 more) +Cohesion: 0.06 +Nodes (43): addValueToWillChange(), animateSingleValue(), animateTarget(), animateVariant(), animateVisualElement(), applyConstraints(), calcRelativeAxisConstraints(), calcRelativeConstraints() (+35 more) ### Community 424 - "animateTarget" -Cohesion: 0.09 -Nodes (35): addValue(), addValueToWillChange(), animateSingleValue(), animateTarget(), animateVariant(), animateVisualElement(), applyConstraints(), cancelTreeOptimisedTransformAnimations() (+27 more) +Cohesion: 0.10 +Nodes (25): addValueToWillChange(), animateSingleValue(), animateTarget(), animateVariant(), animateVisualElement(), applyConstraints(), cancelTreeOptimisedTransformAnimations(), getAnimationState() (+17 more) ### Community 425 - "getProps" Cohesion: 0.10 Nodes (26): applyConstraints(), calcRelativeAxisConstraints(), calcRelativeConstraints(), calcViewportAxisConstraints(), calcViewportConstraints(), convertBoundingBoxToBox(), convertBoxToBoundingBox(), createProjectionNode() (+18 more) -### Community 426 - "update" -Cohesion: 0.06 -Nodes (46): isEnabled(), add(), addDomEvent(), addListeners(), addPointerEvent(), addScaleCorrector(), addUniqueItem(), addVariantChild() (+38 more) +### Community 426 - "forEach" +Cohesion: 0.09 +Nodes (26): animateChildren(), clear(), clearListeners(), destroy(), filterEvents(), flushKeyframeResolvers(), forEach(), getRegisteredStyles() (+18 more) ### Community 427 - "userVault.ts" -Cohesion: 0.15 -Nodes (27): assertGroup(), createUserVaultGroup(), createVaultThing(), decryptValue(), deleteUserVaultRecord(), EncryptedValue, encryptValue(), getUserVaultProvider() (+19 more) +Cohesion: 0.14 +Nodes (30): assertGroup(), createUserVaultGroup(), createVaultThing(), decryptValue(), deleteUserVaultRecord(), EncryptedValue, encryptValue(), getUserVaultProvider() (+22 more) -### Community 428 - "update" -Cohesion: 0.10 -Nodes (26): add(), addDomEvent(), addListeners(), addPointerEvent(), addScaleCorrector(), addUniqueItem(), addVariantChild(), bindToMotionValue() (+18 more) +### Community 428 - "featureStackStore.ts" +Cohesion: 0.15 +Nodes (20): archiveFeatureStack(), dateString(), getFeatureStack(), linkDispatchWorkflowRun(), listFeatureStacks(), markFeatureStackLifecycleStatus(), markFeatureStackRun(), markFeatureStackRunLinkChecked() (+12 more) ### Community 429 - "nodeRuntime.ts" Cohesion: 0.16 Nodes (20): publicConnectorError(), decodeRuntimeRequest(), runtimeEvent(), runtimeReply(), RuntimeRequest, RuntimeWire, refreshEmptyProjectRegistry(), approvalDecision() (+12 more) ### Community 430 - "update" -Cohesion: 0.11 -Nodes (25): isEnabled(), add(), addDomEvent(), addListeners(), addPointerEvent(), addScaleCorrector(), addUniqueItem(), addVariantChild() (+17 more) +Cohesion: 0.10 +Nodes (26): add(), addDomEvent(), addListeners(), addPointerEvent(), addScaleCorrector(), addUniqueItem(), addVariantChild(), bindToMotionValue() (+18 more) -### Community 431 - "EventHandler" -Cohesion: 0.08 -Nodes (25): unstable_next(), unstable_runWithPriority(), unstable_next(), unstable_runWithPriority(), unstable_next(), unstable_runWithPriority(), unstable_next(), unstable_runWithPriority() (+17 more) +### Community 431 - "unstable_scheduleCallback" +Cohesion: 0.16 +Nodes (20): advanceTimers(), cancelHostTimeout(), clearSuspenseBoundary(), clearSuspenseBoundaryFromContainer(), commitHydratedContainer(), commitHydratedSuspenseInstance(), commitSuspenseHydrationCallbacks(), flushWork() (+12 more) -### Community 432 - "ThingtimeProvider.tsx" -Cohesion: 0.06 -Nodes (48): BrandingAssetRecord, brandingAssetRecords, pressKitRecords, variantRecords, useThingtimeLine(), defaultValues, mergedVersions, thingtimeDefaults (+40 more) +### Community 432 - "thingtimeSyncChannel.ts" +Cohesion: 0.12 +Nodes (18): createThingtimeSyncChannel(), isRecord(), isTabLocalPath(), isThingtimeSyncMessage(), isThingtimeSyncPath(), isWholeTreeReplacement(), parseSyncValue(), pathParts() (+10 more) ### Community 433 - "docsSearchIndex.ts" -Cohesion: 0.11 -Nodes (24): designSystemEntries, DocsSearch(), DocsSearchProps, escapeRegExp(), highlightTerms(), apiDocContent(), buildDocs(), buildSnippet() (+16 more) +Cohesion: 0.12 +Nodes (23): DocsSearch(), DocsSearchProps, escapeRegExp(), highlightTerms(), apiDocContent(), buildDocs(), buildSnippet(), countOccurrences() (+15 more) ### Community 434 - "devDependencies" Cohesion: 0.08 @@ -3611,56 +3604,56 @@ Cohesion: 0.20 Nodes (24): discard_through_newline(), IndexerProgressResponse, main(), optional_value(), parse_kind(), read_bounded_line(), repeated_values(), required_value() (+16 more) ### Community 438 - "popHydrationState" -Cohesion: 0.06 -Nodes (44): bubbleProperties(), completeDehydratedSuspenseBoundary(), createFiberFromHostInstanceForDeletion(), deleteHydratableInstance(), didNotFindHydratableInstance(), didNotFindHydratableInstanceWithinContainer(), didNotFindHydratableInstanceWithinSuspenseInstance(), didNotFindHydratableTextInstance() (+36 more) +Cohesion: 0.09 +Nodes (32): createFiberFromHostInstanceForDeletion(), deleteHydratableInstance(), didNotFindHydratableInstance(), didNotFindHydratableInstanceWithinContainer(), didNotFindHydratableInstanceWithinSuspenseInstance(), didNotFindHydratableTextInstance(), didNotFindHydratableTextInstanceWithinContainer(), didNotFindHydratableTextInstanceWithinSuspenseInstance() (+24 more) ### Community 439 - "animateTarget" Cohesion: 0.12 -Nodes (21): addValueToWillChange(), animateSingleValue(), animateTarget(), animateVariant(), animateVisualElement(), applyConstraints(), cancelTreeOptimisedTransformAnimations(), getAnimationState() (+13 more) +Nodes (27): addValue(), addValueToWillChange(), animateSingleValue(), animateTarget(), animateVariant(), animateVisualElement(), cancelTreeOptimisedTransformAnimations(), getAnimationState() (+19 more) -### Community 440 - "trim" +### Community 440 - "getValue" Cohesion: 0.08 -Nodes (30): analyseComplexValue(), createTransformer(), get(), getAnimatableNone(), getAnimatableNone2(), getBaseTarget(), getBaseTargetFromProps(), getTheme3() (+22 more) +Nodes (38): addValue(), analyseComplexValue(), createTransformer(), get(), getAnimatableNone(), getAnimatableNone2(), getComputedStyle(), getStaticValue() (+30 more) ### Community 441 - "updateDehydratedSuspenseComponent" -Cohesion: 0.06 -Nodes (51): addSubtreeSuspenseContext(), cloneChildFibers(), createCapturedValue(), createFiberFromElement(), createFiberFromFragment(), createFiberFromOffscreen(), createFiberFromProfiler(), createFiberFromSuspense() (+43 more) +Cohesion: 0.10 +Nodes (27): addSubtreeSuspenseContext(), createCapturedValue(), createFiberFromFragment(), createFiberFromOffscreen(), getRemainingWorkInPrimaryTree(), getSuspendedCache(), getSuspenseInstanceFallbackErrorDetails(), isSuspenseInstanceFallback() (+19 more) ### Community 442 - "update" Cohesion: 0.10 Nodes (26): add(), addDomEvent(), addListeners(), addPointerEvent(), addScaleCorrector(), addUniqueItem(), addVariantChild(), bindToMotionValue() (+18 more) ### Community 443 - "getValue" -Cohesion: 0.07 -Nodes (42): addValue(), analyseComplexValue(), animateSingleValue(), createTransformer(), get(), getAnimatableNone(), getAnimatableNone2(), getComputedStyle() (+34 more) +Cohesion: 0.08 +Nodes (38): addValue(), analyseComplexValue(), createTransformer(), get(), getAnimatableNone(), getAnimatableNone2(), getComputedStyle(), getStaticValue() (+30 more) ### Community 444 - "PR #53 — Nested data viewer concepts + kind renderers with live /docs/concepts section" Cohesion: 0.08 Nodes (23): Debugging notes, Docs — `remix/app/routes/docs/concepts/` (+ nav wiring), Follow-ups (ideas), Goal, Kind renderers — `remix/app/components/Kinds/`, PR #53 — Nested data viewer concepts + kind renderers with live /docs/concepts section, Round 10 — preserve focus across Editor.js autosave echoes, Round 3 — empty registry on Vercel (tree-shaking) (+15 more) -### Community 445 - "updateDehydratedSuspenseComponent" -Cohesion: 0.08 -Nodes (32): addSubtreeSuspenseContext(), createCapturedValue(), createFiberFromFragment(), createFiberFromOffscreen(), findFirstSuspended(), findLastContentRow(), getRemainingWorkInPrimaryTree(), getSuspendedCache() (+24 more) +### Community 445 - "integrationCore.ts" +Cohesion: 0.18 +Nodes (18): asText(), configuredGenericHosts(), EndpointInput, EndpointProvider, EndpointWriteMode, isUnsafeHostname(), normalizeEndpointInput(), normalizeIntegrationOrigin() (+10 more) -### Community 446 - "getValue" -Cohesion: 0.07 -Nodes (44): addValue(), analyseComplexValue(), convertBoundingBoxToBox(), createTransformer(), get(), getAnimatableNone(), getAnimatableNone2(), getComputedStyle() (+36 more) +### Community 446 - "trim" +Cohesion: 0.11 +Nodes (25): analyseComplexValue(), createTransformer(), get(), getAnimatableNone(), getAnimatableNone2(), getTheme3(), getVariableValue(), guard() (+17 more) ### Community 447 - "AI Advice: Agents And Councils" Cohesion: 0.07 Nodes (27): Agent roles, AI Advice: Agents And Councils, Branch strategy, Core idea, Council patterns, Customer Support Agent, Customer Support Council, Feature Implementation Council (+19 more) -### Community 448 - "update" -Cohesion: 0.10 -Nodes (26): isEnabled(), add(), addDomEvent(), addListeners(), addPointerEvent(), addScaleCorrector(), addUniqueItem(), addVariantChild() (+18 more) +### Community 448 - "String" +Cohesion: 0.14 +Nodes (19): application_kind(), candidate_from_entry(), CandidateRecord, default_query_limit(), escape_like(), fuzzy_fts_query(), IndexerErrorBody, IndexerErrorResponse (+11 more) ### Community 449 - "getProps" -Cohesion: 0.06 -Nodes (43): addValueToWillChange(), animateSingleValue(), animateTarget(), animateVariant(), animateVisualElement(), applyConstraints(), calcRelativeAxisConstraints(), calcRelativeConstraints() (+35 more) +Cohesion: 0.10 +Nodes (26): applyConstraints(), calcRelativeAxisConstraints(), calcRelativeConstraints(), calcViewportAxisConstraints(), calcViewportConstraints(), convertBoundingBoxToBox(), convertBoxToBoundingBox(), createProjectionNode() (+18 more) ### Community 450 - "vercelRunner.ts" -Cohesion: 0.21 -Nodes (18): cleanupRunner(), createRunner(), dispatchToRunner(), fallbackToGithub(), finishDispatch(), installVercelRunnerDependencies(), repositoryPath(), runCiOnVercel() (+10 more) +Cohesion: 0.12 +Nodes (28): CiExecutionProvider, githubAppConfigured(), githubRequest(), ciProviderReadiness(), configured(), ProviderEnvironment, completeEnvironment, validateCiExecutionProvider() (+20 more) ### Community 451 - "BrandAssetSection.tsx" Cohesion: 0.11 @@ -3699,8 +3692,8 @@ Cohesion: 0.09 Nodes (23): applyDefaultFilter(), createMotionComponentFactory(), createRendererMotionComponent(), createTransform(), createUseRender(), degree(), getMixer(), getRadius() (+15 more) ### Community 460 - "animateTarget" -Cohesion: 0.10 -Nodes (25): addValueToWillChange(), animateSingleValue(), animateTarget(), animateVariant(), animateVisualElement(), applyConstraints(), cancelTreeOptimisedTransformAnimations(), getAnimationState() (+17 more) +Cohesion: 0.09 +Nodes (32): addValue(), addValueToWillChange(), animateSingleValue(), animateTarget(), animateVariant(), animateVisualElement(), applyConstraints(), cancelTreeOptimisedTransformAnimations() (+24 more) ### Community 461 - "test" Cohesion: 0.09 @@ -3723,8 +3716,8 @@ Cohesion: 0.09 Nodes (23): applyDefaultFilter(), createMotionComponentFactory(), createRendererMotionComponent(), createTransform(), createUseRender(), degree(), getMixer(), getRadius() (+15 more) ### Community 466 - "adminPreviewController.ts" -Cohesion: 0.20 -Nodes (13): adminPreviewDispatchPayload(), ciAdminPreviewReadiness(), dispatchAdminPrPreviewController(), enabledAdminPreviewEnvironments(), PREVIEW_REFRESH_ACTIONS, PreviewPullRequest, syncAdminPrPreviewsForPullRequest(), pr (+5 more) +Cohesion: 0.18 +Nodes (16): adminPreviewDispatchPayload(), ciAdminPreviewReadiness(), dispatchAdminPrPreviewController(), enabledAdminPreviewEnvironments(), PREVIEW_REFRESH_ACTIONS, PreviewPullRequest, syncAdminPrPreviewsForPullRequest(), pr (+8 more) ### Community 467 - "GradientPath.js" Cohesion: 0.19 @@ -3734,45 +3727,45 @@ Nodes (13): averageSegmentJoins(), getData(), outlineStrokes(), strokeToFill(), Cohesion: 0.09 Nodes (23): Thingtime Pink Icon Asset Set, Thingtime Pink Plus/Cross Logo Icon 1000x1000, Thingtime Pink Plus/Cross Logo Icon 100x100, Thingtime Pink Plus/Cross Logo Icon 1024x1024, Thingtime Pink Plus/Cross Logo Icon 10x10, Thingtime Pink Plus/Cross Logo Icon 128x128, Thingtime Pink Plus/Cross Logo Favicon 16x16, Thingtime Pink Plus/Cross Logo Icon 2000x2000 (+15 more) -### Community 469 - ".process" -Cohesion: 0.15 -Nodes (12): ScreenCaptureAuthorization, ScreenCaptureBackendConfiguration, ScreenCaptureDisplay, invalidConfiguration, ScreenCaptureFrame, Bool, Data, Double (+4 more) +### Community 469 - "ThingtimeWebView" +Cohesion: 0.16 +Nodes (9): Gesture, ClientError, invalidResponse, requestFailed, URL, URLSession, ThingtimeWebDeploymentsClient, CGFloat (+1 more) ### Community 470 - "IndexingSettings.tsx" Cohesion: 0.16 Nodes (9): formatBytes(), formatDuration(), formatIndexedAt(), formatInterval(), formatUnit(), FullDiskAccessCard(), fullDiskAccessLabel(), IndexingSettings() (+1 more) -### Community 471 - "DeviceCard.tsx" -Cohesion: 0.12 -Nodes (13): DeviceCard, DeviceCardProps, DeviceHealthBadges, formatDeviceLastSeen(), resolvedDevicePresence(), STATUS_TONES, StatusTone, DeviceListRow (+5 more) +### Community 471 - "todayBody" +Cohesion: 0.23 +Nodes (19): button(), card(), chip(), el(), eyebrow(), field(), gates(), glyph() (+11 more) ### Community 472 - "runtime.ts" Cohesion: 0.11 Nodes (14): RaycastExtensionSourceReport, boundedTimeout(), compatibilityCapabilities, CompatibilityCapability, RaycastCommandExecutionOptions, RaycastExtensionPreparationError, RaycastExtensionRuntime, RaycastExtensionRuntimeOptions (+6 more) -### Community 473 - "first" +### Community 473 - "stop" Cohesion: 0.06 Nodes (44): addValueToWillChange(), animateSingleValue(), animateTarget(), animateVariant(), animateVisualElement(), applyConstraints(), calcRelativeAxisConstraints(), calcRelativeConstraints() (+36 more) ### Community 474 - "useLocalThingtimeNode.ts" Cohesion: 0.11 -Nodes (20): DeviceActionControl, DeviceActionIntent, DeviceActionKind, DeviceActionPolicy, permissionSnapshot, permissionStatusLabel(), granted, previous (+12 more) +Nodes (19): DeviceActionControl, DeviceActionIntent, DeviceActionPolicy, permissionSnapshot, permissionStatusLabel(), granted, previous, localNodeActionIsBusy() (+11 more) ### Community 475 - "tt-logo Custom Element" Cohesion: 0.13 Nodes (22): API To GUI Mapping, Car Thing Demo, 1a Classic Centered Direction, 1c Crowdfund Campaign Direction, Thingtime Directions Design Doc, 1d Developer First Direction, Thingtime Ecosystem Surfaces, Everything Is A Thing (+14 more) ### Community 476 - "mapIntoArray" -Cohesion: 0.12 -Nodes (23): checkDepsAreArrayDev(), cloneAndReplaceKey(), cloneElementWithValidation(), createElementWithValidation(), escapeUserProvidedKey(), getCurrentComponentErrorInfo(), getIteratorFn(), getSourceInfoErrorAddendum() (+15 more) +Cohesion: 0.11 +Nodes (25): checkDepsAreArrayDev(), cloneAndReplaceKey(), cloneElementWithValidation(), createElementWithValidation(), escape(), escapeUserProvidedKey(), getCurrentComponentErrorInfo(), getElementKey() (+17 more) ### Community 477 - "PR #485 — Design system alignment + block-based Thingtime builder" Cohesion: 0.09 Nodes (21): 1 · Design system alignment, 2 · The Thingtime builder, 3 · Catalog eviction, Component catalog seeding (dev DB), Debugging log (bugs found via GUI QA, all fixed in-branch), Features, Fixes (QA-found), Native SECTION registry (commits ee5599fd6 → 6ad68f728) (+13 more) -### Community 478 - "error" -Cohesion: 0.04 -Nodes (87): act(), checkAttributeStringCoercion(), checkCSSPropertyStringCoercion(), checkDepsAreArrayDev(), checkFormFieldValueStringCoercion(), checkHtmlStringCoercion(), checkKeyStringCoercion(), checkPropStringCoercion() (+79 more) +### Community 478 - "mapIntoArray" +Cohesion: 0.17 +Nodes (16): checkDepsAreArrayDev(), cloneAndReplaceKey(), cloneElementWithValidation(), escape(), escapeUserProvidedKey(), getCurrentComponentErrorInfo(), getElementKey(), getIteratorFn() (+8 more) ### Community 479 - "BrandMarkStories.tsx" Cohesion: 0.14 @@ -3795,24 +3788,24 @@ Cohesion: 0.14 Nodes (13): discoverRaycastInstallations(), execFile, loadRaycastPreferences(), parsePropertyListXML(), PreferenceDictionary, preferenceKey(), preferenceValuesForCommand(), RaycastInstallation (+5 more) ### Community 484 - "IndexerError" -Cohesion: 0.12 -Nodes (30): AsRef, configure_database_resources(), database_size_bytes(), descendant_globs_also_prune_the_matching_directory(), duration_ms(), IgnoreRule, IgnoreRuleKind, IndexConfiguration (+22 more) +Cohesion: 0.11 +Nodes (27): AsRef, configure_database_resources(), database_size_bytes(), IndexerError, initialize_schema(), is_database_busy(), migrate_fts_update_trigger(), migrate_name_only_fts() (+19 more) ### Community 485 - "webhooks.ts" -Cohesion: 0.22 -Nodes (19): CiEntityInput, UpsertCiEntityOptions, ciFeatureIdentity(), constantTimeEqual(), eventBase(), ingestGitHubWebhook(), ingestVercelWebhook(), labelsFrom() (+11 more) +Cohesion: 0.21 +Nodes (20): linkFeatureStackWorkflowRun(), CiEntityInput, UpsertCiEntityOptions, ciFeatureIdentity(), constantTimeEqual(), eventBase(), ingestGitHubWebhook(), ingestVercelWebhook() (+12 more) -### Community 486 - "things.ts" -Cohesion: 0.02 -Nodes (293): listActionRuns(), resolveSchemaRef(), deleteAllAppData(), appAclEntry(), appNamespaceClauses(), filterByLiveAuthors(), liveSandboxAuthors(), liveSharingAuthors() (+285 more) +### Community 486 - "search.ts" +Cohesion: 0.04 +Nodes (133): BrowseComponentEntry, browseComponents(), BrowseComponentsQuery, BrowseComponentsResult, browseFamilies(), browseFamily(), browseLatest(), browseMine() (+125 more) -### Community 487 - "TierManager.tsx" +### Community 487 - "tierCatalogStore.ts" Cohesion: 0.05 -Nodes (69): initializeAppStorageAccounting(), appMatch(), clearSubscription(), defaultSubscription(), Fail, getSubscriptions(), hasOwn(), initialSubscriptionSnapshot() (+61 more) +Nodes (89): getSettingsCollection(), computeTierDiscounts(), currencyMinorUnitFactor(), EMPTY_DISCOUNTS, EMPTY_TIER_INCLUSIONS, EMPTY_TIER_PRICES, QUOTA_OVERRIDE_BOUNDS, QUOTA_OVERRIDE_FIELDS (+81 more) -### Community 488 - "updateWorkInProgressHook" -Cohesion: 0.07 -Nodes (42): areHookInputsEqual(), basicStateReducer(), createFunctionComponentUpdateQueue(), getWorkInProgressRoot(), includesBlockingLane(), includesOnlyNonUrgentLanes(), markWorkInProgressReceivedUpdate(), mountCallback() (+34 more) +### Community 488 - "mergeLanes" +Cohesion: 0.06 +Nodes (52): initialState(), areHookInputsEqual(), basicStateReducer(), createFunctionComponentUpdateQueue(), getWorkInProgressRoot(), includesBlockingLane(), includesOnlyNonUrgentLanes(), isSubsetOfLanes() (+44 more) ### Community 489 - "Thingtime Icon (SVG source, green/brown plus mark)" Cohesion: 0.10 @@ -3826,25 +3819,25 @@ Nodes (21): Thingtime Pink Logo Master (SVG), Thingtime Pink Pixel Wordmark Logo Cohesion: 0.15 Nodes (7): fallbackSearch(), matchesApplicationNameWords(), mergeItems(), Pending, score(), SearchService, weightedScore() -### Community 492 - "crypto.tsx" -Cohesion: 0.11 -Nodes (15): ApiResponse, CryptoPage(), CryptoStandard, encodingLabel(), formatJson(), generatedEnvValue(), generatedKeyValue(), JsonOutput() (+7 more) +### Community 492 - "thing.tsx" +Cohesion: 0.02 +Nodes (105): VercelDeploymentStatus, ActionBuilder(), emptyStep(), InputRow, monoLabel, rowInput, StepRow, ValueRow (+97 more) ### Community 493 - "ThingtimeWKWebView" Cohesion: 0.18 Nodes (9): Context, Bool, CGFloat, String, WKWebView, ThingtimeWKWebView, UIEdgeInsets, WebView (+1 more) -### Community 494 - "ScreenCapture.swift" -Cohesion: 0.21 -Nodes (13): CoreImage, CoreMedia, ImageIO, ActiveCapture, JPEGScreenCaptureFrameEncoder, ScreenCaptureBackend, ScreenCaptureDescriptor, ScreenCaptureFrameEncoding (+5 more) +### Community 494 - "thingtimeSerialization.ts" +Cohesion: 0.23 +Nodes (14): hasPersistedThingtimeRuntimeMethods(), INERT_PERSISTED_FUNCTION, isRecord(), ParseDiagnostics, ParsedThingtime, parseThingtime(), parseThingtimeWithDiagnostics(), replacer() (+6 more) ### Community 495 - "deviceCache.ts" Cohesion: 0.22 Nodes (18): cacheToken(), clearDeviceCache(), DeviceDetailCacheEnvelope, deviceDetailCacheKey(), DeviceListCacheEnvelope, deviceListCacheKey(), isRuntimeStateLike(), isSummaryLike() (+10 more) -### Community 496 - "routes.tsx" -Cohesion: 0.04 -Nodes (36): AuthorizePage(), cardSx, EmbedApp, EmbedUser, PickerThing, SANDBOX_THINGS, SANDBOX_USER, SCOPE_EMOJI (+28 more) +### Community 496 - "DeploymentPeersPage.tsx" +Cohesion: 0.18 +Nodes (13): dateLabel(), PeerPage, PeerProperties(), publicKeyLabel(), ViewMode, filterPeerExplorerRows(), mergePeerExplorerPage(), PEER_EXPLORER_FIELDS (+5 more) ### Community 497 - "editorJsBlockReorder.ts" Cohesion: 0.18 @@ -3855,16 +3848,16 @@ Cohesion: 0.10 Nodes (18): callers, codeqlCaller, codeqlPermissions, codeqlTriggers, codeqlTriggersEnd, developPreviewCaller, electronPrReleaseCaller, electronPrReleaseJobsStart (+10 more) ### Community 499 - "forEach" -Cohesion: 0.08 -Nodes (27): animateChildren(), clear(), clearListeners(), destroy(), filterEvents(), flushKeyframeResolvers(), forEach(), getBaseTarget() (+19 more) +Cohesion: 0.09 +Nodes (26): animateChildren(), clear(), clearListeners(), destroy(), filterEvents(), flushKeyframeResolvers(), forEach(), getRegisteredStyles() (+18 more) -### Community 500 - "IndexDatabase" -Cohesion: 0.21 +### Community 500 - "Result" +Cohesion: 0.23 Nodes (19): collect_ranked_rows(), collect_rows(), IndexDatabase, IndexKind, IndexRecord, kind_flags(), QueryRequest, QueryResponse (+11 more) -### Community 501 - "FigmaControls.tsx" -Cohesion: 0.16 -Nodes (20): CustomCssEditor(), BorderControl(), CornersControl(), inputStyles, MICRO_LABEL, modeOf(), SegmentedControl(), ShadowControl() (+12 more) +### Community 501 - "optIn" +Cohesion: 0.18 +Nodes (16): addOpt(), anyOptsIn(), anyThingsIn(), optIn(), optIndex(), optsIn(), popOpt(), popOpts() (+8 more) ### Community 502 - "update" Cohesion: 0.10 @@ -3875,20 +3868,20 @@ Cohesion: 0.05 Nodes (41): Admin access, Admin integration vault and policy proxy, API self-documentation, App suites (Pokeworld + StarsAlign on Thingtime), Auth and Lopu AI, Branch automation: develop → main promotion, Branch automation: the `all` wildcard branch, ChatGPT / Codex plugin (+33 more) ### Community 504 - "unstable_scheduleCallback" -Cohesion: 0.18 -Nodes (19): advanceTimers(), attemptReplayContinuousQueuedEvent(), attemptReplayContinuousQueuedEventInMap(), cancelHostTimeout(), flushWork(), handleTimeout(), markTaskErrored(), peek() (+11 more) +Cohesion: 0.29 +Nodes (13): advanceTimers(), cancelHostTimeout(), flushWork(), handleTimeout(), markTaskErrored(), peek(), requestHostCallback(), requestHostTimeout() (+5 more) ### Community 505 - "vercel.tsx" Cohesion: 0.14 Nodes (15): VercelDeploymentsOverview, BRANCH_LIMIT_OPTIONS, buildDefaultSelectedStates(), buildStatusOptions(), dateLabel(), DeploymentRow(), DeploymentSort, DeploymentState (+7 more) -### Community 506 - "editorJsValue.ts" -Cohesion: 0.07 -Nodes (33): RICH_HTML_SX, captureEditorDraft(), cleanDraftFields(), copy(), diff(), documentChanges(), EditorHistory, EditorHistoryEvent (+25 more) +### Community 506 - "LongTextEditor.tsx" +Cohesion: 0.03 +Nodes (77): editorJsToHtml(), htmlToEditorJs(), htmlToPlainText(), InlineRichTextEditor(), RichTextModal(), captureEditorDraft(), copy(), diff() (+69 more) -### Community 507 - "physicalCollectionName" -Cohesion: 0.19 -Nodes (16): buildMongoshSnippet(), costOf(), generatePassword(), hashPasswordForStorage(), HashPasswordInput, HashPasswordResult, legacyResidue(), classifyPhysicalCollections() (+8 more) +### Community 507 - "el" +Cohesion: 0.20 +Nodes (15): button(), el(), field(), gates(), group(), hpBar(), hpTone(), label() (+7 more) ### Community 508 - "compilerOptions" Cohesion: 0.11 @@ -3898,9 +3891,9 @@ Nodes (18): compilerOptions, allowJs, baseUrl, esModuleInterop, forceConsistentC Cohesion: 0.15 Nodes (16): ResultIcon(), CachedIcon, cachedNativeFileIcon(), dequeueNextIcon(), drainNativeIconQueue(), iconCache, iconDataUrl(), IconJob (+8 more) -### Community 510 - "migrationFailure.ts" -Cohesion: 0.19 -Nodes (12): AdminErrorDiagnostic, captureMigrationFailureDiagnostic(), MigrationFailure, migrationFailureResult(), MigrationOperatorCode, MigrationOperatorError, MigrationOperatorOptions, operatorPresentation() (+4 more) +### Community 510 - "DestinationPickerDrawer" +Cohesion: 0.22 +Nodes (9): Binding, EdgeInsets, DeploymentLoadStatus, DestinationPickerDrawer, DestinationPickerHeader, Bool, Set, String (+1 more) ### Community 511 - "mcp.tsx" Cohesion: 0.20 @@ -3934,21 +3927,21 @@ Nodes (14): aiBundle, desktopReleaseMetadata, electronDir, mcpDir, nodeRuntimeBu Cohesion: 0.12 Nodes (15): bridgeExecutable, electronDir, helperApp, helperExecutable, helperIcon, helperInfoPlist, manifest, manifestPath (+7 more) -### Community 520 - "stop" +### Community 520 - "animateTarget" Cohesion: 0.10 -Nodes (29): addValueToWillChange(), animateTarget(), animateVariant(), animateVisualElement(), applyConstraints(), cancelTreeOptimisedTransformAnimations(), clearAnimation(), duration() (+21 more) +Nodes (25): addValueToWillChange(), animateSingleValue(), animateTarget(), animateVariant(), animateVisualElement(), applyConstraints(), cancelTreeOptimisedTransformAnimations(), getAnimationState() (+17 more) ### Community 521 - "partialJson.ts" Cohesion: 0.24 Nodes (15): parseToolInput(), atEnd(), Cursor, LITERALS, NOTHING, parseArray(), parseLiteral(), parseNumber() (+7 more) ### Community 522 - "FilterBuilder.tsx" -Cohesion: 0.15 -Nodes (8): MONGO_FILTER_OPERATORS, MongoBsonValueType, FilterBuilder, inputStyles, Props, ROOT_OPERATORS, FilterGroup, FilterRule +Cohesion: 0.17 +Nodes (7): MONGO_FILTER_OPERATORS, FilterBuilder, inputStyles, Props, ROOT_OPERATORS, FilterGroup, FilterRule -### Community 523 - "LopuVoiceControls.tsx" -Cohesion: 0.06 -Nodes (26): LopuAssistantRow(), LopuUserRow(), breathe, LopuVoiceDeck(), LopuVoiceEvent, LopuVoiceItem, lopuVoicePhaseLabel(), LopuVoiceProviderValue (+18 more) +### Community 523 - "ThingtimeWebDestination" +Cohesion: 0.37 +Nodes (3): Destination, URL, ThingtimeWebDestination ### Community 524 - "verify-lopu.mjs" Cohesion: 0.23 @@ -4074,17 +4067,17 @@ Nodes (15): compilerOptions, declaration, esModuleInterop, forceConsistentCasing Cohesion: 0.12 Nodes (16): Action grammar v2 (`schemas/registry.ts`, `api/utils/actions/execute.ts`), Lopu review round — 2026-09-03, Lopu review round 2 — 2026-09-03, One live path, Page runtime (`components/Builder/webpageRuntime.tsx`), Platform pieces added, Pokeworld (`schemas/appSuites/pokeworld.ts`, pack `packs/pokeworld/`), PR #578 — App suites: Pokeworld + StarsAlign on Thingtime (+8 more) -### Community 555 - "getProps" -Cohesion: 0.06 -Nodes (43): addValueToWillChange(), animateSingleValue(), animateTarget(), animateVariant(), animateVisualElement(), applyConstraints(), calcRelativeAxisConstraints(), calcRelativeConstraints() (+35 more) +### Community 555 - "stop" +Cohesion: 0.05 +Nodes (50): addValueToWillChange(), animateSingleValue(), animateTarget(), animateVariant(), animateVisualElement(), applyConstraints(), calcRelativeAxisConstraints(), calcRelativeConstraints() (+42 more) ### Community 556 - "queryBuilderState.ts" -Cohesion: 0.15 -Nodes (27): BsonValueEditorComponent(), inputStyles, isLiteralType(), placeholderFor(), Props, BsonEntry, BsonValueNode, compileBsonValue() (+19 more) +Cohesion: 0.21 +Nodes (21): BsonEntry, compileBsonValue(), compileFilterGroup(), compileMongoQueryRequest(), compilePipeline(), compileProjection(), compileRule(), compileSort() (+13 more) ### Community 557 - "LocalProjectRegistry" -Cohesion: 0.21 -Nodes (5): LocalProjectRegistry, projectLabelFromPath(), PublicProjectReference, validID(), LiveConnector +Cohesion: 0.26 +Nodes (3): LocalProjectRegistry, projectLabelFromPath(), validID() ### Community 558 - "_sync.tsx" Cohesion: 0.13 @@ -4108,11 +4101,11 @@ Nodes (14): 1. The question, 2.1 Who wrote 1.8 million things, 2.2 Where the 3.1 ### Community 563 - "error" Cohesion: 0.03 -Nodes (131): act(), captureCommitPhaseError(), clearContainer(), clearSuspenseBoundary(), clearSuspenseBoundaryFromContainer(), cloneElement(), coerceRef(), commitAttachRef() (+123 more) +Nodes (135): act(), captureCommitPhaseError(), clearContainer(), clearSuspenseBoundary(), clearSuspenseBoundaryFromContainer(), cloneElement(), coerceRef(), commitAttachRef() (+127 more) -### Community 564 - "networkProbe.ts" -Cohesion: 0.18 -Nodes (13): COMMON_HEADERS, NETWORK_PROBE_PACKET_BYTES, NETWORK_PROBE_UPLOAD_BYTES, networkProbeDownloadResponse(), NetworkProbePacketBytes, networkProbePingResponse(), NetworkProbeUploadBytes, parseNetworkProbePacketBytes() (+5 more) +### Community 564 - "featureStackLifecycleCore.ts" +Cohesion: 0.27 +Nodes (12): ACTIVE_RUN_STATUSES, ACTIVE_STACK_STATUSES, FEATURE_STACK_USER_HELD_STATUSES, featureStackCanPause(), featureStackCanRestart(), featureStackCanStop(), FeatureStackLifecycleAction, featureStackLifecycleStatus() (+4 more) ### Community 565 - "liveSessionDiscovery.ts" Cohesion: 0.19 @@ -4122,25 +4115,25 @@ Nodes (12): sleep(), PublicDeviceCommand, LiveDeviceCommandOutcome, LiveDeviceCo Cohesion: 0.22 Nodes (3): JsonlRpcProcess, LocalConnectorError, safeError() -### Community 567 - "bridge.tsx" +### Community 567 - "commitPlacement" Cohesion: 0.21 -Nodes (11): bootstrapBridge(), BRIDGE_PATH, BridgeParams, getBridgeParams(), Incoming, initializeBridgeGlobals(), BridgeThingIdentity, readBridgeThingIdentity() (+3 more) +Nodes (13): appendChild(), appendChildToContainer(), appendInitialChild(), commitPlacement(), commitReconciliationEffects(), getHostParentFiber(), getHostSibling(), insertBefore() (+5 more) ### Community 568 - "editorJsKeyboard.ts" Cohesion: 0.24 Nodes (13): backwardBoundaryKeys, ClosestEventTarget, EDITOR_JS_NATIVE_TEXT_FIELD_KEYS, editorJsNativeTextFieldKeys, getEditorJsArrowMovement(), getEditorJsTextField(), isAtTrueTextFieldBoundary(), nodeBoundaryLength() (+5 more) -### Community 569 - "lopuChatStream.ts" -Cohesion: 0.19 -Nodes (10): abortError(), errorFromResponse(), isAbortError(), LopuReplyBody, LopuReplyConfirmation, LopuReplyContext, LopuStreamError, readNdjson() (+2 more) +### Community 569 - "commitPlacement" +Cohesion: 0.21 +Nodes (13): appendChild(), appendChildToContainer(), appendInitialChild(), commitPlacement(), commitReconciliationEffects(), getHostParentFiber(), getHostSibling(), insertBefore() (+5 more) ### Community 570 - "error" Cohesion: 0.04 -Nodes (95): act(), checkAttributeStringCoercion(), checkClassInstance(), checkCSSPropertyStringCoercion(), checkDepsAreArrayDev(), checkFormFieldValueStringCoercion(), checkHtmlStringCoercion(), checkKeyStringCoercion() (+87 more) +Nodes (98): act(), checkAttributeStringCoercion(), checkCSSPropertyStringCoercion(), checkDepsAreArrayDev(), checkFormFieldValueStringCoercion(), checkHtmlStringCoercion(), checkKeyStringCoercion(), checkPropStringCoercion() (+90 more) ### Community 571 - "completeWork" -Cohesion: 0.06 -Nodes (56): bubbleProperties(), checkForUnmatchedText(), commitUpdate(), completeDehydratedSuspenseBoundary(), completeWork(), createInstance(), createTextInstance(), createTextNode() (+48 more) +Cohesion: 0.04 +Nodes (80): addSubtreeSuspenseContext(), checkForUnmatchedText(), commitUpdate(), completeWork(), createCapturedValue(), createFiberFromFragment(), createFiberFromOffscreen(), createInstance() (+72 more) ### Community 572 - "[...].ts" Cohesion: 0.19 @@ -4155,8 +4148,8 @@ Cohesion: 0.13 Nodes (14): buildCommand, crons, **, develop, main, fluid, framework, git (+6 more) ### Community 575 - "README.md" -Cohesion: 0.06 -Nodes (31): Commands, Content-addressed Graphify snapshots, Layout, Merge behavior, Retention, Why, Build And Test, Connect the Watch during preview testing (+23 more) +Cohesion: 0.04 +Nodes (38): AWS, Media caching and resizing, Restore an existing or replacement bucket, S3 restoration, Configuration sets, SES restoration, Service configurations, Commands (+30 more) ### Community 576 - "Thingtime plugin submission handoff" Cohesion: 0.14 @@ -4171,20 +4164,20 @@ Cohesion: 0.13 Nodes (14): Follow-up configurable bottom spacing, Follow-up fixed chrome scroll isolation, Follow-up footer/devkit bottom spacing, Follow-up native safe-area containment, Follow-up nav safe-area polish, Follow-up polish, Follow-up safe-area polish, Follow-up URL context menu (+6 more) ### Community 579 - "Delivered" -Cohesion: 0.05 -Nodes (37): 2026-08-17 Messenger + Electron integration, 2026-08-19 persistent mesh node + live sessions, 2026-08-21 installed-node follow-up, 2026-08-23 expanded safe machine controls, 2026-08-24 consented media-volume follow-up, 2026-08-24 consented remote input follow-up, 2026-08-24 display, hardware, and lifecycle controls, 2026-08-24 fixed Spotify playback follow-up (+29 more) +Cohesion: 0.04 +Nodes (47): Approved PR prereleases, Desktop and Recovery artifacts, Electron production release control plane, Local versus production proof, Secret mapping and distribution selection, Commands, GitHub Releases, Runtime (+39 more) -### Community 580 - "entry.ts" -Cohesion: 0.15 -Nodes (8): configure(), init(), script, ThingtimeGlobal, Window, booleanAttribute(), configFromScript(), ThingtimeEmbedConfig +### Community 580 - "commitPlacement" +Cohesion: 0.21 +Nodes (13): appendChild(), appendChildToContainer(), appendInitialChild(), commitPlacement(), commitReconciliationEffects(), getHostParentFiber(), getHostSibling(), insertBefore() (+5 more) ### Community 581 - "🦄 Handoff: Schema browser / builder / search-by-schema" Cohesion: 0.14 Nodes (13): 0. TL;DR, 1. What Lopu asked for (verbatim intent), 2. Grounding (where things live — verified this session), 3. What's DONE (committed on `claude/schema-browser-builder`, `99c313f`), 4. What's NEXT (not started), 5. House rules that bit us before (don't relearn the hard way), Backend, Dev environment (+5 more) ### Community 582 - "unstable_scheduleCallback" -Cohesion: 0.29 -Nodes (13): advanceTimers(), cancelHostTimeout(), flushWork(), handleTimeout(), markTaskErrored(), peek(), requestHostCallback(), requestHostTimeout() (+5 more) +Cohesion: 0.18 +Nodes (19): advanceTimers(), attemptReplayContinuousQueuedEvent(), attemptReplayContinuousQueuedEventInMap(), cancelHostTimeout(), flushWork(), handleTimeout(), markTaskErrored(), peek() (+11 more) ### Community 583 - "package.json" Cohesion: 0.15 @@ -4204,55 +4197,55 @@ Nodes (12): compilerOptions, declaration, exactOptionalPropertyTypes, lib, modul ### Community 587 - "embed.tsx" Cohesion: 0.14 -Nodes (13): CodeWindow(), BUTTON_SIZES, BUTTON_THEMES, DocsEmbed(), LoginButtonPreview(), SandboxSession, SCOPE_ROWS, SdkState (+5 more) +Nodes (13): WindowTrafficLights(), BUTTON_SIZES, BUTTON_THEMES, DocsEmbed(), LoginButtonPreview(), SandboxSession, SCOPE_ROWS, SdkState (+5 more) -### Community 588 - "rateLimit.ts" -Cohesion: 0.19 -Nodes (15): FALLBACK_MUSINGS, wishSlotMusing(), fetchWeather(), hasLopuAiProviderConfigured, weatherCodeToText(), activeRequestsExpr(), consumeLopuMusingQuota(), firstHeaderIp() (+7 more) +### Community 588 - "musing.ts" +Cohesion: 0.08 +Nodes (27): FALLBACK_MUSINGS, wishSlotMusing(), ALL_MODES, buildContextLine(), buildUserPrompt(), fetchWeather(), getLopuModelChoices, hasLopuAiProviderConfigured (+19 more) ### Community 589 - "unstable_scheduleCallback" Cohesion: 0.29 Nodes (13): advanceTimers(), cancelHostTimeout(), flushWork(), handleTimeout(), markTaskErrored(), peek(), requestHostCallback(), requestHostTimeout() (+5 more) ### Community 590 - "describeNativeComponentFrame" +Cohesion: 0.19 +Nodes (14): createCapturedValueAtFiber(), describeBuiltInComponentFrame(), describeClassComponentFrame(), describeFiber(), describeFunctionComponentFrame(), describeNativeComponentFrame(), describeUnknownElementTypeFrameInDEV(), disabledLog() (+6 more) + +### Community 591 - "describeNativeComponentFrame" Cohesion: 0.21 Nodes (13): describeBuiltInComponentFrame(), describeClassComponentFrame(), describeFiber(), describeFunctionComponentFrame(), describeNativeComponentFrame(), describeUnknownElementTypeFrameInDEV(), disabledLog(), disableLogs() (+5 more) -### Community 591 - "landingSections.tsx" -Cohesion: 0.05 -Nodes (22): Branding(), Logo(), Attention(), Hamburger(), BrutalButton(), BrutalVariant, burstAtEvent(), burstConfetti() (+14 more) - ### Community 592 - "Coordinator" Cohesion: 0.26 Nodes (7): HTTPCookie, Coordinator, Any, URL, WKNavigation, WKScriptMessage, WKUserContentController ### Community 593 - "update" -Cohesion: 0.05 -Nodes (49): add(), addDomEvent(), addListeners(), addPointerEvent(), addScaleCorrector(), addUniqueItem(), addVariantChild(), animateChildren() (+41 more) +Cohesion: 0.10 +Nodes (26): add(), addDomEvent(), addListeners(), addPointerEvent(), addScaleCorrector(), addUniqueItem(), addVariantChild(), bindToMotionValue() (+18 more) -### Community 594 - "theme.tsx" -Cohesion: 0.14 -Nodes (11): ChakraWrapper(), chakras, chakrasDark, chakrasLight, colors, g, greys, ChakraButton (+3 more) +### Community 594 - "commitPlacement" +Cohesion: 0.21 +Nodes (13): appendChild(), appendChildToContainer(), appendInitialChild(), commitPlacement(), commitReconciliationEffects(), getHostParentFiber(), getHostSibling(), insertBefore() (+5 more) ### Community 595 - ".startRealtimeAudio" Cohesion: 0.19 Nodes (6): RealtimeDescriptor, Settings, Bool, Data, Speech, URLSessionWebSocketTask -### Community 596 - "ScreenCaptureError" -Cohesion: 0.15 -Nodes (12): ScreenCaptureError, alreadyRunning, captureInterrupted, encodingFailed, explicitAuthorizationRequired, frameTooLarge, invalidSessionID, malformedFrame (+4 more) +### Community 596 - "DeploymentOptionRow" +Cohesion: 0.24 +Nodes (7): DeploymentOptionRow, DeploymentSectionDisclosure, DestinationContextMenu, DestinationRow, Bool, String, Void -### Community 597 - "groups.ts" -Cohesion: 0.35 -Nodes (11): createGroup(), deleteGroup(), Fail, findOwnedGroup(), memberIdsByGroup(), projectGroups(), PublicGroup, sanitizeMemberIds() (+3 more) +### Community 597 - "createContext" +Cohesion: 0.19 +Nodes (13): addBindingsToContext(), context(), contextObject(), createContext(), createInlineContext(), getNodeUUID(), getPathUUID(), initBlock() (+5 more) -### Community 598 - "scrapeMotionValuesFromProps" -Cohesion: 0.25 -Nodes (8): copyRawValuesOnly(), isForcedMotionValue(), scrapeMotionValuesFromProps(), scrapeMotionValuesFromProps2(), useHTMLProps(), useInitialMotionValues(), useStyle(), useSVGProps() +### Community 598 - "copyRawValuesOnly" +Cohesion: 0.33 +Nodes (6): copyRawValuesOnly(), isForcedMotionValue(), useHTMLProps(), useInitialMotionValues(), useStyle(), useSVGProps() ### Community 599 - "mapIntoArray" Cohesion: 0.07 -Nodes (34): checkDepsAreArrayDev(), cloneAndReplaceKey(), cloneElementWithValidation(), createContext(), createFactoryWithValidation(), describeBuiltInComponentFrame(), describeClassComponentFrame(), describeFiber() (+26 more) +Nodes (36): checkDepsAreArrayDev(), cloneAndReplaceKey(), cloneElementWithValidation(), createContext(), createFactoryWithValidation(), describeBuiltInComponentFrame(), describeClassComponentFrame(), describeFiber() (+28 more) ### Community 600 - "package.json" Cohesion: 0.15 @@ -4270,17 +4263,17 @@ Nodes (6): Activation gates, Live setup completed during implementation, PR #212 Cohesion: 0.15 Nodes (12): Built-in registration and launcher follow-up, CodeQL follow-up, Commander responsiveness hardening, Follow-up coverage, Native and runtime design, PR #263 — Add cross-platform Commander launcher, Product scope, Raycast compatibility boundary (+4 more) -### Community 604 - "passkeyCeremony.ts" -Cohesion: 0.29 -Nodes (7): authenticatePasskey(), createPasskey(), decode(), descriptor(), encode(), PasskeyCeremonies, passkeyErrorMessage() +### Community 604 - "String" +Cohesion: 0.42 +Nodes (9): DeploymentGroup, DeploymentOption, DeploymentSection, DeploymentsOverview, DeploymentSummary, StartupSelection, Bool, Set (+1 more) ### Community 605 - "Thingtime Embed SDK" Cohesion: 0.17 Nodes (10): Build and verify, Persistence and conflicts, Public API, Quick start, Security model, Thingtime Embed SDK, Deploy Your Own, Development (+2 more) -### Community 606 - "mapIntoArray" -Cohesion: 0.07 -Nodes (38): checkDepsAreArrayDev(), cloneAndReplaceKey(), cloneElementWithValidation(), createElementWithValidation(), describeBuiltInComponentFrame(), describeClassComponentFrame(), describeFiber(), describeFunctionComponentFrame() (+30 more) +### Community 606 - "credentialVaultCore.ts" +Cohesion: 0.32 +Nodes (10): boundedText(), LOPU_CREDENTIAL_TYPE, LopuCredentialFetchRequest, normalizeBootstrapCredentials(), normalizeCredentialName(), normalizeCredentialOrder(), normalizeCredentialPlatform(), parseLopuCredentialFetchRequest() (+2 more) ### Community 607 - "rules" Cohesion: 0.15 @@ -4304,7 +4297,7 @@ Nodes (30): Commander architecture, Distribution, Extension compatibility, Exten ### Community 613 - "value" Cohesion: 0.32 -Nodes (11): binary_accepts_a_request_and_returns_flattened_hits(), binary_emits_a_structured_error_then_keeps_serving(), binary_flushes_each_response_before_stdin_closes(), binary_processes_multiple_requests_in_order(), binary_rejects_syntactically_malformed_json_then_keeps_serving(), String, Vec, run_json_lines() (+3 more) +Nodes (12): binary_accepts_a_request_and_returns_flattened_hits(), binary_emits_a_structured_error_then_keeps_serving(), binary_flushes_each_response_before_stdin_closes(), binary_processes_multiple_requests_in_order(), binary_rejects_syntactically_malformed_json_then_keeps_serving(), String, Vec, run_json_lines() (+4 more) ### Community 614 - "Image Modification Changelog" Cohesion: 0.17 @@ -4331,28 +4324,28 @@ Cohesion: 0.15 Nodes (12): Lopu review (2026-09-06, head `bdbe02a0`), Lopu review — head `9194b96e` (custom audiences could not reach their own secret link), Merge resolutions (8 conflicting files), PR #613 — Re-land hidden 🕵️ links + PAT GET bridge + custom audiences 🎭 (`claude/hidden-links-custom-audiences-reland`), The defect 🕵️🎭, The fix, Validation, Validation (+4 more) ### Community 620 - "index.ts" -Cohesion: 0.24 -Nodes (9): ASTRO_PACK_ARITIES, astroPack, ACTION_PACKS, bindPacks(), POKEWORLD_PACK_ARITIES, pokeworldPack, ActionPack, PackContext (+1 more) +Cohesion: 0.08 +Nodes (35): ASTRO_PACK_ARITIES, astroPack, ACTION_PACKS, applyBattleItem(), BALL_BONUS, BALL_BREAK_FLAVOR, memberFromBattleMon(), TurnResult (+27 more) -### Community 621 - "FakeScreenCaptureBackend" -Cohesion: 0.29 -Nodes (5): ScreenCaptureBackendSession, FakeScreenCaptureBackend, FakeScreenCaptureSession, Bool, Sendable +### Community 621 - "useStyleConfigImpl" +Cohesion: 0.18 +Nodes (11): factory(), GlobalStyle(), omitReactElements(), resolveStyleConfig(), styled2(), useChakra(), useColorMode(), useMultiStyleConfig() (+3 more) -### Community 622 - "README.md" +### Community 622 - "useStyleConfigImpl" Cohesion: 0.18 -Nodes (7): AWS, Media caching and resizing, Restore an existing or replacement bucket, S3 restoration, Configuration sets, SES restoration, Service configurations +Nodes (11): factory(), GlobalStyle(), omitReactElements(), resolveStyleConfig(), styled2(), useChakra(), useColorMode(), useMultiStyleConfig() (+3 more) -### Community 623 - "ScreenCaptureRawFrame" -Cohesion: 0.21 -Nodes (5): ScreenCaptureRawFrame, ScreenCaptureRawPayload, opaque, pixelBuffer, Double +### Community 623 - "useStyleConfigImpl" +Cohesion: 0.18 +Nodes (11): factory(), GlobalStyle(), omitReactElements(), resolveStyleConfig(), styled2(), useChakra(), useColorMode(), useMultiStyleConfig() (+3 more) ### Community 624 - "RawResults.tsx" Cohesion: 0.29 Nodes (7): MongoQuerySuccess, Props, RawResults(), csvCell(), displayMongoResultValue(), serializeMongoResultsCsv(), tabulateMongoResults() -### Community 625 - "legacyCreateRootFromDOMContainer" -Cohesion: 0.08 -Nodes (33): createContainer(), createContext(), createFactoryWithValidation(), createFiberRoot(), createHostRootFiber(), createPortal(), createPortal$1(), createRoot() (+25 more) +### Community 625 - "createRoot" +Cohesion: 0.09 +Nodes (27): createContext(), createFactoryWithValidation(), createPortal(), createPortal$1(), createRoot(), createRoot$1(), getReactRootElementInContainer(), hydrate() (+19 more) ### Community 626 - "deviceDrawerPreferences.ts" Cohesion: 0.35 @@ -4371,8 +4364,8 @@ Cohesion: 0.17 Nodes (11): 21 — Composed app surface for Thing programs 📁, Architecture and data rules, Done when, Editing and composition, Existing anchors, Goal, Naming and kind constraints, Opening an app (+3 more) ### Community 630 - "unstable_scheduleCallback" -Cohesion: 0.16 -Nodes (20): advanceTimers(), cancelHostTimeout(), clearSuspenseBoundary(), clearSuspenseBoundaryFromContainer(), commitHydratedContainer(), commitHydratedSuspenseInstance(), commitSuspenseHydrationCallbacks(), flushWork() (+12 more) +Cohesion: 0.29 +Nodes (13): advanceTimers(), cancelHostTimeout(), flushWork(), handleTimeout(), markTaskErrored(), peek(), requestHostCallback(), requestHostTimeout() (+5 more) ### Community 631 - "raycast-env.d.ts" Cohesion: 0.18 @@ -4402,21 +4395,21 @@ Nodes (11): build(), buildHTMLStyles(), buildSVGAttrs(), buildSVGPath(), buildTr Cohesion: 0.22 Nodes (11): build(), buildHTMLStyles(), buildSVGAttrs(), buildSVGPath(), buildTransform(), calcOrigin(), calcSVGTransformOrigin(), getTransformGpuTemplate() (+3 more) -### Community 639 - "appendChildToContainer" -Cohesion: 0.38 -Nodes (7): appendChild(), appendChildToContainer(), appendInitialChild(), insertBefore(), insertInContainerBefore(), insertOrAppendPlacementNode(), insertOrAppendPlacementNodeIntoContainer() +### Community 639 - "commitPlacement" +Cohesion: 0.21 +Nodes (13): appendChild(), appendChildToContainer(), appendInitialChild(), commitPlacement(), commitReconciliationEffects(), getHostParentFiber(), getHostSibling(), insertBefore() (+5 more) ### Community 640 - "promote" Cohesion: 0.33 Nodes (7): componentWillUnmount(), getSnapshotBeforeUpdate(), promote(), relegate(), remove(), removeItem(), safeToRemove() ### Community 641 - "buildSVGAttrs" -Cohesion: 0.22 -Nodes (11): build(), buildHTMLStyles(), buildSVGAttrs(), buildSVGPath(), buildTransform(), calcOrigin(), calcSVGTransformOrigin(), getTransformGpuTemplate() (+3 more) +Cohesion: 0.24 +Nodes (10): build(), buildHTMLStyles(), buildSVGAttrs(), buildSVGPath(), buildTransform(), calcOrigin(), calcSVGTransformOrigin(), getTransformGpuTemplate() (+2 more) -### Community 642 - "unstable_scheduleCallback" -Cohesion: 0.18 -Nodes (19): advanceTimers(), attemptReplayContinuousQueuedEvent(), attemptReplayContinuousQueuedEventInMap(), cancelHostTimeout(), flushWork(), handleTimeout(), markTaskErrored(), peek() (+11 more) +### Community 642 - "dispatchEventWithEnableCapturePhaseSelectiveHydrationWithoutDiscreteEventReplay" +Cohesion: 0.07 +Nodes (41): accumulateOrCreateContinuousQueuedReplayableEvent(), assertIsMounted(), attemptExplicitHydrationTarget(), attemptReplayContinuousQueuedEvent(), attemptReplayContinuousQueuedEventInMap(), attemptSynchronousHydration(), batchedUpdates(), clearIfContinuousEvent() (+33 more) ### Community 643 - "buildSVGAttrs" Cohesion: 0.22 @@ -4430,17 +4423,17 @@ Nodes (13): appendChild(), appendChildToContainer(), appendInitialChild(), commi Cohesion: 0.22 Nodes (11): build(), buildHTMLStyles(), buildSVGAttrs(), buildSVGPath(), buildTransform(), calcOrigin(), calcSVGTransformOrigin(), getTransformGpuTemplate() (+3 more) -### Community 646 - "useStyleConfigImpl" -Cohesion: 0.18 -Nodes (11): factory(), GlobalStyle(), omitReactElements(), resolveStyleConfig(), styled2(), useChakra(), useColorMode(), useMultiStyleConfig() (+3 more) +### Community 646 - "getHomeCollection" +Cohesion: 0.35 +Nodes (10): EmailEventInput, normalizeEmail(), recordEmailEvent(), suppressEmailAddress(), unsubscribeEmailAddress(), getSuppressedRecipients(), getEmailEventsCollection(), getEmailSuppressionListCollection() (+2 more) ### Community 647 - "buildSVGAttrs" Cohesion: 0.22 Nodes (11): build(), buildHTMLStyles(), buildSVGAttrs(), buildSVGPath(), buildTransform(), calcOrigin(), calcSVGTransformOrigin(), getTransformGpuTemplate() (+3 more) -### Community 648 - "Electron production release control plane" -Cohesion: 0.15 -Nodes (10): Approved PR prereleases, Desktop and Recovery artifacts, Electron production release control plane, Local versus production proof, Secret mapping and distribution selection, Commands, GitHub Releases, Runtime (+2 more) +### Community 648 - "root-data.server.ts" +Cohesion: 0.33 +Nodes (8): Session, getDeploymentBranchName(), getDeploymentCommitSha(), loadRootData(), PUBLIC_THINGTIME_ENV_KEYS, rootDataResponse(), TEST_ENV_KEYS, withTestEnv() ### Community 649 - "buildSVGAttrs" Cohesion: 0.22 @@ -4454,9 +4447,9 @@ Nodes (13): appendChild(), appendChildToContainer(), appendInitialChild(), commi Cohesion: 0.22 Nodes (11): build(), buildHTMLStyles(), buildSVGAttrs(), buildSVGPath(), buildTransform(), calcOrigin(), calcSVGTransformOrigin(), getTransformGpuTemplate() (+3 more) -### Community 652 - "_template.tsx" +### Community 652 - "DeploymentPresentation" Cohesion: 0.33 -Nodes (5): TestAPI(), Editor(), TopSpacing(), action(), earlyReturn() +Nodes (3): DeploymentPresentation, Color, String ### Community 653 - "🏛️ Thingtime Fundamentals" Cohesion: 0.18 @@ -4482,13 +4475,9 @@ Nodes (11): factory(), GlobalStyle(), omitReactElements(), resolveStyleConfig(), Cohesion: 0.33 Nodes (10): BrandExportOptions, buildExportSvg(), clampPad(), downloadBrandExport(), PaddingPx, triggerDownload(), buildLogoSvg(), fmt() (+2 more) -### Community 659 - "describeNativeComponentFrame" -Cohesion: 0.21 -Nodes (13): describeBuiltInComponentFrame(), describeClassComponentFrame(), describeFiber(), describeFunctionComponentFrame(), describeNativeComponentFrame(), describeUnknownElementTypeFrameInDEV(), disabledLog(), disableLogs() (+5 more) - -### Community 660 - "useStyleConfigImpl" -Cohesion: 0.18 -Nodes (11): factory(), GlobalStyle(), omitReactElements(), resolveStyleConfig(), styled2(), useChakra(), useColorMode(), useMultiStyleConfig() (+3 more) +### Community 660 - "PR #607 — Rich route-aware Thingtime link previews" +Cohesion: 0.20 +Nodes (9): Follow-ups (not blocking), Fonts, Layout is measured, not counted, Outcome, PR #607 — Rich route-aware Thingtime link previews, Safety boundaries, Surfaces, Validation (+1 more) ### Community 661 - "web-ci-required-context-contract.mjs" Cohesion: 0.18 @@ -4522,9 +4511,9 @@ Nodes (9): dependencies, @commander/protocol, emojibase-data, lucide-react, reac Cohesion: 0.14 Nodes (13): Browser and UI validation, Canonical instruction file, Commander macOS distribution signing, Data and API conventions, Delivery messaging, Feature customization defaults, Fundamentals (read first), GitHub push and PR publishing (+5 more) -### Community 669 - "useStyleConfigImpl" -Cohesion: 0.18 -Nodes (11): factory(), GlobalStyle(), omitReactElements(), resolveStyleConfig(), styled2(), useChakra(), useColorMode(), useMultiStyleConfig() (+3 more) +### Community 669 - "models.route.test.ts" +Cohesion: 0.25 +Nodes (5): allowed, blocked, createAdmin(), createAdminAiModelsHandlers(), createAiModelsHandlers() ### Community 670 - "package.json" Cohesion: 0.20 @@ -4638,9 +4627,9 @@ Nodes (4): Decision log, Decisions, Nikolaj Frey — Engineer Decisions, Recurri Cohesion: 0.12 Nodes (15): Baselines, not estimates, Canonical legacy-reader cutover — 47-index candidate, Entire source plan: optimization decisions, Implementation sequence and acceptance gates, Relationship migration preparation, Shared relationship lookup cutover, Still required before claiming completion, Thing index consolidation — September 2026 (+7 more) -### Community 698 - "AccountHints.tsx" -Cohesion: 0.35 -Nodes (8): AccountHintOriginPresentation, accountHintOriginsSummary(), hostFromOrigin(), AccountHintRow(), HintAvatar(), hintDisplayName(), hintOriginsLabel(), AccountHint +### Community 698 - "BsonValueEditor.tsx" +Cohesion: 0.28 +Nodes (8): MONGO_BSON_VALUE_TYPES, MongoBsonValueType, BsonValueEditorComponent(), inputStyles, isLiteralType(), placeholderFor(), Props, BsonValueNode ### Community 699 - "componentDidMount" Cohesion: 0.31 @@ -4650,9 +4639,9 @@ Nodes (9): burst, burstAt, burstSize, componentDidMount, renderVals, setCanvas, Cohesion: 0.22 Nodes (6): aiConnectorBundle, electronDir, indexHtml, nodeRuntimeBundle, serverEntry, webOutputDir -### Community 701 - "LopuActivityBadge.tsx" -Cohesion: 0.35 -Nodes (10): LopuActivityBadge(), pulse, readServerStreaming(), readStreaming(), useLopuStreamingActivity(), getLopuStoreServerSnapshot(), getLopuStoreSnapshot(), selectLopuStreaming() (+2 more) +### Community 701 - "PipelineBuilder.tsx" +Cohesion: 0.22 +Nodes (7): MONGO_READ_ONLY_AGGREGATION_STAGES, MongoReadOnlyAggregationStage, BsonValueEditor, inputStyles, PipelineBuilder, Props, PipelineStage ### Community 702 - "PR #13 - Hydration, Vercel Status, and Deployment Hygiene" Cohesion: 0.22 @@ -4714,45 +4703,45 @@ Nodes (7): Commander testing checklist, Extensions, Launcher, Settings, Signed r Cohesion: 0.25 Nodes (7): env, es2020, node, extends, parser, plugins, root -### Community 718 - "commitPlacement" -Cohesion: 0.21 -Nodes (13): appendChild(), appendChildToContainer(), appendInitialChild(), commitPlacement(), commitReconciliationEffects(), getHostParentFiber(), getHostSibling(), insertBefore() (+5 more) +### Community 718 - "thingIn" +Cohesion: 0.29 +Nodes (8): getThing(), popThing(), pushThing(), pushThings(), setThing(), setThings(), thingIn(), thingIndex() -### Community 719 - "scrapeMotionValuesFromProps" -Cohesion: 0.25 -Nodes (8): copyRawValuesOnly(), isForcedMotionValue(), scrapeMotionValuesFromProps(), scrapeMotionValuesFromProps2(), useHTMLProps(), useInitialMotionValues(), useStyle(), useSVGProps() +### Community 719 - "getValue" +Cohesion: 0.10 +Nodes (27): addValue(), copyRawValuesOnly(), getComputedStyle(), getStaticValue(), getValue(), hasValue(), isForcedMotionValue(), jump() (+19 more) ### Community 720 - "scrapeMotionValuesFromProps" Cohesion: 0.25 Nodes (8): copyRawValuesOnly(), isForcedMotionValue(), scrapeMotionValuesFromProps(), scrapeMotionValuesFromProps2(), useHTMLProps(), useInitialMotionValues(), useStyle(), useSVGProps() -### Community 721 - "verify-subspaces.mjs" -Cohesion: 0.26 -Nodes (12): MemberAction, SUBSPACE_NOTIFICATION_TYPES, api(), check(), checkOrSkip(), day, failures, isStorageGate() (+4 more) +### Community 721 - "stringify" +Cohesion: 0.32 +Nodes (8): pause(), replacer(), safestring(), save(), serialize(), setKnown(), stringifier(), stringify() ### Community 722 - "scrapeMotionValuesFromProps" Cohesion: 0.25 Nodes (8): copyRawValuesOnly(), isForcedMotionValue(), scrapeMotionValuesFromProps(), scrapeMotionValuesFromProps2(), useHTMLProps(), useInitialMotionValues(), useStyle(), useSVGProps() -### Community 723 - "authReturn.ts" -Cohesion: 0.44 -Nodes (5): AuthReturnStorage, consumeAuthReturnTo(), readAuthReturnTo(), rememberAuthReturnTo(), safeAuthReturnPath() +### Community 723 - "promote" +Cohesion: 0.33 +Nodes (7): componentWillUnmount(), getSnapshotBeforeUpdate(), promote(), relegate(), remove(), removeItem(), safeToRemove() -### Community 724 - "getVercelDeploymentsOverview" -Cohesion: 0.32 -Nodes (9): getBranchDeploymentKey(), getVercelDeploymentsOverview(), groupVercelDeployments(), normaliseDeploymentBranchLimit(), normaliseDeploymentHistoryLimit(), VercelDeploymentSummary, getBranchLimitFromRequest(), getDeployments() (+1 more) +### Community 724 - "isVercelStatusEnabled" +Cohesion: 0.21 +Nodes (12): DeploymentStatusEnvironment, isVercelStatusEnabled(), isVisibleVercelEnvironment(), getBranchDeploymentKey(), getVercelDeploymentsOverview(), groupVercelDeployments(), normaliseDeploymentBranchLimit(), normaliseDeploymentHistoryLimit() (+4 more) ### Community 725 - "useStyleConfigImpl" Cohesion: 0.18 Nodes (11): factory(), GlobalStyle(), omitReactElements(), resolveStyleConfig(), styled2(), useChakra(), useColorMode(), useMultiStyleConfig() (+3 more) -### Community 726 - "scrapeMotionValuesFromProps" -Cohesion: 0.25 -Nodes (8): copyRawValuesOnly(), isForcedMotionValue(), scrapeMotionValuesFromProps(), scrapeMotionValuesFromProps2(), useHTMLProps(), useInitialMotionValues(), useStyle(), useSVGProps() +### Community 726 - "copyRawValuesOnly" +Cohesion: 0.33 +Nodes (6): copyRawValuesOnly(), isForcedMotionValue(), useHTMLProps(), useInitialMotionValues(), useStyle(), useSVGProps() -### Community 727 - "scrapeMotionValuesFromProps" -Cohesion: 0.25 -Nodes (8): copyRawValuesOnly(), isForcedMotionValue(), scrapeMotionValuesFromProps(), scrapeMotionValuesFromProps2(), useHTMLProps(), useInitialMotionValues(), useStyle(), useSVGProps() +### Community 727 - "copyRawValuesOnly" +Cohesion: 0.33 +Nodes (6): copyRawValuesOnly(), isForcedMotionValue(), useHTMLProps(), useInitialMotionValues(), useStyle(), useSVGProps() ### Community 728 - "verify-unsigned-app.mjs" Cohesion: 0.25 @@ -4834,29 +4823,21 @@ Nodes (7): Client, Data model (everything is a thing — FUNDAMENTALS §3), Know Cohesion: 0.25 Nodes (5): { APP_STORAGE_ACCOUNTING_VERSION, appStorageCounterMatch }, match, now, { projectAppDataStorage }, remixRoot -### Community 749 - "verify-embed-bundle.mjs" -Cohesion: 0.24 -Nodes (7): findSourceMapAnnotation(), copiedAssets, generatedAssets, outputPath, source, sourceMapAnnotation, syntaxCheck +### Community 749 - "getVercelDeploymentsPage" +Cohesion: 0.47 +Nodes (6): getCachedJson(), getVercelApiHeaders(), getVercelDeploymentsPage(), getVercelDeploymentsPages(), getVercelProjectData(), setCachedJson() ### Community 750 - "promote" Cohesion: 0.33 Nodes (7): componentWillUnmount(), getSnapshotBeforeUpdate(), promote(), relegate(), remove(), removeItem(), safeToRemove() -### Community 751 - "webpageAttachments.ts" -Cohesion: 0.43 -Nodes (5): bindOwnedWebpageAttachments(), collectFromRecord(), collectFromString(), extractWebpageAttachmentIds(), WebpageAttachmentBindResult - ### Community 752 - "UiErrorBoundary" Cohesion: 0.29 Nodes (3): UiErrorBoundary, UiErrorBoundaryProps, UiErrorBoundaryState -### Community 753 - "useStyleConfigImpl" -Cohesion: 0.18 -Nodes (11): factory(), GlobalStyle(), omitReactElements(), resolveStyleConfig(), styled2(), useChakra(), useColorMode(), useMultiStyleConfig() (+3 more) - -### Community 754 - "thingtimeMutationQueue.ts" -Cohesion: 0.40 -Nodes (4): drainThingtimeMutationQueue(), State, Update, ThingtimeMutationDrainResult +### Community 753 - "Source" +Cohesion: 0.50 +Nodes (4): Source, configured, production, vercelDeployment ### Community 755 - "verify-components.mjs" Cohesion: 0.36 @@ -4930,13 +4911,9 @@ Nodes (5): app, configuredOrigins, io, server, smarts Cohesion: 0.33 Nodes (7): componentWillUnmount(), getSnapshotBeforeUpdate(), promote(), relegate(), remove(), removeItem(), safeToRemove() -### Community 773 - "copyRawValuesOnly" -Cohesion: 0.33 -Nodes (6): copyRawValuesOnly(), isForcedMotionValue(), useHTMLProps(), useInitialMotionValues(), useStyle(), useSVGProps() - -### Community 774 - "deviceDrawerLayout.ts" -Cohesion: 0.90 -Nodes (3): clampDeviceDrawerWidth(), deviceDrawerMaximumWidth(), deviceDrawerMinimumWidth() +### Community 773 - "scrapeMotionValuesFromProps" +Cohesion: 0.25 +Nodes (8): copyRawValuesOnly(), isForcedMotionValue(), scrapeMotionValuesFromProps(), scrapeMotionValuesFromProps2(), useHTMLProps(), useInitialMotionValues(), useStyle(), useSVGProps() ### Community 775 - "promote" Cohesion: 0.33 @@ -5111,8 +5088,8 @@ Cohesion: 0.25 Nodes (8): copyRawValuesOnly(), isForcedMotionValue(), scrapeMotionValuesFromProps(), scrapeMotionValuesFromProps2(), useHTMLProps(), useInitialMotionValues(), useStyle(), useSVGProps() ### Community 820 - "push" -Cohesion: 0.06 -Nodes (49): accumulateEnterLeaveListenersForEvent(), accumulateSinglePhaseListeners(), accumulateTwoPhaseListeners(), advanceTimers(), cancelHostTimeout(), compare(), createAndAccumulateChangeEvent(), createDispatchListener() (+41 more) +Cohesion: 0.05 +Nodes (66): accumulateEnterLeaveListenersForEvent(), accumulateEnterLeaveTwoPhaseListeners(), accumulateSinglePhaseListeners(), accumulateTwoPhaseListeners(), advanceTimers(), cancelHostTimeout(), compare(), constructSelectEvent() (+58 more) ### Community 821 - "Thingtime iOS Agent Runbook" Cohesion: 0.33 @@ -5386,10 +5363,6 @@ Nodes (4): Notes, PR 39: Add API self-documentation routes, Summary, Validation Cohesion: 0.40 Nodes (4): PR #427 — Overhaul web search and Commander results, Regression focus, Scope, Validation log -### Community 896 - "useThingtimeMachine.tsx" -Cohesion: 0.17 -Nodes (12): newTimeline(), PathArray, ThingtimeLine(), Timeline, TimelineEvent, TimelineScaffold, Timemachine, TimemachineScaffold (+4 more) - ### Community 897 - "PR #491 — Add an ordered Lopu credential vault" Cohesion: 0.40 Nodes (4): PR #491 — Add an ordered Lopu credential vault, Scope, Security boundaries, Validation log @@ -5406,18 +5379,10 @@ Nodes (4): Incident, PR #530 — Exact Feature Stack run history and terminal st Cohesion: 0.40 Nodes (4): Contract, Outcome, PR #533 — Feature Stack progress heartbeats, Validation -### Community 901 - "attachmentCascadeCore.ts" -Cohesion: 0.47 -Nodes (4): AttachmentCascadeCandidate, AttachmentCascadeCleanupTarget, attachmentCascadeCleanupTargets(), isAttachmentCandidate() - ### Community 902 - "2026-07-15 — Native Thingtime rendering for feed things (ThingView)" Cohesion: 0.40 Nodes (4): 2026-07-15 — Hardening pass (recursive review follow-up), 2026-07-15 — Native Thingtime rendering for feed things (ThingView), 2026-07-15 — Review rounds 2 & 3 (recursive), PR #69 — Unified: /search platform + profile composer & advanced filters -### Community 903 - "isVercelStatusEnabled" -Cohesion: 0.39 -Nodes (5): DeploymentStatusEnvironment, isVercelStatusEnabled(), isVisibleVercelEnvironment(), action(), loader() - ### Community 905 - "namespaceStorageRecovery.test.ts" Cohesion: 0.40 Nodes (4): BehaviourSuitesModule, NamespaceModule, remixRoot, ThingsModule @@ -5540,7 +5505,7 @@ Nodes (3): Follow-up scope, PR #389 — Load all Commander result icons without ### Community 942 - "providerRouter.ts" Cohesion: 0.18 -Nodes (15): githubAppConfigured(), ciProviderReadiness(), configured(), ProviderEnvironment, completeEnvironment, validateCiExecutionProvider(), VERCEL_PROVIDER_REQUIRED_ENV, bounded() (+7 more) +Nodes (16): byKey, CI_AUTOMATION_DEFINITIONS, CI_WORKFLOW_KEYS, CiAutomationDefinition, CiAutomationPolicy, CiWorkflowKey, defaultCiAutomationPolicy(), isCiExecutionProvider() (+8 more) ### Community 943 - "PR #66 — Extended props, schema-less crystals + stranded email/password-reset/2FA port" Cohesion: 0.50 @@ -5616,7 +5581,7 @@ Nodes (7): componentWillUnmount(), getSnapshotBeforeUpdate(), promote(), relegat ### Community 1023 - "[Unreleased]" Cohesion: 0.03 -Nodes (77): [1.0.0] - YYYY-MM-DD, 2026-08-24 — Action Thing v1 (declarative, capability-bounded programs), 2026-08-25 — Action Thing v1: builder, ttAction closure, Used-by, v2 design, 2026-08-25 — Action Thing v1 security review: private minting, trust boundary, delegated resolution, 2026-08-30 — Design system alignment + block-based site builder — Claude (AI), 2026-08-31 — Bounded Graphify snapshot retention, 2026-08-31 — Builder round 4: Figma-layer styling, WYSIWYG, layout fixes — Claude (AI), 2026-08-31 — Builder round 5: media drop/paste everywhere, Figma-parity controls, resizable drawer — Claude (AI) (+69 more) +Nodes (78): [1.0.0] - YYYY-MM-DD, 2026-08-24 — Action Thing v1 (declarative, capability-bounded programs), 2026-08-25 — Action Thing v1: builder, ttAction closure, Used-by, v2 design, 2026-08-25 — Action Thing v1 security review: private minting, trust boundary, delegated resolution, 2026-08-30 — Design system alignment + block-based site builder — Claude (AI), 2026-08-31 — Bounded Graphify snapshot retention, 2026-08-31 — Builder round 4: Figma-layer styling, WYSIWYG, layout fixes — Claude (AI), 2026-08-31 — Builder round 5: media drop/paste everywhere, Figma-parity controls, resizable drawer — Claude (AI) (+70 more) ### Community 1236 - "Lopu AI assistant (`/lopu`, floating launcher, `remix/app/components/Lopu/`, `/api/v1/lopu/chats*`, `/api/v1/ai/models`)" Cohesion: 0.40 @@ -5639,9 +5604,9 @@ Nodes (3): Desktop permission recovery, Index consolidation regression checks, S remix/public/branding/presskit/thingtime-confetti-pattern-2048x2048.png · relation: conceptually_related_to ## Knowledge Gaps -- **6336 isolated node(s):** `extends`, `printWidth`, `singleQuote`, `trailingComma`, `name` (+6331 more) +- **6362 isolated node(s):** `extends`, `printWidth`, `singleQuote`, `trailingComma`, `name` (+6357 more) These have ≤1 connection - possible missing edges or undocumented components. -- **838 thin communities (<3 nodes) omitted from report** — run `graphify query` to explore isolated nodes. +- **839 thin communities (<3 nodes) omitted from report** — run `graphify query` to explore isolated nodes. ## Suggested Questions _Questions this graph is uniquely positioned to answer:_ @@ -5652,11 +5617,11 @@ _Questions this graph is uniquely positioned to answer:_ _Edge tagged AMBIGUOUS (relation: semantically_similar_to) - confidence is low._ - **What is the exact relationship between `Thingtime Pink Logo Master (SVG)` and `Thingtime Confetti Tile Pattern 2048x2048`?** _Edge tagged AMBIGUOUS (relation: conceptually_related_to) - confidence is low._ -- **Why does `create()` connect `create` to `error`, `error`, `captureCommitPhaseError`, `index.tsx`, `error`, `error`, `error`, `error`, `error`, `error`, `error`, `captureCommitPhaseError`, `react.js`, `error`, `captureCommitPhaseError`?** - _High betweenness centrality (0.137) - this node is a cross-community bridge._ -- **Why does `resolveValue()` connect `execute.ts` to `constructor`, `constructor`, `isFail`, `registry.ts`, `constructor`, `constructor`, `constructor`, `constructor`, `constructor`, `constructor`, `constructor`, `constructor`, `constructor`, `constructor`?** - _High betweenness centrality (0.077) - this node is a cross-community bridge._ -- **Why does `Inner()` connect `replace` to `BrandAssetSection.tsx`, `replace`, `replace`, `replace`, `replace`, `replace`, `replace`, `replace`, `replace`, `replace`, `replace`, `replace`?** - _High betweenness centrality (0.056) - this node is a cross-community bridge._ +- **Why does `create()` connect `create` to `error`, `error`, `captureCommitPhaseError`, `index.tsx`, `error`, `error`, `captureCommitPhaseError`, `captureCommitPhaseError`, `error`, `error`, `error`, `captureCommitPhaseError`, `captureCommitPhaseError`, `captureCommitPhaseError`, `error`, `error`, `error`?** + _High betweenness centrality (0.163) - this node is a cross-community bridge._ +- **Why does `resolveValue()` connect `execute.ts` to `subspaces.ts`, `constructor`, `constructor`, `constructor`, `constructor`, `constructor`, `constructor`, `constructor`, `constructor`, `constructor`, `constructor`, `constructor`, `constructor`?** + _High betweenness centrality (0.083) - this node is a cross-community bridge._ +- **Why does `EditorHistory` connect `LongTextEditor.tsx` to `.getVersion`, `lopuBuildBridge.ts`?** + _High betweenness centrality (0.066) - this node is a cross-community bridge._ - **What connects `extends`, `printWidth`, `singleQuote` to the rest of the system?** - _6380 weakly-connected nodes found - possible documentation gaps or missing edges._ \ No newline at end of file + _6406 weakly-connected nodes found - possible documentation gaps or missing edges._ \ No newline at end of file diff --git a/graphify-out/snapshots/v1/4ddaafa1a7274b70d85fb051c2202466dc9a78691cf8eaa8d532756d22eac0e3/b79e5f1f088efb7dc1de552d6c40ff6d0e8976988261934134648bb5fdb30db1/cost.json b/graphify-out/snapshots/v1/96364f533539f7e0a309f8170f65e72edfa29a2a8670c1e5ac758257ff7c8372/7e6b7dbc2c48b212ec1c9e897971a814765e541a14f737ee90d1ba2cf1a6fb39/cost.json similarity index 100% rename from graphify-out/snapshots/v1/4ddaafa1a7274b70d85fb051c2202466dc9a78691cf8eaa8d532756d22eac0e3/b79e5f1f088efb7dc1de552d6c40ff6d0e8976988261934134648bb5fdb30db1/cost.json rename to graphify-out/snapshots/v1/96364f533539f7e0a309f8170f65e72edfa29a2a8670c1e5ac758257ff7c8372/7e6b7dbc2c48b212ec1c9e897971a814765e541a14f737ee90d1ba2cf1a6fb39/cost.json diff --git a/graphify-out/snapshots/v1/4ddaafa1a7274b70d85fb051c2202466dc9a78691cf8eaa8d532756d22eac0e3/b79e5f1f088efb7dc1de552d6c40ff6d0e8976988261934134648bb5fdb30db1/graph.json b/graphify-out/snapshots/v1/96364f533539f7e0a309f8170f65e72edfa29a2a8670c1e5ac758257ff7c8372/7e6b7dbc2c48b212ec1c9e897971a814765e541a14f737ee90d1ba2cf1a6fb39/graph.json similarity index 99% rename from graphify-out/snapshots/v1/4ddaafa1a7274b70d85fb051c2202466dc9a78691cf8eaa8d532756d22eac0e3/b79e5f1f088efb7dc1de552d6c40ff6d0e8976988261934134648bb5fdb30db1/graph.json rename to graphify-out/snapshots/v1/96364f533539f7e0a309f8170f65e72edfa29a2a8670c1e5ac758257ff7c8372/7e6b7dbc2c48b212ec1c9e897971a814765e541a14f737ee90d1ba2cf1a6fb39/graph.json index 7d4e243515..ed2e171cef 100644 --- a/graphify-out/snapshots/v1/4ddaafa1a7274b70d85fb051c2202466dc9a78691cf8eaa8d532756d22eac0e3/b79e5f1f088efb7dc1de552d6c40ff6d0e8976988261934134648bb5fdb30db1/graph.json +++ b/graphify-out/snapshots/v1/96364f533539f7e0a309f8170f65e72edfa29a2a8670c1e5ac758257ff7c8372/7e6b7dbc2c48b212ec1c9e897971a814765e541a14f737ee90d1ba2cf1a6fb39/graph.json @@ -775,7 +775,7 @@ "source_location": "L803", "_origin": "ast", "id": "commander_apps_daemon_src_server_json", - "community": 224, + "community": 344, "norm_label": "json()" }, { @@ -835,7 +835,7 @@ "source_location": "L876", "_origin": "ast", "id": "commander_apps_daemon_src_server_servestatic", - "community": 224, + "community": 344, "norm_label": "servestatic()" }, { @@ -1395,7 +1395,7 @@ "source_location": "L19", "_origin": "ast", "id": "commander_apps_daemon_src_services_config_commandercachedirectory", - "community": 224, + "community": 335, "norm_label": "commandercachedirectory()" }, { @@ -2195,7 +2195,7 @@ "source_location": "L53", "_origin": "ast", "id": "commander_apps_daemon_src_services_persistence_normalizedsettings", - "community": 65, + "community": 414, "norm_label": "normalizedsettings()" }, { @@ -2205,7 +2205,7 @@ "source_location": "L75", "_origin": "ast", "id": "commander_apps_daemon_src_services_persistence_initialstate", - "community": 272, + "community": 488, "norm_label": "initialstate()" }, { @@ -2995,7 +2995,7 @@ "source_location": "L57", "_origin": "ast", "id": "commander_apps_daemon_src_services_searchcache_searchresultcache_constructor", - "community": 65, + "community": 335, "norm_label": ".constructor()" }, { @@ -7295,7 +7295,7 @@ "source_location": "", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_rs_string", - "community": 90, + "community": 448, "norm_label": "string" }, { @@ -7325,7 +7325,7 @@ "source_location": "", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_rs_self", - "community": 484, + "community": 90, "norm_label": "self" }, { @@ -7365,7 +7365,7 @@ "source_location": "", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_rs_result", - "community": 484, + "community": 500, "norm_label": "result" }, { @@ -7415,7 +7415,7 @@ "source_location": "L92", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_indexkind_as_str", - "community": 484, + "community": 90, "norm_label": ".as_str()" }, { @@ -7425,7 +7425,7 @@ "source_location": "L100", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_indexkind_from_database", - "community": 484, + "community": 500, "norm_label": ".from_database()" }, { @@ -7465,7 +7465,7 @@ "source_location": "", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_rs_option", - "community": 90, + "community": 448, "norm_label": "option" }, { @@ -7475,7 +7475,7 @@ "source_location": "L131", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_ignorerulekind", - "community": 484, + "community": 90, "norm_label": "ignorerulekind" }, { @@ -7485,7 +7485,7 @@ "source_location": "L138", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_ignorerule", - "community": 484, + "community": 90, "norm_label": "ignorerule" }, { @@ -7495,7 +7495,7 @@ "source_location": "L145", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_indexconfiguration", - "community": 484, + "community": 90, "norm_label": "indexconfiguration" }, { @@ -7505,7 +7505,7 @@ "source_location": "", "_origin": "ast", "id": "indexresourcelimits", - "community": 484, + "community": 90, "norm_label": "indexresourcelimits" }, { @@ -7545,7 +7545,7 @@ "source_location": "L195", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_kindstatus", - "community": 90, + "community": 448, "norm_label": "kindstatus" }, { @@ -7635,7 +7635,7 @@ "source_location": "L272", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_indexersuccessresponse", - "community": 167, + "community": 613, "norm_label": "indexersuccessresponse" }, { @@ -7645,7 +7645,7 @@ "source_location": "L280", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_indexererrorbody", - "community": 90, + "community": 448, "norm_label": "indexererrorbody" }, { @@ -7655,7 +7655,7 @@ "source_location": "L287", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_indexererrorresponse", - "community": 90, + "community": 448, "norm_label": "indexererrorresponse" }, { @@ -7715,7 +7715,7 @@ "source_location": "L340", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_indexdatabase_index_with_progress", - "community": 484, + "community": 90, "norm_label": ".index_with_progress()" }, { @@ -7755,7 +7755,7 @@ "source_location": "L434", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_indexdatabase_status", - "community": 484, + "community": 90, "norm_label": ".status()" }, { @@ -7795,7 +7795,7 @@ "source_location": "L579", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_indexdatabase_record_source_error", - "community": 484, + "community": 90, "norm_label": ".record_source_error()" }, { @@ -7805,7 +7805,7 @@ "source_location": "L597", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_indexdatabase_prune_absent_sources", - "community": 484, + "community": 90, "norm_label": ".prune_absent_sources()" }, { @@ -7915,7 +7915,7 @@ "source_location": "", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_rs_t", - "community": 500, + "community": 484, "norm_label": "t" }, { @@ -8045,7 +8045,7 @@ "source_location": "L1350", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_candidaterecord", - "community": 90, + "community": 448, "norm_label": "candidaterecord" }, { @@ -8055,7 +8055,7 @@ "source_location": "L1359", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_candidate_from_entry", - "community": 90, + "community": 448, "norm_label": "candidate_from_entry()" }, { @@ -8065,7 +8065,7 @@ "source_location": "", "_origin": "ast", "id": "direntry", - "community": 90, + "community": 448, "norm_label": "direntry" }, { @@ -8075,7 +8075,7 @@ "source_location": "", "_origin": "ast", "id": "hashset", - "community": 90, + "community": 448, "norm_label": "hashset" }, { @@ -8105,7 +8105,7 @@ "source_location": "L1446", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_application_kind", - "community": 90, + "community": 448, "norm_label": "application_kind()" }, { @@ -8115,7 +8115,7 @@ "source_location": "L1456", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_opaque_package_directory", - "community": 90, + "community": 448, "norm_label": "opaque_package_directory()" }, { @@ -8125,7 +8125,7 @@ "source_location": "L1489", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_strip_application_extension", - "community": 90, + "community": 448, "norm_label": "strip_application_extension()" }, { @@ -8165,7 +8165,7 @@ "source_location": "L1507", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_customignorematcher_compile", - "community": 484, + "community": 90, "norm_label": ".compile()" }, { @@ -8185,7 +8185,7 @@ "source_location": "L1567", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_validate_configuration", - "community": 484, + "community": 90, "norm_label": "validate_configuration()" }, { @@ -8325,7 +8325,7 @@ "source_location": "L1769", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_fuzzy_fts_query", - "community": 90, + "community": 448, "norm_label": "fuzzy_fts_query()" }, { @@ -8335,7 +8335,7 @@ "source_location": "L1785", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_strict_fts_query", - "community": 90, + "community": 448, "norm_label": "strict_fts_query()" }, { @@ -8355,7 +8355,7 @@ "source_location": "L1808", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_path_text", - "community": 484, + "community": 448, "norm_label": "path_text()" }, { @@ -8375,7 +8375,7 @@ "source_location": "L1821", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_escape_like", - "community": 90, + "community": 448, "norm_label": "escape_like()" }, { @@ -8395,7 +8395,7 @@ "source_location": "L1836", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_system_time_ms", - "community": 90, + "community": 448, "norm_label": "system_time_ms()" }, { @@ -8405,7 +8405,7 @@ "source_location": "", "_origin": "ast", "id": "systemtime", - "community": 90, + "community": 448, "norm_label": "systemtime" }, { @@ -8415,7 +8415,7 @@ "source_location": "L1843", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_duration_ms", - "community": 484, + "community": 90, "norm_label": "duration_ms()" }, { @@ -8425,7 +8425,7 @@ "source_location": "", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_rs_instant", - "community": 484, + "community": 90, "norm_label": "instant" }, { @@ -8445,7 +8445,7 @@ "source_location": "L1851", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_default_query_limit", - "community": 90, + "community": 448, "norm_label": "default_query_limit()" }, { @@ -8585,7 +8585,7 @@ "source_location": "L2206", "_origin": "ast", "id": "commander_crates_commander_indexer_src_lib_descendant_globs_also_prune_the_matching_directory", - "community": 484, + "community": 90, "norm_label": "descendant_globs_also_prune_the_matching_directory()" }, { @@ -9085,7 +9085,7 @@ "source_location": "L34", "_origin": "ast", "id": "commander_crates_commander_indexer_src_resources_indexresourcelimits", - "community": 259, + "community": 484, "norm_label": "indexresourcelimits" }, { @@ -9095,7 +9095,7 @@ "source_location": "", "_origin": "ast", "id": "default", - "community": 259, + "community": 484, "norm_label": "default" }, { @@ -9105,7 +9105,7 @@ "source_location": "L49", "_origin": "ast", "id": "commander_crates_commander_indexer_src_resources_indexresourcelimits_default", - "community": 259, + "community": 484, "norm_label": ".default()" }, { @@ -9115,7 +9115,7 @@ "source_location": "", "_origin": "ast", "id": "commander_crates_commander_indexer_src_resources_rs_self", - "community": 259, + "community": 484, "norm_label": "self" }, { @@ -9245,7 +9245,7 @@ "source_location": "L103", "_origin": "ast", "id": "commander_crates_commander_indexer_src_resources_resourcegovernor_new", - "community": 259, + "community": 484, "norm_label": ".new()" }, { @@ -9255,7 +9255,7 @@ "source_location": "", "_origin": "ast", "id": "commander_crates_commander_indexer_src_resources_rs_result", - "community": 259, + "community": 484, "norm_label": "result" }, { @@ -9275,7 +9275,7 @@ "source_location": "L135", "_origin": "ast", "id": "commander_crates_commander_indexer_src_resources_resourcegovernor_checkpoint", - "community": 259, + "community": 484, "norm_label": ".checkpoint()" }, { @@ -9285,7 +9285,7 @@ "source_location": "L152", "_origin": "ast", "id": "commander_crates_commander_indexer_src_resources_resourcegovernor_check_memory_now", - "community": 259, + "community": 484, "norm_label": ".check_memory_now()" }, { @@ -9305,7 +9305,7 @@ "source_location": "L179", "_origin": "ast", "id": "commander_crates_commander_indexer_src_resources_resourcegovernor_sample_memory", - "community": 259, + "community": 484, "norm_label": ".sample_memory()" }, { @@ -9335,7 +9335,7 @@ "source_location": "L277", "_origin": "ast", "id": "commander_crates_commander_indexer_src_resources_resourcegovernor_failure_error", - "community": 259, + "community": 484, "norm_label": ".failure_error()" }, { @@ -9345,7 +9345,7 @@ "source_location": "L290", "_origin": "ast", "id": "commander_crates_commander_indexer_src_resources_validate_resource_limits", - "community": 259, + "community": 484, "norm_label": "validate_resource_limits()" }, { @@ -9355,7 +9355,7 @@ "source_location": "L319", "_origin": "ast", "id": "commander_crates_commander_indexer_src_resources_validate_range", - "community": 259, + "community": 484, "norm_label": "validate_range()" }, { @@ -9505,7 +9505,7 @@ "source_location": "L472", "_origin": "ast", "id": "commander_crates_commander_indexer_src_resources_invalid_resource_limits_fail_closed", - "community": 259, + "community": 484, "norm_label": "invalid_resource_limits_fail_closed()" }, { @@ -10194,7 +10194,7 @@ "source_file": "Commander/extensions/raycast/src/commanderConvert.tsx", "source_location": "L28", "_origin": "ast", - "id": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderconvert_formats", + "id": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderconvert_formats", "community": 319, "norm_label": "formats" }, @@ -10204,7 +10204,7 @@ "source_file": "Commander/extensions/raycast/src/commanderConvert.tsx", "source_location": "L30", "_origin": "ast", - "id": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderconvert_convertformats", + "id": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderconvert_convertformats", "community": 319, "norm_label": "convertformats" }, @@ -10214,7 +10214,7 @@ "source_file": "Commander/extensions/raycast/src/commanderConvert.tsx", "source_location": "L55", "_origin": "ast", - "id": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderconvert_command", + "id": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderconvert_command", "community": 319, "norm_label": "command()" }, @@ -10234,7 +10234,7 @@ "source_file": "Commander/extensions/raycast/src/commanderMp4ToMp3.tsx", "source_location": "L28", "_origin": "ast", - "id": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commandermp4tomp3_formats", + "id": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commandermp4tomp3_formats", "community": 319, "norm_label": "formats" }, @@ -10244,7 +10244,7 @@ "source_file": "Commander/extensions/raycast/src/commanderMp4ToMp3.tsx", "source_location": "L30", "_origin": "ast", - "id": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commandermp4tomp3_convertformats", + "id": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commandermp4tomp3_convertformats", "community": 319, "norm_label": "convertformats" }, @@ -10254,7 +10254,7 @@ "source_file": "Commander/extensions/raycast/src/commanderMp4ToMp3.tsx", "source_location": "L55", "_origin": "ast", - "id": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commandermp4tomp3_command", + "id": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commandermp4tomp3_command", "community": 319, "norm_label": "command()" }, @@ -10274,7 +10274,7 @@ "source_file": "Commander/extensions/raycast/src/commanderOpenNewFinderWindow.tsx", "source_location": "L28", "_origin": "ast", - "id": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderopennewfinderwindow_formats", + "id": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderopennewfinderwindow_formats", "community": 319, "norm_label": "formats" }, @@ -10284,7 +10284,7 @@ "source_file": "Commander/extensions/raycast/src/commanderOpenNewFinderWindow.tsx", "source_location": "L30", "_origin": "ast", - "id": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderopennewfinderwindow_convertformats", + "id": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderopennewfinderwindow_convertformats", "community": 319, "norm_label": "convertformats" }, @@ -10294,7 +10294,7 @@ "source_file": "Commander/extensions/raycast/src/commanderOpenNewFinderWindow.tsx", "source_location": "L55", "_origin": "ast", - "id": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderopennewfinderwindow_command", + "id": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderopennewfinderwindow_command", "community": 319, "norm_label": "command()" }, @@ -10314,7 +10314,7 @@ "source_file": "Commander/extensions/raycast/src/commanderRegexToReplacementConverter.tsx", "source_location": "L28", "_origin": "ast", - "id": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderregextoreplacementconverter_formats", + "id": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderregextoreplacementconverter_formats", "community": 319, "norm_label": "formats" }, @@ -10324,7 +10324,7 @@ "source_file": "Commander/extensions/raycast/src/commanderRegexToReplacementConverter.tsx", "source_location": "L30", "_origin": "ast", - "id": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderregextoreplacementconverter_convertformats", + "id": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderregextoreplacementconverter_convertformats", "community": 319, "norm_label": "convertformats" }, @@ -10334,7 +10334,7 @@ "source_file": "Commander/extensions/raycast/src/commanderRegexToReplacementConverter.tsx", "source_location": "L55", "_origin": "ast", - "id": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderregextoreplacementconverter_command", + "id": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderregextoreplacementconverter_command", "community": 319, "norm_label": "command()" }, @@ -10354,7 +10354,7 @@ "source_file": "Commander/extensions/raycast/src/commanderRegexTrim.tsx", "source_location": "L28", "_origin": "ast", - "id": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderregextrim_formats", + "id": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderregextrim_formats", "community": 319, "norm_label": "formats" }, @@ -10364,7 +10364,7 @@ "source_file": "Commander/extensions/raycast/src/commanderRegexTrim.tsx", "source_location": "L30", "_origin": "ast", - "id": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderregextrim_convertformats", + "id": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderregextrim_convertformats", "community": 319, "norm_label": "convertformats" }, @@ -10374,7 +10374,7 @@ "source_file": "Commander/extensions/raycast/src/commanderRegexTrim.tsx", "source_location": "L55", "_origin": "ast", - "id": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderregextrim_command", + "id": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderregextrim_command", "community": 319, "norm_label": "command()" }, @@ -10655,7 +10655,7 @@ "source_location": "L28", "_origin": "ast", "id": "commander_extensions_raycast_src_operations_anyoperation_any", - "community": 327, + "community": 319, "norm_label": "any()" }, { @@ -10665,7 +10665,7 @@ "source_location": "L1", "_origin": "ast", "id": "commander_extensions_raycast_src_operations_convertoperation", - "community": 327, + "community": 319, "norm_label": "convertoperation.ts" }, { @@ -10675,7 +10675,7 @@ "source_location": "L28", "_origin": "ast", "id": "commander_extensions_raycast_src_operations_convertoperation_convert", - "community": 327, + "community": 319, "norm_label": "convert()" }, { @@ -10915,7 +10915,7 @@ "source_location": "L1", "_origin": "ast", "id": "commander_extensions_raycast_src_pad", - "community": 327, + "community": 319, "norm_label": "pad.ts" }, { @@ -10925,7 +10925,7 @@ "source_location": "L17", "_origin": "ast", "id": "commander_extensions_raycast_src_pad_command", - "community": 327, + "community": 319, "norm_label": "command()" }, { @@ -10955,7 +10955,7 @@ "source_location": "L1", "_origin": "ast", "id": "commander_extensions_raycast_src_rotate", - "community": 327, + "community": 319, "norm_label": "rotate.ts" }, { @@ -10965,7 +10965,7 @@ "source_location": "L18", "_origin": "ast", "id": "commander_extensions_raycast_src_rotate_command", - "community": 327, + "community": 319, "norm_label": "command()" }, { @@ -11045,7 +11045,7 @@ "source_location": "L1", "_origin": "ast", "id": "commander_extensions_raycast_src_utilities_clipboard", - "community": 327, + "community": 319, "norm_label": "clipboard.ts" }, { @@ -11055,7 +11055,7 @@ "source_location": "L17", "_origin": "ast", "id": "commander_extensions_raycast_src_utilities_clipboard_getclipboardimages", - "community": 327, + "community": 319, "norm_label": "getclipboardimages()" }, { @@ -11065,7 +11065,7 @@ "source_location": "L77", "_origin": "ast", "id": "commander_extensions_raycast_src_utilities_clipboard_getclipboardfiles", - "community": 327, + "community": 319, "norm_label": "getclipboardfiles()" }, { @@ -11075,7 +11075,7 @@ "source_location": "L105", "_origin": "ast", "id": "commander_extensions_raycast_src_utilities_clipboard_copyimagesatpathstoclipboard", - "community": 327, + "community": 319, "norm_label": "copyimagesatpathstoclipboard()" }, { @@ -11105,7 +11105,7 @@ "source_location": "L21", "_origin": "ast", "id": "commander_extensions_raycast_src_utilities_enums_imageresulthandling", - "community": 327, + "community": 363, "norm_label": "imageresulthandling" }, { @@ -11345,7 +11345,7 @@ "source_location": "L62", "_origin": "ast", "id": "commander_extensions_raycast_src_utilities_preferences_rotatepreferences", - "community": 327, + "community": 319, "norm_label": "rotatepreferences" }, { @@ -11355,7 +11355,7 @@ "source_location": "L72", "_origin": "ast", "id": "commander_extensions_raycast_src_utilities_preferences_padpreferences", - "community": 327, + "community": 319, "norm_label": "padpreferences" }, { @@ -11415,7 +11415,7 @@ "source_location": "L1", "_origin": "ast", "id": "commander_extensions_raycast_src_utilities_utils", - "community": 327, + "community": 319, "norm_label": "utils.ts" }, { @@ -11425,7 +11425,7 @@ "source_location": "L35", "_origin": "ast", "id": "commander_extensions_raycast_src_utilities_utils_getselectedfinderimages", - "community": 327, + "community": 319, "norm_label": "getselectedfinderimages()" }, { @@ -11435,7 +11435,7 @@ "source_location": "L92", "_origin": "ast", "id": "commander_extensions_raycast_src_utilities_utils_getselectedfinderfiles", - "community": 327, + "community": 319, "norm_label": "getselectedfinderfiles()" }, { @@ -11445,7 +11445,7 @@ "source_location": "L136", "_origin": "ast", "id": "commander_extensions_raycast_src_utilities_utils_getselectedpathfinderimages", - "community": 327, + "community": 319, "norm_label": "getselectedpathfinderimages()" }, { @@ -11455,7 +11455,7 @@ "source_location": "L193", "_origin": "ast", "id": "commander_extensions_raycast_src_utilities_utils_getselectedpathfinderfiles", - "community": 327, + "community": 319, "norm_label": "getselectedpathfinderfiles()" }, { @@ -11475,7 +11475,7 @@ "source_location": "L248", "_origin": "ast", "id": "commander_extensions_raycast_src_utilities_utils_getselectedimages", - "community": 327, + "community": 319, "norm_label": "getselectedimages()" }, { @@ -11525,7 +11525,7 @@ "source_location": "L534", "_origin": "ast", "id": "commander_extensions_raycast_src_utilities_utils_convertsvg", - "community": 327, + "community": 319, "norm_label": "convertsvg()" }, { @@ -11535,7 +11535,7 @@ "source_location": "L561", "_origin": "ast", "id": "commander_extensions_raycast_src_utilities_utils_convertpdf", - "community": 327, + "community": 319, "norm_label": "convertpdf()" }, { @@ -11565,7 +11565,7 @@ "source_location": "L768", "_origin": "ast", "id": "commander_extensions_raycast_src_utilities_utils_getimagedestination", - "community": 327, + "community": 319, "norm_label": "getimagedestination()" }, { @@ -11595,7 +11595,7 @@ "source_location": "L880", "_origin": "ast", "id": "commander_extensions_raycast_src_utilities_utils_getmenubarowningapplication", - "community": 327, + "community": 319, "norm_label": "getmenubarowningapplication()" }, { @@ -11605,7 +11605,7 @@ "source_location": "L906", "_origin": "ast", "id": "commander_extensions_raycast_src_utilities_utils_getcurrentdirectory", - "community": 327, + "community": 319, "norm_label": "getcurrentdirectory()" }, { @@ -11837,7 +11837,7 @@ "source_location": "", "_origin": "ast", "id": "nsobject", - "community": 179, + "community": 56, "norm_label": "nsobject" }, { @@ -11847,7 +11847,7 @@ "source_location": "", "_origin": "ast", "id": "nsapplicationdelegate", - "community": 179, + "community": 56, "norm_label": "nsapplicationdelegate" }, { @@ -12467,7 +12467,7 @@ "source_location": "", "_origin": "ast", "id": "nsmenu", - "community": 420, + "community": 56, "norm_label": "nsmenu" }, { @@ -12547,7 +12547,7 @@ "source_location": "L1", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_app_commanderstatusitem", - "community": 420, + "community": 56, "norm_label": "commanderstatusitem.swift" }, { @@ -12567,7 +12567,7 @@ "source_location": "L7", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_app_commanderstatusitem_commanderstatusitem_init", - "community": 420, + "community": 56, "norm_label": ".init()" }, { @@ -12577,7 +12577,7 @@ "source_location": "", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_app_commanderstatusitem_swift_void", - "community": 420, + "community": 56, "norm_label": "void" }, { @@ -12597,7 +12597,7 @@ "source_location": "L20", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_app_commanderstatusitem_closuremenuitem", - "community": 420, + "community": 56, "norm_label": "closuremenuitem" }, { @@ -12607,7 +12607,7 @@ "source_location": "", "_origin": "ast", "id": "nsmenuitem", - "community": 420, + "community": 56, "norm_label": "nsmenuitem" }, { @@ -12617,7 +12617,7 @@ "source_location": "L23", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_app_commanderstatusitem_closuremenuitem_init", - "community": 420, + "community": 56, "norm_label": ".init()" }, { @@ -12627,7 +12627,7 @@ "source_location": "", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_app_commanderstatusitem_swift_string", - "community": 420, + "community": 56, "norm_label": "string" }, { @@ -12637,7 +12637,7 @@ "source_location": "", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_app_commanderstatusitem_swift_nscoder", - "community": 420, + "community": 56, "norm_label": "nscoder" }, { @@ -12647,7 +12647,7 @@ "source_location": "L29", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_app_commanderstatusitem_closuremenuitem_invoke", - "community": 420, + "community": 56, "norm_label": ".invoke()" }, { @@ -12657,7 +12657,7 @@ "source_location": "L34", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_app_commanderstatusitem_closuremenuitem_invokeaftermenudismissal", - "community": 420, + "community": 56, "norm_label": ".invokeaftermenudismissal()" }, { @@ -12700,7 +12700,7 @@ "source_location": "L3", "_origin": "ast", "id": "webkit", - "community": 192, + "community": 56, "norm_label": "webkit" }, { @@ -13400,7 +13400,7 @@ "source_location": "L1", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice", - "community": 56, + "community": 123, "norm_label": "applicationresponsivenessservice.swift" }, { @@ -13454,7 +13454,7 @@ "source_location": "L7", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_applicationcontrolaction", - "community": 56, + "community": 123, "norm_label": "applicationcontrolaction" }, { @@ -13464,7 +13464,7 @@ "source_location": "", "_origin": "ast", "id": "string", - "community": 85, + "community": 67, "norm_label": "string" }, { @@ -13474,7 +13474,7 @@ "source_location": "L8", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_applicationcontrolaction_quit", - "community": 56, + "community": 123, "norm_label": "quit" }, { @@ -13484,7 +13484,7 @@ "source_location": "L9", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_applicationcontrolaction_forcequit", - "community": 56, + "community": 123, "norm_label": "forcequit" }, { @@ -13494,7 +13494,7 @@ "source_location": "L10", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_applicationcontrolaction_restart", - "community": 56, + "community": 123, "norm_label": "restart" }, { @@ -13504,7 +13504,7 @@ "source_location": "L13", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_applicationresponsivenesskind", - "community": 56, + "community": 123, "norm_label": "applicationresponsivenesskind" }, { @@ -13534,7 +13534,7 @@ "source_location": "L14", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_applicationresponsivenesskind_ui", - "community": 56, + "community": 123, "norm_label": "ui" }, { @@ -13544,7 +13544,7 @@ "source_location": "L15", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_applicationresponsivenesskind_agent", - "community": 56, + "community": 123, "norm_label": "agent" }, { @@ -13554,7 +13554,7 @@ "source_location": "L16", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_applicationresponsivenesskind_service", - "community": 56, + "community": 123, "norm_label": "service" }, { @@ -13564,7 +13564,7 @@ "source_location": "L19", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_applicationresponsivenesssignal", - "community": 56, + "community": 123, "norm_label": "applicationresponsivenesssignal" }, { @@ -13574,7 +13574,7 @@ "source_location": "L20", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_applicationresponsivenesssignal_repeatedaccessibilitytimeout", - "community": 56, + "community": 123, "norm_label": "repeatedaccessibilitytimeout" }, { @@ -13584,7 +13584,7 @@ "source_location": "L21", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_applicationresponsivenesssignal_accessibilityprobeinconclusive", - "community": 56, + "community": 123, "norm_label": "accessibilityprobeinconclusive" }, { @@ -13594,7 +13594,7 @@ "source_location": "L24", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_accessibilityproberesult", - "community": 56, + "community": 123, "norm_label": "accessibilityproberesult" }, { @@ -13604,7 +13604,7 @@ "source_location": "L25", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_accessibilityproberesult_responded", - "community": 56, + "community": 123, "norm_label": "responded" }, { @@ -13614,7 +13614,7 @@ "source_location": "L26", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_accessibilityproberesult_timedout", - "community": 56, + "community": 123, "norm_label": "timedout" }, { @@ -13624,7 +13624,7 @@ "source_location": "L27", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_accessibilityproberesult_unavailable", - "community": 56, + "community": 123, "norm_label": "unavailable" }, { @@ -13634,7 +13634,7 @@ "source_location": "L30", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_applicationresponsivenessservice", - "community": 56, + "community": 123, "norm_label": "applicationresponsivenessservice" }, { @@ -13644,7 +13644,7 @@ "source_location": "", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_swift_timeinterval", - "community": 56, + "community": 123, "norm_label": "timeinterval" }, { @@ -13654,7 +13654,7 @@ "source_location": "L38", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_candidate", - "community": 56, + "community": 123, "norm_label": "candidate" }, { @@ -13664,7 +13664,7 @@ "source_location": "", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_swift_pid_t", - "community": 56, + "community": 123, "norm_label": "pid_t" }, { @@ -13674,7 +13674,7 @@ "source_location": "L44", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_reportedapplication", - "community": 56, + "community": 123, "norm_label": "reportedapplication" }, { @@ -13684,7 +13684,7 @@ "source_location": "L51", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_applicationresponsivenessservice_snapshot", - "community": 56, + "community": 123, "norm_label": ".snapshot()" }, { @@ -13694,7 +13694,7 @@ "source_location": "", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_swift_any", - "community": 56, + "community": 123, "norm_label": "any" }, { @@ -13704,7 +13704,7 @@ "source_location": "L63", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_applicationresponsivenessservice_hasreportedapplication", - "community": 56, + "community": 123, "norm_label": ".hasreportedapplication()" }, { @@ -13714,7 +13714,7 @@ "source_location": "", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_swift_bool", - "community": 56, + "community": 123, "norm_label": "bool" }, { @@ -13724,7 +13724,7 @@ "source_location": "L67", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_applicationresponsivenessservice_refreshifneeded", - "community": 56, + "community": 123, "norm_label": ".refreshifneeded()" }, { @@ -13734,7 +13734,7 @@ "source_location": "L96", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_applicationresponsivenessservice_finishrefresh", - "community": 56, + "community": 123, "norm_label": ".finishrefresh()" }, { @@ -13744,7 +13744,7 @@ "source_location": "L105", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_applicationresponsivenessservice_applicationkind", - "community": 56, + "community": 123, "norm_label": ".applicationkind()" }, { @@ -13754,7 +13754,7 @@ "source_location": "", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_swift_nsapplication", - "community": 56, + "community": 123, "norm_label": "nsapplication" }, { @@ -13764,7 +13764,7 @@ "source_location": "L120", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_applicationresponsivenessservice_signal", - "community": 56, + "community": 123, "norm_label": ".signal()" }, { @@ -13774,7 +13774,7 @@ "source_location": "L137", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_applicationresponsivenessservice_report", - "community": 56, + "community": 123, "norm_label": ".report()" }, { @@ -13784,7 +13784,7 @@ "source_location": "L157", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_applicationresponsivenessservice_processisalive", - "community": 56, + "community": 123, "norm_label": ".processisalive()" }, { @@ -13794,7 +13794,7 @@ "source_location": "L162", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_applicationresponsivenessservice_accessibilityprobe", - "community": 56, + "community": 123, "norm_label": ".accessibilityprobe()" }, { @@ -13804,7 +13804,7 @@ "source_location": "L173", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_unresponsiveapplicationcontroller", - "community": 56, + "community": 123, "norm_label": "unresponsiveapplicationcontroller" }, { @@ -13814,7 +13814,7 @@ "source_location": "", "_origin": "ast", "id": "submitlaunch", - "community": 56, + "community": 123, "norm_label": "submitlaunch" }, { @@ -13824,7 +13824,7 @@ "source_location": "L181", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_unresponsiveapplicationcontroller_init", - "community": 56, + "community": 123, "norm_label": ".init()" }, { @@ -13834,7 +13834,7 @@ "source_location": "L186", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_unresponsiveapplicationcontroller_perform", - "community": 56, + "community": 123, "norm_label": ".perform()" }, { @@ -13844,7 +13844,7 @@ "source_location": "L217", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_unresponsiveapplicationcontroller_confirmforcequit", - "community": 56, + "community": 123, "norm_label": ".confirmforcequit()" }, { @@ -13854,7 +13854,7 @@ "source_location": "L227", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_unresponsiveapplicationcontroller_confirmrestart", - "community": 56, + "community": 123, "norm_label": ".confirmrestart()" }, { @@ -13864,7 +13864,7 @@ "source_location": "L237", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_unresponsiveapplicationcontroller_schedulerestart", - "community": 56, + "community": 123, "norm_label": ".schedulerestart()" }, { @@ -13874,7 +13874,7 @@ "source_location": "", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_swift_nsrunningapplication", - "community": 56, + "community": 123, "norm_label": "nsrunningapplication" }, { @@ -13884,7 +13884,7 @@ "source_location": "", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_swift_url", - "community": 56, + "community": 123, "norm_label": "url" }, { @@ -13894,7 +13894,7 @@ "source_location": "L264", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_applicationcontrolerror", - "community": 56, + "community": 123, "norm_label": "applicationcontrolerror" }, { @@ -13904,7 +13904,7 @@ "source_location": "L265", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_applicationcontrolerror_notreportedbyactivity", - "community": 56, + "community": 123, "norm_label": "notreportedbyactivity" }, { @@ -13914,7 +13914,7 @@ "source_location": "L266", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_applicationcontrolerror_nolongerrunning", - "community": 56, + "community": 123, "norm_label": "nolongerrunning" }, { @@ -13924,7 +13924,7 @@ "source_location": "L267", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_applicationcontrolerror_cannotrestart", - "community": 56, + "community": 123, "norm_label": "cannotrestart" }, { @@ -13934,7 +13934,7 @@ "source_location": "L268", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_applicationresponsivenessservice_applicationcontrolerror_notaccepted", - "community": 56, + "community": 123, "norm_label": "notaccepted" }, { @@ -14374,7 +14374,7 @@ "source_location": "L1", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_globalhotkey", - "community": 197, + "community": 388, "norm_label": "globalhotkey.swift" }, { @@ -14385,7 +14385,7 @@ "source_location": "L1", "_origin": "ast", "id": "carbon", - "community": 197, + "community": 388, "norm_label": "carbon" }, { @@ -14395,7 +14395,7 @@ "source_location": "L4", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_globalhotkey_hotkeyerror", - "community": 197, + "community": 388, "norm_label": "hotkeyerror" }, { @@ -14405,7 +14405,7 @@ "source_location": "L5", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_globalhotkey_hotkeyerror_invalidshortcut", - "community": 197, + "community": 388, "norm_label": "invalidshortcut" }, { @@ -14415,7 +14415,7 @@ "source_location": "L6", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_globalhotkey_hotkeyerror_registrationfailed", - "community": 197, + "community": 388, "norm_label": "registrationfailed" }, { @@ -14425,7 +14425,7 @@ "source_location": "", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_globalhotkey_swift_string", - "community": 197, + "community": 388, "norm_label": "string" }, { @@ -14435,7 +14435,7 @@ "source_location": "L17", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_globalhotkey_globalhotkeyregistry", - "community": 197, + "community": 388, "norm_label": "globalhotkeyregistry" }, { @@ -14445,7 +14445,7 @@ "source_location": "", "_origin": "ast", "id": "ostype", - "community": 197, + "community": 388, "norm_label": "ostype" }, { @@ -14455,7 +14455,7 @@ "source_location": "", "_origin": "ast", "id": "eventhotkeyref", - "community": 197, + "community": 388, "norm_label": "eventhotkeyref" }, { @@ -14465,7 +14465,7 @@ "source_location": "", "_origin": "ast", "id": "eventhandlerref", - "community": 197, + "community": 388, "norm_label": "eventhandlerref" }, { @@ -14475,7 +14475,7 @@ "source_location": "", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_globalhotkey_swift_uint32", - "community": 197, + "community": 388, "norm_label": "uint32" }, { @@ -14485,7 +14485,7 @@ "source_location": "", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_globalhotkey_swift_void", - "community": 197, + "community": 388, "norm_label": "void" }, { @@ -14495,7 +14495,7 @@ "source_location": "L25", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_globalhotkey_globalhotkeyregistry_init", - "community": 197, + "community": 388, "norm_label": ".init()" }, { @@ -14505,7 +14505,7 @@ "source_location": "L75", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_globalhotkey_globalhotkeyregistry_invalidate", - "community": 197, + "community": 388, "norm_label": ".invalidate()" }, { @@ -14515,7 +14515,7 @@ "source_location": "L83", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_globalhotkey_globalhotkeyregistry_handle", - "community": 197, + "community": 388, "norm_label": ".handle()" }, { @@ -14525,7 +14525,7 @@ "source_location": "", "_origin": "ast", "id": "eventref", - "community": 197, + "community": 388, "norm_label": "eventref" }, { @@ -14535,7 +14535,7 @@ "source_location": "", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_globalhotkey_swift_osstatus", - "community": 197, + "community": 388, "norm_label": "osstatus" }, { @@ -14545,7 +14545,7 @@ "source_location": "L102", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_services_globalhotkey_globalhotkeyregistry_parse", - "community": 197, + "community": 388, "norm_label": ".parse()" }, { @@ -15488,7 +15488,7 @@ "source_location": "L89", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_windows_commanderwebview_commanderwebview_masktosurface", - "community": 166, + "community": 192, "norm_label": ".masktosurface()" }, { @@ -15718,7 +15718,7 @@ "source_location": "L272", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_windows_commanderwebview_commanderwebview_shutdown", - "community": 321, + "community": 260, "norm_label": ".shutdown()" }, { @@ -15908,7 +15908,7 @@ "source_location": "L31", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_windows_launcherpanelcontroller_commanderpanel_sendevent", - "community": 166, + "community": 192, "norm_label": ".sendevent()" }, { @@ -15918,7 +15918,7 @@ "source_location": "", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_windows_launcherpanelcontroller_swift_nsevent", - "community": 166, + "community": 192, "norm_label": "nsevent" }, { @@ -15988,7 +15988,7 @@ "source_location": "L108", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_windows_launcherpanelcontroller_launcherwindowmode", - "community": 56, + "community": 67, "norm_label": "launcherwindowmode" }, { @@ -15998,7 +15998,7 @@ "source_location": "L109", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_windows_launcherpanelcontroller_launcherwindowmode_standard", - "community": 56, + "community": 67, "norm_label": "standard" }, { @@ -16008,7 +16008,7 @@ "source_location": "L110", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_windows_launcherpanelcontroller_launcherwindowmode_compact", - "community": 56, + "community": 67, "norm_label": "compact" }, { @@ -16018,7 +16018,7 @@ "source_location": "", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_windows_launcherpanelcontroller_swift_nssize", - "community": 56, + "community": 67, "norm_label": "nssize" }, { @@ -16038,7 +16038,7 @@ "source_location": "", "_origin": "ast", "id": "nswindowdelegate", - "community": 166, + "community": 393, "norm_label": "nswindowdelegate" }, { @@ -16318,7 +16318,7 @@ "source_location": "L473", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_windows_launcherpanelcontroller_launcherpanelcontroller_shouldrestoreafterresign", - "community": 345, + "community": 166, "norm_label": ".shouldrestoreafterresign()" }, { @@ -16488,7 +16488,7 @@ "source_location": "L1", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_windows_settingswindowcontroller", - "community": 192, + "community": 393, "norm_label": "settingswindowcontroller.swift" }, { @@ -16498,7 +16498,7 @@ "source_location": "L3", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_windows_settingswindowcontroller_commandersettingstab", - "community": 192, + "community": 393, "norm_label": "commandersettingstab" }, { @@ -16508,7 +16508,7 @@ "source_location": "L4", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_windows_settingswindowcontroller_commandersettingstab_general", - "community": 192, + "community": 393, "norm_label": "general" }, { @@ -16518,7 +16518,7 @@ "source_location": "L4", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_windows_settingswindowcontroller_commandersettingstab_extensions", - "community": 192, + "community": 393, "norm_label": "extensions" }, { @@ -16528,7 +16528,7 @@ "source_location": "L4", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_windows_settingswindowcontroller_commandersettingstab_search", - "community": 192, + "community": 393, "norm_label": "search" }, { @@ -16538,7 +16538,7 @@ "source_location": "L4", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_windows_settingswindowcontroller_commandersettingstab_activity", - "community": 192, + "community": 393, "norm_label": "activity" }, { @@ -16548,7 +16548,7 @@ "source_location": "L4", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_windows_settingswindowcontroller_commandersettingstab_sync", - "community": 192, + "community": 393, "norm_label": "sync" }, { @@ -16558,7 +16558,7 @@ "source_location": "L4", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_windows_settingswindowcontroller_commandersettingstab_account", - "community": 192, + "community": 393, "norm_label": "account" }, { @@ -16568,7 +16568,7 @@ "source_location": "L4", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_windows_settingswindowcontroller_commandersettingstab_advanced", - "community": 192, + "community": 393, "norm_label": "advanced" }, { @@ -16578,7 +16578,7 @@ "source_location": "L4", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_windows_settingswindowcontroller_commandersettingstab_about", - "community": 192, + "community": 393, "norm_label": "about" }, { @@ -16588,7 +16588,7 @@ "source_location": "L7", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_windows_settingswindowcontroller_settingswindowcontroller", - "community": 192, + "community": 393, "norm_label": "settingswindowcontroller" }, { @@ -16598,7 +16598,7 @@ "source_location": "", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_windows_settingswindowcontroller_swift_nswindow", - "community": 192, + "community": 393, "norm_label": "nswindow" }, { @@ -16608,7 +16608,7 @@ "source_location": "L14", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_windows_settingswindowcontroller_settingswindowcontroller_init", - "community": 192, + "community": 393, "norm_label": ".init()" }, { @@ -16618,7 +16618,7 @@ "source_location": "L39", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_windows_settingswindowcontroller_settingswindowcontroller_show", - "community": 192, + "community": 393, "norm_label": ".show()" }, { @@ -16628,7 +16628,7 @@ "source_location": "L47", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_windows_settingswindowcontroller_settingswindowcontroller_windowwillclose", - "community": 192, + "community": 393, "norm_label": ".windowwillclose()" }, { @@ -16638,7 +16638,7 @@ "source_location": "", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_windows_settingswindowcontroller_swift_notification", - "community": 192, + "community": 393, "norm_label": "notification" }, { @@ -16648,7 +16648,7 @@ "source_location": "L51", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_windows_settingswindowcontroller_settingswindowcontroller_shutdown", - "community": 192, + "community": 393, "norm_label": ".shutdown()" }, { @@ -16658,7 +16658,7 @@ "source_location": "L58", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_windows_settingswindowcontroller_settingswindowcontroller_dispatchpendingtab", - "community": 192, + "community": 393, "norm_label": ".dispatchpendingtab()" }, { @@ -16668,7 +16668,7 @@ "source_location": "L65", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_windows_settingswindowcontroller_settingswindowcontroller_settingstabscript", - "community": 192, + "community": 393, "norm_label": ".settingstabscript()" }, { @@ -16678,7 +16678,7 @@ "source_location": "L69", "_origin": "ast", "id": "commander_hosts_macos_sources_commander_windows_settingswindowcontroller_settingswindowcontroller_settingstabscriptfortesting", - "community": 192, + "community": 393, "norm_label": ".settingstabscriptfortesting()" }, { @@ -16860,7 +16860,7 @@ "source_location": "L392", "_origin": "ast", "id": "commander_hosts_macos_tests_commandertests_commanderwebviewtests_commanderwebviewtests_testsettingsdeeplinkdispatchesonlyknowntabs", - "community": 192, + "community": 393, "norm_label": ".testsettingsdeeplinkdispatchesonlyknowntabs()" }, { @@ -16880,7 +16880,7 @@ "source_location": "L427", "_origin": "ast", "id": "commander_hosts_macos_tests_commandertests_commanderwebviewtests_commanderwebviewtests_testnativefileiconproducesaboundedpngforfilesfoldersandapplications", - "community": 192, + "community": 345, "norm_label": ".testnativefileiconproducesaboundedpngforfilesfoldersandapplications()" }, { @@ -16930,7 +16930,7 @@ "source_location": "L599", "_origin": "ast", "id": "commander_hosts_macos_tests_commandertests_commanderwebviewtests_commanderwebviewtests_testcommandhotkeyscriptescapestheitemidasjson", - "community": 166, + "community": 345, "norm_label": ".testcommandhotkeyscriptescapestheitemidasjson()" }, { @@ -16970,7 +16970,7 @@ "source_location": "L1", "_origin": "ast", "id": "commander_hosts_macos_tests_commandertests_globalhotkeytests", - "community": 56, + "community": 388, "norm_label": "globalhotkeytests.swift" }, { @@ -16980,7 +16980,7 @@ "source_location": "L5", "_origin": "ast", "id": "commander_hosts_macos_tests_commandertests_globalhotkeytests_globalhotkeytests", - "community": 197, + "community": 388, "norm_label": "globalhotkeytests" }, { @@ -16990,7 +16990,7 @@ "source_location": "L7", "_origin": "ast", "id": "commander_hosts_macos_tests_commandertests_globalhotkeytests_globalhotkeytests_testparsescommandshortcutkeysandmodifiers", - "community": 197, + "community": 388, "norm_label": ".testparsescommandshortcutkeysandmodifiers()" }, { @@ -17000,7 +17000,7 @@ "source_location": "L15", "_origin": "ast", "id": "commander_hosts_macos_tests_commandertests_globalhotkeytests_globalhotkeytests_testrejectsunmodifiedandunknownshortcuts", - "community": 197, + "community": 388, "norm_label": ".testrejectsunmodifiedandunknownshortcuts()" }, { @@ -17110,7 +17110,7 @@ "source_location": "L77", "_origin": "ast", "id": "commander_hosts_macos_tests_commandertests_systemmetricsservicetests_systemmetricsservicetests_testresponsivenesssignalsseparateconfirmeduifromagentandserviceprobelimits", - "community": 56, + "community": 123, "norm_label": ".testresponsivenesssignalsseparateconfirmeduifromagentandserviceprobelimits()" }, { @@ -19623,7 +19623,7 @@ "source_location": "L544", "_origin": "ast", "id": "commander_packages_protocol_src_index_normalizesearchcachesettings", - "community": 65, + "community": 335, "norm_label": "normalizesearchcachesettings()" }, { @@ -19643,7 +19643,7 @@ "source_location": "L590", "_origin": "ast", "id": "commander_packages_protocol_src_index_normalizeemojidefaultaction", - "community": 65, + "community": 414, "norm_label": "normalizeemojidefaultaction()" }, { @@ -19673,7 +19673,7 @@ "source_location": "L629", "_origin": "ast", "id": "commander_packages_protocol_src_index_normalizecustomwindowresizehandling", - "community": 65, + "community": 414, "norm_label": "normalizecustomwindowresizehandling()" }, { @@ -22621,7 +22621,7 @@ "source_location": "L7", "_origin": "ast", "id": "mcp_src_connectors_index_connectors", - "community": 340, + "community": 390, "norm_label": "connectors" }, { @@ -22631,7 +22631,7 @@ "source_location": "L9", "_origin": "ast", "id": "mcp_src_connectors_index_selectconnector", - "community": 340, + "community": 332, "norm_label": "selectconnector()" }, { @@ -23041,7 +23041,7 @@ "source_location": "L1", "_origin": "ast", "id": "mcp_src_importer", - "community": 340, + "community": 332, "norm_label": "importer.ts" }, { @@ -23051,7 +23051,7 @@ "source_location": "L10", "_origin": "ast", "id": "mcp_src_importer_parsejsonbytes", - "community": 340, + "community": 332, "norm_label": "parsejsonbytes()" }, { @@ -23061,7 +23061,7 @@ "source_location": "L12", "_origin": "ast", "id": "mcp_src_importer_archiveinput", - "community": 340, + "community": 332, "norm_label": "archiveinput()" }, { @@ -23071,7 +23071,7 @@ "source_location": "L60", "_origin": "ast", "id": "mcp_src_importer_importarchivebytes", - "community": 340, + "community": 332, "norm_label": "importarchivebytes()" }, { @@ -23081,7 +23081,7 @@ "source_location": "L87", "_origin": "ast", "id": "mcp_src_importer_importarchive", - "community": 340, + "community": 332, "norm_label": "importarchive()" }, { @@ -23091,7 +23091,7 @@ "source_location": "L93", "_origin": "ast", "id": "mcp_src_importer_ingestcurrentconversation", - "community": 390, + "community": 332, "norm_label": "ingestcurrentconversation()" }, { @@ -24141,7 +24141,7 @@ "source_location": "L1", "_origin": "ast", "id": "mcp_src_live_projectregistry", - "community": 557, + "community": 136, "norm_label": "projectregistry.ts" }, { @@ -24171,7 +24171,7 @@ "source_location": "L25", "_origin": "ast", "id": "mcp_src_live_projectregistry_publicprojectreference", - "community": 557, + "community": 136, "norm_label": "publicprojectreference" }, { @@ -24381,7 +24381,7 @@ "source_location": "L101", "_origin": "ast", "id": "mcp_src_live_types_liveconnector", - "community": 557, + "community": 136, "norm_label": "liveconnector" }, { @@ -24521,7 +24521,7 @@ "source_location": "L70", "_origin": "ast", "id": "mcp_src_model_snapshot", - "community": 332, + "community": 659, "norm_label": "snapshot" }, { @@ -24671,7 +24671,7 @@ "source_location": "L1", "_origin": "ast", "id": "mcp_src_security", - "community": 332, + "community": 390, "norm_label": "security.ts" }, { @@ -24771,7 +24771,7 @@ "source_location": "L18", "_origin": "ast", "id": "mcp_src_store_snapshotstore", - "community": 332, + "community": 659, "norm_label": "snapshotstore" }, { @@ -24791,7 +24791,7 @@ "source_location": "L24", "_origin": "ast", "id": "mcp_src_store_snapshotstore_importdir", - "community": 332, + "community": 659, "norm_label": ".importdir()" }, { @@ -24801,7 +24801,7 @@ "source_location": "L29", "_origin": "ast", "id": "mcp_src_store_snapshotstore_save", - "community": 332, + "community": 659, "norm_label": ".save()" }, { @@ -24811,7 +24811,7 @@ "source_location": "L42", "_origin": "ast", "id": "mcp_src_store_snapshotstore_list", - "community": 332, + "community": 659, "norm_label": ".list()" }, { @@ -24821,7 +24821,7 @@ "source_location": "L52", "_origin": "ast", "id": "mcp_src_store_snapshotstore_get", - "community": 332, + "community": 659, "norm_label": ".get()" }, { @@ -24831,7 +24831,7 @@ "source_location": "L56", "_origin": "ast", "id": "mcp_src_store_snapshotstore_delete", - "community": 332, + "community": 659, "norm_label": ".delete()" }, { @@ -24841,7 +24841,7 @@ "source_location": "L60", "_origin": "ast", "id": "mcp_src_store_snapshotstore_summary", - "community": 332, + "community": 659, "norm_label": ".summary()" }, { @@ -24851,7 +24851,7 @@ "source_location": "L72", "_origin": "ast", "id": "mcp_src_store_snapshotstore_assertbounds", - "community": 332, + "community": 659, "norm_label": ".assertbounds()" }, { @@ -24861,7 +24861,7 @@ "source_location": "L88", "_origin": "ast", "id": "mcp_src_store_snapshotstore_materializeattachments", - "community": 332, + "community": 659, "norm_label": ".materializeattachments()" }, { @@ -24881,7 +24881,7 @@ "source_location": "L1", "_origin": "ast", "id": "mcp_test_connectors_test", - "community": 390, + "community": 332, "norm_label": "connectors.test.ts" }, { @@ -24891,7 +24891,7 @@ "source_location": "L9", "_origin": "ast", "id": "mcp_test_connectors_test_context", - "community": 390, + "community": 332, "norm_label": "context" }, { @@ -24901,7 +24901,7 @@ "source_location": "L1", "_origin": "ast", "id": "mcp_test_desktop_test", - "community": 340, + "community": 332, "norm_label": "desktop.test.ts" }, { @@ -25021,7 +25021,7 @@ "source_location": "L1", "_origin": "ast", "id": "mcp_test_security_test", - "community": 332, + "community": 390, "norm_label": "security.test.ts" }, { @@ -26551,7 +26551,7 @@ "source_location": "L445", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_typename", - "community": 165, + "community": 108, "norm_label": "typename()" }, { @@ -26561,7 +26561,7 @@ "source_location": "L455", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_willcoercionthrow", - "community": 165, + "community": 108, "norm_label": "willcoercionthrow()" }, { @@ -26571,7 +26571,7 @@ "source_location": "L466", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_teststringcoercion", - "community": 165, + "community": 108, "norm_label": "teststringcoercion()" }, { @@ -26581,7 +26581,7 @@ "source_location": "L492", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_checkkeystringcoercion", - "community": 165, + "community": 108, "norm_label": "checkkeystringcoercion()" }, { @@ -26711,7 +26711,7 @@ "source_location": "L960", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_escape", - "community": 165, + "community": 599, "norm_label": "escape()" }, { @@ -26731,7 +26731,7 @@ "source_location": "L992", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_getelementkey", - "community": 165, + "community": 599, "norm_label": "getelementkey()" }, { @@ -27351,7 +27351,7 @@ "source_location": "L2687", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_unstable_runwithpriority", - "community": 431, + "community": 314, "norm_label": "unstable_runwithpriority()" }, { @@ -27361,7 +27361,7 @@ "source_location": "L2710", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_unstable_next", - "community": 431, + "community": 314, "norm_label": "unstable_next()" }, { @@ -27451,7 +27451,7 @@ "source_location": "L2885", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_requestpaint", - "community": 364, + "community": 117, "norm_label": "requestpaint()" }, { @@ -27511,7 +27511,7 @@ "source_location": "L3035", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_starttransition", - "community": 364, + "community": 117, "norm_label": "starttransition()" }, { @@ -27601,7 +27601,7 @@ "source_location": "L3593", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_checkattributestringcoercion", - "community": 165, + "community": 108, "norm_label": "checkattributestringcoercion()" }, { @@ -27611,7 +27611,7 @@ "source_location": "L3611", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_checkpropstringcoercion", - "community": 165, + "community": 108, "norm_label": "checkpropstringcoercion()" }, { @@ -27621,7 +27621,7 @@ "source_location": "L3620", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_checkcsspropertystringcoercion", - "community": 165, + "community": 108, "norm_label": "checkcsspropertystringcoercion()" }, { @@ -27631,7 +27631,7 @@ "source_location": "L3629", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_checkhtmlstringcoercion", - "community": 165, + "community": 108, "norm_label": "checkhtmlstringcoercion()" }, { @@ -27641,7 +27641,7 @@ "source_location": "L3638", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_checkformfieldvaluestringcoercion", - "community": 165, + "community": 108, "norm_label": "checkformfieldvaluestringcoercion()" }, { @@ -27901,7 +27901,7 @@ "source_location": "L4932", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_ischeckable", - "community": 26, + "community": 165, "norm_label": "ischeckable()" }, { @@ -27911,7 +27911,7 @@ "source_location": "L4938", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_gettracker", - "community": 26, + "community": 165, "norm_label": "gettracker()" }, { @@ -27931,7 +27931,7 @@ "source_location": "L4946", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_getvaluefromnode", - "community": 26, + "community": 165, "norm_label": "getvaluefromnode()" }, { @@ -27961,7 +27961,7 @@ "source_location": "L5029", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_updatevalueifchanged", - "community": 26, + "community": 165, "norm_label": "updatevalueifchanged()" }, { @@ -28211,7 +28211,7 @@ "source_location": "L5705", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_getintrinsicnamespace", - "community": 311, + "community": 26, "norm_label": "getintrinsicnamespace()" }, { @@ -28221,7 +28221,7 @@ "source_location": "L5717", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_getchildnamespace", - "community": 311, + "community": 26, "norm_label": "getchildnamespace()" }, { @@ -28331,7 +28331,7 @@ "source_location": "L6880", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_validateproperty", - "community": 187, + "community": 108, "norm_label": "validateproperty()" }, { @@ -28341,7 +28341,7 @@ "source_location": "L6930", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_warninvalidariaprops", - "community": 187, + "community": 108, "norm_label": "warninvalidariaprops()" }, { @@ -28351,7 +28351,7 @@ "source_location": "L6954", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_validateproperties", - "community": 187, + "community": 108, "norm_label": "validateproperties()" }, { @@ -28401,7 +28401,7 @@ "source_location": "L7192", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_isreplayingevent", - "community": 26, + "community": 187, "norm_label": "isreplayingevent()" }, { @@ -28621,7 +28621,7 @@ "source_location": "L7692", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_get", - "community": 108, + "community": 218, "norm_label": "get()" }, { @@ -28651,7 +28651,7 @@ "source_location": "L7805", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_getnearestmountedfiber", - "community": 26, + "community": 218, "norm_label": "getnearestmountedfiber()" }, { @@ -28661,7 +28661,7 @@ "source_location": "L7842", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_getsuspenseinstancefromfiber", - "community": 26, + "community": 218, "norm_label": "getsuspenseinstancefromfiber()" }, { @@ -28671,7 +28671,7 @@ "source_location": "L7861", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_getcontainerfromfiber", - "community": 26, + "community": 218, "norm_label": "getcontainerfromfiber()" }, { @@ -28681,7 +28681,7 @@ "source_location": "L7864", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_isfibermounted", - "community": 77, + "community": 218, "norm_label": "isfibermounted()" }, { @@ -28691,7 +28691,7 @@ "source_location": "L7867", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_ismounted", - "community": 108, + "community": 218, "norm_label": "ismounted()" }, { @@ -28701,7 +28701,7 @@ "source_location": "L7892", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_assertismounted", - "community": 26, + "community": 218, "norm_label": "assertismounted()" }, { @@ -28711,7 +28711,7 @@ "source_location": "L7898", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_findcurrentfiberusingslowpath", - "community": 26, + "community": 218, "norm_label": "findcurrentfiberusingslowpath()" }, { @@ -28781,7 +28781,7 @@ "source_location": "L8200", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_oncommitroot", - "community": 364, + "community": 117, "norm_label": "oncommitroot()" }, { @@ -28791,7 +28791,7 @@ "source_location": "L8245", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_onpostcommitroot", - "community": 364, + "community": 117, "norm_label": "onpostcommitroot()" }, { @@ -28841,7 +28841,7 @@ "source_location": "L8320", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_markcommitstarted", - "community": 364, + "community": 117, "norm_label": "markcommitstarted()" }, { @@ -28851,7 +28851,7 @@ "source_location": "L8327", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_markcommitstopped", - "community": 364, + "community": 117, "norm_label": "markcommitstopped()" }, { @@ -28981,7 +28981,7 @@ "source_location": "L8418", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_marklayouteffectsstarted", - "community": 364, + "community": 117, "norm_label": "marklayouteffectsstarted()" }, { @@ -28991,7 +28991,7 @@ "source_location": "L8425", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_marklayouteffectsstopped", - "community": 364, + "community": 117, "norm_label": "marklayouteffectsstopped()" }, { @@ -29001,7 +29001,7 @@ "source_location": "L8432", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_markpassiveeffectsstarted", - "community": 364, + "community": 117, "norm_label": "markpassiveeffectsstarted()" }, { @@ -29011,7 +29011,7 @@ "source_location": "L8439", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_markpassiveeffectsstopped", - "community": 364, + "community": 117, "norm_label": "markpassiveeffectsstopped()" }, { @@ -29321,7 +29321,7 @@ "source_location": "L9082", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_issubsetoflanes", - "community": 117, + "community": 77, "norm_label": "issubsetoflanes()" }, { @@ -29341,7 +29341,7 @@ "source_location": "L9088", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_removelanes", - "community": 117, + "community": 301, "norm_label": "removelanes()" }, { @@ -29481,7 +29481,7 @@ "source_location": "L9322", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_getcurrentupdatepriority", - "community": 364, + "community": 117, "norm_label": "getcurrentupdatepriority()" }, { @@ -29491,7 +29491,7 @@ "source_location": "L9325", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_setcurrentupdatepriority", - "community": 364, + "community": 117, "norm_label": "setcurrentupdatepriority()" }, { @@ -29511,7 +29511,7 @@ "source_location": "L9338", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_highereventpriority", - "community": 364, + "community": 117, "norm_label": "highereventpriority()" }, { @@ -29521,7 +29521,7 @@ "source_location": "L9341", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_lowereventpriority", - "community": 364, + "community": 117, "norm_label": "lowereventpriority()" }, { @@ -29551,7 +29551,7 @@ "source_location": "L9368", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_isrootdehydrated", - "community": 26, + "community": 218, "norm_label": "isrootdehydrated()" }, { @@ -29571,7 +29571,7 @@ "source_location": "L9378", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_attemptsynchronoushydration", - "community": 26, + "community": 218, "norm_label": "attemptsynchronoushydration()" }, { @@ -29621,7 +29621,7 @@ "source_location": "L9414", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_isdiscreteeventthatrequireshydration", - "community": 26, + "community": 218, "norm_label": "isdiscreteeventthatrequireshydration()" }, { @@ -29631,7 +29631,7 @@ "source_location": "L9418", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_createqueuedreplayableevent", - "community": 26, + "community": 218, "norm_label": "createqueuedreplayableevent()" }, { @@ -29641,7 +29641,7 @@ "source_location": "L9428", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_clearifcontinuousevent", - "community": 26, + "community": 218, "norm_label": "clearifcontinuousevent()" }, { @@ -29651,7 +29651,7 @@ "source_location": "L9463", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_accumulateorcreatecontinuousqueuedreplayableevent", - "community": 26, + "community": 218, "norm_label": "accumulateorcreatecontinuousqueuedreplayableevent()" }, { @@ -29661,7 +29661,7 @@ "source_location": "L9493", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_queueifcontinuousevent", - "community": 108, + "community": 218, "norm_label": "queueifcontinuousevent()" }, { @@ -29671,7 +29671,7 @@ "source_location": "L9539", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_attemptexplicithydrationtarget", - "community": 26, + "community": 218, "norm_label": "attemptexplicithydrationtarget()" }, { @@ -29751,7 +29751,7 @@ "source_location": "L9752", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_isenabled", - "community": 448, + "community": 279, "norm_label": "isenabled()" }, { @@ -29771,7 +29771,7 @@ "source_location": "L9777", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_dispatchdiscreteevent", - "community": 364, + "community": 117, "norm_label": "dispatchdiscreteevent()" }, { @@ -29781,7 +29781,7 @@ "source_location": "L9791", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_dispatchcontinuousevent", - "community": 364, + "community": 117, "norm_label": "dispatchcontinuousevent()" }, { @@ -29791,7 +29791,7 @@ "source_location": "L9805", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_dispatchevent", - "community": 364, + "community": 117, "norm_label": "dispatchevent()" }, { @@ -29801,7 +29801,7 @@ "source_location": "L9815", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_dispatcheventwithenablecapturephaseselectivehydrationwithoutdiscreteeventreplay", - "community": 26, + "community": 218, "norm_label": "dispatcheventwithenablecapturephaseselectivehydrationwithoutdiscreteeventreplay()" }, { @@ -29811,7 +29811,7 @@ "source_location": "L9869", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_findinstanceblockingevent", - "community": 26, + "community": 218, "norm_label": "findinstanceblockingevent()" }, { @@ -30311,7 +30311,7 @@ "source_location": "L11368", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_extractevents_2", - "community": 26, + "community": 187, "norm_label": "extractevents$2()" }, { @@ -30741,7 +30741,7 @@ "source_location": "L12729", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_getparent", - "community": 26, + "community": 187, "norm_label": "getparent()" }, { @@ -30751,7 +30751,7 @@ "source_location": "L12754", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_getlowestcommonancestor", - "community": 26, + "community": 187, "norm_label": "getlowestcommonancestor()" }, { @@ -30771,7 +30771,7 @@ "source_location": "L12849", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_accumulateenterleavetwophaselisteners", - "community": 26, + "community": 187, "norm_label": "accumulateenterleavetwophaselisteners()" }, { @@ -30791,7 +30791,7 @@ "source_location": "L12971", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_normalizemarkupfortextorattribute", - "community": 165, + "community": 26, "norm_label": "normalizemarkupfortextorattribute()" }, { @@ -30801,7 +30801,7 @@ "source_location": "L12980", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_checkforunmatchedtext", - "community": 165, + "community": 26, "norm_label": "checkforunmatchedtext()" }, { @@ -30921,7 +30921,7 @@ "source_location": "L13819", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_diffhydratedtext", - "community": 165, + "community": 26, "norm_label": "diffhydratedtext()" }, { @@ -30981,7 +30981,7 @@ "source_location": "L14216", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_getroothostcontext", - "community": 311, + "community": 26, "norm_label": "getroothostcontext()" }, { @@ -30991,7 +30991,7 @@ "source_location": "L14250", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_getchildhostcontext", - "community": 311, + "community": 26, "norm_label": "getchildhostcontext()" }, { @@ -31131,7 +31131,7 @@ "source_location": "L14406", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_resettextcontent", - "community": 108, + "community": 639, "norm_label": "resettextcontent()" }, { @@ -31411,7 +31411,7 @@ "source_location": "L14662", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_hydratetextinstance", - "community": 165, + "community": 26, "norm_label": "hydratetextinstance()" }, { @@ -31441,7 +31441,7 @@ "source_location": "L14703", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_getparentsuspenseinstance", - "community": 26, + "community": 218, "norm_label": "getparentsuspenseinstance()" }, { @@ -31481,7 +31481,7 @@ "source_location": "L14741", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_didnotmatchhydratedcontainertextinstance", - "community": 165, + "community": 26, "norm_label": "didnotmatchhydratedcontainertextinstance()" }, { @@ -31491,7 +31491,7 @@ "source_location": "L14745", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_didnotmatchhydratedtextinstance", - "community": 165, + "community": 26, "norm_label": "didnotmatchhydratedtextinstance()" }, { @@ -31661,7 +31661,7 @@ "source_location": "L14869", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_getclosestinstancefromnode", - "community": 26, + "community": 218, "norm_label": "getclosestinstancefromnode()" }, { @@ -31671,7 +31671,7 @@ "source_location": "L14952", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_getinstancefromnode", - "community": 26, + "community": 218, "norm_label": "getinstancefromnode()" }, { @@ -31811,7 +31811,7 @@ "source_location": "L15232", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_processchildcontext", - "community": 108, + "community": 218, "norm_label": "processchildcontext()" }, { @@ -31831,7 +31831,7 @@ "source_location": "L15285", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_invalidatecontextprovider", - "community": 108, + "community": 218, "norm_label": "invalidatecontextprovider()" }, { @@ -31841,7 +31841,7 @@ "source_location": "L15313", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_findcurrentunmaskedcontext", - "community": 77, + "community": 218, "norm_label": "findcurrentunmaskedcontext()" }, { @@ -31881,7 +31881,7 @@ "source_location": "L15378", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_flushsynccallbacks", - "community": 364, + "community": 117, "norm_label": "flushsynccallbacks()" }, { @@ -32151,7 +32151,7 @@ "source_location": "L15930", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_preparetohydratehosttextinstance", - "community": 165, + "community": 26, "norm_label": "preparetohydratehosttextinstance()" }, { @@ -32341,7 +32341,7 @@ "source_location": "L17463", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_resetchildfibers", - "community": 311, + "community": 26, "norm_label": "resetchildfibers()" }, { @@ -32361,7 +32361,7 @@ "source_location": "L17495", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_enterdisallowedcontextreadindev", - "community": 76, + "community": 26, "norm_label": "enterdisallowedcontextreadindev()" }, { @@ -32371,7 +32371,7 @@ "source_location": "L17500", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_exitdisallowedcontextreadindev", - "community": 76, + "community": 26, "norm_label": "exitdisallowedcontextreadindev()" }, { @@ -32581,7 +32581,7 @@ "source_location": "L18104", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_getstatefromupdate", - "community": 76, + "community": 26, "norm_label": "getstatefromupdate()" }, { @@ -32951,7 +32951,7 @@ "source_location": "L19102", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_updatereducer", - "community": 117, + "community": 77, "norm_label": "updatereducer()" }, { @@ -33071,7 +33071,7 @@ "source_location": "L19538", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_updatestate", - "community": 117, + "community": 77, "norm_label": "updatestate()" }, { @@ -33331,7 +33331,7 @@ "source_location": "L19898", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_updatetransition", - "community": 117, + "community": 77, "norm_label": "updatetransition()" }, { @@ -33451,7 +33451,7 @@ "source_location": "L21001", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_marknestedupdatescheduled", - "community": 364, + "community": 117, "norm_label": "marknestedupdatescheduled()" }, { @@ -33491,7 +33491,7 @@ "source_location": "L21025", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_recordcommittime", - "community": 364, + "community": 117, "norm_label": "recordcommittime()" }, { @@ -34071,7 +34071,7 @@ "source_location": "L23657", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_getremainingworkinprimarytree", - "community": 117, + "community": 301, "norm_label": "getremainingworkinprimarytree()" }, { @@ -34661,7 +34661,7 @@ "source_location": "L27151", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_gethostparentfiber", - "community": 108, + "community": 639, "norm_label": "gethostparentfiber()" }, { @@ -34671,7 +34671,7 @@ "source_location": "L27165", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_ishostparent", - "community": 108, + "community": 639, "norm_label": "ishostparent()" }, { @@ -34681,7 +34681,7 @@ "source_location": "L27169", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_gethostsibling", - "community": 108, + "community": 639, "norm_label": "gethostsibling()" }, { @@ -34691,7 +34691,7 @@ "source_location": "L27217", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_commitplacement", - "community": 108, + "community": 639, "norm_label": "commitplacement()" }, { @@ -34811,7 +34811,7 @@ "source_location": "L27976", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_commitreconciliationeffects", - "community": 108, + "community": 639, "norm_label": "commitreconciliationeffects()" }, { @@ -34891,7 +34891,7 @@ "source_location": "L28257", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_commitpassivemounteffects", - "community": 364, + "community": 117, "norm_label": "commitpassivemounteffects()" }, { @@ -34901,7 +34901,7 @@ "source_location": "L28262", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_commitpassivemounteffects_begin", - "community": 364, + "community": 117, "norm_label": "commitpassivemounteffects_begin()" }, { @@ -34931,7 +34931,7 @@ "source_location": "L28332", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_commitpassiveunmounteffects", - "community": 364, + "community": 117, "norm_label": "commitpassiveunmounteffects()" }, { @@ -35041,7 +35041,7 @@ "source_location": "L28624", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_oncommitroot_1", - "community": 364, + "community": 117, "norm_label": "oncommitroot$1()" }, { @@ -35261,7 +35261,7 @@ "source_location": "L29545", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_discreteupdates", - "community": 364, + "community": 117, "norm_label": "discreteupdates()" }, { @@ -35271,7 +35271,7 @@ "source_location": "L29565", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_flushsync", - "community": 364, + "community": 117, "norm_label": "flushsync()" }, { @@ -35281,7 +35281,7 @@ "source_location": "L29598", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_isalreadyrendering", - "community": 364, + "community": 117, "norm_label": "isalreadyrendering()" }, { @@ -35471,7 +35471,7 @@ "source_location": "L30066", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_commitroot", - "community": 364, + "community": 117, "norm_label": "commitroot()" }, { @@ -35481,7 +35481,7 @@ "source_location": "L30084", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_commitrootimpl", - "community": 364, + "community": 117, "norm_label": "commitrootimpl()" }, { @@ -35491,7 +35491,7 @@ "source_location": "L30361", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_flushpassiveeffects", - "community": 364, + "community": 117, "norm_label": "flushpassiveeffects()" }, { @@ -35511,7 +35511,7 @@ "source_location": "L30400", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_flushpassiveeffectsimpl", - "community": 364, + "community": 117, "norm_label": "flushpassiveeffectsimpl()" }, { @@ -35631,7 +35631,7 @@ "source_location": "L30698", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_flushrenderphasestrictmodewarningsindev", - "community": 364, + "community": 117, "norm_label": "flushrenderphasestrictmodewarningsindev()" }, { @@ -35891,7 +35891,7 @@ "source_location": "L31630", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_resetworkinprogress", - "community": 311, + "community": 26, "norm_label": "resetworkinprogress()" }, { @@ -36061,7 +36061,7 @@ "source_location": "L32106", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_getcontextforsubtree", - "community": 77, + "community": 218, "norm_label": "getcontextforsubtree()" }, { @@ -36461,7 +36461,7 @@ "source_location": "L33225", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_react_flushsync_1", - "community": 364, + "community": 117, "norm_label": "flushsync$1()" }, { @@ -37691,7 +37691,7 @@ "source_location": "L10516", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_stylesheet2", - "community": 784, + "community": 36, "norm_label": "stylesheet2()" }, { @@ -37701,7 +37701,7 @@ "source_location": "L10518", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_stylesheet2_inserttag", - "community": 784, + "community": 36, "norm_label": "._inserttag()" }, { @@ -38331,7 +38331,7 @@ "source_location": "L12529", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_getsnapshotbeforeupdate", - "community": 279, + "community": 723, "norm_label": "getsnapshotbeforeupdate()" }, { @@ -38491,7 +38491,7 @@ "source_location": "L13069", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_warnonce", - "community": 448, + "community": 279, "norm_label": "warnonce()" }, { @@ -38511,7 +38511,7 @@ "source_location": "L13129", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_isvariantlabel", - "community": 279, + "community": 36, "norm_label": "isvariantlabel()" }, { @@ -38551,7 +38551,7 @@ "source_location": "L13164", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_getcurrenttreevariants", - "community": 279, + "community": 36, "norm_label": "getcurrenttreevariants()" }, { @@ -38561,7 +38561,7 @@ "source_location": "L13176", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_usecreatemotioncontext", - "community": 279, + "community": 36, "norm_label": "usecreatemotioncontext()" }, { @@ -38571,7 +38571,7 @@ "source_location": "L13180", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_variantlabelsasdependency", - "community": 279, + "community": 36, "norm_label": "variantlabelsasdependency()" }, { @@ -38811,7 +38811,7 @@ "source_location": "L13990", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_addscalecorrector", - "community": 448, + "community": 279, "norm_label": "addscalecorrector()" }, { @@ -38831,7 +38831,7 @@ "source_location": "L14000", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_scrapemotionvaluesfromprops", - "community": 726, + "community": 279, "norm_label": "scrapemotionvaluesfromprops()" }, { @@ -38841,7 +38841,7 @@ "source_location": "L14013", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_scrapemotionvaluesfromprops2", - "community": 726, + "community": 279, "norm_label": "scrapemotionvaluesfromprops2()" }, { @@ -39031,7 +39031,7 @@ "source_location": "L14288", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_duration", - "community": 318, + "community": 473, "norm_label": "duration()" }, { @@ -39181,7 +39181,7 @@ "source_location": "L14458", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_resolveelements", - "community": 416, + "community": 279, "norm_label": "resolveelements()" }, { @@ -39191,7 +39191,7 @@ "source_location": "L14474", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_setupgesture", - "community": 416, + "community": 279, "norm_label": "setupgesture()" }, { @@ -39201,7 +39201,7 @@ "source_location": "L14487", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_filterevents", - "community": 416, + "community": 279, "norm_label": "filterevents()" }, { @@ -39211,7 +39211,7 @@ "source_location": "L14494", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_hover", - "community": 416, + "community": 279, "norm_label": "hover()" }, { @@ -39261,7 +39261,7 @@ "source_location": "L14592", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_press", - "community": 416, + "community": 279, "norm_label": "press()" }, { @@ -39291,7 +39291,7 @@ "source_location": "L14724", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_adduniqueitem", - "community": 448, + "community": 279, "norm_label": "adduniqueitem()" }, { @@ -39301,7 +39301,7 @@ "source_location": "L14728", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_removeitem", - "community": 279, + "community": 723, "norm_label": "removeitem()" }, { @@ -39311,7 +39311,7 @@ "source_location": "L14739", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_add", - "community": 448, + "community": 279, "norm_label": "add()" }, { @@ -39321,7 +39321,7 @@ "source_location": "L14743", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_notify", - "community": 279, + "community": 473, "norm_label": "notify()" }, { @@ -39381,7 +39381,7 @@ "source_location": "L14860", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_onchange", - "community": 448, + "community": 279, "norm_label": "onchange()" }, { @@ -39391,7 +39391,7 @@ "source_location": "L14866", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_on", - "community": 448, + "community": 279, "norm_label": "on()" }, { @@ -39431,7 +39431,7 @@ "source_location": "L14919", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_setwithvelocity", - "community": 318, + "community": 473, "norm_label": "setwithvelocity()" }, { @@ -39441,7 +39441,7 @@ "source_location": "L14929", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_jump", - "community": 269, + "community": 366, "norm_label": "jump()" }, { @@ -39481,7 +39481,7 @@ "source_location": "L15003", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_stop", - "community": 318, + "community": 473, "norm_label": "stop()" }, { @@ -39501,7 +39501,7 @@ "source_location": "L15020", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_clearanimation", - "community": 318, + "community": 473, "norm_label": "clearanimation()" }, { @@ -39521,7 +39521,7 @@ "source_location": "L15040", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_motionvalue", - "community": 269, + "community": 366, "norm_label": "motionvalue()" }, { @@ -39531,7 +39531,7 @@ "source_location": "L15045", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_setmotionvalue", - "community": 269, + "community": 366, "norm_label": "setmotionvalue()" }, { @@ -39541,7 +39541,7 @@ "source_location": "L15052", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_settarget", - "community": 473, + "community": 366, "norm_label": "settarget()" }, { @@ -39781,7 +39781,7 @@ "source_location": "L15613", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_measureinitialstate", - "community": 269, + "community": 366, "norm_label": "measureinitialstate()" }, { @@ -39801,7 +39801,7 @@ "source_location": "L15617", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_measureendstate", - "community": 269, + "community": 366, "norm_label": "measureendstate()" }, { @@ -40381,7 +40381,7 @@ "source_location": "L17310", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_getvariantcontext", - "community": 279, + "community": 36, "norm_label": "getvariantcontext()" }, { @@ -40391,7 +40391,7 @@ "source_location": "L17334", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_animatelist", - "community": 279, + "community": 36, "norm_label": "animatelist()" }, { @@ -40401,7 +40401,7 @@ "source_location": "L17337", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_createanimationstate", - "community": 279, + "community": 36, "norm_label": "createanimationstate()" }, { @@ -40421,7 +40421,7 @@ "source_location": "L17498", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_createtypestate", - "community": 279, + "community": 36, "norm_label": "createtypestate()" }, { @@ -40431,7 +40431,7 @@ "source_location": "L17506", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_createstate", - "community": 279, + "community": 36, "norm_label": "createstate()" }, { @@ -40441,7 +40441,7 @@ "source_location": "L17525", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_update", - "community": 448, + "community": 279, "norm_label": "update()" }, { @@ -40451,7 +40451,7 @@ "source_location": "L17540", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_updateanimationcontrolssubscription", - "community": 448, + "community": 279, "norm_label": "updateanimationcontrolssubscription()" }, { @@ -40461,7 +40461,7 @@ "source_location": "L17549", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_mount", - "community": 448, + "community": 279, "norm_label": "mount()" }, { @@ -40471,7 +40471,7 @@ "source_location": "L17559", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_unmount", - "community": 448, + "community": 416, "norm_label": "unmount()" }, { @@ -40481,7 +40481,7 @@ "source_location": "L17624", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_adddomevent", - "community": 448, + "community": 279, "norm_label": "adddomevent()" }, { @@ -40501,7 +40501,7 @@ "source_location": "L17644", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_addpointerevent", - "community": 448, + "community": 279, "norm_label": "addpointerevent()" }, { @@ -40731,7 +40731,7 @@ "source_location": "L17849", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_calcviewportaxisconstraints", - "community": 473, + "community": 366, "norm_label": "calcviewportaxisconstraints()" }, { @@ -40741,7 +40741,7 @@ "source_location": "L17857", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_calcviewportconstraints", - "community": 473, + "community": 366, "norm_label": "calcviewportconstraints()" }, { @@ -40811,7 +40811,7 @@ "source_location": "L17935", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_convertboundingboxtobox", - "community": 269, + "community": 366, "norm_label": "convertboundingboxtobox()" }, { @@ -40821,7 +40821,7 @@ "source_location": "L17941", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_convertboxtoboundingbox", - "community": 473, + "community": 366, "norm_label": "convertboxtoboundingbox()" }, { @@ -40831,7 +40831,7 @@ "source_location": "L17944", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_transformboxpoints", - "community": 269, + "community": 366, "norm_label": "transformboxpoints()" }, { @@ -40941,7 +40941,7 @@ "source_location": "L18036", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_translateaxis", - "community": 269, + "community": 366, "norm_label": "translateaxis()" }, { @@ -40971,7 +40971,7 @@ "source_location": "L18050", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_measureviewportbox", - "community": 269, + "community": 366, "norm_label": "measureviewportbox()" }, { @@ -40981,7 +40981,7 @@ "source_location": "L18053", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_measurepagebox", - "community": 269, + "community": 366, "norm_label": "measurepagebox()" }, { @@ -41011,7 +41011,7 @@ "source_location": "L18228", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_resolverefconstraints", - "community": 473, + "community": 366, "norm_label": "resolverefconstraints()" }, { @@ -41101,7 +41101,7 @@ "source_location": "L18352", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_addlisteners", - "community": 448, + "community": 279, "norm_label": "addlisteners()" }, { @@ -41141,7 +41141,7 @@ "source_location": "L18454", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_onpointerdown", - "community": 448, + "community": 279, "norm_label": "onpointerdown()" }, { @@ -41151,7 +41151,7 @@ "source_location": "L18460", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_createpanhandlers", - "community": 448, + "community": 279, "norm_label": "createpanhandlers()" }, { @@ -41171,7 +41171,7 @@ "source_location": "L18560", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_componentdidmount", - "community": 448, + "community": 279, "norm_label": "componentdidmount()" }, { @@ -41181,7 +41181,7 @@ "source_location": "L18617", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_componentwillunmount", - "community": 279, + "community": 723, "norm_label": "componentwillunmount()" }, { @@ -41191,7 +41191,7 @@ "source_location": "L18628", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_safetoremove", - "community": 279, + "community": 723, "norm_label": "safetoremove()" }, { @@ -41231,7 +41231,7 @@ "source_location": "L18695", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_remove", - "community": 279, + "community": 723, "norm_label": "remove()" }, { @@ -41441,7 +41441,7 @@ "source_location": "L18876", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_relegate", - "community": 279, + "community": 723, "norm_label": "relegate()" }, { @@ -41451,7 +41451,7 @@ "source_location": "L18895", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_promote", - "community": 279, + "community": 723, "norm_label": "promote()" }, { @@ -41531,7 +41531,7 @@ "source_location": "L19877", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_updatelayout", - "community": 448, + "community": 279, "norm_label": "updatelayout()" }, { @@ -41601,7 +41601,7 @@ "source_location": "L19973", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_resettransformstyle", - "community": 279, + "community": 473, "norm_label": "resettransformstyle()" }, { @@ -41781,7 +41781,7 @@ "source_location": "L20186", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_initintersectionobserver", - "community": 269, + "community": 416, "norm_label": "initintersectionobserver()" }, { @@ -41791,7 +41791,7 @@ "source_location": "L20198", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_observeintersection", - "community": 269, + "community": 416, "norm_label": "observeintersection()" }, { @@ -41801,7 +41801,7 @@ "source_location": "L20219", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_startobserver", - "community": 448, + "community": 416, "norm_label": "startobserver()" }, { @@ -41811,7 +41811,7 @@ "source_location": "L20262", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_hasviewportoptionchanged", - "community": 448, + "community": 279, "norm_label": "hasviewportoptionchanged()" }, { @@ -41821,7 +41821,7 @@ "source_location": "L20313", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_initprefersreducedmotion", - "community": 448, + "community": 279, "norm_label": "initprefersreducedmotion()" }, { @@ -41831,7 +41831,7 @@ "source_location": "L20338", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_updatemotionvaluesfromprops", - "community": 269, + "community": 366, "norm_label": "updatemotionvaluesfromprops()" }, { @@ -41841,7 +41841,7 @@ "source_location": "L20404", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_constructor_notifyupdate", - "community": 279, + "community": 473, "norm_label": ".notifyupdate()" }, { @@ -41871,7 +41871,7 @@ "source_location": "L20488", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_bindtomotionvalue", - "community": 448, + "community": 279, "norm_label": "bindtomotionvalue()" }, { @@ -41891,7 +41891,7 @@ "source_location": "L20520", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_updatefeatures", - "community": 448, + "community": 279, "norm_label": "updatefeatures()" }, { @@ -41911,7 +41911,7 @@ "source_location": "L20552", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_getstaticvalue", - "community": 269, + "community": 366, "norm_label": "getstaticvalue()" }, { @@ -41961,7 +41961,7 @@ "source_location": "L20606", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_getclosestvariantnode", - "community": 448, + "community": 279, "norm_label": "getclosestvariantnode()" }, { @@ -41971,7 +41971,7 @@ "source_location": "L20612", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_addvariantchild", - "community": 448, + "community": 279, "norm_label": "addvariantchild()" }, { @@ -41981,7 +41981,7 @@ "source_location": "L20622", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_addvalue", - "community": 269, + "community": 366, "norm_label": "addvalue()" }, { @@ -41991,7 +41991,7 @@ "source_location": "L20635", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_removevalue", - "community": 269, + "community": 366, "norm_label": "removevalue()" }, { @@ -42001,7 +42001,7 @@ "source_location": "L20648", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_hasvalue", - "community": 269, + "community": 366, "norm_label": "hasvalue()" }, { @@ -42011,7 +42011,7 @@ "source_location": "L20651", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_getvalue", - "community": 269, + "community": 366, "norm_label": "getvalue()" }, { @@ -42071,7 +42071,7 @@ "source_location": "L20734", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_removevaluefromrenderstate", - "community": 269, + "community": 366, "norm_label": "removevaluefromrenderstate()" }, { @@ -42081,7 +42081,7 @@ "source_location": "L20738", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_handlechildmotionvalue", - "community": 448, + "community": 279, "norm_label": "handlechildmotionvalue()" }, { @@ -42091,7 +42091,7 @@ "source_location": "L20755", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_getcomputedstyle", - "community": 269, + "community": 366, "norm_label": "getcomputedstyle()" }, { @@ -42111,7 +42111,7 @@ "source_location": "L20774", "_origin": "ast", "id": "docs_design_claude_design_mockup_v2_fable_ds_thingtime_bundle_measureinstanceviewportbox", - "community": 269, + "community": 366, "norm_label": "measureinstanceviewportbox()" }, { @@ -43151,7 +43151,7 @@ "source_location": "L445", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_typename", - "community": 159, + "community": 83, "norm_label": "typename()" }, { @@ -43161,7 +43161,7 @@ "source_location": "L455", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_willcoercionthrow", - "community": 159, + "community": 83, "norm_label": "willcoercionthrow()" }, { @@ -43171,7 +43171,7 @@ "source_location": "L466", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_teststringcoercion", - "community": 159, + "community": 83, "norm_label": "teststringcoercion()" }, { @@ -43181,7 +43181,7 @@ "source_location": "L492", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_checkkeystringcoercion", - "community": 159, + "community": 83, "norm_label": "checkkeystringcoercion()" }, { @@ -43221,7 +43221,7 @@ "source_location": "L616", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_hasvalidref", - "community": 236, + "community": 83, "norm_label": "hasvalidref()" }, { @@ -43231,7 +43231,7 @@ "source_location": "L630", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_hasvalidkey", - "community": 236, + "community": 83, "norm_label": "hasvalidkey()" }, { @@ -43241,7 +43241,7 @@ "source_location": "L644", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_definekeypropwarninggetter", - "community": 236, + "community": 83, "norm_label": "definekeypropwarninggetter()" }, { @@ -43251,7 +43251,7 @@ "source_location": "L662", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_definerefpropwarninggetter", - "community": 236, + "community": 83, "norm_label": "definerefpropwarninggetter()" }, { @@ -43261,7 +43261,7 @@ "source_location": "L680", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_warnifstringrefcannotbeautoconverted", - "community": 236, + "community": 83, "norm_label": "warnifstringrefcannotbeautoconverted()" }, { @@ -43271,7 +43271,7 @@ "source_location": "L773", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_createelement", - "community": 236, + "community": 83, "norm_label": "createelement()" }, { @@ -43291,7 +43291,7 @@ "source_location": "L867", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_cloneelement", - "community": 236, + "community": 83, "norm_label": "cloneelement()" }, { @@ -43311,7 +43311,7 @@ "source_location": "L960", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_escape", - "community": 159, + "community": 476, "norm_label": "escape()" }, { @@ -43331,7 +43331,7 @@ "source_location": "L992", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_getelementkey", - "community": 159, + "community": 476, "norm_label": "getelementkey()" }, { @@ -43871,7 +43871,7 @@ "source_location": "L2441", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_siftup", - "community": 236, + "community": 213, "norm_label": "siftup()" }, { @@ -43881,7 +43881,7 @@ "source_location": "L2460", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_siftdown", - "community": 236, + "community": 213, "norm_label": "siftdown()" }, { @@ -43891,7 +43891,7 @@ "source_location": "L2492", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_compare", - "community": 236, + "community": 213, "norm_label": "compare()" }, { @@ -43951,7 +43951,7 @@ "source_location": "L2687", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_unstable_runwithpriority", - "community": 431, + "community": 314, "norm_label": "unstable_runwithpriority()" }, { @@ -43961,7 +43961,7 @@ "source_location": "L2710", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_unstable_next", - "community": 431, + "community": 314, "norm_label": "unstable_next()" }, { @@ -44051,7 +44051,7 @@ "source_location": "L2885", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_requestpaint", - "community": 174, + "community": 220, "norm_label": "requestpaint()" }, { @@ -44111,7 +44111,7 @@ "source_location": "L3035", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_starttransition", - "community": 174, + "community": 220, "norm_label": "starttransition()" }, { @@ -44201,7 +44201,7 @@ "source_location": "L3593", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_checkattributestringcoercion", - "community": 159, + "community": 83, "norm_label": "checkattributestringcoercion()" }, { @@ -44211,7 +44211,7 @@ "source_location": "L3611", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_checkpropstringcoercion", - "community": 159, + "community": 83, "norm_label": "checkpropstringcoercion()" }, { @@ -44221,7 +44221,7 @@ "source_location": "L3620", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_checkcsspropertystringcoercion", - "community": 159, + "community": 83, "norm_label": "checkcsspropertystringcoercion()" }, { @@ -44231,7 +44231,7 @@ "source_location": "L3629", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_checkhtmlstringcoercion", - "community": 159, + "community": 83, "norm_label": "checkhtmlstringcoercion()" }, { @@ -44241,7 +44241,7 @@ "source_location": "L3638", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_checkformfieldvaluestringcoercion", - "community": 159, + "community": 83, "norm_label": "checkformfieldvaluestringcoercion()" }, { @@ -44501,7 +44501,7 @@ "source_location": "L4932", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_ischeckable", - "community": 159, + "community": 15, "norm_label": "ischeckable()" }, { @@ -44511,7 +44511,7 @@ "source_location": "L4938", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_gettracker", - "community": 159, + "community": 15, "norm_label": "gettracker()" }, { @@ -44521,7 +44521,7 @@ "source_location": "L4942", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_detachtracker", - "community": 159, + "community": 15, "norm_label": "detachtracker()" }, { @@ -44531,7 +44531,7 @@ "source_location": "L4946", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_getvaluefromnode", - "community": 159, + "community": 15, "norm_label": "getvaluefromnode()" }, { @@ -44541,7 +44541,7 @@ "source_location": "L4962", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_trackvalueonnode", - "community": 159, + "community": 15, "norm_label": "trackvalueonnode()" }, { @@ -44551,7 +44551,7 @@ "source_location": "L5021", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_track", - "community": 159, + "community": 15, "norm_label": "track()" }, { @@ -44561,7 +44561,7 @@ "source_location": "L5029", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_updatevalueifchanged", - "community": 159, + "community": 15, "norm_label": "updatevalueifchanged()" }, { @@ -44981,7 +44981,7 @@ "source_location": "L7174", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_setreplayingevent", - "community": 504, + "community": 15, "norm_label": "setreplayingevent()" }, { @@ -44991,7 +44991,7 @@ "source_location": "L7183", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_resetreplayingevent", - "community": 504, + "community": 15, "norm_label": "resetreplayingevent()" }, { @@ -45001,7 +45001,7 @@ "source_location": "L7192", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_isreplayingevent", - "community": 15, + "community": 213, "norm_label": "isreplayingevent()" }, { @@ -45371,7 +45371,7 @@ "source_location": "L8185", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_onscheduleroot", - "community": 83, + "community": 91, "norm_label": "onscheduleroot()" }, { @@ -45381,7 +45381,7 @@ "source_location": "L8200", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_oncommitroot", - "community": 174, + "community": 220, "norm_label": "oncommitroot()" }, { @@ -45391,7 +45391,7 @@ "source_location": "L8245", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_onpostcommitroot", - "community": 174, + "community": 220, "norm_label": "onpostcommitroot()" }, { @@ -45441,7 +45441,7 @@ "source_location": "L8320", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_markcommitstarted", - "community": 174, + "community": 220, "norm_label": "markcommitstarted()" }, { @@ -45451,7 +45451,7 @@ "source_location": "L8327", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_markcommitstopped", - "community": 174, + "community": 220, "norm_label": "markcommitstopped()" }, { @@ -45581,7 +45581,7 @@ "source_location": "L8418", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_marklayouteffectsstarted", - "community": 174, + "community": 220, "norm_label": "marklayouteffectsstarted()" }, { @@ -45591,7 +45591,7 @@ "source_location": "L8425", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_marklayouteffectsstopped", - "community": 174, + "community": 220, "norm_label": "marklayouteffectsstopped()" }, { @@ -45601,7 +45601,7 @@ "source_location": "L8432", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_markpassiveeffectsstarted", - "community": 174, + "community": 220, "norm_label": "markpassiveeffectsstarted()" }, { @@ -45611,7 +45611,7 @@ "source_location": "L8439", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_markpassiveeffectsstopped", - "community": 174, + "community": 220, "norm_label": "markpassiveeffectsstopped()" }, { @@ -45651,7 +45651,7 @@ "source_location": "L8467", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_markrenderscheduled", - "community": 83, + "community": 91, "norm_label": "markrenderscheduled()" }, { @@ -45801,7 +45801,7 @@ "source_location": "L9017", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_includesonlynonurgentlanes", - "community": 91, + "community": 376, "norm_label": "includesonlynonurgentlanes()" }, { @@ -45941,7 +45941,7 @@ "source_location": "L9088", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_removelanes", - "community": 220, + "community": 236, "norm_label": "removelanes()" }, { @@ -45961,7 +45961,7 @@ "source_location": "L9096", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_lanetolanes", - "community": 220, + "community": 236, "norm_label": "lanetolanes()" }, { @@ -46081,7 +46081,7 @@ "source_location": "L9322", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_getcurrentupdatepriority", - "community": 174, + "community": 220, "norm_label": "getcurrentupdatepriority()" }, { @@ -46091,7 +46091,7 @@ "source_location": "L9325", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_setcurrentupdatepriority", - "community": 174, + "community": 220, "norm_label": "setcurrentupdatepriority()" }, { @@ -46111,7 +46111,7 @@ "source_location": "L9338", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_highereventpriority", - "community": 174, + "community": 220, "norm_label": "highereventpriority()" }, { @@ -46121,7 +46121,7 @@ "source_location": "L9341", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_lowereventpriority", - "community": 174, + "community": 220, "norm_label": "lowereventpriority()" }, { @@ -46291,7 +46291,7 @@ "source_location": "L9605", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_attemptreplaycontinuousqueuedevent", - "community": 504, + "community": 15, "norm_label": "attemptreplaycontinuousqueuedevent()" }, { @@ -46301,7 +46301,7 @@ "source_location": "L9643", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_attemptreplaycontinuousqueuedeventinmap", - "community": 504, + "community": 15, "norm_label": "attemptreplaycontinuousqueuedeventinmap()" }, { @@ -46311,7 +46311,7 @@ "source_location": "L9649", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_replayunblockedevents", - "community": 504, + "community": 15, "norm_label": "replayunblockedevents()" }, { @@ -46321,7 +46321,7 @@ "source_location": "L9669", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_schedulecallbackifunblocked", - "community": 504, + "community": 83, "norm_label": "schedulecallbackifunblocked()" }, { @@ -46371,7 +46371,7 @@ "source_location": "L9777", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_dispatchdiscreteevent", - "community": 174, + "community": 220, "norm_label": "dispatchdiscreteevent()" }, { @@ -46381,7 +46381,7 @@ "source_location": "L9791", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_dispatchcontinuousevent", - "community": 174, + "community": 220, "norm_label": "dispatchcontinuousevent()" }, { @@ -46391,7 +46391,7 @@ "source_location": "L9805", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_dispatchevent", - "community": 174, + "community": 220, "norm_label": "dispatchevent()" }, { @@ -46721,7 +46721,7 @@ "source_location": "L11094", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_iseventsupported", - "community": 236, + "community": 83, "norm_label": "iseventsupported()" }, { @@ -46911,7 +46911,7 @@ "source_location": "L11368", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_extractevents_2", - "community": 15, + "community": 213, "norm_label": "extractevents$2()" }, { @@ -47341,7 +47341,7 @@ "source_location": "L12729", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_getparent", - "community": 15, + "community": 213, "norm_label": "getparent()" }, { @@ -47351,7 +47351,7 @@ "source_location": "L12754", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_getlowestcommonancestor", - "community": 15, + "community": 213, "norm_label": "getlowestcommonancestor()" }, { @@ -47371,7 +47371,7 @@ "source_location": "L12849", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_accumulateenterleavetwophaselisteners", - "community": 15, + "community": 213, "norm_label": "accumulateenterleavetwophaselisteners()" }, { @@ -47391,7 +47391,7 @@ "source_location": "L12971", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_normalizemarkupfortextorattribute", - "community": 236, + "community": 15, "norm_label": "normalizemarkupfortextorattribute()" }, { @@ -47401,7 +47401,7 @@ "source_location": "L12980", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_checkforunmatchedtext", - "community": 236, + "community": 15, "norm_label": "checkforunmatchedtext()" }, { @@ -47521,7 +47521,7 @@ "source_location": "L13819", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_diffhydratedtext", - "community": 236, + "community": 15, "norm_label": "diffhydratedtext()" }, { @@ -47831,7 +47831,7 @@ "source_location": "L14507", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_hideinstance", - "community": 83, + "community": 159, "norm_label": "hideinstance()" }, { @@ -47841,7 +47841,7 @@ "source_location": "L14519", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_hidetextinstance", - "community": 83, + "community": 159, "norm_label": "hidetextinstance()" }, { @@ -47861,7 +47861,7 @@ "source_location": "L14528", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_unhidetextinstance", - "community": 83, + "community": 159, "norm_label": "unhidetextinstance()" }, { @@ -47911,7 +47911,7 @@ "source_location": "L14566", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_issuspenseinstancepending", - "community": 220, + "community": 236, "norm_label": "issuspenseinstancepending()" }, { @@ -47921,7 +47921,7 @@ "source_location": "L14569", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_issuspenseinstancefallback", - "community": 220, + "community": 236, "norm_label": "issuspenseinstancefallback()" }, { @@ -47931,7 +47931,7 @@ "source_location": "L14572", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_getsuspenseinstancefallbackerrordetails", - "community": 220, + "community": 236, "norm_label": "getsuspenseinstancefallbackerrordetails()" }, { @@ -47941,7 +47941,7 @@ "source_location": "L14604", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_registersuspenseinstanceretry", - "community": 220, + "community": 236, "norm_label": "registersuspenseinstanceretry()" }, { @@ -48011,7 +48011,7 @@ "source_location": "L14662", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_hydratetextinstance", - "community": 236, + "community": 15, "norm_label": "hydratetextinstance()" }, { @@ -48081,7 +48081,7 @@ "source_location": "L14741", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_didnotmatchhydratedcontainertextinstance", - "community": 236, + "community": 15, "norm_label": "didnotmatchhydratedcontainertextinstance()" }, { @@ -48091,7 +48091,7 @@ "source_location": "L14745", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_didnotmatchhydratedtextinstance", - "community": 236, + "community": 15, "norm_label": "didnotmatchhydratedtextinstance()" }, { @@ -48441,7 +48441,7 @@ "source_location": "L15313", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_findcurrentunmaskedcontext", - "community": 15, + "community": 91, "norm_label": "findcurrentunmaskedcontext()" }, { @@ -48481,7 +48481,7 @@ "source_location": "L15378", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_flushsynccallbacks", - "community": 174, + "community": 220, "norm_label": "flushsynccallbacks()" }, { @@ -48611,7 +48611,7 @@ "source_location": "L15610", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_warnifhydrating", - "community": 220, + "community": 236, "norm_label": "warnifhydrating()" }, { @@ -48751,7 +48751,7 @@ "source_location": "L15930", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_preparetohydratehosttextinstance", - "community": 236, + "community": 15, "norm_label": "preparetohydratehosttextinstance()" }, { @@ -48801,7 +48801,7 @@ "source_location": "L16053", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_hasunhydratedtailnodes", - "community": 236, + "community": 365, "norm_label": "hasunhydratedtailnodes()" }, { @@ -48831,7 +48831,7 @@ "source_location": "L16074", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_upgradehydrationerrorstorecoverable", - "community": 236, + "community": 365, "norm_label": "upgradehydrationerrorstorecoverable()" }, { @@ -48851,7 +48851,7 @@ "source_location": "L16088", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_queuehydrationerror", - "community": 220, + "community": 236, "norm_label": "queuehydrationerror()" }, { @@ -49121,7 +49121,7 @@ "source_location": "L17913", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_initializeupdatequeue", - "community": 625, + "community": 91, "norm_label": "initializeupdatequeue()" }, { @@ -49301,7 +49301,7 @@ "source_location": "L18510", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_hassuspensecontext", - "community": 220, + "community": 236, "norm_label": "hassuspensecontext()" }, { @@ -49311,7 +49311,7 @@ "source_location": "L18513", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_setdefaultshallowsuspensecontext", - "community": 220, + "community": 236, "norm_label": "setdefaultshallowsuspensecontext()" }, { @@ -49321,7 +49321,7 @@ "source_location": "L18516", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_setshallowsuspensecontext", - "community": 220, + "community": 236, "norm_label": "setshallowsuspensecontext()" }, { @@ -49331,7 +49331,7 @@ "source_location": "L18519", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_addsubtreesuspensecontext", - "community": 220, + "community": 236, "norm_label": "addsubtreesuspensecontext()" }, { @@ -49341,7 +49341,7 @@ "source_location": "L18522", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_pushsuspensecontext", - "community": 220, + "community": 236, "norm_label": "pushsuspensecontext()" }, { @@ -49371,7 +49371,7 @@ "source_location": "L18549", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_findfirstsuspended", - "community": 220, + "community": 236, "norm_label": "findfirstsuspended()" }, { @@ -49551,7 +49551,7 @@ "source_location": "L19102", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_updatereducer", - "community": 91, + "community": 376, "norm_label": "updatereducer()" }, { @@ -49891,7 +49891,7 @@ "source_location": "L19792", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_updatedeferredvalue", - "community": 91, + "community": 376, "norm_label": "updatedeferredvalue()" }, { @@ -49901,7 +49901,7 @@ "source_location": "L19799", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_rerenderdeferredvalue", - "community": 91, + "community": 376, "norm_label": "rerenderdeferredvalue()" }, { @@ -49911,7 +49911,7 @@ "source_location": "L19813", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_updatedeferredvalueimpl", - "community": 91, + "community": 376, "norm_label": "updatedeferredvalueimpl()" }, { @@ -50051,7 +50051,7 @@ "source_location": "L21001", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_marknestedupdatescheduled", - "community": 174, + "community": 220, "norm_label": "marknestedupdatescheduled()" }, { @@ -50091,7 +50091,7 @@ "source_location": "L21025", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_recordcommittime", - "community": 174, + "community": 220, "norm_label": "recordcommittime()" }, { @@ -50301,7 +50301,7 @@ "source_location": "L21991", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_createcapturedvalue", - "community": 220, + "community": 236, "norm_label": "createcapturedvalue()" }, { @@ -50411,7 +50411,7 @@ "source_location": "L22504", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_getsuspendedcache", - "community": 220, + "community": 236, "norm_label": "getsuspendedcache()" }, { @@ -50641,7 +50641,7 @@ "source_location": "L23618", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_mountsuspenseoffscreenstate", - "community": 220, + "community": 236, "norm_label": "mountsuspenseoffscreenstate()" }, { @@ -50661,7 +50661,7 @@ "source_location": "L23637", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_shouldremainonfallback", - "community": 220, + "community": 236, "norm_label": "shouldremainonfallback()" }, { @@ -50671,7 +50671,7 @@ "source_location": "L23657", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_getremainingworkinprimarytree", - "community": 220, + "community": 236, "norm_label": "getremainingworkinprimarytree()" }, { @@ -50681,7 +50681,7 @@ "source_location": "L23662", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_updatesuspensecomponent", - "community": 220, + "community": 236, "norm_label": "updatesuspensecomponent()" }, { @@ -50691,7 +50691,7 @@ "source_location": "L23781", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_mountsuspenseprimarychildren", - "community": 220, + "community": 236, "norm_label": "mountsuspenseprimarychildren()" }, { @@ -50701,7 +50701,7 @@ "source_location": "L23793", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_mountsuspensefallbackchildren", - "community": 220, + "community": 236, "norm_label": "mountsuspensefallbackchildren()" }, { @@ -50711,7 +50711,7 @@ "source_location": "L23834", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_mountworkinprogressoffscreenfiber", - "community": 220, + "community": 236, "norm_label": "mountworkinprogressoffscreenfiber()" }, { @@ -50721,7 +50721,7 @@ "source_location": "L23840", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_updateworkinprogressoffscreenfiber", - "community": 220, + "community": 236, "norm_label": "updateworkinprogressoffscreenfiber()" }, { @@ -50731,7 +50731,7 @@ "source_location": "L23846", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_updatesuspenseprimarychildren", - "community": 220, + "community": 236, "norm_label": "updatesuspenseprimarychildren()" }, { @@ -50741,7 +50741,7 @@ "source_location": "L23877", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_updatesuspensefallbackchildren", - "community": 220, + "community": 236, "norm_label": "updatesuspensefallbackchildren()" }, { @@ -50751,7 +50751,7 @@ "source_location": "L23942", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_retrysuspensecomponentwithouthydrating", - "community": 220, + "community": 236, "norm_label": "retrysuspensecomponentwithouthydrating()" }, { @@ -50761,7 +50761,7 @@ "source_location": "L23967", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_mountsuspensefallbackafterretrywithouthydrating", - "community": 220, + "community": 236, "norm_label": "mountsuspensefallbackafterretrywithouthydrating()" }, { @@ -50771,7 +50771,7 @@ "source_location": "L23992", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_mountdehydratedsuspensecomponent", - "community": 220, + "community": 236, "norm_label": "mountdehydratedsuspensecomponent()" }, { @@ -50781,7 +50781,7 @@ "source_location": "L24023", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_updatedehydratedsuspensecomponent", - "community": 220, + "community": 236, "norm_label": "updatedehydratedsuspensecomponent()" }, { @@ -50811,7 +50811,7 @@ "source_location": "L24215", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_findlastcontentrow", - "community": 220, + "community": 236, "norm_label": "findlastcontentrow()" }, { @@ -50821,7 +50821,7 @@ "source_location": "L24239", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_validaterevealorder", - "community": 220, + "community": 236, "norm_label": "validaterevealorder()" }, { @@ -50831,7 +50831,7 @@ "source_location": "L24275", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_validatetailoptions", - "community": 220, + "community": 236, "norm_label": "validatetailoptions()" }, { @@ -50861,7 +50861,7 @@ "source_location": "L24343", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_initsuspenselistrenderstate", - "community": 220, + "community": 236, "norm_label": "initsuspenselistrenderstate()" }, { @@ -50871,7 +50871,7 @@ "source_location": "L24373", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_updatesuspenselistcomponent", - "community": 220, + "community": 236, "norm_label": "updatesuspenselistcomponent()" }, { @@ -51011,7 +51011,7 @@ "source_location": "L25277", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_bubbleproperties", - "community": 236, + "community": 365, "norm_label": "bubbleproperties()" }, { @@ -51021,7 +51021,7 @@ "source_location": "L25372", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_completedehydratedsuspenseboundary", - "community": 236, + "community": 365, "norm_label": "completedehydratedsuspenseboundary()" }, { @@ -51221,7 +51221,7 @@ "source_location": "L26944", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_hideorunhideallchildren", - "community": 83, + "community": 159, "norm_label": "hideorunhideallchildren()" }, { @@ -51491,7 +51491,7 @@ "source_location": "L28257", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_commitpassivemounteffects", - "community": 174, + "community": 220, "norm_label": "commitpassivemounteffects()" }, { @@ -51501,7 +51501,7 @@ "source_location": "L28262", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_commitpassivemounteffects_begin", - "community": 174, + "community": 220, "norm_label": "commitpassivemounteffects_begin()" }, { @@ -51531,7 +51531,7 @@ "source_location": "L28332", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_commitpassiveunmounteffects", - "community": 174, + "community": 220, "norm_label": "commitpassiveunmounteffects()" }, { @@ -51641,7 +51641,7 @@ "source_location": "L28624", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_oncommitroot_1", - "community": 174, + "community": 220, "norm_label": "oncommitroot$1()" }, { @@ -51791,7 +51791,7 @@ "source_location": "L29262", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_queuerecoverableerrors", - "community": 236, + "community": 365, "norm_label": "queuerecoverableerrors()" }, { @@ -51861,7 +51861,7 @@ "source_location": "L29545", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_discreteupdates", - "community": 174, + "community": 220, "norm_label": "discreteupdates()" }, { @@ -51871,7 +51871,7 @@ "source_location": "L29565", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_flushsync", - "community": 174, + "community": 220, "norm_label": "flushsync()" }, { @@ -51881,7 +51881,7 @@ "source_location": "L29598", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_isalreadyrendering", - "community": 174, + "community": 220, "norm_label": "isalreadyrendering()" }, { @@ -51961,7 +51961,7 @@ "source_location": "L29748", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_markskippedupdatelanes", - "community": 91, + "community": 376, "norm_label": "markskippedupdatelanes()" }, { @@ -52071,7 +52071,7 @@ "source_location": "L30066", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_commitroot", - "community": 174, + "community": 220, "norm_label": "commitroot()" }, { @@ -52081,7 +52081,7 @@ "source_location": "L30084", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_commitrootimpl", - "community": 174, + "community": 220, "norm_label": "commitrootimpl()" }, { @@ -52091,7 +52091,7 @@ "source_location": "L30361", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_flushpassiveeffects", - "community": 174, + "community": 220, "norm_label": "flushpassiveeffects()" }, { @@ -52101,7 +52101,7 @@ "source_location": "L30386", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_enqueuependingpassiveprofilereffect", - "community": 174, + "community": 213, "norm_label": "enqueuependingpassiveprofilereffect()" }, { @@ -52111,7 +52111,7 @@ "source_location": "L30400", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_flushpassiveeffectsimpl", - "community": 174, + "community": 220, "norm_label": "flushpassiveeffectsimpl()" }, { @@ -52231,7 +52231,7 @@ "source_location": "L30698", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_flushrenderphasestrictmodewarningsindev", - "community": 174, + "community": 220, "norm_label": "flushrenderphasestrictmodewarningsindev()" }, { @@ -52291,7 +52291,7 @@ "source_location": "L30920", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_schedulecallback_1", - "community": 174, + "community": 213, "norm_label": "schedulecallback$1()" }, { @@ -52501,7 +52501,7 @@ "source_location": "L31691", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_createhostrootfiber", - "community": 625, + "community": 91, "norm_label": "createhostrootfiber()" }, { @@ -52531,7 +52531,7 @@ "source_location": "L31867", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_createfiberfromfragment", - "community": 220, + "community": 236, "norm_label": "createfiberfromfragment()" }, { @@ -52571,7 +52571,7 @@ "source_location": "L31906", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_createfiberfromoffscreen", - "community": 220, + "community": 236, "norm_label": "createfiberfromoffscreen()" }, { @@ -52641,7 +52641,7 @@ "source_location": "L32049", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_createfiberroot", - "community": 625, + "community": 91, "norm_label": "createfiberroot()" }, { @@ -52661,7 +52661,7 @@ "source_location": "L32106", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_getcontextforsubtree", - "community": 83, + "community": 91, "norm_label": "getcontextforsubtree()" }, { @@ -52681,7 +52681,7 @@ "source_location": "L32175", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_createcontainer", - "community": 625, + "community": 91, "norm_label": "createcontainer()" }, { @@ -52701,7 +52701,7 @@ "source_location": "L32201", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_updatecontainer", - "community": 83, + "community": 91, "norm_label": "updatecontainer()" }, { @@ -52791,7 +52791,7 @@ "source_location": "L32382", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_shouldsuspend", - "community": 220, + "community": 236, "norm_label": "shouldsuspend()" }, { @@ -52931,7 +52931,7 @@ "source_location": "L32911", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_nooponrecoverableerror", - "community": 625, + "community": 91, "norm_label": "nooponrecoverableerror()" }, { @@ -52941,7 +52941,7 @@ "source_location": "L32915", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_legacycreaterootfromdomcontainer", - "community": 625, + "community": 91, "norm_label": "legacycreaterootfromdomcontainer()" }, { @@ -53061,7 +53061,7 @@ "source_location": "L33225", "_origin": "ast", "id": "docs_design_thingtime_app_ds_react_flushsync_1", - "community": 174, + "community": 220, "norm_label": "flushsync$1()" }, { @@ -53751,7 +53751,7 @@ "source_location": "L6103", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_resolvestyleconfig", - "community": 646, + "community": 29, "norm_label": "resolvestyleconfig()" }, { @@ -54051,7 +54051,7 @@ "source_location": "L6860", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_randomcolor", - "community": 289, + "community": 29, "norm_label": "randomcolor()" }, { @@ -54061,7 +54061,7 @@ "source_location": "L6876", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_randomcolorfromstring", - "community": 289, + "community": 29, "norm_label": "randomcolorfromstring()" }, { @@ -54071,7 +54071,7 @@ "source_location": "L6891", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_randomcolorfromlist", - "community": 289, + "community": 29, "norm_label": "randomcolorfromlist()" }, { @@ -54081,7 +54081,7 @@ "source_location": "L6902", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_randomfromlist", - "community": 289, + "community": 29, "norm_label": "randomfromlist()" }, { @@ -54771,7 +54771,7 @@ "source_location": "L11833", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_usecolormode", - "community": 646, + "community": 29, "norm_label": "usecolormode()" }, { @@ -54871,7 +54871,7 @@ "source_location": "L12375", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_globalstyle", - "community": 646, + "community": 29, "norm_label": "globalstyle()" }, { @@ -55631,7 +55631,7 @@ "source_location": "L14288", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_duration", - "community": 347, + "community": 555, "norm_label": "duration()" }, { @@ -55921,7 +55921,7 @@ "source_location": "L14743", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_notify", - "community": 280, + "community": 555, "norm_label": "notify()" }, { @@ -56031,7 +56031,7 @@ "source_location": "L14919", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_setwithvelocity", - "community": 347, + "community": 555, "norm_label": "setwithvelocity()" }, { @@ -56041,7 +56041,7 @@ "source_location": "L14929", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_jump", - "community": 446, + "community": 719, "norm_label": "jump()" }, { @@ -56081,7 +56081,7 @@ "source_location": "L15003", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_stop", - "community": 347, + "community": 555, "norm_label": "stop()" }, { @@ -56101,7 +56101,7 @@ "source_location": "L15020", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_clearanimation", - "community": 347, + "community": 555, "norm_label": "clearanimation()" }, { @@ -56121,7 +56121,7 @@ "source_location": "L15040", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_motionvalue", - "community": 446, + "community": 719, "norm_label": "motionvalue()" }, { @@ -56131,7 +56131,7 @@ "source_location": "L15045", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_setmotionvalue", - "community": 446, + "community": 719, "norm_label": "setmotionvalue()" }, { @@ -56141,7 +56141,7 @@ "source_location": "L15052", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_settarget", - "community": 555, + "community": 719, "norm_label": "settarget()" }, { @@ -56381,7 +56381,7 @@ "source_location": "L15613", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_measureinitialstate", - "community": 446, + "community": 719, "norm_label": "measureinitialstate()" }, { @@ -56401,7 +56401,7 @@ "source_location": "L15617", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_measureendstate", - "community": 446, + "community": 719, "norm_label": "measureendstate()" }, { @@ -57411,7 +57411,7 @@ "source_location": "L17935", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_convertboundingboxtobox", - "community": 446, + "community": 555, "norm_label": "convertboundingboxtobox()" }, { @@ -57431,7 +57431,7 @@ "source_location": "L17944", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_transformboxpoints", - "community": 446, + "community": 719, "norm_label": "transformboxpoints()" }, { @@ -57541,7 +57541,7 @@ "source_location": "L18036", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_translateaxis", - "community": 446, + "community": 719, "norm_label": "translateaxis()" }, { @@ -57571,7 +57571,7 @@ "source_location": "L18050", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_measureviewportbox", - "community": 446, + "community": 719, "norm_label": "measureviewportbox()" }, { @@ -57581,7 +57581,7 @@ "source_location": "L18053", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_measurepagebox", - "community": 446, + "community": 719, "norm_label": "measurepagebox()" }, { @@ -58201,7 +58201,7 @@ "source_location": "L19973", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_resettransformstyle", - "community": 280, + "community": 555, "norm_label": "resettransformstyle()" }, { @@ -58431,7 +58431,7 @@ "source_location": "L20338", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_updatemotionvaluesfromprops", - "community": 446, + "community": 719, "norm_label": "updatemotionvaluesfromprops()" }, { @@ -58441,7 +58441,7 @@ "source_location": "L20404", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_constructor_notifyupdate", - "community": 280, + "community": 555, "norm_label": ".notifyupdate()" }, { @@ -58511,7 +58511,7 @@ "source_location": "L20552", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_getstaticvalue", - "community": 446, + "community": 719, "norm_label": "getstaticvalue()" }, { @@ -58581,7 +58581,7 @@ "source_location": "L20622", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_addvalue", - "community": 446, + "community": 719, "norm_label": "addvalue()" }, { @@ -58591,7 +58591,7 @@ "source_location": "L20635", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_removevalue", - "community": 446, + "community": 719, "norm_label": "removevalue()" }, { @@ -58601,7 +58601,7 @@ "source_location": "L20648", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_hasvalue", - "community": 446, + "community": 719, "norm_label": "hasvalue()" }, { @@ -58611,7 +58611,7 @@ "source_location": "L20651", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_getvalue", - "community": 446, + "community": 719, "norm_label": "getvalue()" }, { @@ -58671,7 +58671,7 @@ "source_location": "L20734", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_removevaluefromrenderstate", - "community": 446, + "community": 719, "norm_label": "removevaluefromrenderstate()" }, { @@ -58691,7 +58691,7 @@ "source_location": "L20755", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_getcomputedstyle", - "community": 446, + "community": 719, "norm_label": "getcomputedstyle()" }, { @@ -58711,7 +58711,7 @@ "source_location": "L20774", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_measureinstanceviewportbox", - "community": 446, + "community": 719, "norm_label": "measureinstanceviewportbox()" }, { @@ -58791,7 +58791,7 @@ "source_location": "L21226", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_styled2", - "community": 646, + "community": 29, "norm_label": "styled2()" }, { @@ -58801,7 +58801,7 @@ "source_location": "L21252", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_factory", - "community": 646, + "community": 29, "norm_label": "factory()" }, { @@ -58821,7 +58821,7 @@ "source_location": "L21423", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_usetheme2", - "community": 646, + "community": 29, "norm_label": "usetheme2()" }, { @@ -58831,7 +58831,7 @@ "source_location": "L21436", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_usechakra", - "community": 646, + "community": 29, "norm_label": "usechakra()" }, { @@ -58841,7 +58841,7 @@ "source_location": "L21443", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_omitreactelements", - "community": 646, + "community": 29, "norm_label": "omitreactelements()" }, { @@ -58851,7 +58851,7 @@ "source_location": "L21450", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_usestyleconfigimpl", - "community": 646, + "community": 29, "norm_label": "usestyleconfigimpl()" }, { @@ -58861,7 +58861,7 @@ "source_location": "L21472", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_usestyleconfig", - "community": 646, + "community": 29, "norm_label": "usestyleconfig()" }, { @@ -58871,7 +58871,7 @@ "source_location": "L21475", "_origin": "ast", "id": "docs_design_thingtime_app_ds_thingtime_bundle_usemultistyleconfig", - "community": 646, + "community": 29, "norm_label": "usemultistyleconfig()" }, { @@ -59581,7 +59581,7 @@ "source_location": "L1", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_dom", - "community": 667, + "community": 784, "norm_label": "react-dom.js" }, { @@ -59891,7 +59891,7 @@ "source_location": "L960", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_escape", - "community": 120, + "community": 570, "norm_label": "escape()" }, { @@ -59911,7 +59911,7 @@ "source_location": "L992", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_getelementkey", - "community": 120, + "community": 570, "norm_label": "getelementkey()" }, { @@ -60311,7 +60311,7 @@ "source_location": "L2091", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_getdeclarationerroraddendum", - "community": 570, + "community": 120, "norm_label": "getdeclarationerroraddendum()" }, { @@ -60531,7 +60531,7 @@ "source_location": "L2687", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_unstable_runwithpriority", - "community": 431, + "community": 314, "norm_label": "unstable_runwithpriority()" }, { @@ -60541,7 +60541,7 @@ "source_location": "L2710", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_unstable_next", - "community": 431, + "community": 314, "norm_label": "unstable_next()" }, { @@ -60631,7 +60631,7 @@ "source_location": "L2885", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_requestpaint", - "community": 105, + "community": 179, "norm_label": "requestpaint()" }, { @@ -60691,7 +60691,7 @@ "source_location": "L3035", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_starttransition", - "community": 105, + "community": 179, "norm_label": "starttransition()" }, { @@ -60831,7 +60831,7 @@ "source_location": "L3683", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_isattributenamesafe", - "community": 570, + "community": 120, "norm_label": "isattributenamesafe()" }, { @@ -60911,7 +60911,7 @@ "source_location": "L4075", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_getvalueforattribute", - "community": 570, + "community": 120, "norm_label": "getvalueforattribute()" }, { @@ -60961,7 +60961,7 @@ "source_location": "L4726", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_getwrappedname_1", - "community": 154, + "community": 312, "norm_label": "getwrappedname$1()" }, { @@ -60971,7 +60971,7 @@ "source_location": "L4732", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_getcontextname_1", - "community": 154, + "community": 312, "norm_label": "getcontextname$1()" }, { @@ -60981,7 +60981,7 @@ "source_location": "L4736", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_getcomponentnamefromfiber", - "community": 154, + "community": 312, "norm_label": "getcomponentnamefromfiber()" }, { @@ -61151,7 +61151,7 @@ "source_location": "L5052", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_getactiveelement", - "community": 120, + "community": 28, "norm_label": "getactiveelement()" }, { @@ -61391,7 +61391,7 @@ "source_location": "L5705", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_getintrinsicnamespace", - "community": 219, + "community": 28, "norm_label": "getintrinsicnamespace()" }, { @@ -61401,7 +61401,7 @@ "source_location": "L5717", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_getchildnamespace", - "community": 219, + "community": 28, "norm_label": "getchildnamespace()" }, { @@ -61421,7 +61421,7 @@ "source_location": "L5952", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_dangerousstylevalue", - "community": 120, + "community": 28, "norm_label": "dangerousstylevalue()" }, { @@ -61431,7 +61431,7 @@ "source_location": "L5995", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_hyphenatestylename", - "community": 120, + "community": 28, "norm_label": "hyphenatestylename()" }, { @@ -61441,7 +61441,7 @@ "source_location": "L6104", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_createdangerousstringforstyles", - "community": 120, + "community": 28, "norm_label": "createdangerousstringforstyles()" }, { @@ -61561,7 +61561,7 @@ "source_location": "L7174", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_setreplayingevent", - "community": 28, + "community": 152, "norm_label": "setreplayingevent()" }, { @@ -61571,7 +61571,7 @@ "source_location": "L7183", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_resetreplayingevent", - "community": 28, + "community": 152, "norm_label": "resetreplayingevent()" }, { @@ -61581,7 +61581,7 @@ "source_location": "L7192", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_isreplayingevent", - "community": 28, + "community": 168, "norm_label": "isreplayingevent()" }, { @@ -61591,7 +61591,7 @@ "source_location": "L7204", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_geteventtarget", - "community": 28, + "community": 152, "norm_label": "geteventtarget()" }, { @@ -61601,7 +61601,7 @@ "source_location": "L7222", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_restorestateoftarget", - "community": 28, + "community": 152, "norm_label": "restorestateoftarget()" }, { @@ -61631,7 +61631,7 @@ "source_location": "L7259", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_needsstaterestore", - "community": 28, + "community": 152, "norm_label": "needsstaterestore()" }, { @@ -61641,7 +61641,7 @@ "source_location": "L7262", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_restorestateifneeded", - "community": 28, + "community": 152, "norm_label": "restorestateifneeded()" }, { @@ -61651,7 +61651,7 @@ "source_location": "L7294", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_finisheventhandler", - "community": 28, + "community": 152, "norm_label": "finisheventhandler()" }, { @@ -61661,7 +61661,7 @@ "source_location": "L7312", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_batchedupdates", - "community": 28, + "community": 152, "norm_label": "batchedupdates()" }, { @@ -61771,7 +61771,7 @@ "source_location": "L7638", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_rethrowcaughterror", - "community": 28, + "community": 152, "norm_label": "rethrowcaughterror()" }, { @@ -61801,7 +61801,7 @@ "source_location": "L7692", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_get", - "community": 154, + "community": 152, "norm_label": "get()" }, { @@ -61811,7 +61811,7 @@ "source_location": "L7695", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_has", - "community": 154, + "community": 55, "norm_label": "has()" }, { @@ -61831,7 +61831,7 @@ "source_location": "L7805", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_getnearestmountedfiber", - "community": 28, + "community": 152, "norm_label": "getnearestmountedfiber()" }, { @@ -61841,7 +61841,7 @@ "source_location": "L7842", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_getsuspenseinstancefromfiber", - "community": 28, + "community": 152, "norm_label": "getsuspenseinstancefromfiber()" }, { @@ -61851,7 +61851,7 @@ "source_location": "L7861", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_getcontainerfromfiber", - "community": 28, + "community": 152, "norm_label": "getcontainerfromfiber()" }, { @@ -61871,7 +61871,7 @@ "source_location": "L7867", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_ismounted", - "community": 154, + "community": 152, "norm_label": "ismounted()" }, { @@ -61881,7 +61881,7 @@ "source_location": "L7892", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_assertismounted", - "community": 28, + "community": 152, "norm_label": "assertismounted()" }, { @@ -61891,7 +61891,7 @@ "source_location": "L7898", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_findcurrentfiberusingslowpath", - "community": 28, + "community": 152, "norm_label": "findcurrentfiberusingslowpath()" }, { @@ -61961,7 +61961,7 @@ "source_location": "L8200", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_oncommitroot", - "community": 105, + "community": 179, "norm_label": "oncommitroot()" }, { @@ -61971,7 +61971,7 @@ "source_location": "L8245", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_onpostcommitroot", - "community": 105, + "community": 179, "norm_label": "onpostcommitroot()" }, { @@ -62021,7 +62021,7 @@ "source_location": "L8320", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_markcommitstarted", - "community": 105, + "community": 179, "norm_label": "markcommitstarted()" }, { @@ -62031,7 +62031,7 @@ "source_location": "L8327", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_markcommitstopped", - "community": 105, + "community": 179, "norm_label": "markcommitstopped()" }, { @@ -62141,7 +62141,7 @@ "source_location": "L8404", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_markcomponenterrored", - "community": 154, + "community": 105, "norm_label": "markcomponenterrored()" }, { @@ -62151,7 +62151,7 @@ "source_location": "L8411", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_markcomponentsuspended", - "community": 154, + "community": 105, "norm_label": "markcomponentsuspended()" }, { @@ -62161,7 +62161,7 @@ "source_location": "L8418", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_marklayouteffectsstarted", - "community": 105, + "community": 179, "norm_label": "marklayouteffectsstarted()" }, { @@ -62171,7 +62171,7 @@ "source_location": "L8425", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_marklayouteffectsstopped", - "community": 105, + "community": 179, "norm_label": "marklayouteffectsstopped()" }, { @@ -62181,7 +62181,7 @@ "source_location": "L8432", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_markpassiveeffectsstarted", - "community": 105, + "community": 179, "norm_label": "markpassiveeffectsstarted()" }, { @@ -62191,7 +62191,7 @@ "source_location": "L8439", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_markpassiveeffectsstopped", - "community": 105, + "community": 179, "norm_label": "markpassiveeffectsstopped()" }, { @@ -62201,7 +62201,7 @@ "source_location": "L8446", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_markrenderstarted", - "community": 154, + "community": 105, "norm_label": "markrenderstarted()" }, { @@ -62211,7 +62211,7 @@ "source_location": "L8453", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_markrenderyielded", - "community": 154, + "community": 105, "norm_label": "markrenderyielded()" }, { @@ -62221,7 +62221,7 @@ "source_location": "L8460", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_markrenderstopped", - "community": 154, + "community": 105, "norm_label": "markrenderstopped()" }, { @@ -62481,7 +62481,7 @@ "source_location": "L9075", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_lanetoindex", - "community": 154, + "community": 105, "norm_label": "lanetoindex()" }, { @@ -62521,7 +62521,7 @@ "source_location": "L9088", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_removelanes", - "community": 105, + "community": 219, "norm_label": "removelanes()" }, { @@ -62631,7 +62631,7 @@ "source_location": "L9267", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_addfibertolanesmap", - "community": 154, + "community": 105, "norm_label": "addfibertolanesmap()" }, { @@ -62641,7 +62641,7 @@ "source_location": "L9283", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_movependingfiberstomemoized", - "community": 154, + "community": 105, "norm_label": "movependingfiberstomemoized()" }, { @@ -62651,7 +62651,7 @@ "source_location": "L9311", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_gettransitionsforlanes", - "community": 154, + "community": 105, "norm_label": "gettransitionsforlanes()" }, { @@ -62661,7 +62661,7 @@ "source_location": "L9322", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_getcurrentupdatepriority", - "community": 105, + "community": 179, "norm_label": "getcurrentupdatepriority()" }, { @@ -62671,7 +62671,7 @@ "source_location": "L9325", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_setcurrentupdatepriority", - "community": 105, + "community": 179, "norm_label": "setcurrentupdatepriority()" }, { @@ -62691,7 +62691,7 @@ "source_location": "L9338", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_highereventpriority", - "community": 105, + "community": 179, "norm_label": "highereventpriority()" }, { @@ -62701,7 +62701,7 @@ "source_location": "L9341", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_lowereventpriority", - "community": 105, + "community": 179, "norm_label": "lowereventpriority()" }, { @@ -62711,7 +62711,7 @@ "source_location": "L9344", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_ishighereventpriority", - "community": 28, + "community": 105, "norm_label": "ishighereventpriority()" }, { @@ -62731,7 +62731,7 @@ "source_location": "L9368", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_isrootdehydrated", - "community": 28, + "community": 152, "norm_label": "isrootdehydrated()" }, { @@ -62751,7 +62751,7 @@ "source_location": "L9378", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_attemptsynchronoushydration", - "community": 28, + "community": 152, "norm_label": "attemptsynchronoushydration()" }, { @@ -62801,7 +62801,7 @@ "source_location": "L9414", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_isdiscreteeventthatrequireshydration", - "community": 28, + "community": 152, "norm_label": "isdiscreteeventthatrequireshydration()" }, { @@ -62811,7 +62811,7 @@ "source_location": "L9418", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_createqueuedreplayableevent", - "community": 28, + "community": 152, "norm_label": "createqueuedreplayableevent()" }, { @@ -62821,7 +62821,7 @@ "source_location": "L9428", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_clearifcontinuousevent", - "community": 28, + "community": 152, "norm_label": "clearifcontinuousevent()" }, { @@ -62831,7 +62831,7 @@ "source_location": "L9463", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_accumulateorcreatecontinuousqueuedreplayableevent", - "community": 28, + "community": 152, "norm_label": "accumulateorcreatecontinuousqueuedreplayableevent()" }, { @@ -62841,7 +62841,7 @@ "source_location": "L9493", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_queueifcontinuousevent", - "community": 28, + "community": 152, "norm_label": "queueifcontinuousevent()" }, { @@ -62851,7 +62851,7 @@ "source_location": "L9539", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_attemptexplicithydrationtarget", - "community": 28, + "community": 152, "norm_label": "attemptexplicithydrationtarget()" }, { @@ -62861,7 +62861,7 @@ "source_location": "L9579", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_queueexplicithydrationtarget", - "community": 28, + "community": 105, "norm_label": "queueexplicithydrationtarget()" }, { @@ -62871,7 +62871,7 @@ "source_location": "L9605", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_attemptreplaycontinuousqueuedevent", - "community": 28, + "community": 152, "norm_label": "attemptreplaycontinuousqueuedevent()" }, { @@ -62881,7 +62881,7 @@ "source_location": "L9643", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_attemptreplaycontinuousqueuedeventinmap", - "community": 28, + "community": 152, "norm_label": "attemptreplaycontinuousqueuedeventinmap()" }, { @@ -62891,7 +62891,7 @@ "source_location": "L9649", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_replayunblockedevents", - "community": 28, + "community": 152, "norm_label": "replayunblockedevents()" }, { @@ -62951,7 +62951,7 @@ "source_location": "L9777", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_dispatchdiscreteevent", - "community": 105, + "community": 179, "norm_label": "dispatchdiscreteevent()" }, { @@ -62961,7 +62961,7 @@ "source_location": "L9791", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_dispatchcontinuousevent", - "community": 105, + "community": 179, "norm_label": "dispatchcontinuousevent()" }, { @@ -62971,7 +62971,7 @@ "source_location": "L9805", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_dispatchevent", - "community": 105, + "community": 179, "norm_label": "dispatchevent()" }, { @@ -62981,7 +62981,7 @@ "source_location": "L9815", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_dispatcheventwithenablecapturephaseselectivehydrationwithoutdiscreteeventreplay", - "community": 28, + "community": 152, "norm_label": "dispatcheventwithenablecapturephaseselectivehydrationwithoutdiscreteeventreplay()" }, { @@ -62991,7 +62991,7 @@ "source_location": "L9869", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_findinstanceblockingevent", - "community": 28, + "community": 152, "norm_label": "findinstanceblockingevent()" }, { @@ -63091,7 +63091,7 @@ "source_location": "L10134", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_geteventcharcode", - "community": 28, + "community": 168, "norm_label": "geteventcharcode()" }, { @@ -63141,7 +63141,7 @@ "source_location": "L10494", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_geteventkey", - "community": 28, + "community": 168, "norm_label": "geteventkey()" }, { @@ -63341,7 +63341,7 @@ "source_location": "L11144", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_manualdispatchchangeevent", - "community": 28, + "community": 152, "norm_label": "manualdispatchchangeevent()" }, { @@ -63351,7 +63351,7 @@ "source_location": "L11161", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_runeventinbatch", - "community": 28, + "community": 152, "norm_label": "runeventinbatch()" }, { @@ -63491,7 +63491,7 @@ "source_location": "L11368", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_extractevents_2", - "community": 28, + "community": 168, "norm_label": "extractevents$2()" }, { @@ -63811,7 +63811,7 @@ "source_location": "L12433", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_processdispatchqueue", - "community": 28, + "community": 152, "norm_label": "processdispatchqueue()" }, { @@ -63821,7 +63821,7 @@ "source_location": "L12447", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_dispatcheventsforplugins", - "community": 28, + "community": 152, "norm_label": "dispatcheventsforplugins()" }, { @@ -63841,7 +63841,7 @@ "source_location": "L12470", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_listentonativeevent", - "community": 154, + "community": 570, "norm_label": "listentonativeevent()" }, { @@ -63851,7 +63851,7 @@ "source_location": "L12486", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_listentoallsupportedevents", - "community": 154, + "community": 570, "norm_label": "listentoallsupportedevents()" }, { @@ -63871,7 +63871,7 @@ "source_location": "L12550", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_ismatchingrootcontainer", - "community": 28, + "community": 152, "norm_label": "ismatchingrootcontainer()" }, { @@ -63881,7 +63881,7 @@ "source_location": "L12554", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_dispatcheventforplugineventsystem", - "community": 28, + "community": 152, "norm_label": "dispatcheventforplugineventsystem()" }, { @@ -63921,7 +63921,7 @@ "source_location": "L12729", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_getparent", - "community": 28, + "community": 168, "norm_label": "getparent()" }, { @@ -63931,7 +63931,7 @@ "source_location": "L12754", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_getlowestcommonancestor", - "community": 28, + "community": 168, "norm_label": "getlowestcommonancestor()" }, { @@ -63951,7 +63951,7 @@ "source_location": "L12849", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_accumulateenterleavetwophaselisteners", - "community": 28, + "community": 168, "norm_label": "accumulateenterleavetwophaselisteners()" }, { @@ -63971,7 +63971,7 @@ "source_location": "L12971", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_normalizemarkupfortextorattribute", - "community": 28, + "community": 186, "norm_label": "normalizemarkupfortextorattribute()" }, { @@ -63981,7 +63981,7 @@ "source_location": "L12980", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_checkforunmatchedtext", - "community": 28, + "community": 186, "norm_label": "checkforunmatchedtext()" }, { @@ -64101,7 +64101,7 @@ "source_location": "L13819", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_diffhydratedtext", - "community": 28, + "community": 186, "norm_label": "diffhydratedtext()" }, { @@ -64161,7 +64161,7 @@ "source_location": "L14216", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_getroothostcontext", - "community": 219, + "community": 28, "norm_label": "getroothostcontext()" }, { @@ -64171,7 +64171,7 @@ "source_location": "L14250", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_getchildhostcontext", - "community": 219, + "community": 28, "norm_label": "getchildhostcontext()" }, { @@ -64311,7 +64311,7 @@ "source_location": "L14406", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_resettextcontent", - "community": 312, + "community": 28, "norm_label": "resettextcontent()" }, { @@ -64411,7 +64411,7 @@ "source_location": "L14507", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_hideinstance", - "community": 312, + "community": 28, "norm_label": "hideinstance()" }, { @@ -64421,7 +64421,7 @@ "source_location": "L14519", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_hidetextinstance", - "community": 312, + "community": 28, "norm_label": "hidetextinstance()" }, { @@ -64431,7 +64431,7 @@ "source_location": "L14522", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_unhideinstance", - "community": 120, + "community": 28, "norm_label": "unhideinstance()" }, { @@ -64441,7 +64441,7 @@ "source_location": "L14528", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_unhidetextinstance", - "community": 312, + "community": 28, "norm_label": "unhidetextinstance()" }, { @@ -64591,7 +64591,7 @@ "source_location": "L14662", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_hydratetextinstance", - "community": 28, + "community": 186, "norm_label": "hydratetextinstance()" }, { @@ -64621,7 +64621,7 @@ "source_location": "L14703", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_getparentsuspenseinstance", - "community": 28, + "community": 152, "norm_label": "getparentsuspenseinstance()" }, { @@ -64661,7 +64661,7 @@ "source_location": "L14741", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_didnotmatchhydratedcontainertextinstance", - "community": 28, + "community": 186, "norm_label": "didnotmatchhydratedcontainertextinstance()" }, { @@ -64671,7 +64671,7 @@ "source_location": "L14745", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_didnotmatchhydratedtextinstance", - "community": 28, + "community": 186, "norm_label": "didnotmatchhydratedtextinstance()" }, { @@ -64781,7 +64781,7 @@ "source_location": "L14830", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_prepareportalmount", - "community": 154, + "community": 570, "norm_label": "prepareportalmount()" }, { @@ -64791,7 +64791,7 @@ "source_location": "L14841", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_detachdeletedinstance", - "community": 312, + "community": 28, "norm_label": "detachdeletedinstance()" }, { @@ -64841,7 +64841,7 @@ "source_location": "L14869", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_getclosestinstancefromnode", - "community": 28, + "community": 152, "norm_label": "getclosestinstancefromnode()" }, { @@ -64851,7 +64851,7 @@ "source_location": "L14952", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_getinstancefromnode", - "community": 28, + "community": 152, "norm_label": "getinstancefromnode()" }, { @@ -64871,7 +64871,7 @@ "source_location": "L14981", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_getfibercurrentpropsfromnode", - "community": 120, + "community": 168, "norm_label": "getfibercurrentpropsfromnode()" }, { @@ -64981,7 +64981,7 @@ "source_location": "L15221", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_pushtoplevelcontextobject", - "community": 219, + "community": 55, "norm_label": "pushtoplevelcontextobject()" }, { @@ -64991,7 +64991,7 @@ "source_location": "L15232", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_processchildcontext", - "community": 154, + "community": 186, "norm_label": "processchildcontext()" }, { @@ -65011,7 +65011,7 @@ "source_location": "L15285", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_invalidatecontextprovider", - "community": 154, + "community": 186, "norm_label": "invalidatecontextprovider()" }, { @@ -65061,7 +65061,7 @@ "source_location": "L15378", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_flushsynccallbacks", - "community": 105, + "community": 179, "norm_label": "flushsynccallbacks()" }, { @@ -65091,7 +65091,7 @@ "source_location": "L15441", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_gettreeid", - "community": 272, + "community": 120, "norm_label": "gettreeid()" }, { @@ -65131,7 +65131,7 @@ "source_location": "L15539", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_getbitlength", - "community": 272, + "community": 55, "norm_label": "getbitlength()" }, { @@ -65141,7 +65141,7 @@ "source_location": "L15543", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_getleadingbit", - "community": 272, + "community": 55, "norm_label": "getleadingbit()" }, { @@ -65331,7 +65331,7 @@ "source_location": "L15930", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_preparetohydratehosttextinstance", - "community": 28, + "community": 186, "norm_label": "preparetohydratehosttextinstance()" }, { @@ -65481,7 +65481,7 @@ "source_location": "L16480", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_warnonfunctiontype", - "community": 154, + "community": 312, "norm_label": "warnonfunctiontype()" }, { @@ -65531,7 +65531,7 @@ "source_location": "L17484", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_resetcontextdependencies", - "community": 154, + "community": 105, "norm_label": "resetcontextdependencies()" }, { @@ -65541,7 +65541,7 @@ "source_location": "L17495", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_enterdisallowedcontextreadindev", - "community": 55, + "community": 28, "norm_label": "enterdisallowedcontextreadindev()" }, { @@ -65551,7 +65551,7 @@ "source_location": "L17500", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_exitdisallowedcontextreadindev", - "community": 55, + "community": 28, "norm_label": "exitdisallowedcontextreadindev()" }, { @@ -65561,7 +65561,7 @@ "source_location": "L17505", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_pushprovider", - "community": 168, + "community": 55, "norm_label": "pushprovider()" }, { @@ -65581,7 +65581,7 @@ "source_location": "L17529", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_schedulecontextworkonparentpath", - "community": 105, + "community": 154, "norm_label": "schedulecontextworkonparentpath()" }, { @@ -65761,7 +65761,7 @@ "source_location": "L18104", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_getstatefromupdate", - "community": 55, + "community": 28, "norm_label": "getstatefromupdate()" }, { @@ -65831,7 +65831,7 @@ "source_location": "L18435", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_pushhostcontainer", - "community": 219, + "community": 55, "norm_label": "pushhostcontainer()" }, { @@ -65861,7 +65861,7 @@ "source_location": "L18465", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_pushhostcontext", - "community": 219, + "community": 186, "norm_label": "pushhostcontext()" }, { @@ -65941,7 +65941,7 @@ "source_location": "L18529", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_shouldcapturesuspense", - "community": 154, + "community": 28, "norm_label": "shouldcapturesuspense()" }, { @@ -65991,7 +65991,7 @@ "source_location": "L18706", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_updatehooktypesdev", - "community": 154, + "community": 570, "norm_label": "updatehooktypesdev()" }, { @@ -66011,7 +66011,7 @@ "source_location": "L18730", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_warnonhookmismatchindev", - "community": 154, + "community": 570, "norm_label": "warnonhookmismatchindev()" }, { @@ -66071,7 +66071,7 @@ "source_location": "L18941", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_resethooksafterthrow", - "community": 154, + "community": 105, "norm_label": "resethooksafterthrow()" }, { @@ -66121,7 +66121,7 @@ "source_location": "L19078", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_mountreducer", - "community": 55, + "community": 272, "norm_label": "mountreducer()" }, { @@ -66541,7 +66541,7 @@ "source_location": "L19923", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_mountid", - "community": 272, + "community": 120, "norm_label": "mountid()" }, { @@ -66631,7 +66631,7 @@ "source_location": "L21001", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_marknestedupdatescheduled", - "community": 105, + "community": 179, "norm_label": "marknestedupdatescheduled()" }, { @@ -66671,7 +66671,7 @@ "source_location": "L21025", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_recordcommittime", - "community": 105, + "community": 179, "norm_label": "recordcommittime()" }, { @@ -66761,7 +66761,7 @@ "source_location": "L21145", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_resolvedefaultprops", - "community": 312, + "community": 55, "norm_label": "resolvedefaultprops()" }, { @@ -66791,7 +66791,7 @@ "source_location": "L21375", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_checkclassinstance", - "community": 570, + "community": 55, "norm_label": "checkclassinstance()" }, { @@ -66821,7 +66821,7 @@ "source_location": "L21628", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_callcomponentwillmount", - "community": 154, + "community": 55, "norm_label": "callcomponentwillmount()" }, { @@ -66871,7 +66871,7 @@ "source_location": "L21981", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_createcapturedvalueatfiber", - "community": 28, + "community": 55, "norm_label": "createcapturedvalueatfiber()" }, { @@ -66931,7 +66931,7 @@ "source_location": "L22159", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_attachpinglistener", - "community": 154, + "community": 105, "norm_label": "attachpinglistener()" }, { @@ -66961,7 +66961,7 @@ "source_location": "L22247", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_getnearestsuspenseboundarytocapture", - "community": 154, + "community": 28, "norm_label": "getnearestsuspenseboundarytocapture()" }, { @@ -67131,7 +67131,7 @@ "source_location": "L23179", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_pushhostrootcontext", - "community": 219, + "community": 55, "norm_label": "pushhostrootcontext()" }, { @@ -67251,7 +67251,7 @@ "source_location": "L23657", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_getremainingworkinprimarytree", - "community": 105, + "community": 219, "norm_label": "getremainingworkinprimarytree()" }, { @@ -67301,7 +67301,7 @@ "source_location": "L23840", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_updateworkinprogressoffscreenfiber", - "community": 219, + "community": 55, "norm_label": "updateworkinprogressoffscreenfiber()" }, { @@ -67311,7 +67311,7 @@ "source_location": "L23846", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_updatesuspenseprimarychildren", - "community": 219, + "community": 55, "norm_label": "updatesuspenseprimarychildren()" }, { @@ -67321,7 +67321,7 @@ "source_location": "L23877", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_updatesuspensefallbackchildren", - "community": 219, + "community": 55, "norm_label": "updatesuspensefallbackchildren()" }, { @@ -67371,7 +67371,7 @@ "source_location": "L24161", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_schedulesuspenseworkonfiber", - "community": 105, + "community": 154, "norm_label": "schedulesuspenseworkonfiber()" }, { @@ -67381,7 +67381,7 @@ "source_location": "L24172", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_propagatesuspensecontextchange", - "community": 105, + "community": 154, "norm_label": "propagatesuspensecontextchange()" }, { @@ -67541,7 +67541,7 @@ "source_location": "L24731", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_attemptearlybailoutifnoscheduledupdate", - "community": 219, + "community": 55, "norm_label": "attemptearlybailoutifnoscheduledupdate()" }, { @@ -67801,7 +67801,7 @@ "source_location": "L26944", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_hideorunhideallchildren", - "community": 312, + "community": 28, "norm_label": "hideorunhideallchildren()" }, { @@ -67831,7 +67831,7 @@ "source_location": "L27089", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_detachfiberaftereffects", - "community": 312, + "community": 28, "norm_label": "detachfiberaftereffects()" }, { @@ -67841,7 +67841,7 @@ "source_location": "L27151", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_gethostparentfiber", - "community": 312, + "community": 28, "norm_label": "gethostparentfiber()" }, { @@ -67851,7 +67851,7 @@ "source_location": "L27165", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_ishostparent", - "community": 312, + "community": 28, "norm_label": "ishostparent()" }, { @@ -67861,7 +67861,7 @@ "source_location": "L27169", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_gethostsibling", - "community": 312, + "community": 28, "norm_label": "gethostsibling()" }, { @@ -67871,7 +67871,7 @@ "source_location": "L27217", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_commitplacement", - "community": 312, + "community": 28, "norm_label": "commitplacement()" }, { @@ -67951,7 +67951,7 @@ "source_location": "L27595", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_attachsuspenseretrylisteners", - "community": 154, + "community": 105, "norm_label": "attachsuspenseretrylisteners()" }, { @@ -67991,7 +67991,7 @@ "source_location": "L27976", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_commitreconciliationeffects", - "community": 312, + "community": 28, "norm_label": "commitreconciliationeffects()" }, { @@ -68071,7 +68071,7 @@ "source_location": "L28257", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_commitpassivemounteffects", - "community": 312, + "community": 179, "norm_label": "commitpassivemounteffects()" }, { @@ -68081,7 +68081,7 @@ "source_location": "L28262", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_commitpassivemounteffects_begin", - "community": 312, + "community": 179, "norm_label": "commitpassivemounteffects_begin()" }, { @@ -68111,7 +68111,7 @@ "source_location": "L28332", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_commitpassiveunmounteffects", - "community": 312, + "community": 179, "norm_label": "commitpassiveunmounteffects()" }, { @@ -68161,7 +68161,7 @@ "source_location": "L28455", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_commitpassiveunmounteffectsinsideofdeletedtree_complete", - "community": 312, + "community": 28, "norm_label": "commitpassiveunmounteffectsinsideofdeletedtree_complete()" }, { @@ -68221,7 +68221,7 @@ "source_location": "L28624", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_oncommitroot_1", - "community": 105, + "community": 179, "norm_label": "oncommitroot$1()" }, { @@ -68441,7 +68441,7 @@ "source_location": "L29545", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_discreteupdates", - "community": 105, + "community": 179, "norm_label": "discreteupdates()" }, { @@ -68451,7 +68451,7 @@ "source_location": "L29565", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_flushsync", - "community": 105, + "community": 179, "norm_label": "flushsync()" }, { @@ -68461,7 +68461,7 @@ "source_location": "L29598", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_isalreadyrendering", - "community": 105, + "community": 179, "norm_label": "isalreadyrendering()" }, { @@ -68501,7 +68501,7 @@ "source_location": "L29656", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_handleerror", - "community": 154, + "community": 105, "norm_label": "handleerror()" }, { @@ -68511,7 +68511,7 @@ "source_location": "L29727", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_pushdispatcher", - "community": 154, + "community": 105, "norm_label": "pushdispatcher()" }, { @@ -68521,7 +68521,7 @@ "source_location": "L29741", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_popdispatcher", - "community": 154, + "community": 105, "norm_label": "popdispatcher()" }, { @@ -68591,7 +68591,7 @@ "source_location": "L29793", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_renderrootsync", - "community": 154, + "community": 105, "norm_label": "renderrootsync()" }, { @@ -68601,7 +68601,7 @@ "source_location": "L29856", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_workloopsync", - "community": 154, + "community": 105, "norm_label": "workloopsync()" }, { @@ -68611,7 +68611,7 @@ "source_location": "L29863", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_renderrootconcurrent", - "community": 154, + "community": 105, "norm_label": "renderrootconcurrent()" }, { @@ -68621,7 +68621,7 @@ "source_location": "L29933", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_workloopconcurrent", - "community": 154, + "community": 105, "norm_label": "workloopconcurrent()" }, { @@ -68651,7 +68651,7 @@ "source_location": "L30066", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_commitroot", - "community": 105, + "community": 179, "norm_label": "commitroot()" }, { @@ -68661,7 +68661,7 @@ "source_location": "L30084", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_commitrootimpl", - "community": 105, + "community": 179, "norm_label": "commitrootimpl()" }, { @@ -68671,7 +68671,7 @@ "source_location": "L30361", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_flushpassiveeffects", - "community": 105, + "community": 179, "norm_label": "flushpassiveeffects()" }, { @@ -68681,7 +68681,7 @@ "source_location": "L30386", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_enqueuependingpassiveprofilereffect", - "community": 105, + "community": 179, "norm_label": "enqueuependingpassiveprofilereffect()" }, { @@ -68691,7 +68691,7 @@ "source_location": "L30400", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_flushpassiveeffectsimpl", - "community": 105, + "community": 179, "norm_label": "flushpassiveeffectsimpl()" }, { @@ -68811,7 +68811,7 @@ "source_location": "L30698", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_flushrenderphasestrictmodewarningsindev", - "community": 105, + "community": 179, "norm_label": "flushrenderphasestrictmodewarningsindev()" }, { @@ -68841,7 +68841,7 @@ "source_location": "L30758", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_warnaboutupdateonnotyetmountedfiberindev", - "community": 154, + "community": 312, "norm_label": "warnaboutupdateonnotyetmountedfiberindev()" }, { @@ -68861,7 +68861,7 @@ "source_location": "L30906", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_restorependingupdaters", - "community": 154, + "community": 105, "norm_label": "restorependingupdaters()" }, { @@ -68871,7 +68871,7 @@ "source_location": "L30920", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_schedulecallback_1", - "community": 105, + "community": 179, "norm_label": "schedulecallback$1()" }, { @@ -69251,7 +69251,7 @@ "source_location": "L32125", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_findhostinstancewithwarning", - "community": 154, + "community": 312, "norm_label": "findhostinstancewithwarning()" }, { @@ -69451,7 +69451,7 @@ "source_location": "L32787", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_schedulehydration", - "community": 28, + "community": 105, "norm_label": "schedulehydration()" }, { @@ -69551,7 +69551,7 @@ "source_location": "L33015", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_finddomnode", - "community": 154, + "community": 312, "norm_label": "finddomnode()" }, { @@ -69641,7 +69641,7 @@ "source_location": "L33225", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_react_flushsync_1", - "community": 105, + "community": 179, "norm_label": "flushsync$1()" }, { @@ -71501,7 +71501,7 @@ "source_location": "L12493", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_useconstant", - "community": 55, + "community": 32, "norm_label": "useconstant()" }, { @@ -71761,7 +71761,7 @@ "source_location": "L13194", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_isrefobject2", - "community": 387, + "community": 402, "norm_label": "isrefobject2()" }, { @@ -71781,7 +71781,7 @@ "source_location": "L13254", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_usevisualelement", - "community": 387, + "community": 402, "norm_label": "usevisualelement()" }, { @@ -71791,7 +71791,7 @@ "source_location": "L13312", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_createprojectionnode", - "community": 387, + "community": 402, "norm_label": "createprojectionnode()" }, { @@ -71801,7 +71801,7 @@ "source_location": "L13333", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_getclosestprojectingnode", - "community": 387, + "community": 402, "norm_label": "getclosestprojectingnode()" }, { @@ -72211,7 +72211,7 @@ "source_location": "L14288", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_duration", - "community": 348, + "community": 387, "norm_label": "duration()" }, { @@ -72501,7 +72501,7 @@ "source_location": "L14743", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_notify", - "community": 281, + "community": 387, "norm_label": "notify()" }, { @@ -72611,7 +72611,7 @@ "source_location": "L14919", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_setwithvelocity", - "community": 348, + "community": 387, "norm_label": "setwithvelocity()" }, { @@ -72661,7 +72661,7 @@ "source_location": "L15003", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_stop", - "community": 348, + "community": 387, "norm_label": "stop()" }, { @@ -72681,7 +72681,7 @@ "source_location": "L15020", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_clearanimation", - "community": 348, + "community": 387, "norm_label": "clearanimation()" }, { @@ -73891,7 +73891,7 @@ "source_location": "L17837", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_calcrelativeaxisconstraints", - "community": 387, + "community": 402, "norm_label": "calcrelativeaxisconstraints()" }, { @@ -73901,7 +73901,7 @@ "source_location": "L17843", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_calcrelativeconstraints", - "community": 387, + "community": 402, "norm_label": "calcrelativeconstraints()" }, { @@ -73911,7 +73911,7 @@ "source_location": "L17849", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_calcviewportaxisconstraints", - "community": 387, + "community": 402, "norm_label": "calcviewportaxisconstraints()" }, { @@ -73921,7 +73921,7 @@ "source_location": "L17857", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_calcviewportconstraints", - "community": 387, + "community": 402, "norm_label": "calcviewportconstraints()" }, { @@ -73951,7 +73951,7 @@ "source_location": "L17885", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_resolvedragelastic", - "community": 387, + "community": 402, "norm_label": "resolvedragelastic()" }, { @@ -73961,7 +73961,7 @@ "source_location": "L17896", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_resolveaxiselastic", - "community": 387, + "community": 402, "norm_label": "resolveaxiselastic()" }, { @@ -73971,7 +73971,7 @@ "source_location": "L17902", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_resolvepointelastic", - "community": 387, + "community": 402, "norm_label": "resolvepointelastic()" }, { @@ -73981,7 +73981,7 @@ "source_location": "L17926", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_eachaxis", - "community": 387, + "community": 402, "norm_label": "eachaxis()" }, { @@ -73991,7 +73991,7 @@ "source_location": "L17935", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_convertboundingboxtobox", - "community": 383, + "community": 402, "norm_label": "convertboundingboxtobox()" }, { @@ -74001,7 +74001,7 @@ "source_location": "L17941", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_convertboxtoboundingbox", - "community": 387, + "community": 402, "norm_label": "convertboxtoboundingbox()" }, { @@ -74121,7 +74121,7 @@ "source_location": "L18036", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_translateaxis", - "community": 383, + "community": 402, "norm_label": "translateaxis()" }, { @@ -74161,7 +74161,7 @@ "source_location": "L18053", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_measurepagebox", - "community": 383, + "community": 402, "norm_label": "measurepagebox()" }, { @@ -74181,7 +74181,7 @@ "source_location": "L18203", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_resolveconstraints", - "community": 387, + "community": 402, "norm_label": "resolveconstraints()" }, { @@ -74191,7 +74191,7 @@ "source_location": "L18228", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_resolverefconstraints", - "community": 387, + "community": 402, "norm_label": "resolverefconstraints()" }, { @@ -74221,7 +74221,7 @@ "source_location": "L18280", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_stopanimation", - "community": 387, + "community": 402, "norm_label": "stopanimation()" }, { @@ -74231,7 +74231,7 @@ "source_location": "L18283", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_pauseanimation", - "community": 387, + "community": 402, "norm_label": "pauseanimation()" }, { @@ -74261,7 +74261,7 @@ "source_location": "L18305", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_snaptocursor", - "community": 387, + "community": 402, "norm_label": "snaptocursor()" }, { @@ -74271,7 +74271,7 @@ "source_location": "L18323", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_scalepositionwithinconstraints", - "community": 387, + "community": 402, "norm_label": "scalepositionwithinconstraints()" }, { @@ -74391,7 +74391,7 @@ "source_location": "L18666", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_animatesinglevalue", - "community": 387, + "community": 383, "norm_label": "animatesinglevalue()" }, { @@ -74781,7 +74781,7 @@ "source_location": "L19973", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_resettransformstyle", - "community": 281, + "community": 387, "norm_label": "resettransformstyle()" }, { @@ -75021,7 +75021,7 @@ "source_location": "L20404", "_origin": "ast", "id": "docs_design_thingtime_directions_ds_thingtime_bundle_constructor_notifyupdate", - "community": 281, + "community": 387, "norm_label": ".notifyupdate()" }, { @@ -76181,7 +76181,7 @@ "source_location": "L37", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_getiteratorfn", - "community": 606, + "community": 397, "norm_label": "getiteratorfn()" }, { @@ -76191,7 +76191,7 @@ "source_location": "L93", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_setextrastackframe", - "community": 606, + "community": 397, "norm_label": "setextrastackframe()" }, { @@ -76211,7 +76211,7 @@ "source_location": "L166", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_error", - "community": 110, + "community": 397, "norm_label": "error()" }, { @@ -76231,7 +76231,7 @@ "source_location": "L205", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_warnnoop", - "community": 110, + "community": 397, "norm_label": "warnnoop()" }, { @@ -76301,7 +76301,7 @@ "source_location": "L431", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_isarray", - "community": 606, + "community": 397, "norm_label": "isarray()" }, { @@ -76311,7 +76311,7 @@ "source_location": "L445", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_typename", - "community": 110, + "community": 397, "norm_label": "typename()" }, { @@ -76321,7 +76321,7 @@ "source_location": "L455", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_willcoercionthrow", - "community": 110, + "community": 397, "norm_label": "willcoercionthrow()" }, { @@ -76331,7 +76331,7 @@ "source_location": "L466", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_teststringcoercion", - "community": 110, + "community": 397, "norm_label": "teststringcoercion()" }, { @@ -76341,7 +76341,7 @@ "source_location": "L492", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_checkkeystringcoercion", - "community": 110, + "community": 397, "norm_label": "checkkeystringcoercion()" }, { @@ -76381,7 +76381,7 @@ "source_location": "L616", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_hasvalidref", - "community": 110, + "community": 397, "norm_label": "hasvalidref()" }, { @@ -76391,7 +76391,7 @@ "source_location": "L630", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_hasvalidkey", - "community": 110, + "community": 397, "norm_label": "hasvalidkey()" }, { @@ -76401,7 +76401,7 @@ "source_location": "L644", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_definekeypropwarninggetter", - "community": 110, + "community": 397, "norm_label": "definekeypropwarninggetter()" }, { @@ -76411,7 +76411,7 @@ "source_location": "L662", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_definerefpropwarninggetter", - "community": 110, + "community": 397, "norm_label": "definerefpropwarninggetter()" }, { @@ -76421,7 +76421,7 @@ "source_location": "L680", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_warnifstringrefcannotbeautoconverted", - "community": 110, + "community": 397, "norm_label": "warnifstringrefcannotbeautoconverted()" }, { @@ -76431,7 +76431,7 @@ "source_location": "L773", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_createelement", - "community": 110, + "community": 397, "norm_label": "createelement()" }, { @@ -76441,7 +76441,7 @@ "source_location": "L858", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_cloneandreplacekey", - "community": 606, + "community": 397, "norm_label": "cloneandreplacekey()" }, { @@ -76451,7 +76451,7 @@ "source_location": "L867", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_cloneelement", - "community": 110, + "community": 397, "norm_label": "cloneelement()" }, { @@ -76461,7 +76461,7 @@ "source_location": "L947", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_isvalidelement", - "community": 606, + "community": 397, "norm_label": "isvalidelement()" }, { @@ -76471,7 +76471,7 @@ "source_location": "L960", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_escape", - "community": 606, + "community": 397, "norm_label": "escape()" }, { @@ -76481,7 +76481,7 @@ "source_location": "L980", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_escapeuserprovidedkey", - "community": 606, + "community": 397, "norm_label": "escapeuserprovidedkey()" }, { @@ -76491,7 +76491,7 @@ "source_location": "L992", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_getelementkey", - "community": 606, + "community": 397, "norm_label": "getelementkey()" }, { @@ -76501,7 +76501,7 @@ "source_location": "L1008", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_mapintoarray", - "community": 606, + "community": 397, "norm_label": "mapintoarray()" }, { @@ -76551,7 +76551,7 @@ "source_location": "L1217", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_onlychild", - "community": 606, + "community": 397, "norm_label": "onlychild()" }, { @@ -76571,7 +76571,7 @@ "source_location": "L1344", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_lazyinitializer", - "community": 110, + "community": 397, "norm_label": "lazyinitializer()" }, { @@ -76581,7 +76581,7 @@ "source_location": "L1401", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_lazy", - "community": 110, + "community": 397, "norm_label": "lazy()" }, { @@ -76591,7 +76591,7 @@ "source_location": "L1457", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_forwardref", - "community": 110, + "community": 397, "norm_label": "forwardref()" }, { @@ -76601,7 +76601,7 @@ "source_location": "L1514", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_isvalidelementtype", - "community": 606, + "community": 397, "norm_label": "isvalidelementtype()" }, { @@ -76611,7 +76611,7 @@ "source_location": "L1537", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_memo", - "community": 606, + "community": 397, "norm_label": "memo()" }, { @@ -76781,7 +76781,7 @@ "source_location": "L1682", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_disabledlog", - "community": 606, + "community": 20, "norm_label": "disabledlog()" }, { @@ -76791,7 +76791,7 @@ "source_location": "L1685", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_disablelogs", - "community": 606, + "community": 20, "norm_label": "disablelogs()" }, { @@ -76801,7 +76801,7 @@ "source_location": "L1719", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_reenablelogs", - "community": 606, + "community": 20, "norm_label": "reenablelogs()" }, { @@ -76811,7 +76811,7 @@ "source_location": "L1765", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_describebuiltincomponentframe", - "community": 606, + "community": 20, "norm_label": "describebuiltincomponentframe()" }, { @@ -76821,7 +76821,7 @@ "source_location": "L1789", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_describenativecomponentframe", - "community": 606, + "community": 20, "norm_label": "describenativecomponentframe()" }, { @@ -76831,7 +76831,7 @@ "source_location": "L1948", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_describefunctioncomponentframe", - "community": 606, + "community": 20, "norm_label": "describefunctioncomponentframe()" }, { @@ -76841,7 +76841,7 @@ "source_location": "L1954", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_shouldconstruct", - "community": 606, + "community": 20, "norm_label": "shouldconstruct()" }, { @@ -76851,7 +76851,7 @@ "source_location": "L1959", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_describeunknownelementtypeframeindev", - "community": 606, + "community": 20, "norm_label": "describeunknownelementtypeframeindev()" }, { @@ -76861,7 +76861,7 @@ "source_location": "L2012", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_setcurrentlyvalidatingelement", - "community": 606, + "community": 20, "norm_label": "setcurrentlyvalidatingelement()" }, { @@ -76881,7 +76881,7 @@ "source_location": "L2073", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_setcurrentlyvalidatingelement_1", - "community": 606, + "community": 397, "norm_label": "setcurrentlyvalidatingelement$1()" }, { @@ -76891,7 +76891,7 @@ "source_location": "L2091", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_getdeclarationerroraddendum", - "community": 176, + "community": 397, "norm_label": "getdeclarationerroraddendum()" }, { @@ -76901,7 +76901,7 @@ "source_location": "L2103", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_getsourceinfoerroraddendum", - "community": 606, + "community": 20, "norm_label": "getsourceinfoerroraddendum()" }, { @@ -76911,7 +76911,7 @@ "source_location": "L2113", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_getsourceinfoerroraddendumforprops", - "community": 606, + "community": 20, "norm_label": "getsourceinfoerroraddendumforprops()" }, { @@ -76921,7 +76921,7 @@ "source_location": "L2129", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_getcurrentcomponenterrorinfo", - "community": 606, + "community": 397, "norm_label": "getcurrentcomponenterrorinfo()" }, { @@ -76931,7 +76931,7 @@ "source_location": "L2155", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_validateexplicitkey", - "community": 606, + "community": 397, "norm_label": "validateexplicitkey()" }, { @@ -76941,7 +76941,7 @@ "source_location": "L2197", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_validatechildkeys", - "community": 606, + "community": 397, "norm_label": "validatechildkeys()" }, { @@ -76951,7 +76951,7 @@ "source_location": "L2242", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_validateproptypes", - "community": 606, + "community": 397, "norm_label": "validateproptypes()" }, { @@ -76961,7 +76961,7 @@ "source_location": "L2285", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_validatefragmentprops", - "community": 606, + "community": 397, "norm_label": "validatefragmentprops()" }, { @@ -76971,7 +76971,7 @@ "source_location": "L2311", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_createelementwithvalidation", - "community": 606, + "community": 397, "norm_label": "createelementwithvalidation()" }, { @@ -76991,7 +76991,7 @@ "source_location": "L2402", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_cloneelementwithvalidation", - "community": 606, + "community": 397, "norm_label": "cloneelementwithvalidation()" }, { @@ -77011,7 +77011,7 @@ "source_location": "L2422", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_peek", - "community": 182, + "community": 431, "norm_label": "peek()" }, { @@ -77031,7 +77031,7 @@ "source_location": "L2441", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_siftup", - "community": 251, + "community": 182, "norm_label": "siftup()" }, { @@ -77041,7 +77041,7 @@ "source_location": "L2460", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_siftdown", - "community": 251, + "community": 182, "norm_label": "siftdown()" }, { @@ -77051,7 +77051,7 @@ "source_location": "L2492", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_compare", - "community": 251, + "community": 182, "norm_label": "compare()" }, { @@ -77061,7 +77061,7 @@ "source_location": "L2505", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_marktaskerrored", - "community": 182, + "community": 431, "norm_label": "marktaskerrored()" }, { @@ -77071,7 +77071,7 @@ "source_location": "L2557", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_advancetimers", - "community": 182, + "community": 431, "norm_label": "advancetimers()" }, { @@ -77081,7 +77081,7 @@ "source_location": "L2579", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_handletimeout", - "community": 182, + "community": 431, "norm_label": "handletimeout()" }, { @@ -77091,7 +77091,7 @@ "source_location": "L2597", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_flushwork", - "community": 182, + "community": 431, "norm_label": "flushwork()" }, { @@ -77101,7 +77101,7 @@ "source_location": "L2635", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_workloop", - "community": 182, + "community": 431, "norm_label": "workloop()" }, { @@ -77111,7 +77111,7 @@ "source_location": "L2687", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_unstable_runwithpriority", - "community": 431, + "community": 314, "norm_label": "unstable_runwithpriority()" }, { @@ -77121,7 +77121,7 @@ "source_location": "L2710", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_unstable_next", - "community": 431, + "community": 314, "norm_label": "unstable_next()" }, { @@ -77141,7 +77141,7 @@ "source_location": "L2752", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_unstable_schedulecallback", - "community": 182, + "community": 431, "norm_label": "unstable_schedulecallback()" }, { @@ -77161,7 +77161,7 @@ "source_location": "L2838", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_unstable_continueexecution", - "community": 182, + "community": 431, "norm_label": "unstable_continueexecution()" }, { @@ -77171,7 +77171,7 @@ "source_location": "L2846", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_unstable_getfirstcallbacknode", - "community": 182, + "community": 431, "norm_label": "unstable_getfirstcallbacknode()" }, { @@ -77201,7 +77201,7 @@ "source_location": "L2872", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_shouldyieldtohost", - "community": 182, + "community": 431, "norm_label": "shouldyieldtohost()" }, { @@ -77231,7 +77231,7 @@ "source_location": "L2970", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_requesthostcallback", - "community": 182, + "community": 431, "norm_label": "requesthostcallback()" }, { @@ -77241,7 +77241,7 @@ "source_location": "L2979", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_requesthosttimeout", - "community": 182, + "community": 431, "norm_label": "requesthosttimeout()" }, { @@ -77251,7 +77251,7 @@ "source_location": "L2985", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_cancelhosttimeout", - "community": 182, + "community": 431, "norm_label": "cancelhosttimeout()" }, { @@ -77281,7 +77281,7 @@ "source_location": "L3065", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_enqueuetask", - "community": 110, + "community": 397, "norm_label": "enqueuetask()" }, { @@ -77291,7 +77291,7 @@ "source_location": "L3102", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_act", - "community": 110, + "community": 397, "norm_label": "act()" }, { @@ -77301,7 +77301,7 @@ "source_location": "L3229", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_popactscope", - "community": 110, + "community": 397, "norm_label": "popactscope()" }, { @@ -77311,7 +77311,7 @@ "source_location": "L3239", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_recursivelyflushasyncactwork", - "community": 110, + "community": 397, "norm_label": "recursivelyflushasyncactwork()" }, { @@ -77321,7 +77321,7 @@ "source_location": "L3267", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_flushactqueue", - "community": 110, + "community": 397, "norm_label": "flushactqueue()" }, { @@ -77361,7 +77361,7 @@ "source_location": "L3593", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_checkattributestringcoercion", - "community": 110, + "community": 397, "norm_label": "checkattributestringcoercion()" }, { @@ -77371,7 +77371,7 @@ "source_location": "L3611", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_checkpropstringcoercion", - "community": 110, + "community": 397, "norm_label": "checkpropstringcoercion()" }, { @@ -77381,7 +77381,7 @@ "source_location": "L3620", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_checkcsspropertystringcoercion", - "community": 110, + "community": 397, "norm_label": "checkcsspropertystringcoercion()" }, { @@ -77391,7 +77391,7 @@ "source_location": "L3629", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_checkhtmlstringcoercion", - "community": 110, + "community": 397, "norm_label": "checkhtmlstringcoercion()" }, { @@ -77401,7 +77401,7 @@ "source_location": "L3638", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_checkformfieldvaluestringcoercion", - "community": 110, + "community": 397, "norm_label": "checkformfieldvaluestringcoercion()" }, { @@ -77511,7 +77511,7 @@ "source_location": "L4511", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_describeclasscomponentframe", - "community": 606, + "community": 20, "norm_label": "describeclasscomponentframe()" }, { @@ -77521,7 +77521,7 @@ "source_location": "L4577", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_describefiber", - "community": 606, + "community": 20, "norm_label": "describefiber()" }, { @@ -77531,7 +77531,7 @@ "source_location": "L4610", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_getstackbyfiberindevandprod", - "community": 606, + "community": 20, "norm_label": "getstackbyfiberindevandprod()" }, { @@ -77541,7 +77541,7 @@ "source_location": "L4726", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_getwrappedname_1", - "community": 110, + "community": 133, "norm_label": "getwrappedname$1()" }, { @@ -77551,7 +77551,7 @@ "source_location": "L4732", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_getcontextname_1", - "community": 110, + "community": 133, "norm_label": "getcontextname$1()" }, { @@ -77561,7 +77561,7 @@ "source_location": "L4736", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_getcomponentnamefromfiber", - "community": 110, + "community": 133, "norm_label": "getcomponentnamefromfiber()" }, { @@ -77571,7 +77571,7 @@ "source_location": "L4829", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_getcurrentfiberownernameindevornull", - "community": 176, + "community": 397, "norm_label": "getcurrentfiberownernameindevornull()" }, { @@ -77581,7 +77581,7 @@ "source_location": "L4845", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_getcurrentfiberstackindev", - "community": 606, + "community": 20, "norm_label": "getcurrentfiberstackindev()" }, { @@ -77651,7 +77651,7 @@ "source_location": "L4920", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_checkcontrolledvalueprops", - "community": 176, + "community": 397, "norm_label": "checkcontrolledvalueprops()" }, { @@ -77661,7 +77661,7 @@ "source_location": "L4932", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_ischeckable", - "community": 20, + "community": 176, "norm_label": "ischeckable()" }, { @@ -77671,7 +77671,7 @@ "source_location": "L4938", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_gettracker", - "community": 20, + "community": 176, "norm_label": "gettracker()" }, { @@ -77681,7 +77681,7 @@ "source_location": "L4942", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_detachtracker", - "community": 20, + "community": 176, "norm_label": "detachtracker()" }, { @@ -77691,7 +77691,7 @@ "source_location": "L4946", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_getvaluefromnode", - "community": 20, + "community": 176, "norm_label": "getvaluefromnode()" }, { @@ -77701,7 +77701,7 @@ "source_location": "L4962", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_trackvalueonnode", - "community": 20, + "community": 176, "norm_label": "trackvalueonnode()" }, { @@ -77711,7 +77711,7 @@ "source_location": "L5021", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_track", - "community": 20, + "community": 176, "norm_label": "track()" }, { @@ -77721,7 +77721,7 @@ "source_location": "L5029", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_updatevalueifchanged", - "community": 20, + "community": 176, "norm_label": "updatevalueifchanged()" }, { @@ -77851,7 +77851,7 @@ "source_location": "L5416", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_checkselectproptypes", - "community": 176, + "community": 397, "norm_label": "checkselectproptypes()" }, { @@ -77881,7 +77881,7 @@ "source_location": "L5511", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_initwrapperstate_1", - "community": 176, + "community": 397, "norm_label": "initwrapperstate$1()" }, { @@ -77931,7 +77931,7 @@ "source_location": "L5606", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_initwrapperstate_2", - "community": 176, + "community": 397, "norm_label": "initwrapperstate$2()" }, { @@ -78091,7 +78091,7 @@ "source_location": "L6880", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_validateproperty", - "community": 110, + "community": 397, "norm_label": "validateproperty()" }, { @@ -78101,7 +78101,7 @@ "source_location": "L6930", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_warninvalidariaprops", - "community": 110, + "community": 397, "norm_label": "warninvalidariaprops()" }, { @@ -78111,7 +78111,7 @@ "source_location": "L6954", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_validateproperties", - "community": 110, + "community": 397, "norm_label": "validateproperties()" }, { @@ -78121,7 +78121,7 @@ "source_location": "L6963", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_validateproperties_1", - "community": 110, + "community": 397, "norm_label": "validateproperties$1()" }, { @@ -78291,7 +78291,7 @@ "source_location": "L7410", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_invokeguardedcallbackprod", - "community": 110, + "community": 397, "norm_label": "invokeguardedcallbackprod()" }, { @@ -78911,7 +78911,7 @@ "source_location": "L8992", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_gethighestprioritypendinglanes", - "community": 94, + "community": 133, "norm_label": "gethighestprioritypendinglanes()" }, { @@ -79021,7 +79021,7 @@ "source_location": "L9050", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_claimnextretrylane", - "community": 20, + "community": 133, "norm_label": "claimnextretrylane()" }, { @@ -79131,7 +79131,7 @@ "source_location": "L9099", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_higherprioritylane", - "community": 20, + "community": 133, "norm_label": "higherprioritylane()" }, { @@ -79481,7 +79481,7 @@ "source_location": "L9669", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_schedulecallbackifunblocked", - "community": 110, + "community": 431, "norm_label": "schedulecallbackifunblocked()" }, { @@ -79491,7 +79491,7 @@ "source_location": "L9683", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_retryifblockedon", - "community": 110, + "community": 431, "norm_label": "retryifblockedon()" }, { @@ -79881,7 +79881,7 @@ "source_location": "L11094", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_iseventsupported", - "community": 110, + "community": 397, "norm_label": "iseventsupported()" }, { @@ -80501,7 +80501,7 @@ "source_location": "L12729", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_getparent", - "community": 20, + "community": 182, "norm_label": "getparent()" }, { @@ -80511,7 +80511,7 @@ "source_location": "L12754", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_getlowestcommonancestor", - "community": 20, + "community": 182, "norm_label": "getlowestcommonancestor()" }, { @@ -80531,7 +80531,7 @@ "source_location": "L12849", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_accumulateenterleavetwophaselisteners", - "community": 20, + "community": 182, "norm_label": "accumulateenterleavetwophaselisteners()" }, { @@ -80801,7 +80801,7 @@ "source_location": "L14300", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_appendinitialchild", - "community": 20, + "community": 567, "norm_label": "appendinitialchild()" }, { @@ -80891,7 +80891,7 @@ "source_location": "L14406", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_resettextcontent", - "community": 20, + "community": 567, "norm_label": "resettextcontent()" }, { @@ -80911,7 +80911,7 @@ "source_location": "L14412", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_appendchild", - "community": 20, + "community": 567, "norm_label": "appendchild()" }, { @@ -80921,7 +80921,7 @@ "source_location": "L14415", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_appendchildtocontainer", - "community": 20, + "community": 567, "norm_label": "appendchildtocontainer()" }, { @@ -80931,7 +80931,7 @@ "source_location": "L14441", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_insertbefore", - "community": 20, + "community": 567, "norm_label": "insertbefore()" }, { @@ -80941,7 +80941,7 @@ "source_location": "L14444", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_insertincontainerbefore", - "community": 20, + "community": 567, "norm_label": "insertincontainerbefore()" }, { @@ -80971,7 +80971,7 @@ "source_location": "L14462", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_clearsuspenseboundary", - "community": 110, + "community": 431, "norm_label": "clearsuspenseboundary()" }, { @@ -80981,7 +80981,7 @@ "source_location": "L14497", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_clearsuspenseboundaryfromcontainer", - "community": 110, + "community": 431, "norm_label": "clearsuspenseboundaryfromcontainer()" }, { @@ -81071,7 +81071,7 @@ "source_location": "L14566", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_issuspenseinstancepending", - "community": 441, + "community": 251, "norm_label": "issuspenseinstancepending()" }, { @@ -81211,7 +81211,7 @@ "source_location": "L14730", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_commithydratedcontainer", - "community": 110, + "community": 431, "norm_label": "commithydratedcontainer()" }, { @@ -81221,7 +81221,7 @@ "source_location": "L14734", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_commithydratedsuspenseinstance", - "community": 110, + "community": 431, "norm_label": "commithydratedsuspenseinstance()" }, { @@ -81561,7 +81561,7 @@ "source_location": "L15221", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_pushtoplevelcontextobject", - "community": 72, + "community": 182, "norm_label": "pushtoplevelcontextobject()" }, { @@ -81571,7 +81571,7 @@ "source_location": "L15232", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_processchildcontext", - "community": 110, + "community": 133, "norm_label": "processchildcontext()" }, { @@ -81591,7 +81591,7 @@ "source_location": "L15285", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_invalidatecontextprovider", - "community": 110, + "community": 133, "norm_label": "invalidatecontextprovider()" }, { @@ -81711,7 +81711,7 @@ "source_location": "L15539", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_getbitlength", - "community": 72, + "community": 176, "norm_label": "getbitlength()" }, { @@ -81721,7 +81721,7 @@ "source_location": "L15543", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_getleadingbit", - "community": 72, + "community": 176, "norm_label": "getleadingbit()" }, { @@ -82031,7 +82031,7 @@ "source_location": "L16388", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_isreactclass", - "community": 110, + "community": 397, "norm_label": "isreactclass()" }, { @@ -82041,7 +82041,7 @@ "source_location": "L16392", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_coerceref", - "community": 110, + "community": 397, "norm_label": "coerceref()" }, { @@ -82061,7 +82061,7 @@ "source_location": "L16480", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_warnonfunctiontype", - "community": 110, + "community": 133, "norm_label": "warnonfunctiontype()" }, { @@ -82091,7 +82091,7 @@ "source_location": "L17440", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_clonechildfibers", - "community": 441, + "community": 72, "norm_label": "clonechildfibers()" }, { @@ -82281,7 +82281,7 @@ "source_location": "L17913", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_initializeupdatequeue", - "community": 397, + "community": 133, "norm_label": "initializeupdatequeue()" }, { @@ -82461,7 +82461,7 @@ "source_location": "L18510", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_hassuspensecontext", - "community": 441, + "community": 251, "norm_label": "hassuspensecontext()" }, { @@ -82471,7 +82471,7 @@ "source_location": "L18513", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_setdefaultshallowsuspensecontext", - "community": 441, + "community": 251, "norm_label": "setdefaultshallowsuspensecontext()" }, { @@ -82481,7 +82481,7 @@ "source_location": "L18516", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_setshallowsuspensecontext", - "community": 441, + "community": 251, "norm_label": "setshallowsuspensecontext()" }, { @@ -82531,7 +82531,7 @@ "source_location": "L18549", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_findfirstsuspended", - "community": 441, + "community": 251, "norm_label": "findfirstsuspended()" }, { @@ -82571,7 +82571,7 @@ "source_location": "L18706", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_updatehooktypesdev", - "community": 110, + "community": 133, "norm_label": "updatehooktypesdev()" }, { @@ -82581,7 +82581,7 @@ "source_location": "L18720", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_checkdepsarearraydev", - "community": 606, + "community": 397, "norm_label": "checkdepsarearraydev()" }, { @@ -82591,7 +82591,7 @@ "source_location": "L18730", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_warnonhookmismatchindev", - "community": 110, + "community": 133, "norm_label": "warnonhookmismatchindev()" }, { @@ -82701,7 +82701,7 @@ "source_location": "L19078", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_mountreducer", - "community": 377, + "community": 72, "norm_label": "mountreducer()" }, { @@ -82961,7 +82961,7 @@ "source_location": "L19662", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_imperativehandleeffect", - "community": 110, + "community": 397, "norm_label": "imperativehandleeffect()" }, { @@ -83111,7 +83111,7 @@ "source_location": "L19917", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_getisupdatingopaquevalueinrenderphaseindev", - "community": 110, + "community": 133, "norm_label": "getisupdatingopaquevalueinrenderphaseindev()" }, { @@ -83341,7 +83341,7 @@ "source_location": "L21145", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_resolvedefaultprops", - "community": 72, + "community": 110, "norm_label": "resolvedefaultprops()" }, { @@ -83401,7 +83401,7 @@ "source_location": "L21628", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_callcomponentwillmount", - "community": 72, + "community": 133, "norm_label": "callcomponentwillmount()" }, { @@ -83501,7 +83501,7 @@ "source_location": "L22097", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_createclasserrorupdate", - "community": 110, + "community": 133, "norm_label": "createclasserrorupdate()" }, { @@ -83821,7 +83821,7 @@ "source_location": "L23637", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_shouldremainonfallback", - "community": 441, + "community": 251, "norm_label": "shouldremainonfallback()" }, { @@ -83971,7 +83971,7 @@ "source_location": "L24215", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_findlastcontentrow", - "community": 441, + "community": 251, "norm_label": "findlastcontentrow()" }, { @@ -83981,7 +83981,7 @@ "source_location": "L24239", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_validaterevealorder", - "community": 441, + "community": 251, "norm_label": "validaterevealorder()" }, { @@ -83991,7 +83991,7 @@ "source_location": "L24275", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_validatetailoptions", - "community": 441, + "community": 251, "norm_label": "validatetailoptions()" }, { @@ -84001,7 +84001,7 @@ "source_location": "L24291", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_validatesuspenselistnestedchild", - "community": 606, + "community": 397, "norm_label": "validatesuspenselistnestedchild()" }, { @@ -84011,7 +84011,7 @@ "source_location": "L24308", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_validatesuspenselistchildren", - "community": 606, + "community": 397, "norm_label": "validatesuspenselistchildren()" }, { @@ -84021,7 +84021,7 @@ "source_location": "L24343", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_initsuspenselistrenderstate", - "community": 441, + "community": 251, "norm_label": "initsuspenselistrenderstate()" }, { @@ -84031,7 +84031,7 @@ "source_location": "L24373", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_updatesuspenselistcomponent", - "community": 441, + "community": 251, "norm_label": "updatesuspenselistcomponent()" }, { @@ -84421,7 +84421,7 @@ "source_location": "L27151", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_gethostparentfiber", - "community": 20, + "community": 567, "norm_label": "gethostparentfiber()" }, { @@ -84431,7 +84431,7 @@ "source_location": "L27165", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_ishostparent", - "community": 20, + "community": 567, "norm_label": "ishostparent()" }, { @@ -84441,7 +84441,7 @@ "source_location": "L27169", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_gethostsibling", - "community": 20, + "community": 567, "norm_label": "gethostsibling()" }, { @@ -84451,7 +84451,7 @@ "source_location": "L27217", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_commitplacement", - "community": 20, + "community": 567, "norm_label": "commitplacement()" }, { @@ -84461,7 +84461,7 @@ "source_location": "L27258", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_insertorappendplacementnodeintocontainer", - "community": 20, + "community": 567, "norm_label": "insertorappendplacementnodeintocontainer()" }, { @@ -84471,7 +84471,7 @@ "source_location": "L27285", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_insertorappendplacementnode", - "community": 20, + "community": 567, "norm_label": "insertorappendplacementnode()" }, { @@ -84521,7 +84521,7 @@ "source_location": "L27574", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_commitsuspensehydrationcallbacks", - "community": 110, + "community": 431, "norm_label": "commitsuspensehydrationcallbacks()" }, { @@ -84571,7 +84571,7 @@ "source_location": "L27976", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_commitreconciliationeffects", - "community": 20, + "community": 567, "norm_label": "commitreconciliationeffects()" }, { @@ -84821,7 +84821,7 @@ "source_location": "L28646", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_isconcurrentactenvironment", - "community": 110, + "community": 397, "norm_label": "isconcurrentactenvironment()" }, { @@ -84881,7 +84881,7 @@ "source_location": "L28853", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_requestretrylane", - "community": 20, + "community": 133, "norm_label": "requestretrylane()" }, { @@ -85181,7 +85181,7 @@ "source_location": "L29856", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_workloopsync", - "community": 94, + "community": 110, "norm_label": "workloopsync()" }, { @@ -85201,7 +85201,7 @@ "source_location": "L29933", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_workloopconcurrent", - "community": 94, + "community": 110, "norm_label": "workloopconcurrent()" }, { @@ -85291,7 +85291,7 @@ "source_location": "L30488", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_marklegacyerrorboundaryasfailed", - "community": 110, + "community": 133, "norm_label": "marklegacyerrorboundaryasfailed()" }, { @@ -85431,7 +85431,7 @@ "source_location": "L30869", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_warnaboutrenderphaseupdatesindev", - "community": 110, + "community": 133, "norm_label": "warnaboutrenderphaseupdatesindev()" }, { @@ -85491,7 +85491,7 @@ "source_location": "L30994", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_warnifsuspenseresolutionnotwrappedwithactdev", - "community": 110, + "community": 397, "norm_label": "warnifsuspenseresolutionnotwrappedwithactdev()" }, { @@ -85511,7 +85511,7 @@ "source_location": "L31017", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_resolvefunctionforhotreloading", - "community": 441, + "community": 72, "norm_label": "resolvefunctionforhotreloading()" }, { @@ -85521,7 +85521,7 @@ "source_location": "L31034", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_resolveclassforhotreloading", - "community": 441, + "community": 72, "norm_label": "resolveclassforhotreloading()" }, { @@ -85531,7 +85531,7 @@ "source_location": "L31038", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_resolveforwardrefforhotreloading", - "community": 441, + "community": 72, "norm_label": "resolveforwardrefforhotreloading()" }, { @@ -85551,7 +85551,7 @@ "source_location": "L31160", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_markfailederrorboundaryforhotreloading", - "community": 110, + "community": 133, "norm_label": "markfailederrorboundaryforhotreloading()" }, { @@ -85611,7 +85611,7 @@ "source_location": "L31511", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_shouldconstruct_1", - "community": 441, + "community": 72, "norm_label": "shouldconstruct$1()" }, { @@ -85621,7 +85621,7 @@ "source_location": "L31516", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_issimplefunctioncomponent", - "community": 441, + "community": 72, "norm_label": "issimplefunctioncomponent()" }, { @@ -85631,7 +85631,7 @@ "source_location": "L31519", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_resolvelazycomponenttag", - "community": 441, + "community": 72, "norm_label": "resolvelazycomponenttag()" }, { @@ -85641,7 +85641,7 @@ "source_location": "L31537", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_createworkinprogress", - "community": 441, + "community": 72, "norm_label": "createworkinprogress()" }, { @@ -85661,7 +85661,7 @@ "source_location": "L31691", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_createhostrootfiber", - "community": 397, + "community": 133, "norm_label": "createhostrootfiber()" }, { @@ -85671,7 +85671,7 @@ "source_location": "L31717", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_createfiberfromtypeandprops", - "community": 441, + "community": 72, "norm_label": "createfiberfromtypeandprops()" }, { @@ -85681,7 +85681,7 @@ "source_location": "L31848", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_createfiberfromelement", - "community": 441, + "community": 72, "norm_label": "createfiberfromelement()" }, { @@ -85701,7 +85701,7 @@ "source_location": "L31873", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_createfiberfromprofiler", - "community": 441, + "community": 72, "norm_label": "createfiberfromprofiler()" }, { @@ -85711,7 +85711,7 @@ "source_location": "L31894", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_createfiberfromsuspense", - "community": 441, + "community": 72, "norm_label": "createfiberfromsuspense()" }, { @@ -85721,7 +85721,7 @@ "source_location": "L31900", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_createfiberfromsuspenselist", - "community": 441, + "community": 72, "norm_label": "createfiberfromsuspenselist()" }, { @@ -85801,7 +85801,7 @@ "source_location": "L32049", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_createfiberroot", - "community": 397, + "community": 133, "norm_label": "createfiberroot()" }, { @@ -85841,7 +85841,7 @@ "source_location": "L32175", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_createcontainer", - "community": 397, + "community": 133, "norm_label": "createcontainer()" }, { @@ -85871,7 +85871,7 @@ "source_location": "L32257", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_getpublicrootinstance", - "community": 397, + "community": 110, "norm_label": "getpublicrootinstance()" }, { @@ -85891,7 +85891,7 @@ "source_location": "L32307", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_markretrylaneimpl", - "community": 20, + "community": 133, "norm_label": "markretrylaneimpl()" }, { @@ -86091,7 +86091,7 @@ "source_location": "L32911", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_nooponrecoverableerror", - "community": 397, + "community": 133, "norm_label": "nooponrecoverableerror()" }, { @@ -86101,7 +86101,7 @@ "source_location": "L32915", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_legacycreaterootfromdomcontainer", - "community": 397, + "community": 133, "norm_label": "legacycreaterootfromdomcontainer()" }, { @@ -86131,7 +86131,7 @@ "source_location": "L33015", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_react_finddomnode", - "community": 110, + "community": 72, "norm_label": "finddomnode()" }, { @@ -87451,7 +87451,7 @@ "source_location": "L10516", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_stylesheet2", - "community": 30, + "community": 774, "norm_label": "stylesheet2()" }, { @@ -87461,7 +87461,7 @@ "source_location": "L10518", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_stylesheet2_inserttag", - "community": 30, + "community": 774, "norm_label": "._inserttag()" }, { @@ -88081,7 +88081,7 @@ "source_location": "L12493", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_useconstant", - "community": 30, + "community": 72, "norm_label": "useconstant()" }, { @@ -88341,7 +88341,7 @@ "source_location": "L13194", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_isrefobject2", - "community": 402, + "community": 361, "norm_label": "isrefobject2()" }, { @@ -88361,7 +88361,7 @@ "source_location": "L13254", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_usevisualelement", - "community": 402, + "community": 361, "norm_label": "usevisualelement()" }, { @@ -88371,7 +88371,7 @@ "source_location": "L13312", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_createprojectionnode", - "community": 402, + "community": 361, "norm_label": "createprojectionnode()" }, { @@ -88381,7 +88381,7 @@ "source_location": "L13333", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_getclosestprojectingnode", - "community": 402, + "community": 361, "norm_label": "getclosestprojectingnode()" }, { @@ -88791,7 +88791,7 @@ "source_location": "L14288", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_duration", - "community": 361, + "community": 350, "norm_label": "duration()" }, { @@ -89081,7 +89081,7 @@ "source_location": "L14743", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_notify", - "community": 361, + "community": 282, "norm_label": "notify()" }, { @@ -89191,7 +89191,7 @@ "source_location": "L14919", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_setwithvelocity", - "community": 361, + "community": 350, "norm_label": "setwithvelocity()" }, { @@ -89201,7 +89201,7 @@ "source_location": "L14929", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_jump", - "community": 361, + "community": 336, "norm_label": "jump()" }, { @@ -89241,7 +89241,7 @@ "source_location": "L15003", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_stop", - "community": 361, + "community": 350, "norm_label": "stop()" }, { @@ -89261,7 +89261,7 @@ "source_location": "L15020", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_clearanimation", - "community": 361, + "community": 350, "norm_label": "clearanimation()" }, { @@ -89281,7 +89281,7 @@ "source_location": "L15040", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_motionvalue", - "community": 361, + "community": 336, "norm_label": "motionvalue()" }, { @@ -89291,7 +89291,7 @@ "source_location": "L15045", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_setmotionvalue", - "community": 361, + "community": 336, "norm_label": "setmotionvalue()" }, { @@ -89541,7 +89541,7 @@ "source_location": "L15613", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_measureinitialstate", - "community": 361, + "community": 336, "norm_label": "measureinitialstate()" }, { @@ -89561,7 +89561,7 @@ "source_location": "L15617", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_measureendstate", - "community": 361, + "community": 336, "norm_label": "measureendstate()" }, { @@ -90471,7 +90471,7 @@ "source_location": "L17837", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_calcrelativeaxisconstraints", - "community": 402, + "community": 361, "norm_label": "calcrelativeaxisconstraints()" }, { @@ -90481,7 +90481,7 @@ "source_location": "L17843", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_calcrelativeconstraints", - "community": 402, + "community": 361, "norm_label": "calcrelativeconstraints()" }, { @@ -90491,7 +90491,7 @@ "source_location": "L17849", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_calcviewportaxisconstraints", - "community": 402, + "community": 361, "norm_label": "calcviewportaxisconstraints()" }, { @@ -90501,7 +90501,7 @@ "source_location": "L17857", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_calcviewportconstraints", - "community": 402, + "community": 361, "norm_label": "calcviewportconstraints()" }, { @@ -90531,7 +90531,7 @@ "source_location": "L17885", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_resolvedragelastic", - "community": 402, + "community": 361, "norm_label": "resolvedragelastic()" }, { @@ -90541,7 +90541,7 @@ "source_location": "L17896", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_resolveaxiselastic", - "community": 402, + "community": 361, "norm_label": "resolveaxiselastic()" }, { @@ -90551,7 +90551,7 @@ "source_location": "L17902", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_resolvepointelastic", - "community": 402, + "community": 361, "norm_label": "resolvepointelastic()" }, { @@ -90561,7 +90561,7 @@ "source_location": "L17926", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_eachaxis", - "community": 402, + "community": 361, "norm_label": "eachaxis()" }, { @@ -90571,7 +90571,7 @@ "source_location": "L17935", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_convertboundingboxtobox", - "community": 402, + "community": 336, "norm_label": "convertboundingboxtobox()" }, { @@ -90581,7 +90581,7 @@ "source_location": "L17941", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_convertboxtoboundingbox", - "community": 402, + "community": 361, "norm_label": "convertboxtoboundingbox()" }, { @@ -90591,7 +90591,7 @@ "source_location": "L17944", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_transformboxpoints", - "community": 402, + "community": 336, "norm_label": "transformboxpoints()" }, { @@ -90701,7 +90701,7 @@ "source_location": "L18036", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_translateaxis", - "community": 402, + "community": 336, "norm_label": "translateaxis()" }, { @@ -90731,7 +90731,7 @@ "source_location": "L18050", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_measureviewportbox", - "community": 402, + "community": 336, "norm_label": "measureviewportbox()" }, { @@ -90741,7 +90741,7 @@ "source_location": "L18053", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_measurepagebox", - "community": 402, + "community": 336, "norm_label": "measurepagebox()" }, { @@ -90761,7 +90761,7 @@ "source_location": "L18203", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_resolveconstraints", - "community": 402, + "community": 361, "norm_label": "resolveconstraints()" }, { @@ -90771,7 +90771,7 @@ "source_location": "L18228", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_resolverefconstraints", - "community": 402, + "community": 361, "norm_label": "resolverefconstraints()" }, { @@ -90801,7 +90801,7 @@ "source_location": "L18280", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_stopanimation", - "community": 402, + "community": 361, "norm_label": "stopanimation()" }, { @@ -90811,7 +90811,7 @@ "source_location": "L18283", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_pauseanimation", - "community": 402, + "community": 361, "norm_label": "pauseanimation()" }, { @@ -90841,7 +90841,7 @@ "source_location": "L18305", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_snaptocursor", - "community": 402, + "community": 361, "norm_label": "snaptocursor()" }, { @@ -90851,7 +90851,7 @@ "source_location": "L18323", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_scalepositionwithinconstraints", - "community": 402, + "community": 361, "norm_label": "scalepositionwithinconstraints()" }, { @@ -91361,7 +91361,7 @@ "source_location": "L19973", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_resettransformstyle", - "community": 361, + "community": 282, "norm_label": "resettransformstyle()" }, { @@ -91591,7 +91591,7 @@ "source_location": "L20338", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_updatemotionvaluesfromprops", - "community": 361, + "community": 336, "norm_label": "updatemotionvaluesfromprops()" }, { @@ -91601,7 +91601,7 @@ "source_location": "L20404", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_constructor_notifyupdate", - "community": 361, + "community": 282, "norm_label": ".notifyupdate()" }, { @@ -91671,7 +91671,7 @@ "source_location": "L20552", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_getstaticvalue", - "community": 361, + "community": 336, "norm_label": "getstaticvalue()" }, { @@ -91741,7 +91741,7 @@ "source_location": "L20622", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_addvalue", - "community": 361, + "community": 336, "norm_label": "addvalue()" }, { @@ -91751,7 +91751,7 @@ "source_location": "L20635", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_removevalue", - "community": 361, + "community": 336, "norm_label": "removevalue()" }, { @@ -91761,7 +91761,7 @@ "source_location": "L20648", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_hasvalue", - "community": 361, + "community": 336, "norm_label": "hasvalue()" }, { @@ -91771,7 +91771,7 @@ "source_location": "L20651", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_getvalue", - "community": 361, + "community": 336, "norm_label": "getvalue()" }, { @@ -91831,7 +91831,7 @@ "source_location": "L20734", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_removevaluefromrenderstate", - "community": 361, + "community": 336, "norm_label": "removevaluefromrenderstate()" }, { @@ -91851,7 +91851,7 @@ "source_location": "L20755", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_getcomputedstyle", - "community": 361, + "community": 336, "norm_label": "getcomputedstyle()" }, { @@ -91871,7 +91871,7 @@ "source_location": "L20774", "_origin": "ast", "id": "docs_design_thingtime_landing_1a_classic_centered_ds_thingtime_bundle_measureinstanceviewportbox", - "community": 402, + "community": 336, "norm_label": "measureinstanceviewportbox()" }, { @@ -92761,7 +92761,7 @@ "source_location": "L37", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getiteratorfn", - "community": 24, + "community": 478, "norm_label": "getiteratorfn()" }, { @@ -92781,7 +92781,7 @@ "source_location": "L155", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_warn", - "community": 24, + "community": 374, "norm_label": "warn()" }, { @@ -92791,7 +92791,7 @@ "source_location": "L166", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_error", - "community": 24, + "community": 2, "norm_label": "error()" }, { @@ -92801,7 +92801,7 @@ "source_location": "L178", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_printwarning", - "community": 24, + "community": 374, "norm_label": "printwarning()" }, { @@ -92811,7 +92811,7 @@ "source_location": "L205", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_warnnoop", - "community": 24, + "community": 2, "norm_label": "warnnoop()" }, { @@ -92821,7 +92821,7 @@ "source_location": "L302", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_component", - "community": 24, + "community": 17, "norm_label": "component()" }, { @@ -92831,7 +92831,7 @@ "source_location": "L339", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_component_setstate", - "community": 24, + "community": 17, "norm_label": ".setstate()" }, { @@ -92841,7 +92841,7 @@ "source_location": "L362", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_component_forceupdate", - "community": 24, + "community": 17, "norm_label": ".forceupdate()" }, { @@ -92881,7 +92881,7 @@ "source_location": "L431", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_isarray", - "community": 24, + "community": 478, "norm_label": "isarray()" }, { @@ -92891,7 +92891,7 @@ "source_location": "L445", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_typename", - "community": 24, + "community": 2, "norm_label": "typename()" }, { @@ -92901,7 +92901,7 @@ "source_location": "L455", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_willcoercionthrow", - "community": 24, + "community": 2, "norm_label": "willcoercionthrow()" }, { @@ -92911,7 +92911,7 @@ "source_location": "L466", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_teststringcoercion", - "community": 24, + "community": 2, "norm_label": "teststringcoercion()" }, { @@ -92921,7 +92921,7 @@ "source_location": "L492", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_checkkeystringcoercion", - "community": 24, + "community": 2, "norm_label": "checkkeystringcoercion()" }, { @@ -92931,7 +92931,7 @@ "source_location": "L502", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getwrappedname", - "community": 24, + "community": 17, "norm_label": "getwrappedname()" }, { @@ -92941,7 +92941,7 @@ "source_location": "L514", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getcontextname", - "community": 24, + "community": 17, "norm_label": "getcontextname()" }, { @@ -92951,7 +92951,7 @@ "source_location": "L519", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getcomponentnamefromtype", - "community": 24, + "community": 17, "norm_label": "getcomponentnamefromtype()" }, { @@ -92961,7 +92961,7 @@ "source_location": "L616", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_hasvalidref", - "community": 24, + "community": 2, "norm_label": "hasvalidref()" }, { @@ -92971,7 +92971,7 @@ "source_location": "L630", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_hasvalidkey", - "community": 24, + "community": 2, "norm_label": "hasvalidkey()" }, { @@ -92981,7 +92981,7 @@ "source_location": "L644", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_definekeypropwarninggetter", - "community": 24, + "community": 2, "norm_label": "definekeypropwarninggetter()" }, { @@ -92991,7 +92991,7 @@ "source_location": "L662", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_definerefpropwarninggetter", - "community": 24, + "community": 2, "norm_label": "definerefpropwarninggetter()" }, { @@ -93001,7 +93001,7 @@ "source_location": "L680", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_warnifstringrefcannotbeautoconverted", - "community": 24, + "community": 2, "norm_label": "warnifstringrefcannotbeautoconverted()" }, { @@ -93011,7 +93011,7 @@ "source_location": "L773", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createelement", - "community": 24, + "community": 2, "norm_label": "createelement()" }, { @@ -93021,7 +93021,7 @@ "source_location": "L858", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_cloneandreplacekey", - "community": 24, + "community": 478, "norm_label": "cloneandreplacekey()" }, { @@ -93031,7 +93031,7 @@ "source_location": "L867", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_cloneelement", - "community": 24, + "community": 2, "norm_label": "cloneelement()" }, { @@ -93041,7 +93041,7 @@ "source_location": "L947", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_isvalidelement", - "community": 24, + "community": 478, "norm_label": "isvalidelement()" }, { @@ -93051,7 +93051,7 @@ "source_location": "L960", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_escape", - "community": 24, + "community": 478, "norm_label": "escape()" }, { @@ -93061,7 +93061,7 @@ "source_location": "L980", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_escapeuserprovidedkey", - "community": 24, + "community": 478, "norm_label": "escapeuserprovidedkey()" }, { @@ -93071,7 +93071,7 @@ "source_location": "L992", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getelementkey", - "community": 24, + "community": 478, "norm_label": "getelementkey()" }, { @@ -93081,7 +93081,7 @@ "source_location": "L1008", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_mapintoarray", - "community": 24, + "community": 478, "norm_label": "mapintoarray()" }, { @@ -93131,7 +93131,7 @@ "source_location": "L1217", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_onlychild", - "community": 24, + "community": 478, "norm_label": "onlychild()" }, { @@ -93141,7 +93141,7 @@ "source_location": "L1225", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createcontext", - "community": 24, + "community": 374, "norm_label": "createcontext()" }, { @@ -93151,7 +93151,7 @@ "source_location": "L1344", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_lazyinitializer", - "community": 24, + "community": 2, "norm_label": "lazyinitializer()" }, { @@ -93161,7 +93161,7 @@ "source_location": "L1401", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_lazy", - "community": 24, + "community": 2, "norm_label": "lazy()" }, { @@ -93171,7 +93171,7 @@ "source_location": "L1457", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_forwardref", - "community": 24, + "community": 2, "norm_label": "forwardref()" }, { @@ -93451,7 +93451,7 @@ "source_location": "L2024", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_checkproptypes", - "community": 24, + "community": 17, "norm_label": "checkproptypes()" }, { @@ -93471,7 +93471,7 @@ "source_location": "L2091", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getdeclarationerroraddendum", - "community": 24, + "community": 17, "norm_label": "getdeclarationerroraddendum()" }, { @@ -93501,7 +93501,7 @@ "source_location": "L2129", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getcurrentcomponenterrorinfo", - "community": 24, + "community": 478, "norm_label": "getcurrentcomponenterrorinfo()" }, { @@ -93511,7 +93511,7 @@ "source_location": "L2155", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_validateexplicitkey", - "community": 24, + "community": 478, "norm_label": "validateexplicitkey()" }, { @@ -93521,7 +93521,7 @@ "source_location": "L2197", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_validatechildkeys", - "community": 24, + "community": 478, "norm_label": "validatechildkeys()" }, { @@ -93531,7 +93531,7 @@ "source_location": "L2242", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_validateproptypes", - "community": 24, + "community": 17, "norm_label": "validateproptypes()" }, { @@ -93551,7 +93551,7 @@ "source_location": "L2311", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createelementwithvalidation", - "community": 24, + "community": 17, "norm_label": "createelementwithvalidation()" }, { @@ -93561,7 +93561,7 @@ "source_location": "L2375", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createfactorywithvalidation", - "community": 24, + "community": 374, "norm_label": "createfactorywithvalidation()" }, { @@ -93571,7 +93571,7 @@ "source_location": "L2402", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_cloneelementwithvalidation", - "community": 24, + "community": 478, "norm_label": "cloneelementwithvalidation()" }, { @@ -93581,7 +93581,7 @@ "source_location": "L2417", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_push", - "community": 24, + "community": 137, "norm_label": "push()" }, { @@ -93591,7 +93591,7 @@ "source_location": "L2422", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_peek", - "community": 24, + "community": 137, "norm_label": "peek()" }, { @@ -93601,7 +93601,7 @@ "source_location": "L2425", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_pop", - "community": 24, + "community": 82, "norm_label": "pop()" }, { @@ -93611,7 +93611,7 @@ "source_location": "L2441", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_siftup", - "community": 24, + "community": 137, "norm_label": "siftup()" }, { @@ -93621,7 +93621,7 @@ "source_location": "L2460", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_siftdown", - "community": 24, + "community": 137, "norm_label": "siftdown()" }, { @@ -93631,7 +93631,7 @@ "source_location": "L2492", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_compare", - "community": 24, + "community": 137, "norm_label": "compare()" }, { @@ -93641,7 +93641,7 @@ "source_location": "L2505", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_marktaskerrored", - "community": 24, + "community": 137, "norm_label": "marktaskerrored()" }, { @@ -93651,7 +93651,7 @@ "source_location": "L2557", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_advancetimers", - "community": 24, + "community": 137, "norm_label": "advancetimers()" }, { @@ -93661,7 +93661,7 @@ "source_location": "L2579", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_handletimeout", - "community": 24, + "community": 137, "norm_label": "handletimeout()" }, { @@ -93671,7 +93671,7 @@ "source_location": "L2597", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_flushwork", - "community": 24, + "community": 137, "norm_label": "flushwork()" }, { @@ -93681,7 +93681,7 @@ "source_location": "L2635", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_workloop", - "community": 24, + "community": 137, "norm_label": "workloop()" }, { @@ -93691,7 +93691,7 @@ "source_location": "L2687", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_unstable_runwithpriority", - "community": 431, + "community": 314, "norm_label": "unstable_runwithpriority()" }, { @@ -93701,7 +93701,7 @@ "source_location": "L2710", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_unstable_next", - "community": 431, + "community": 314, "norm_label": "unstable_next()" }, { @@ -93721,7 +93721,7 @@ "source_location": "L2752", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_unstable_schedulecallback", - "community": 24, + "community": 137, "norm_label": "unstable_schedulecallback()" }, { @@ -93741,7 +93741,7 @@ "source_location": "L2838", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_unstable_continueexecution", - "community": 24, + "community": 137, "norm_label": "unstable_continueexecution()" }, { @@ -93751,7 +93751,7 @@ "source_location": "L2846", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_unstable_getfirstcallbacknode", - "community": 24, + "community": 137, "norm_label": "unstable_getfirstcallbacknode()" }, { @@ -93781,7 +93781,7 @@ "source_location": "L2872", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_shouldyieldtohost", - "community": 24, + "community": 137, "norm_label": "shouldyieldtohost()" }, { @@ -93791,7 +93791,7 @@ "source_location": "L2885", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_requestpaint", - "community": 24, + "community": 164, "norm_label": "requestpaint()" }, { @@ -93811,7 +93811,7 @@ "source_location": "L2970", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_requesthostcallback", - "community": 24, + "community": 137, "norm_label": "requesthostcallback()" }, { @@ -93821,7 +93821,7 @@ "source_location": "L2979", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_requesthosttimeout", - "community": 24, + "community": 137, "norm_label": "requesthosttimeout()" }, { @@ -93831,7 +93831,7 @@ "source_location": "L2985", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_cancelhosttimeout", - "community": 24, + "community": 137, "norm_label": "cancelhosttimeout()" }, { @@ -93851,7 +93851,7 @@ "source_location": "L3035", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_starttransition", - "community": 24, + "community": 164, "norm_label": "starttransition()" }, { @@ -93861,7 +93861,7 @@ "source_location": "L3065", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_enqueuetask", - "community": 24, + "community": 2, "norm_label": "enqueuetask()" }, { @@ -93871,7 +93871,7 @@ "source_location": "L3102", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_act", - "community": 24, + "community": 2, "norm_label": "act()" }, { @@ -93881,7 +93881,7 @@ "source_location": "L3229", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_popactscope", - "community": 24, + "community": 2, "norm_label": "popactscope()" }, { @@ -93891,7 +93891,7 @@ "source_location": "L3239", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_recursivelyflushasyncactwork", - "community": 24, + "community": 2, "norm_label": "recursivelyflushasyncactwork()" }, { @@ -93901,7 +93901,7 @@ "source_location": "L3267", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_flushactqueue", - "community": 24, + "community": 2, "norm_label": "flushactqueue()" }, { @@ -93911,7 +93911,7 @@ "source_location": "L3363", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_setsuppresswarning", - "community": 24, + "community": 17, "norm_label": "setsuppresswarning()" }, { @@ -93941,7 +93941,7 @@ "source_location": "L3593", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_checkattributestringcoercion", - "community": 24, + "community": 2, "norm_label": "checkattributestringcoercion()" }, { @@ -93951,7 +93951,7 @@ "source_location": "L3611", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_checkpropstringcoercion", - "community": 24, + "community": 2, "norm_label": "checkpropstringcoercion()" }, { @@ -93961,7 +93961,7 @@ "source_location": "L3620", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_checkcsspropertystringcoercion", - "community": 24, + "community": 2, "norm_label": "checkcsspropertystringcoercion()" }, { @@ -93971,7 +93971,7 @@ "source_location": "L3629", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_checkhtmlstringcoercion", - "community": 24, + "community": 2, "norm_label": "checkhtmlstringcoercion()" }, { @@ -93981,7 +93981,7 @@ "source_location": "L3638", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_checkformfieldvaluestringcoercion", - "community": 24, + "community": 2, "norm_label": "checkformfieldvaluestringcoercion()" }, { @@ -93991,7 +93991,7 @@ "source_location": "L3683", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_isattributenamesafe", - "community": 24, + "community": 71, "norm_label": "isattributenamesafe()" }, { @@ -94001,7 +94001,7 @@ "source_location": "L3705", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_shouldignoreattribute", - "community": 24, + "community": 71, "norm_label": "shouldignoreattribute()" }, { @@ -94011,7 +94011,7 @@ "source_location": "L3720", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_shouldremoveattributewithwarning", - "community": 24, + "community": 71, "norm_label": "shouldremoveattributewithwarning()" }, { @@ -94021,7 +94021,7 @@ "source_location": "L3750", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_shouldremoveattribute", - "community": 24, + "community": 71, "norm_label": "shouldremoveattribute()" }, { @@ -94031,7 +94031,7 @@ "source_location": "L3783", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getpropertyinfo", - "community": 24, + "community": 71, "norm_label": "getpropertyinfo()" }, { @@ -94051,7 +94051,7 @@ "source_location": "L3981", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_sanitizeurl", - "community": 24, + "community": 71, "norm_label": "sanitizeurl()" }, { @@ -94061,7 +94061,7 @@ "source_location": "L3996", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getvalueforproperty", - "community": 24, + "community": 71, "norm_label": "getvalueforproperty()" }, { @@ -94071,7 +94071,7 @@ "source_location": "L4075", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getvalueforattribute", - "community": 24, + "community": 71, "norm_label": "getvalueforattribute()" }, { @@ -94081,7 +94081,7 @@ "source_location": "L4106", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_setvalueforproperty", - "community": 24, + "community": 71, "norm_label": "setvalueforproperty()" }, { @@ -94111,7 +94111,7 @@ "source_location": "L4610", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getstackbyfiberindevandprod", - "community": 24, + "community": 115, "norm_label": "getstackbyfiberindevandprod()" }, { @@ -94121,7 +94121,7 @@ "source_location": "L4726", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getwrappedname_1", - "community": 24, + "community": 2, "norm_label": "getwrappedname$1()" }, { @@ -94131,7 +94131,7 @@ "source_location": "L4732", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getcontextname_1", - "community": 24, + "community": 2, "norm_label": "getcontextname$1()" }, { @@ -94141,7 +94141,7 @@ "source_location": "L4736", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getcomponentnamefromfiber", - "community": 24, + "community": 2, "norm_label": "getcomponentnamefromfiber()" }, { @@ -94151,7 +94151,7 @@ "source_location": "L4829", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getcurrentfiberownernameindevornull", - "community": 24, + "community": 17, "norm_label": "getcurrentfiberownernameindevornull()" }, { @@ -94161,7 +94161,7 @@ "source_location": "L4845", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getcurrentfiberstackindev", - "community": 24, + "community": 115, "norm_label": "getcurrentfiberstackindev()" }, { @@ -94171,7 +94171,7 @@ "source_location": "L4857", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_resetcurrentfiber", - "community": 24, + "community": 2, "norm_label": "resetcurrentfiber()" }, { @@ -94181,7 +94181,7 @@ "source_location": "L4864", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_setcurrentfiber", - "community": 24, + "community": 2, "norm_label": "setcurrentfiber()" }, { @@ -94191,7 +94191,7 @@ "source_location": "L4871", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getcurrentfiber", - "community": 24, + "community": 2, "norm_label": "getcurrentfiber()" }, { @@ -94201,7 +94201,7 @@ "source_location": "L4876", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_setisrendering", - "community": 24, + "community": 17, "norm_label": "setisrendering()" }, { @@ -94211,7 +94211,7 @@ "source_location": "L4885", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_tostring", - "community": 24, + "community": 71, "norm_label": "tostring()" }, { @@ -94221,7 +94221,7 @@ "source_location": "L4890", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_gettostringvalue", - "community": 24, + "community": 71, "norm_label": "gettostringvalue()" }, { @@ -94231,7 +94231,7 @@ "source_location": "L4920", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_checkcontrolledvalueprops", - "community": 24, + "community": 71, "norm_label": "checkcontrolledvalueprops()" }, { @@ -94321,7 +94321,7 @@ "source_location": "L5071", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_iscontrolled", - "community": 24, + "community": 71, "norm_label": "iscontrolled()" }, { @@ -94331,7 +94331,7 @@ "source_location": "L5093", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_gethostprops", - "community": 24, + "community": 71, "norm_label": "gethostprops()" }, { @@ -94341,7 +94341,7 @@ "source_location": "L5104", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_initwrapperstate", - "community": 24, + "community": 71, "norm_label": "initwrapperstate()" }, { @@ -94351,7 +94351,7 @@ "source_location": "L5129", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatechecked", - "community": 24, + "community": 71, "norm_label": "updatechecked()" }, { @@ -94361,7 +94361,7 @@ "source_location": "L5137", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatewrapper", - "community": 24, + "community": 71, "norm_label": "updatewrapper()" }, { @@ -94371,7 +94371,7 @@ "source_location": "L5198", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_postmountwrapper", - "community": 24, + "community": 71, "norm_label": "postmountwrapper()" }, { @@ -94381,7 +94381,7 @@ "source_location": "L5262", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_restorecontrolledstate", - "community": 24, + "community": 71, "norm_label": "restorecontrolledstate()" }, { @@ -94391,7 +94391,7 @@ "source_location": "L5268", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatenamedcousins", - "community": 24, + "community": 71, "norm_label": "updatenamedcousins()" }, { @@ -94401,7 +94401,7 @@ "source_location": "L5327", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_setdefaultvalue", - "community": 24, + "community": 71, "norm_label": "setdefaultvalue()" }, { @@ -94411,7 +94411,7 @@ "source_location": "L5345", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_validateprops", - "community": 24, + "community": 71, "norm_label": "validateprops()" }, { @@ -94421,7 +94421,7 @@ "source_location": "L5382", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_postmountwrapper_1", - "community": 24, + "community": 71, "norm_label": "postmountwrapper$1()" }, { @@ -94431,7 +94431,7 @@ "source_location": "L5416", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_checkselectproptypes", - "community": 24, + "community": 71, "norm_label": "checkselectproptypes()" }, { @@ -94441,7 +94441,7 @@ "source_location": "L5438", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updateoptions", - "community": 24, + "community": 71, "norm_label": "updateoptions()" }, { @@ -94451,7 +94451,7 @@ "source_location": "L5506", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_gethostprops_1", - "community": 24, + "community": 71, "norm_label": "gethostprops$1()" }, { @@ -94461,7 +94461,7 @@ "source_location": "L5511", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_initwrapperstate_1", - "community": 24, + "community": 71, "norm_label": "initwrapperstate$1()" }, { @@ -94471,7 +94471,7 @@ "source_location": "L5530", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_postmountwrapper_2", - "community": 24, + "community": 71, "norm_label": "postmountwrapper$2()" }, { @@ -94481,7 +94481,7 @@ "source_location": "L5541", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_postupdatewrapper", - "community": 24, + "community": 71, "norm_label": "postupdatewrapper()" }, { @@ -94491,7 +94491,7 @@ "source_location": "L5559", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_restorecontrolledstate_1", - "community": 24, + "community": 71, "norm_label": "restorecontrolledstate$1()" }, { @@ -94501,7 +94501,7 @@ "source_location": "L5585", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_gethostprops_2", - "community": 24, + "community": 71, "norm_label": "gethostprops$2()" }, { @@ -94511,7 +94511,7 @@ "source_location": "L5606", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_initwrapperstate_2", - "community": 24, + "community": 71, "norm_label": "initwrapperstate$2()" }, { @@ -94521,7 +94521,7 @@ "source_location": "L5658", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatewrapper_1", - "community": 24, + "community": 71, "norm_label": "updatewrapper$1()" }, { @@ -94531,7 +94531,7 @@ "source_location": "L5681", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_postmountwrapper_3", - "community": 24, + "community": 71, "norm_label": "postmountwrapper$3()" }, { @@ -94541,7 +94541,7 @@ "source_location": "L5696", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_restorecontrolledstate_2", - "community": 24, + "community": 71, "norm_label": "restorecontrolledstate$2()" }, { @@ -94551,7 +94551,7 @@ "source_location": "L5705", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getintrinsicnamespace", - "community": 24, + "community": 82, "norm_label": "getintrinsicnamespace()" }, { @@ -94561,7 +94561,7 @@ "source_location": "L5717", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getchildnamespace", - "community": 24, + "community": 82, "norm_label": "getchildnamespace()" }, { @@ -94581,7 +94581,7 @@ "source_location": "L5952", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_dangerousstylevalue", - "community": 24, + "community": 71, "norm_label": "dangerousstylevalue()" }, { @@ -94591,7 +94591,7 @@ "source_location": "L5995", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_hyphenatestylename", - "community": 24, + "community": 71, "norm_label": "hyphenatestylename()" }, { @@ -94601,7 +94601,7 @@ "source_location": "L6104", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createdangerousstringforstyles", - "community": 24, + "community": 71, "norm_label": "createdangerousstringforstyles()" }, { @@ -94611,7 +94611,7 @@ "source_location": "L6135", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_setvalueforstyles", - "community": 24, + "community": 71, "norm_label": "setvalueforstyles()" }, { @@ -94651,7 +94651,7 @@ "source_location": "L6265", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_assertvalidprops", - "community": 24, + "community": 71, "norm_label": "assertvalidprops()" }, { @@ -94661,7 +94661,7 @@ "source_location": "L6298", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_iscustomcomponent", - "community": 24, + "community": 71, "norm_label": "iscustomcomponent()" }, { @@ -94671,7 +94671,7 @@ "source_location": "L6880", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_validateproperty", - "community": 24, + "community": 2, "norm_label": "validateproperty()" }, { @@ -94681,7 +94681,7 @@ "source_location": "L6930", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_warninvalidariaprops", - "community": 24, + "community": 2, "norm_label": "warninvalidariaprops()" }, { @@ -94691,7 +94691,7 @@ "source_location": "L6954", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_validateproperties", - "community": 24, + "community": 2, "norm_label": "validateproperties()" }, { @@ -94701,7 +94701,7 @@ "source_location": "L6963", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_validateproperties_1", - "community": 24, + "community": 2, "norm_label": "validateproperties$1()" }, { @@ -94711,7 +94711,7 @@ "source_location": "L7153", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_validateproperties_2", - "community": 24, + "community": 71, "norm_label": "validateproperties$2()" }, { @@ -94721,7 +94721,7 @@ "source_location": "L7174", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_setreplayingevent", - "community": 24, + "community": 2, "norm_label": "setreplayingevent()" }, { @@ -94731,7 +94731,7 @@ "source_location": "L7183", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_resetreplayingevent", - "community": 24, + "community": 2, "norm_label": "resetreplayingevent()" }, { @@ -94781,7 +94781,7 @@ "source_location": "L7248", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_enqueuestaterestore", - "community": 24, + "community": 137, "norm_label": "enqueuestaterestore()" }, { @@ -94871,7 +94871,7 @@ "source_location": "L7410", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_invokeguardedcallbackprod", - "community": 24, + "community": 2, "norm_label": "invokeguardedcallbackprod()" }, { @@ -94971,7 +94971,7 @@ "source_location": "L7695", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_has", - "community": 24, + "community": 115, "norm_label": "has()" }, { @@ -95111,7 +95111,7 @@ "source_location": "L8185", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_onscheduleroot", - "community": 24, + "community": 27, "norm_label": "onscheduleroot()" }, { @@ -95121,7 +95121,7 @@ "source_location": "L8200", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_oncommitroot", - "community": 24, + "community": 164, "norm_label": "oncommitroot()" }, { @@ -95131,7 +95131,7 @@ "source_location": "L8245", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_onpostcommitroot", - "community": 24, + "community": 164, "norm_label": "onpostcommitroot()" }, { @@ -95141,7 +95141,7 @@ "source_location": "L8260", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_oncommitunmount", - "community": 24, + "community": 2, "norm_label": "oncommitunmount()" }, { @@ -95151,7 +95151,7 @@ "source_location": "L8275", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_setisstrictmodefordevtools", - "community": 24, + "community": 17, "norm_label": "setisstrictmodefordevtools()" }, { @@ -95181,7 +95181,7 @@ "source_location": "L8320", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markcommitstarted", - "community": 24, + "community": 164, "norm_label": "markcommitstarted()" }, { @@ -95191,7 +95191,7 @@ "source_location": "L8327", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markcommitstopped", - "community": 24, + "community": 164, "norm_label": "markcommitstopped()" }, { @@ -95201,7 +95201,7 @@ "source_location": "L8334", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markcomponentrenderstarted", - "community": 24, + "community": 17, "norm_label": "markcomponentrenderstarted()" }, { @@ -95211,7 +95211,7 @@ "source_location": "L8341", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markcomponentrenderstopped", - "community": 24, + "community": 17, "norm_label": "markcomponentrenderstopped()" }, { @@ -95221,7 +95221,7 @@ "source_location": "L8348", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markcomponentpassiveeffectmountstarted", - "community": 24, + "community": 2, "norm_label": "markcomponentpassiveeffectmountstarted()" }, { @@ -95231,7 +95231,7 @@ "source_location": "L8355", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markcomponentpassiveeffectmountstopped", - "community": 24, + "community": 2, "norm_label": "markcomponentpassiveeffectmountstopped()" }, { @@ -95241,7 +95241,7 @@ "source_location": "L8362", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markcomponentpassiveeffectunmountstarted", - "community": 24, + "community": 2, "norm_label": "markcomponentpassiveeffectunmountstarted()" }, { @@ -95251,7 +95251,7 @@ "source_location": "L8369", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markcomponentpassiveeffectunmountstopped", - "community": 24, + "community": 2, "norm_label": "markcomponentpassiveeffectunmountstopped()" }, { @@ -95261,7 +95261,7 @@ "source_location": "L8376", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markcomponentlayouteffectmountstarted", - "community": 24, + "community": 2, "norm_label": "markcomponentlayouteffectmountstarted()" }, { @@ -95271,7 +95271,7 @@ "source_location": "L8383", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markcomponentlayouteffectmountstopped", - "community": 24, + "community": 2, "norm_label": "markcomponentlayouteffectmountstopped()" }, { @@ -95281,7 +95281,7 @@ "source_location": "L8390", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markcomponentlayouteffectunmountstarted", - "community": 24, + "community": 2, "norm_label": "markcomponentlayouteffectunmountstarted()" }, { @@ -95291,7 +95291,7 @@ "source_location": "L8397", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markcomponentlayouteffectunmountstopped", - "community": 24, + "community": 2, "norm_label": "markcomponentlayouteffectunmountstopped()" }, { @@ -95301,7 +95301,7 @@ "source_location": "L8404", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markcomponenterrored", - "community": 24, + "community": 115, "norm_label": "markcomponenterrored()" }, { @@ -95311,7 +95311,7 @@ "source_location": "L8411", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markcomponentsuspended", - "community": 24, + "community": 115, "norm_label": "markcomponentsuspended()" }, { @@ -95321,7 +95321,7 @@ "source_location": "L8418", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_marklayouteffectsstarted", - "community": 24, + "community": 164, "norm_label": "marklayouteffectsstarted()" }, { @@ -95331,7 +95331,7 @@ "source_location": "L8425", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_marklayouteffectsstopped", - "community": 24, + "community": 164, "norm_label": "marklayouteffectsstopped()" }, { @@ -95341,7 +95341,7 @@ "source_location": "L8432", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markpassiveeffectsstarted", - "community": 24, + "community": 164, "norm_label": "markpassiveeffectsstarted()" }, { @@ -95351,7 +95351,7 @@ "source_location": "L8439", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markpassiveeffectsstopped", - "community": 24, + "community": 164, "norm_label": "markpassiveeffectsstopped()" }, { @@ -95361,7 +95361,7 @@ "source_location": "L8446", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markrenderstarted", - "community": 24, + "community": 115, "norm_label": "markrenderstarted()" }, { @@ -95371,7 +95371,7 @@ "source_location": "L8453", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markrenderyielded", - "community": 24, + "community": 115, "norm_label": "markrenderyielded()" }, { @@ -95381,7 +95381,7 @@ "source_location": "L8460", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markrenderstopped", - "community": 24, + "community": 115, "norm_label": "markrenderstopped()" }, { @@ -95391,7 +95391,7 @@ "source_location": "L8467", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markrenderscheduled", - "community": 24, + "community": 27, "norm_label": "markrenderscheduled()" }, { @@ -95411,7 +95411,7 @@ "source_location": "L8481", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markstateupdatescheduled", - "community": 24, + "community": 27, "norm_label": "markstateupdatescheduled()" }, { @@ -95441,7 +95441,7 @@ "source_location": "L8693", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_gethighestprioritylanes", - "community": 24, + "community": 27, "norm_label": "gethighestprioritylanes()" }, { @@ -95451,7 +95451,7 @@ "source_location": "L8760", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getnextlanes", - "community": 24, + "community": 27, "norm_label": "getnextlanes()" }, { @@ -95461,7 +95461,7 @@ "source_location": "L8872", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getmostrecenteventtime", - "community": 24, + "community": 27, "norm_label": "getmostrecenteventtime()" }, { @@ -95471,7 +95471,7 @@ "source_location": "L8891", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_computeexpirationtime", - "community": 24, + "community": 27, "norm_label": "computeexpirationtime()" }, { @@ -95481,7 +95481,7 @@ "source_location": "L8956", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markstarvedlanesasexpired", - "community": 24, + "community": 27, "norm_label": "markstarvedlanesasexpired()" }, { @@ -95491,7 +95491,7 @@ "source_location": "L8992", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_gethighestprioritypendinglanes", - "community": 24, + "community": 27, "norm_label": "gethighestprioritypendinglanes()" }, { @@ -95501,7 +95501,7 @@ "source_location": "L8995", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getlanestoretrysynchronouslyonerror", - "community": 24, + "community": 115, "norm_label": "getlanestoretrysynchronouslyonerror()" }, { @@ -95511,7 +95511,7 @@ "source_location": "L9008", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_includessynclane", - "community": 24, + "community": 115, "norm_label": "includessynclane()" }, { @@ -95521,7 +95521,7 @@ "source_location": "L9011", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_includesnonidlework", - "community": 24, + "community": 27, "norm_label": "includesnonidlework()" }, { @@ -95531,7 +95531,7 @@ "source_location": "L9014", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_includesonlyretries", - "community": 24, + "community": 27, "norm_label": "includesonlyretries()" }, { @@ -95541,7 +95541,7 @@ "source_location": "L9017", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_includesonlynonurgentlanes", - "community": 24, + "community": 142, "norm_label": "includesonlynonurgentlanes()" }, { @@ -95551,7 +95551,7 @@ "source_location": "L9021", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_includesonlytransitions", - "community": 24, + "community": 27, "norm_label": "includesonlytransitions()" }, { @@ -95561,7 +95561,7 @@ "source_location": "L9024", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_includesblockinglane", - "community": 24, + "community": 142, "norm_label": "includesblockinglane()" }, { @@ -95571,7 +95571,7 @@ "source_location": "L9029", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_includesexpiredlane", - "community": 24, + "community": 115, "norm_label": "includesexpiredlane()" }, { @@ -95581,7 +95581,7 @@ "source_location": "L9034", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_istransitionlane", - "community": 24, + "community": 27, "norm_label": "istransitionlane()" }, { @@ -95591,7 +95591,7 @@ "source_location": "L9037", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_claimnexttransitionlane", - "community": 24, + "community": 27, "norm_label": "claimnexttransitionlane()" }, { @@ -95601,7 +95601,7 @@ "source_location": "L9050", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_claimnextretrylane", - "community": 24, + "community": 27, "norm_label": "claimnextretrylane()" }, { @@ -95611,7 +95611,7 @@ "source_location": "L9060", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_gethighestprioritylane", - "community": 24, + "community": 27, "norm_label": "gethighestprioritylane()" }, { @@ -95621,7 +95621,7 @@ "source_location": "L9063", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_pickarbitrarylane", - "community": 24, + "community": 27, "norm_label": "pickarbitrarylane()" }, { @@ -95631,7 +95631,7 @@ "source_location": "L9071", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_pickarbitrarylaneindex", - "community": 24, + "community": 27, "norm_label": "pickarbitrarylaneindex()" }, { @@ -95641,7 +95641,7 @@ "source_location": "L9075", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_lanetoindex", - "community": 24, + "community": 27, "norm_label": "lanetoindex()" }, { @@ -95651,7 +95651,7 @@ "source_location": "L9079", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_includessomelane", - "community": 24, + "community": 17, "norm_label": "includessomelane()" }, { @@ -95661,7 +95661,7 @@ "source_location": "L9082", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_issubsetoflanes", - "community": 24, + "community": 27, "norm_label": "issubsetoflanes()" }, { @@ -95671,7 +95671,7 @@ "source_location": "L9085", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_mergelanes", - "community": 24, + "community": 27, "norm_label": "mergelanes()" }, { @@ -95681,7 +95681,7 @@ "source_location": "L9088", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_removelanes", - "community": 24, + "community": 225, "norm_label": "removelanes()" }, { @@ -95691,7 +95691,7 @@ "source_location": "L9091", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_intersectlanes", - "community": 24, + "community": 27, "norm_label": "intersectlanes()" }, { @@ -95701,7 +95701,7 @@ "source_location": "L9096", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_lanetolanes", - "community": 24, + "community": 225, "norm_label": "lanetolanes()" }, { @@ -95711,7 +95711,7 @@ "source_location": "L9099", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_higherprioritylane", - "community": 24, + "community": 27, "norm_label": "higherprioritylane()" }, { @@ -95721,7 +95721,7 @@ "source_location": "L9103", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createlanemap", - "community": 24, + "community": 137, "norm_label": "createlanemap()" }, { @@ -95731,7 +95731,7 @@ "source_location": "L9114", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markrootupdated", - "community": 24, + "community": 27, "norm_label": "markrootupdated()" }, { @@ -95741,7 +95741,7 @@ "source_location": "L9139", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markrootsuspended", - "community": 24, + "community": 115, "norm_label": "markrootsuspended()" }, { @@ -95751,7 +95751,7 @@ "source_location": "L9153", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markrootpinged", - "community": 24, + "community": 27, "norm_label": "markrootpinged()" }, { @@ -95761,7 +95761,7 @@ "source_location": "L9156", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markrootfinished", - "community": 24, + "community": 27, "norm_label": "markrootfinished()" }, { @@ -95771,7 +95771,7 @@ "source_location": "L9180", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markrootentangled", - "community": 24, + "community": 27, "norm_label": "markrootentangled()" }, { @@ -95781,7 +95781,7 @@ "source_location": "L9209", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getbumpedlaneforhydration", - "community": 24, + "community": 27, "norm_label": "getbumpedlaneforhydration()" }, { @@ -95791,7 +95791,7 @@ "source_location": "L9267", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_addfibertolanesmap", - "community": 24, + "community": 27, "norm_label": "addfibertolanesmap()" }, { @@ -95801,7 +95801,7 @@ "source_location": "L9283", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_movependingfiberstomemoized", - "community": 24, + "community": 115, "norm_label": "movependingfiberstomemoized()" }, { @@ -95811,7 +95811,7 @@ "source_location": "L9311", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_gettransitionsforlanes", - "community": 24, + "community": 115, "norm_label": "gettransitionsforlanes()" }, { @@ -95821,7 +95821,7 @@ "source_location": "L9322", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getcurrentupdatepriority", - "community": 24, + "community": 164, "norm_label": "getcurrentupdatepriority()" }, { @@ -95831,7 +95831,7 @@ "source_location": "L9325", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_setcurrentupdatepriority", - "community": 24, + "community": 164, "norm_label": "setcurrentupdatepriority()" }, { @@ -95851,7 +95851,7 @@ "source_location": "L9338", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_highereventpriority", - "community": 24, + "community": 164, "norm_label": "highereventpriority()" }, { @@ -95861,7 +95861,7 @@ "source_location": "L9341", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_lowereventpriority", - "community": 24, + "community": 164, "norm_label": "lowereventpriority()" }, { @@ -95881,7 +95881,7 @@ "source_location": "L9347", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_lanestoeventpriority", - "community": 24, + "community": 27, "norm_label": "lanestoeventpriority()" }, { @@ -96031,7 +96031,7 @@ "source_location": "L9605", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_attemptreplaycontinuousqueuedevent", - "community": 24, + "community": 2, "norm_label": "attemptreplaycontinuousqueuedevent()" }, { @@ -96041,7 +96041,7 @@ "source_location": "L9643", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_attemptreplaycontinuousqueuedeventinmap", - "community": 24, + "community": 2, "norm_label": "attemptreplaycontinuousqueuedeventinmap()" }, { @@ -96051,7 +96051,7 @@ "source_location": "L9649", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_replayunblockedevents", - "community": 24, + "community": 2, "norm_label": "replayunblockedevents()" }, { @@ -96061,7 +96061,7 @@ "source_location": "L9669", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_schedulecallbackifunblocked", - "community": 24, + "community": 2, "norm_label": "schedulecallbackifunblocked()" }, { @@ -96071,7 +96071,7 @@ "source_location": "L9683", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_retryifblockedon", - "community": 24, + "community": 2, "norm_label": "retryifblockedon()" }, { @@ -96111,7 +96111,7 @@ "source_location": "L9777", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_dispatchdiscreteevent", - "community": 24, + "community": 164, "norm_label": "dispatchdiscreteevent()" }, { @@ -96121,7 +96121,7 @@ "source_location": "L9791", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_dispatchcontinuousevent", - "community": 24, + "community": 164, "norm_label": "dispatchcontinuousevent()" }, { @@ -96131,7 +96131,7 @@ "source_location": "L9805", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_dispatchevent", - "community": 24, + "community": 164, "norm_label": "dispatchevent()" }, { @@ -96211,7 +96211,7 @@ "source_location": "L10076", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_initialize", - "community": 24, + "community": 137, "norm_label": "initialize()" }, { @@ -96221,7 +96221,7 @@ "source_location": "L10081", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_reset", - "community": 24, + "community": 137, "norm_label": "reset()" }, { @@ -96231,7 +96231,7 @@ "source_location": "L10086", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getdata", - "community": 24, + "community": 137, "norm_label": "getdata()" }, { @@ -96241,7 +96241,7 @@ "source_location": "L10116", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_gettext", - "community": 24, + "community": 137, "norm_label": "gettext()" }, { @@ -96341,7 +96341,7 @@ "source_location": "L10721", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_iskeypresscommand", - "community": 24, + "community": 137, "norm_label": "iskeypresscommand()" }, { @@ -96351,7 +96351,7 @@ "source_location": "L10730", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getcompositioneventtype", - "community": 24, + "community": 137, "norm_label": "getcompositioneventtype()" }, { @@ -96361,7 +96361,7 @@ "source_location": "L10748", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_isfallbackcompositionstart", - "community": 24, + "community": 137, "norm_label": "isfallbackcompositionstart()" }, { @@ -96371,7 +96371,7 @@ "source_location": "L10756", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_isfallbackcompositionend", - "community": 24, + "community": 137, "norm_label": "isfallbackcompositionend()" }, { @@ -96381,7 +96381,7 @@ "source_location": "L10788", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getdatafromcustomevent", - "community": 24, + "community": 137, "norm_label": "getdatafromcustomevent()" }, { @@ -96391,7 +96391,7 @@ "source_location": "L10809", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_isusingkoreanime", - "community": 24, + "community": 137, "norm_label": "isusingkoreanime()" }, { @@ -96401,7 +96401,7 @@ "source_location": "L10819", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_extractcompositionevent", - "community": 24, + "community": 137, "norm_label": "extractcompositionevent()" }, { @@ -96411,7 +96411,7 @@ "source_location": "L10872", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getnativebeforeinputchars", - "community": 24, + "community": 137, "norm_label": "getnativebeforeinputchars()" }, { @@ -96421,7 +96421,7 @@ "source_location": "L10924", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getfallbackbeforeinputchars", - "community": 24, + "community": 137, "norm_label": "getfallbackbeforeinputchars()" }, { @@ -96431,7 +96431,7 @@ "source_location": "L10994", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_extractbeforeinputevent", - "community": 24, + "community": 137, "norm_label": "extractbeforeinputevent()" }, { @@ -96441,7 +96441,7 @@ "source_location": "L11040", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_extractevents", - "community": 24, + "community": 137, "norm_label": "extractevents()" }, { @@ -96461,7 +96461,7 @@ "source_location": "L11094", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_iseventsupported", - "community": 24, + "community": 2, "norm_label": "iseventsupported()" }, { @@ -96481,7 +96481,7 @@ "source_location": "L11115", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createandaccumulatechangeevent", - "community": 24, + "community": 137, "norm_label": "createandaccumulatechangeevent()" }, { @@ -96621,7 +96621,7 @@ "source_location": "L11293", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_handlecontrolledinputblur", - "community": 24, + "community": 71, "norm_label": "handlecontrolledinputblur()" }, { @@ -96671,7 +96671,7 @@ "source_location": "L11485", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_shallowequal", - "community": 24, + "community": 137, "norm_label": "shallowequal()" }, { @@ -96861,7 +96861,7 @@ "source_location": "L11965", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_geteventtargetdocument", - "community": 24, + "community": 137, "norm_label": "geteventtargetdocument()" }, { @@ -96871,7 +96871,7 @@ "source_location": "L11977", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_constructselectevent", - "community": 24, + "community": 137, "norm_label": "constructselectevent()" }, { @@ -96991,7 +96991,7 @@ "source_location": "L12454", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_listentonondelegatedevent", - "community": 24, + "community": 71, "norm_label": "listentonondelegatedevent()" }, { @@ -97001,7 +97001,7 @@ "source_location": "L12470", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_listentonativeevent", - "community": 24, + "community": 115, "norm_label": "listentonativeevent()" }, { @@ -97011,7 +97011,7 @@ "source_location": "L12486", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_listentoallsupportedevents", - "community": 24, + "community": 115, "norm_label": "listentoallsupportedevents()" }, { @@ -97071,7 +97071,7 @@ "source_location": "L12698", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_accumulatetwophaselisteners", - "community": 24, + "community": 137, "norm_label": "accumulatetwophaselisteners()" }, { @@ -97121,7 +97121,7 @@ "source_location": "L12860", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getlistenersetkey", - "community": 24, + "community": 71, "norm_label": "getlistenersetkey()" }, { @@ -97131,7 +97131,7 @@ "source_location": "L12971", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_normalizemarkupfortextorattribute", - "community": 24, + "community": 82, "norm_label": "normalizemarkupfortextorattribute()" }, { @@ -97141,7 +97141,7 @@ "source_location": "L12980", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_checkforunmatchedtext", - "community": 24, + "community": 82, "norm_label": "checkforunmatchedtext()" }, { @@ -97151,7 +97151,7 @@ "source_location": "L13005", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getownerdocumentfromrootcontainer", - "community": 24, + "community": 82, "norm_label": "getownerdocumentfromrootcontainer()" }, { @@ -97171,7 +97171,7 @@ "source_location": "L13011", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_trapclickonnoninteractiveelement", - "community": 24, + "community": 71, "norm_label": "trapclickonnoninteractiveelement()" }, { @@ -97181,7 +97181,7 @@ "source_location": "L13024", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_setinitialdomproperties", - "community": 24, + "community": 71, "norm_label": "setinitialdomproperties()" }, { @@ -97191,7 +97191,7 @@ "source_location": "L13079", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatedomproperties", - "community": 24, + "community": 71, "norm_label": "updatedomproperties()" }, { @@ -97201,7 +97201,7 @@ "source_location": "L13177", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createtextnode", - "community": 24, + "community": 82, "norm_label": "createtextnode()" }, { @@ -97211,7 +97211,7 @@ "source_location": "L13180", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_setinitialproperties", - "community": 24, + "community": 71, "norm_label": "setinitialproperties()" }, { @@ -97221,7 +97221,7 @@ "source_location": "L13310", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_diffproperties", - "community": 24, + "community": 71, "norm_label": "diffproperties()" }, { @@ -97231,7 +97231,7 @@ "source_location": "L13486", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updateproperties", - "community": 24, + "community": 71, "norm_label": "updateproperties()" }, { @@ -97241,7 +97241,7 @@ "source_location": "L13520", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getpossiblestandardname", - "community": 24, + "community": 71, "norm_label": "getpossiblestandardname()" }, { @@ -97251,7 +97251,7 @@ "source_location": "L13532", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_diffhydratedproperties", - "community": 24, + "community": 71, "norm_label": "diffhydratedproperties()" }, { @@ -97261,7 +97261,7 @@ "source_location": "L13819", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_diffhydratedtext", - "community": 24, + "community": 82, "norm_label": "diffhydratedtext()" }, { @@ -97271,7 +97271,7 @@ "source_location": "L13823", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_warnfordeletedhydratableelement", - "community": 24, + "community": 170, "norm_label": "warnfordeletedhydratableelement()" }, { @@ -97281,7 +97281,7 @@ "source_location": "L13834", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_warnfordeletedhydratabletext", - "community": 24, + "community": 170, "norm_label": "warnfordeletedhydratabletext()" }, { @@ -97291,7 +97291,7 @@ "source_location": "L13845", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_warnforinsertedhydratedelement", - "community": 24, + "community": 170, "norm_label": "warnforinsertedhydratedelement()" }, { @@ -97301,7 +97301,7 @@ "source_location": "L13856", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_warnforinsertedhydratedtext", - "community": 24, + "community": 170, "norm_label": "warnforinsertedhydratedtext()" }, { @@ -97311,7 +97311,7 @@ "source_location": "L13875", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_restorecontrolledstate_3", - "community": 24, + "community": 71, "norm_label": "restorecontrolledstate$3()" }, { @@ -97321,7 +97321,7 @@ "source_location": "L14216", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getroothostcontext", - "community": 24, + "community": 17, "norm_label": "getroothostcontext()" }, { @@ -97331,7 +97331,7 @@ "source_location": "L14250", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getchildhostcontext", - "community": 24, + "community": 82, "norm_label": "getchildhostcontext()" }, { @@ -97341,7 +97341,7 @@ "source_location": "L14261", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getpublicinstance", - "community": 24, + "community": 2, "norm_label": "getpublicinstance()" }, { @@ -97371,7 +97371,7 @@ "source_location": "L14278", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createinstance", - "community": 24, + "community": 82, "norm_label": "createinstance()" }, { @@ -97381,7 +97381,7 @@ "source_location": "L14300", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_appendinitialchild", - "community": 24, + "community": 569, "norm_label": "appendinitialchild()" }, { @@ -97391,7 +97391,7 @@ "source_location": "L14303", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_finalizeinitialchildren", - "community": 24, + "community": 71, "norm_label": "finalizeinitialchildren()" }, { @@ -97401,7 +97401,7 @@ "source_location": "L14320", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_prepareupdate", - "community": 24, + "community": 71, "norm_label": "prepareupdate()" }, { @@ -97411,7 +97411,7 @@ "source_location": "L14333", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_shouldsettextcontent", - "community": 24, + "community": 170, "norm_label": "shouldsettextcontent()" }, { @@ -97421,7 +97421,7 @@ "source_location": "L14336", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createtextinstance", - "community": 24, + "community": 82, "norm_label": "createtextinstance()" }, { @@ -97451,7 +97451,7 @@ "source_location": "L14371", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitmount", - "community": 24, + "community": 2, "norm_label": "commitmount()" }, { @@ -97461,7 +97461,7 @@ "source_location": "L14399", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitupdate", - "community": 24, + "community": 82, "norm_label": "commitupdate()" }, { @@ -97471,7 +97471,7 @@ "source_location": "L14406", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_resettextcontent", - "community": 24, + "community": 569, "norm_label": "resettextcontent()" }, { @@ -97481,7 +97481,7 @@ "source_location": "L14409", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_committextupdate", - "community": 24, + "community": 2, "norm_label": "committextupdate()" }, { @@ -97491,7 +97491,7 @@ "source_location": "L14412", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_appendchild", - "community": 24, + "community": 569, "norm_label": "appendchild()" }, { @@ -97501,7 +97501,7 @@ "source_location": "L14415", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_appendchildtocontainer", - "community": 24, + "community": 569, "norm_label": "appendchildtocontainer()" }, { @@ -97511,7 +97511,7 @@ "source_location": "L14441", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_insertbefore", - "community": 24, + "community": 569, "norm_label": "insertbefore()" }, { @@ -97521,7 +97521,7 @@ "source_location": "L14444", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_insertincontainerbefore", - "community": 24, + "community": 569, "norm_label": "insertincontainerbefore()" }, { @@ -97531,7 +97531,7 @@ "source_location": "L14452", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_removechild", - "community": 24, + "community": 2, "norm_label": "removechild()" }, { @@ -97541,7 +97541,7 @@ "source_location": "L14455", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_removechildfromcontainer", - "community": 24, + "community": 2, "norm_label": "removechildfromcontainer()" }, { @@ -97551,7 +97551,7 @@ "source_location": "L14462", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_clearsuspenseboundary", - "community": 24, + "community": 2, "norm_label": "clearsuspenseboundary()" }, { @@ -97561,7 +97561,7 @@ "source_location": "L14497", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_clearsuspenseboundaryfromcontainer", - "community": 24, + "community": 2, "norm_label": "clearsuspenseboundaryfromcontainer()" }, { @@ -97571,7 +97571,7 @@ "source_location": "L14507", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_hideinstance", - "community": 24, + "community": 2, "norm_label": "hideinstance()" }, { @@ -97581,7 +97581,7 @@ "source_location": "L14519", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_hidetextinstance", - "community": 24, + "community": 2, "norm_label": "hidetextinstance()" }, { @@ -97591,7 +97591,7 @@ "source_location": "L14522", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_unhideinstance", - "community": 24, + "community": 71, "norm_label": "unhideinstance()" }, { @@ -97601,7 +97601,7 @@ "source_location": "L14528", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_unhidetextinstance", - "community": 24, + "community": 2, "norm_label": "unhidetextinstance()" }, { @@ -97611,7 +97611,7 @@ "source_location": "L14531", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_clearcontainer", - "community": 24, + "community": 2, "norm_label": "clearcontainer()" }, { @@ -97651,7 +97651,7 @@ "source_location": "L14566", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_issuspenseinstancepending", - "community": 24, + "community": 225, "norm_label": "issuspenseinstancepending()" }, { @@ -97661,7 +97661,7 @@ "source_location": "L14569", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_issuspenseinstancefallback", - "community": 24, + "community": 225, "norm_label": "issuspenseinstancefallback()" }, { @@ -97671,7 +97671,7 @@ "source_location": "L14572", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getsuspenseinstancefallbackerrordetails", - "community": 24, + "community": 225, "norm_label": "getsuspenseinstancefallbackerrordetails()" }, { @@ -97681,7 +97681,7 @@ "source_location": "L14604", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_registersuspenseinstanceretry", - "community": 24, + "community": 225, "norm_label": "registersuspenseinstanceretry()" }, { @@ -97701,7 +97701,7 @@ "source_location": "L14633", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getnexthydratablesibling", - "community": 24, + "community": 170, "norm_label": "getnexthydratablesibling()" }, { @@ -97741,7 +97741,7 @@ "source_location": "L14645", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_hydrateinstance", - "community": 24, + "community": 82, "norm_label": "hydrateinstance()" }, { @@ -97751,7 +97751,7 @@ "source_location": "L14662", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_hydratetextinstance", - "community": 24, + "community": 82, "norm_label": "hydratetextinstance()" }, { @@ -97761,7 +97761,7 @@ "source_location": "L14669", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_hydratesuspenseinstance", - "community": 24, + "community": 82, "norm_label": "hydratesuspenseinstance()" }, { @@ -97771,7 +97771,7 @@ "source_location": "L14672", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getnexthydratableinstanceaftersuspenseinstance", - "community": 24, + "community": 170, "norm_label": "getnexthydratableinstanceaftersuspenseinstance()" }, { @@ -97791,7 +97791,7 @@ "source_location": "L14730", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commithydratedcontainer", - "community": 24, + "community": 2, "norm_label": "commithydratedcontainer()" }, { @@ -97801,7 +97801,7 @@ "source_location": "L14734", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commithydratedsuspenseinstance", - "community": 24, + "community": 2, "norm_label": "commithydratedsuspenseinstance()" }, { @@ -97811,7 +97811,7 @@ "source_location": "L14738", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_shoulddeleteunhydratedtailinstances", - "community": 24, + "community": 170, "norm_label": "shoulddeleteunhydratedtailinstances()" }, { @@ -97821,7 +97821,7 @@ "source_location": "L14741", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_didnotmatchhydratedcontainertextinstance", - "community": 24, + "community": 82, "norm_label": "didnotmatchhydratedcontainertextinstance()" }, { @@ -97831,7 +97831,7 @@ "source_location": "L14745", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_didnotmatchhydratedtextinstance", - "community": 24, + "community": 82, "norm_label": "didnotmatchhydratedtextinstance()" }, { @@ -97841,7 +97841,7 @@ "source_location": "L14751", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_didnothydrateinstancewithincontainer", - "community": 24, + "community": 170, "norm_label": "didnothydrateinstancewithincontainer()" }, { @@ -97851,7 +97851,7 @@ "source_location": "L14760", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_didnothydrateinstancewithinsuspenseinstance", - "community": 24, + "community": 170, "norm_label": "didnothydrateinstancewithinsuspenseinstance()" }, { @@ -97861,7 +97861,7 @@ "source_location": "L14774", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_didnothydrateinstance", - "community": 24, + "community": 170, "norm_label": "didnothydrateinstance()" }, { @@ -97871,7 +97871,7 @@ "source_location": "L14785", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_didnotfindhydratableinstancewithincontainer", - "community": 24, + "community": 170, "norm_label": "didnotfindhydratableinstancewithincontainer()" }, { @@ -97881,7 +97881,7 @@ "source_location": "L14790", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_didnotfindhydratabletextinstancewithincontainer", - "community": 24, + "community": 170, "norm_label": "didnotfindhydratabletextinstancewithincontainer()" }, { @@ -97891,7 +97891,7 @@ "source_location": "L14795", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_didnotfindhydratableinstancewithinsuspenseinstance", - "community": 24, + "community": 170, "norm_label": "didnotfindhydratableinstancewithinsuspenseinstance()" }, { @@ -97901,7 +97901,7 @@ "source_location": "L14802", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_didnotfindhydratabletextinstancewithinsuspenseinstance", - "community": 24, + "community": 170, "norm_label": "didnotfindhydratabletextinstancewithinsuspenseinstance()" }, { @@ -97911,7 +97911,7 @@ "source_location": "L14809", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_didnotfindhydratableinstance", - "community": 24, + "community": 170, "norm_label": "didnotfindhydratableinstance()" }, { @@ -97921,7 +97921,7 @@ "source_location": "L14816", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_didnotfindhydratabletextinstance", - "community": 24, + "community": 170, "norm_label": "didnotfindhydratabletextinstance()" }, { @@ -97931,7 +97931,7 @@ "source_location": "L14823", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_errorhydratingcontainer", - "community": 24, + "community": 115, "norm_label": "errorhydratingcontainer()" }, { @@ -97941,7 +97941,7 @@ "source_location": "L14830", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_prepareportalmount", - "community": 24, + "community": 115, "norm_label": "prepareportalmount()" }, { @@ -97961,7 +97961,7 @@ "source_location": "L14850", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_precachefibernode", - "community": 24, + "community": 82, "norm_label": "precachefibernode()" }, { @@ -97971,7 +97971,7 @@ "source_location": "L14853", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markcontainerasroot", - "community": 24, + "community": 374, "norm_label": "markcontainerasroot()" }, { @@ -97981,7 +97981,7 @@ "source_location": "L14856", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_unmarkcontainerasroot", - "community": 24, + "community": 374, "norm_label": "unmarkcontainerasroot()" }, { @@ -97991,7 +97991,7 @@ "source_location": "L14859", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_iscontainermarkedasroot", - "community": 24, + "community": 374, "norm_label": "iscontainermarkedasroot()" }, { @@ -98041,7 +98041,7 @@ "source_location": "L14984", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatefiberprops", - "community": 24, + "community": 82, "norm_label": "updatefiberprops()" }, { @@ -98051,7 +98051,7 @@ "source_location": "L14987", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_geteventlistenerset", - "community": 24, + "community": 71, "norm_label": "geteventlistenerset()" }, { @@ -98071,7 +98071,7 @@ "source_location": "L15133", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getunmaskedcontext", - "community": 24, + "community": 17, "norm_label": "getunmaskedcontext()" }, { @@ -98081,7 +98081,7 @@ "source_location": "L15147", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_cachecontext", - "community": 24, + "community": 17, "norm_label": "cachecontext()" }, { @@ -98091,7 +98091,7 @@ "source_location": "L15155", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getmaskedcontext", - "community": 24, + "community": 17, "norm_label": "getmaskedcontext()" }, { @@ -98101,7 +98101,7 @@ "source_location": "L15194", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_hascontextchanged", - "community": 24, + "community": 17, "norm_label": "hascontextchanged()" }, { @@ -98111,7 +98111,7 @@ "source_location": "L15200", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_iscontextprovider", - "community": 24, + "community": 82, "norm_label": "iscontextprovider()" }, { @@ -98121,7 +98121,7 @@ "source_location": "L15207", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_popcontext", - "community": 24, + "community": 82, "norm_label": "popcontext()" }, { @@ -98131,7 +98131,7 @@ "source_location": "L15214", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_poptoplevelcontextobject", - "community": 24, + "community": 82, "norm_label": "poptoplevelcontextobject()" }, { @@ -98141,7 +98141,7 @@ "source_location": "L15221", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_pushtoplevelcontextobject", - "community": 24, + "community": 17, "norm_label": "pushtoplevelcontextobject()" }, { @@ -98151,7 +98151,7 @@ "source_location": "L15232", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_processchildcontext", - "community": 24, + "community": 82, "norm_label": "processchildcontext()" }, { @@ -98161,7 +98161,7 @@ "source_location": "L15269", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_pushcontextprovider", - "community": 24, + "community": 17, "norm_label": "pushcontextprovider()" }, { @@ -98171,7 +98171,7 @@ "source_location": "L15285", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_invalidatecontextprovider", - "community": 24, + "community": 82, "norm_label": "invalidatecontextprovider()" }, { @@ -98181,7 +98181,7 @@ "source_location": "L15313", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_findcurrentunmaskedcontext", - "community": 24, + "community": 82, "norm_label": "findcurrentunmaskedcontext()" }, { @@ -98191,7 +98191,7 @@ "source_location": "L15353", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_schedulesynccallback", - "community": 24, + "community": 27, "norm_label": "schedulesynccallback()" }, { @@ -98201,7 +98201,7 @@ "source_location": "L15364", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_schedulelegacysynccallback", - "community": 24, + "community": 27, "norm_label": "schedulelegacysynccallback()" }, { @@ -98211,7 +98211,7 @@ "source_location": "L15368", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_flushsynccallbacksonlyinlegacymode", - "community": 24, + "community": 164, "norm_label": "flushsynccallbacksonlyinlegacymode()" }, { @@ -98221,7 +98221,7 @@ "source_location": "L15378", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_flushsynccallbacks", - "community": 24, + "community": 164, "norm_label": "flushsynccallbacks()" }, { @@ -98231,7 +98231,7 @@ "source_location": "L15433", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_isforkedchild", - "community": 24, + "community": 17, "norm_label": "isforkedchild()" }, { @@ -98241,7 +98241,7 @@ "source_location": "L15437", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getforksatlevel", - "community": 24, + "community": 17, "norm_label": "getforksatlevel()" }, { @@ -98251,7 +98251,7 @@ "source_location": "L15441", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_gettreeid", - "community": 24, + "community": 71, "norm_label": "gettreeid()" }, { @@ -98261,7 +98261,7 @@ "source_location": "L15447", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_pushtreefork", - "community": 24, + "community": 17, "norm_label": "pushtreefork()" }, { @@ -98271,7 +98271,7 @@ "source_location": "L15468", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_pushtreeid", - "community": 24, + "community": 17, "norm_label": "pushtreeid()" }, { @@ -98281,7 +98281,7 @@ "source_location": "L15525", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_pushmaterializedtreeid", - "community": 24, + "community": 17, "norm_label": "pushmaterializedtreeid()" }, { @@ -98291,7 +98291,7 @@ "source_location": "L15539", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getbitlength", - "community": 24, + "community": 71, "norm_label": "getbitlength()" }, { @@ -98301,7 +98301,7 @@ "source_location": "L15543", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getleadingbit", - "community": 24, + "community": 71, "norm_label": "getleadingbit()" }, { @@ -98311,7 +98311,7 @@ "source_location": "L15547", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_poptreecontext", - "community": 24, + "community": 82, "norm_label": "poptreecontext()" }, { @@ -98341,7 +98341,7 @@ "source_location": "L15591", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_warnifnothydrating", - "community": 24, + "community": 17, "norm_label": "warnifnothydrating()" }, { @@ -98351,7 +98351,7 @@ "source_location": "L15610", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_warnifhydrating", - "community": 24, + "community": 225, "norm_label": "warnifhydrating()" }, { @@ -98361,7 +98361,7 @@ "source_location": "L15618", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markdidthrowwhilehydratingdev", - "community": 24, + "community": 115, "norm_label": "markdidthrowwhilehydratingdev()" }, { @@ -98401,7 +98401,7 @@ "source_location": "L15655", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_warnunhydratedinstance", - "community": 24, + "community": 170, "norm_label": "warnunhydratedinstance()" }, { @@ -98411,7 +98411,7 @@ "source_location": "L15682", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_deletehydratableinstance", - "community": 24, + "community": 170, "norm_label": "deletehydratableinstance()" }, { @@ -98421,7 +98421,7 @@ "source_location": "L15697", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_warnnonhydratedinstance", - "community": 24, + "community": 170, "norm_label": "warnnonhydratedinstance()" }, { @@ -98431,7 +98431,7 @@ "source_location": "L15784", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_insertnonhydratedinstance", - "community": 24, + "community": 170, "norm_label": "insertnonhydratedinstance()" }, { @@ -98451,7 +98451,7 @@ "source_location": "L15856", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_shouldclientrenderonmismatch", - "community": 24, + "community": 170, "norm_label": "shouldclientrenderonmismatch()" }, { @@ -98461,7 +98461,7 @@ "source_location": "L15860", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_throwonhydrationmismatch", - "community": 24, + "community": 170, "norm_label": "throwonhydrationmismatch()" }, { @@ -98471,7 +98471,7 @@ "source_location": "L15864", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_trytoclaimnexthydratableinstance", - "community": 24, + "community": 170, "norm_label": "trytoclaimnexthydratableinstance()" }, { @@ -98481,7 +98481,7 @@ "source_location": "L15914", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_preparetohydratehostinstance", - "community": 24, + "community": 82, "norm_label": "preparetohydratehostinstance()" }, { @@ -98491,7 +98491,7 @@ "source_location": "L15930", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_preparetohydratehosttextinstance", - "community": 24, + "community": 82, "norm_label": "preparetohydratehosttextinstance()" }, { @@ -98501,7 +98501,7 @@ "source_location": "L15971", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_preparetohydratehostsuspenseinstance", - "community": 24, + "community": 82, "norm_label": "preparetohydratehostsuspenseinstance()" }, { @@ -98511,7 +98511,7 @@ "source_location": "L15983", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_skippastdehydratedsuspenseinstance", - "community": 24, + "community": 170, "norm_label": "skippastdehydratedsuspenseinstance()" }, { @@ -98521,7 +98521,7 @@ "source_location": "L15995", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_poptonexthostparent", - "community": 24, + "community": 170, "norm_label": "poptonexthostparent()" }, { @@ -98531,7 +98531,7 @@ "source_location": "L16005", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_pophydrationstate", - "community": 24, + "community": 170, "norm_label": "pophydrationstate()" }, { @@ -98541,7 +98541,7 @@ "source_location": "L16053", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_hasunhydratedtailnodes", - "community": 24, + "community": 170, "norm_label": "hasunhydratedtailnodes()" }, { @@ -98551,7 +98551,7 @@ "source_location": "L16057", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_warnifunhydratedtailnodes", - "community": 24, + "community": 170, "norm_label": "warnifunhydratedtailnodes()" }, { @@ -98561,7 +98561,7 @@ "source_location": "L16066", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_resethydrationstate", - "community": 24, + "community": 17, "norm_label": "resethydrationstate()" }, { @@ -98571,7 +98571,7 @@ "source_location": "L16074", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_upgradehydrationerrorstorecoverable", - "community": 24, + "community": 170, "norm_label": "upgradehydrationerrorstorecoverable()" }, { @@ -98581,7 +98581,7 @@ "source_location": "L16084", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getishydrating", - "community": 24, + "community": 17, "norm_label": "getishydrating()" }, { @@ -98591,7 +98591,7 @@ "source_location": "L16088", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_queuehydrationerror", - "community": 24, + "community": 225, "norm_label": "queuehydrationerror()" }, { @@ -98601,7 +98601,7 @@ "source_location": "L16098", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_requestcurrenttransition", - "community": 24, + "community": 27, "norm_label": "requestcurrenttransition()" }, { @@ -98611,7 +98611,7 @@ "source_location": "L16388", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_isreactclass", - "community": 24, + "community": 2, "norm_label": "isreactclass()" }, { @@ -98621,7 +98621,7 @@ "source_location": "L16392", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_coerceref", - "community": 24, + "community": 2, "norm_label": "coerceref()" }, { @@ -98641,7 +98641,7 @@ "source_location": "L16480", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_warnonfunctiontype", - "community": 24, + "community": 2, "norm_label": "warnonfunctiontype()" }, { @@ -98651,7 +98651,7 @@ "source_location": "L16494", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_resolvelazy", - "community": 24, + "community": 17, "norm_label": "resolvelazy()" }, { @@ -98671,7 +98671,7 @@ "source_location": "L17440", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_clonechildfibers", - "community": 24, + "community": 17, "norm_label": "clonechildfibers()" }, { @@ -98681,7 +98681,7 @@ "source_location": "L17463", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_resetchildfibers", - "community": 24, + "community": 82, "norm_label": "resetchildfibers()" }, { @@ -98691,7 +98691,7 @@ "source_location": "L17484", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_resetcontextdependencies", - "community": 24, + "community": 115, "norm_label": "resetcontextdependencies()" }, { @@ -98701,7 +98701,7 @@ "source_location": "L17495", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_enterdisallowedcontextreadindev", - "community": 24, + "community": 27, "norm_label": "enterdisallowedcontextreadindev()" }, { @@ -98711,7 +98711,7 @@ "source_location": "L17500", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_exitdisallowedcontextreadindev", - "community": 24, + "community": 27, "norm_label": "exitdisallowedcontextreadindev()" }, { @@ -98721,7 +98721,7 @@ "source_location": "L17505", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_pushprovider", - "community": 24, + "community": 17, "norm_label": "pushprovider()" }, { @@ -98731,7 +98731,7 @@ "source_location": "L17519", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_popprovider", - "community": 24, + "community": 82, "norm_label": "popprovider()" }, { @@ -98741,7 +98741,7 @@ "source_location": "L17529", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_schedulecontextworkonparentpath", - "community": 24, + "community": 27, "norm_label": "schedulecontextworkonparentpath()" }, { @@ -98751,7 +98751,7 @@ "source_location": "L17559", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_propagatecontextchange", - "community": 24, + "community": 27, "norm_label": "propagatecontextchange()" }, { @@ -98761,7 +98761,7 @@ "source_location": "L17565", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_propagatecontextchange_eager", - "community": 24, + "community": 27, "norm_label": "propagatecontextchange_eager()" }, { @@ -98771,7 +98771,7 @@ "source_location": "L17694", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_preparetoreadcontext", - "community": 24, + "community": 17, "norm_label": "preparetoreadcontext()" }, { @@ -98781,7 +98781,7 @@ "source_location": "L17716", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_readcontext", - "community": 24, + "community": 17, "norm_label": "readcontext()" }, { @@ -98791,7 +98791,7 @@ "source_location": "L17759", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_pushconcurrentupdatequeue", - "community": 24, + "community": 27, "norm_label": "pushconcurrentupdatequeue()" }, { @@ -98801,7 +98801,7 @@ "source_location": "L17766", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_finishqueueingconcurrentupdates", - "community": 24, + "community": 115, "norm_label": "finishqueueingconcurrentupdates()" }, { @@ -98811,7 +98811,7 @@ "source_location": "L17795", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_enqueueconcurrenthookupdate", - "community": 24, + "community": 27, "norm_label": "enqueueconcurrenthookupdate()" }, { @@ -98821,7 +98821,7 @@ "source_location": "L17812", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_enqueueconcurrenthookupdateandeagerlybailout", - "community": 24, + "community": 27, "norm_label": "enqueueconcurrenthookupdateandeagerlybailout()" }, { @@ -98831,7 +98831,7 @@ "source_location": "L17828", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_enqueueconcurrentclassupdate", - "community": 24, + "community": 27, "norm_label": "enqueueconcurrentclassupdate()" }, { @@ -98841,7 +98841,7 @@ "source_location": "L17845", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_enqueueconcurrentrenderforlane", - "community": 24, + "community": 27, "norm_label": "enqueueconcurrentrenderforlane()" }, { @@ -98851,7 +98851,7 @@ "source_location": "L17852", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markupdatelanefromfibertoroot", - "community": 24, + "community": 27, "norm_label": "markupdatelanefromfibertoroot()" }, { @@ -98861,7 +98861,7 @@ "source_location": "L17913", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_initializeupdatequeue", - "community": 24, + "community": 27, "norm_label": "initializeupdatequeue()" }, { @@ -98871,7 +98871,7 @@ "source_location": "L17927", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_cloneupdatequeue", - "community": 24, + "community": 17, "norm_label": "cloneupdatequeue()" }, { @@ -98881,7 +98881,7 @@ "source_location": "L17943", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createupdate", - "community": 24, + "community": 27, "norm_label": "createupdate()" }, { @@ -98891,7 +98891,7 @@ "source_location": "L17954", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_enqueueupdate", - "community": 24, + "community": 27, "norm_label": "enqueueupdate()" }, { @@ -98901,7 +98901,7 @@ "source_location": "L17995", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_entangletransitions", - "community": 24, + "community": 27, "norm_label": "entangletransitions()" }, { @@ -98911,7 +98911,7 @@ "source_location": "L18022", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_enqueuecapturedupdate", - "community": 24, + "community": 115, "norm_label": "enqueuecapturedupdate()" }, { @@ -98921,7 +98921,7 @@ "source_location": "L18104", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getstatefromupdate", - "community": 24, + "community": 27, "norm_label": "getstatefromupdate()" }, { @@ -98931,7 +98931,7 @@ "source_location": "L18195", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_processupdatequeue", - "community": 24, + "community": 27, "norm_label": "processupdatequeue()" }, { @@ -98941,7 +98941,7 @@ "source_location": "L18393", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_resethasforceupdatebeforeprocessing", - "community": 24, + "community": 17, "norm_label": "resethasforceupdatebeforeprocessing()" }, { @@ -98951,7 +98951,7 @@ "source_location": "L18396", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_checkhasforceupdateafterprocessing", - "community": 24, + "community": 17, "norm_label": "checkhasforceupdateafterprocessing()" }, { @@ -98971,7 +98971,7 @@ "source_location": "L18422", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_requiredcontext", - "community": 24, + "community": 82, "norm_label": "requiredcontext()" }, { @@ -98981,7 +98981,7 @@ "source_location": "L18430", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getroothostcontainer", - "community": 24, + "community": 82, "norm_label": "getroothostcontainer()" }, { @@ -98991,7 +98991,7 @@ "source_location": "L18435", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_pushhostcontainer", - "community": 24, + "community": 17, "norm_label": "pushhostcontainer()" }, { @@ -99001,7 +99001,7 @@ "source_location": "L18454", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_pophostcontainer", - "community": 24, + "community": 82, "norm_label": "pophostcontainer()" }, { @@ -99011,7 +99011,7 @@ "source_location": "L18460", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_gethostcontext", - "community": 24, + "community": 82, "norm_label": "gethostcontext()" }, { @@ -99021,7 +99021,7 @@ "source_location": "L18465", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_pushhostcontext", - "community": 24, + "community": 82, "norm_label": "pushhostcontext()" }, { @@ -99031,7 +99031,7 @@ "source_location": "L18480", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_pophostcontext", - "community": 24, + "community": 82, "norm_label": "pophostcontext()" }, { @@ -99041,7 +99041,7 @@ "source_location": "L18510", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_hassuspensecontext", - "community": 24, + "community": 225, "norm_label": "hassuspensecontext()" }, { @@ -99051,7 +99051,7 @@ "source_location": "L18513", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_setdefaultshallowsuspensecontext", - "community": 24, + "community": 17, "norm_label": "setdefaultshallowsuspensecontext()" }, { @@ -99061,7 +99061,7 @@ "source_location": "L18516", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_setshallowsuspensecontext", - "community": 24, + "community": 17, "norm_label": "setshallowsuspensecontext()" }, { @@ -99071,7 +99071,7 @@ "source_location": "L18519", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_addsubtreesuspensecontext", - "community": 24, + "community": 225, "norm_label": "addsubtreesuspensecontext()" }, { @@ -99081,7 +99081,7 @@ "source_location": "L18522", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_pushsuspensecontext", - "community": 24, + "community": 17, "norm_label": "pushsuspensecontext()" }, { @@ -99091,7 +99091,7 @@ "source_location": "L18525", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_popsuspensecontext", - "community": 24, + "community": 82, "norm_label": "popsuspensecontext()" }, { @@ -99101,7 +99101,7 @@ "source_location": "L18529", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_shouldcapturesuspense", - "community": 24, + "community": 115, "norm_label": "shouldcapturesuspense()" }, { @@ -99111,7 +99111,7 @@ "source_location": "L18549", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_findfirstsuspended", - "community": 24, + "community": 225, "norm_label": "findfirstsuspended()" }, { @@ -99121,7 +99121,7 @@ "source_location": "L18618", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_resetworkinprogressversions", - "community": 24, + "community": 82, "norm_label": "resetworkinprogressversions()" }, { @@ -99131,7 +99131,7 @@ "source_location": "L18633", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_registermutablesourceforhydration", - "community": 24, + "community": 374, "norm_label": "registermutablesourceforhydration()" }, { @@ -99141,7 +99141,7 @@ "source_location": "L18694", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_mounthooktypesdev", - "community": 24, + "community": 137, "norm_label": "mounthooktypesdev()" }, { @@ -99151,7 +99151,7 @@ "source_location": "L18706", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatehooktypesdev", - "community": 24, + "community": 2, "norm_label": "updatehooktypesdev()" }, { @@ -99161,7 +99161,7 @@ "source_location": "L18720", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_checkdepsarearraydev", - "community": 24, + "community": 478, "norm_label": "checkdepsarearraydev()" }, { @@ -99171,7 +99171,7 @@ "source_location": "L18730", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_warnonhookmismatchindev", - "community": 24, + "community": 2, "norm_label": "warnonhookmismatchindev()" }, { @@ -99191,7 +99191,7 @@ "source_location": "L18765", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_arehookinputsequal", - "community": 24, + "community": 142, "norm_label": "arehookinputsequal()" }, { @@ -99201,7 +99201,7 @@ "source_location": "L18800", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_renderwithhooks", - "community": 24, + "community": 17, "norm_label": "renderwithhooks()" }, { @@ -99211,7 +99211,7 @@ "source_location": "L18921", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_checkdidrenderidhook", - "community": 24, + "community": 17, "norm_label": "checkdidrenderidhook()" }, { @@ -99221,7 +99221,7 @@ "source_location": "L18929", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_bailouthooks", - "community": 24, + "community": 17, "norm_label": "bailouthooks()" }, { @@ -99231,7 +99231,7 @@ "source_location": "L18941", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_resethooksafterthrow", - "community": 24, + "community": 115, "norm_label": "resethooksafterthrow()" }, { @@ -99241,7 +99241,7 @@ "source_location": "L18986", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_mountworkinprogresshook", - "community": 24, + "community": 142, "norm_label": "mountworkinprogresshook()" }, { @@ -99251,7 +99251,7 @@ "source_location": "L19006", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updateworkinprogresshook", - "community": 24, + "community": 142, "norm_label": "updateworkinprogresshook()" }, { @@ -99261,7 +99261,7 @@ "source_location": "L19066", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createfunctioncomponentupdatequeue", - "community": 24, + "community": 142, "norm_label": "createfunctioncomponentupdatequeue()" }, { @@ -99271,7 +99271,7 @@ "source_location": "L19073", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_basicstatereducer", - "community": 24, + "community": 142, "norm_label": "basicstatereducer()" }, { @@ -99281,7 +99281,7 @@ "source_location": "L19078", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_mountreducer", - "community": 24, + "community": 17, "norm_label": "mountreducer()" }, { @@ -99291,7 +99291,7 @@ "source_location": "L19102", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatereducer", - "community": 24, + "community": 27, "norm_label": "updatereducer()" }, { @@ -99301,7 +99301,7 @@ "source_location": "L19248", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_rerenderreducer", - "community": 24, + "community": 142, "norm_label": "rerenderreducer()" }, { @@ -99331,7 +99331,7 @@ "source_location": "L19311", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_mountsyncexternalstore", - "community": 24, + "community": 142, "norm_label": "mountsyncexternalstore()" }, { @@ -99341,7 +99341,7 @@ "source_location": "L19389", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatesyncexternalstore", - "community": 24, + "community": 142, "norm_label": "updatesyncexternalstore()" }, { @@ -99351,7 +99351,7 @@ "source_location": "L19445", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_pushstoreconsistencycheck", - "community": 24, + "community": 142, "norm_label": "pushstoreconsistencycheck()" }, { @@ -99361,7 +99361,7 @@ "source_location": "L19468", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatestoreinstance", - "community": 24, + "community": 27, "norm_label": "updatestoreinstance()" }, { @@ -99371,7 +99371,7 @@ "source_location": "L19482", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_subscribetostore", - "community": 24, + "community": 27, "norm_label": "subscribetostore()" }, { @@ -99381,7 +99381,7 @@ "source_location": "L19496", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_checkifsnapshotchanged", - "community": 24, + "community": 27, "norm_label": "checkifsnapshotchanged()" }, { @@ -99391,7 +99391,7 @@ "source_location": "L19508", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_forcestorererender", - "community": 24, + "community": 27, "norm_label": "forcestorererender()" }, { @@ -99401,7 +99401,7 @@ "source_location": "L19516", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_mountstate", - "community": 24, + "community": 142, "norm_label": "mountstate()" }, { @@ -99411,7 +99411,7 @@ "source_location": "L19538", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatestate", - "community": 24, + "community": 142, "norm_label": "updatestate()" }, { @@ -99421,7 +99421,7 @@ "source_location": "L19542", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_rerenderstate", - "community": 24, + "community": 142, "norm_label": "rerenderstate()" }, { @@ -99431,7 +99431,7 @@ "source_location": "L19546", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_pusheffect", - "community": 24, + "community": 142, "norm_label": "pusheffect()" }, { @@ -99441,7 +99441,7 @@ "source_location": "L19577", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_mountref", - "community": 24, + "community": 142, "norm_label": "mountref()" }, { @@ -99451,7 +99451,7 @@ "source_location": "L19589", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updateref", - "community": 24, + "community": 142, "norm_label": "updateref()" }, { @@ -99461,7 +99461,7 @@ "source_location": "L19594", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_mounteffectimpl", - "community": 24, + "community": 142, "norm_label": "mounteffectimpl()" }, { @@ -99471,7 +99471,7 @@ "source_location": "L19601", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updateeffectimpl", - "community": 24, + "community": 142, "norm_label": "updateeffectimpl()" }, { @@ -99481,7 +99481,7 @@ "source_location": "L19624", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_mounteffect", - "community": 24, + "community": 142, "norm_label": "mounteffect()" }, { @@ -99491,7 +99491,7 @@ "source_location": "L19632", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updateeffect", - "community": 24, + "community": 142, "norm_label": "updateeffect()" }, { @@ -99501,7 +99501,7 @@ "source_location": "L19636", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_mountinsertioneffect", - "community": 24, + "community": 142, "norm_label": "mountinsertioneffect()" }, { @@ -99511,7 +99511,7 @@ "source_location": "L19640", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updateinsertioneffect", - "community": 24, + "community": 142, "norm_label": "updateinsertioneffect()" }, { @@ -99521,7 +99521,7 @@ "source_location": "L19644", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_mountlayouteffect", - "community": 24, + "community": 142, "norm_label": "mountlayouteffect()" }, { @@ -99531,7 +99531,7 @@ "source_location": "L19658", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatelayouteffect", - "community": 24, + "community": 142, "norm_label": "updatelayouteffect()" }, { @@ -99551,7 +99551,7 @@ "source_location": "L19690", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_mountimperativehandle", - "community": 24, + "community": 142, "norm_label": "mountimperativehandle()" }, { @@ -99561,7 +99561,7 @@ "source_location": "L19712", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updateimperativehandle", - "community": 24, + "community": 142, "norm_label": "updateimperativehandle()" }, { @@ -99581,7 +99581,7 @@ "source_location": "L19731", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_mountcallback", - "community": 24, + "community": 142, "norm_label": "mountcallback()" }, { @@ -99591,7 +99591,7 @@ "source_location": "L19738", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatecallback", - "community": 24, + "community": 142, "norm_label": "updatecallback()" }, { @@ -99601,7 +99601,7 @@ "source_location": "L19757", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_mountmemo", - "community": 24, + "community": 142, "norm_label": "mountmemo()" }, { @@ -99611,7 +99611,7 @@ "source_location": "L19765", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatememo", - "community": 24, + "community": 142, "norm_label": "updatememo()" }, { @@ -99621,7 +99621,7 @@ "source_location": "L19786", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_mountdeferredvalue", - "community": 24, + "community": 142, "norm_label": "mountdeferredvalue()" }, { @@ -99631,7 +99631,7 @@ "source_location": "L19792", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatedeferredvalue", - "community": 24, + "community": 142, "norm_label": "updatedeferredvalue()" }, { @@ -99641,7 +99641,7 @@ "source_location": "L19799", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_rerenderdeferredvalue", - "community": 24, + "community": 142, "norm_label": "rerenderdeferredvalue()" }, { @@ -99651,7 +99651,7 @@ "source_location": "L19813", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatedeferredvalueimpl", - "community": 24, + "community": 142, "norm_label": "updatedeferredvalueimpl()" }, { @@ -99661,7 +99661,7 @@ "source_location": "L19886", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_mounttransition", - "community": 24, + "community": 142, "norm_label": "mounttransition()" }, { @@ -99671,7 +99671,7 @@ "source_location": "L19898", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatetransition", - "community": 24, + "community": 142, "norm_label": "updatetransition()" }, { @@ -99681,7 +99681,7 @@ "source_location": "L19907", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_rerendertransition", - "community": 24, + "community": 142, "norm_label": "rerendertransition()" }, { @@ -99691,7 +99691,7 @@ "source_location": "L19917", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getisupdatingopaquevalueinrenderphaseindev", - "community": 24, + "community": 2, "norm_label": "getisupdatingopaquevalueinrenderphaseindev()" }, { @@ -99701,7 +99701,7 @@ "source_location": "L19923", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_mountid", - "community": 24, + "community": 71, "norm_label": "mountid()" }, { @@ -99711,7 +99711,7 @@ "source_location": "L19958", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updateid", - "community": 24, + "community": 142, "norm_label": "updateid()" }, { @@ -99721,7 +99721,7 @@ "source_location": "L19964", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_dispatchreduceraction", - "community": 24, + "community": 27, "norm_label": "dispatchreduceraction()" }, { @@ -99731,7 +99731,7 @@ "source_location": "L19995", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_dispatchsetstate", - "community": 24, + "community": 27, "norm_label": "dispatchsetstate()" }, { @@ -99741,7 +99741,7 @@ "source_location": "L20070", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_isrenderphaseupdate", - "community": 24, + "community": 27, "norm_label": "isrenderphaseupdate()" }, { @@ -99751,7 +99751,7 @@ "source_location": "L20075", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_enqueuerenderphaseupdate", - "community": 24, + "community": 27, "norm_label": "enqueuerenderphaseupdate()" }, { @@ -99761,7 +99761,7 @@ "source_location": "L20094", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_entangletransitionupdate", - "community": 24, + "community": 27, "norm_label": "entangletransitionupdate()" }, { @@ -99771,7 +99771,7 @@ "source_location": "L20113", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markupdateindevtools", - "community": 24, + "community": 27, "norm_label": "markupdateindevtools()" }, { @@ -99781,7 +99781,7 @@ "source_location": "L20997", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_iscurrentupdatenested", - "community": 24, + "community": 2, "norm_label": "iscurrentupdatenested()" }, { @@ -99791,7 +99791,7 @@ "source_location": "L21001", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_marknestedupdatescheduled", - "community": 24, + "community": 164, "norm_label": "marknestedupdatescheduled()" }, { @@ -99801,7 +99801,7 @@ "source_location": "L21007", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_resetnestedupdateflag", - "community": 24, + "community": 115, "norm_label": "resetnestedupdateflag()" }, { @@ -99811,7 +99811,7 @@ "source_location": "L21014", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_syncnestedupdateflag", - "community": 24, + "community": 115, "norm_label": "syncnestedupdateflag()" }, { @@ -99821,7 +99821,7 @@ "source_location": "L21021", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getcommittime", - "community": 24, + "community": 2, "norm_label": "getcommittime()" }, { @@ -99831,7 +99831,7 @@ "source_location": "L21025", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_recordcommittime", - "community": 24, + "community": 164, "norm_label": "recordcommittime()" }, { @@ -99841,7 +99841,7 @@ "source_location": "L21030", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_startprofilertimer", - "community": 24, + "community": 2, "norm_label": "startprofilertimer()" }, { @@ -99851,7 +99851,7 @@ "source_location": "L21039", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_stopprofilertimerifrunning", - "community": 24, + "community": 17, "norm_label": "stopprofilertimerifrunning()" }, { @@ -99861,7 +99861,7 @@ "source_location": "L21044", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_stopprofilertimerifrunningandrecorddelta", - "community": 24, + "community": 2, "norm_label": "stopprofilertimerifrunningandrecorddelta()" }, { @@ -99871,7 +99871,7 @@ "source_location": "L21058", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_recordlayouteffectduration", - "community": 24, + "community": 2, "norm_label": "recordlayouteffectduration()" }, { @@ -99881,7 +99881,7 @@ "source_location": "L21085", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_recordpassiveeffectduration", - "community": 24, + "community": 2, "norm_label": "recordpassiveeffectduration()" }, { @@ -99891,7 +99891,7 @@ "source_location": "L21123", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_startlayouteffecttimer", - "community": 24, + "community": 2, "norm_label": "startlayouteffecttimer()" }, { @@ -99901,7 +99901,7 @@ "source_location": "L21128", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_startpassiveeffecttimer", - "community": 24, + "community": 2, "norm_label": "startpassiveeffecttimer()" }, { @@ -99911,7 +99911,7 @@ "source_location": "L21133", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_transferactualduration", - "community": 24, + "community": 82, "norm_label": "transferactualduration()" }, { @@ -99921,7 +99921,7 @@ "source_location": "L21145", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_resolvedefaultprops", - "community": 24, + "community": 2, "norm_label": "resolvedefaultprops()" }, { @@ -99931,7 +99931,7 @@ "source_location": "L21228", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_applyderivedstatefromprops", - "community": 24, + "community": 17, "norm_label": "applyderivedstatefromprops()" }, { @@ -99941,7 +99941,7 @@ "source_location": "L21342", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_checkshouldcomponentupdate", - "community": 24, + "community": 17, "norm_label": "checkshouldcomponentupdate()" }, { @@ -99951,7 +99951,7 @@ "source_location": "L21375", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_checkclassinstance", - "community": 24, + "community": 17, "norm_label": "checkclassinstance()" }, { @@ -99961,7 +99961,7 @@ "source_location": "L21498", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_adoptclassinstance", - "community": 24, + "community": 17, "norm_label": "adoptclassinstance()" }, { @@ -99971,7 +99971,7 @@ "source_location": "L21509", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_constructclassinstance", - "community": 24, + "community": 17, "norm_label": "constructclassinstance()" }, { @@ -99981,7 +99981,7 @@ "source_location": "L21628", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_callcomponentwillmount", - "community": 24, + "community": 2, "norm_label": "callcomponentwillmount()" }, { @@ -99991,7 +99991,7 @@ "source_location": "L21648", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_callcomponentwillreceiveprops", - "community": 24, + "community": 17, "norm_label": "callcomponentwillreceiveprops()" }, { @@ -100001,7 +100001,7 @@ "source_location": "L21675", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_mountclassinstance", - "community": 24, + "community": 17, "norm_label": "mountclassinstance()" }, { @@ -100011,7 +100011,7 @@ "source_location": "L21747", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_resumemountclassinstance", - "community": 24, + "community": 17, "norm_label": "resumemountclassinstance()" }, { @@ -100021,7 +100021,7 @@ "source_location": "L21866", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updateclassinstance", - "community": 24, + "community": 17, "norm_label": "updateclassinstance()" }, { @@ -100031,7 +100031,7 @@ "source_location": "L21981", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createcapturedvalueatfiber", - "community": 24, + "community": 115, "norm_label": "createcapturedvalueatfiber()" }, { @@ -100041,7 +100041,7 @@ "source_location": "L21991", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createcapturedvalue", - "community": 24, + "community": 225, "norm_label": "createcapturedvalue()" }, { @@ -100051,7 +100051,7 @@ "source_location": "L22003", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_showerrordialog", - "community": 24, + "community": 27, "norm_label": "showerrordialog()" }, { @@ -100061,7 +100061,7 @@ "source_location": "L22007", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_logcapturederror", - "community": 24, + "community": 27, "norm_label": "logcapturederror()" }, { @@ -100071,7 +100071,7 @@ "source_location": "L22078", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createrooterrorupdate", - "community": 24, + "community": 27, "norm_label": "createrooterrorupdate()" }, { @@ -100081,7 +100081,7 @@ "source_location": "L22097", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createclasserrorupdate", - "community": 24, + "community": 27, "norm_label": "createclasserrorupdate()" }, { @@ -100091,7 +100091,7 @@ "source_location": "L22159", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_attachpinglistener", - "community": 24, + "community": 115, "norm_label": "attachpinglistener()" }, { @@ -100101,7 +100101,7 @@ "source_location": "L22204", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_attachretrylistener", - "community": 24, + "community": 115, "norm_label": "attachretrylistener()" }, { @@ -100111,7 +100111,7 @@ "source_location": "L22227", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_resetsuspendedcomponent", - "community": 24, + "community": 115, "norm_label": "resetsuspendedcomponent()" }, { @@ -100121,7 +100121,7 @@ "source_location": "L22247", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getnearestsuspenseboundarytocapture", - "community": 24, + "community": 115, "norm_label": "getnearestsuspenseboundarytocapture()" }, { @@ -100131,7 +100131,7 @@ "source_location": "L22263", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_marksuspenseboundaryshouldcapture", - "community": 24, + "community": 27, "norm_label": "marksuspenseboundaryshouldcapture()" }, { @@ -100141,7 +100141,7 @@ "source_location": "L22371", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_throwexception", - "community": 24, + "community": 115, "norm_label": "throwexception()" }, { @@ -100151,7 +100151,7 @@ "source_location": "L22504", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getsuspendedcache", - "community": 24, + "community": 225, "norm_label": "getsuspendedcache()" }, { @@ -100161,7 +100161,7 @@ "source_location": "L22534", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_reconcilechildren", - "community": 24, + "community": 17, "norm_label": "reconcilechildren()" }, { @@ -100171,7 +100171,7 @@ "source_location": "L22551", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_forceunmountcurrentandreconcile", - "community": 24, + "community": 17, "norm_label": "forceunmountcurrentandreconcile()" }, { @@ -100181,7 +100181,7 @@ "source_location": "L22568", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updateforwardref", - "community": 24, + "community": 17, "norm_label": "updateforwardref()" }, { @@ -100191,7 +100191,7 @@ "source_location": "L22635", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatememocomponent", - "community": 24, + "community": 17, "norm_label": "updatememocomponent()" }, { @@ -100201,7 +100201,7 @@ "source_location": "L22726", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatesimplememocomponent", - "community": 24, + "community": 17, "norm_label": "updatesimplememocomponent()" }, { @@ -100211,7 +100211,7 @@ "source_location": "L22811", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updateoffscreencomponent", - "community": 24, + "community": 17, "norm_label": "updateoffscreencomponent()" }, { @@ -100221,7 +100221,7 @@ "source_location": "L22895", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatefragment", - "community": 24, + "community": 17, "norm_label": "updatefragment()" }, { @@ -100231,7 +100231,7 @@ "source_location": "L22901", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatemode", - "community": 24, + "community": 17, "norm_label": "updatemode()" }, { @@ -100241,7 +100241,7 @@ "source_location": "L22907", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updateprofiler", - "community": 24, + "community": 17, "norm_label": "updateprofiler()" }, { @@ -100251,7 +100251,7 @@ "source_location": "L22926", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markref", - "community": 24, + "community": 170, "norm_label": "markref()" }, { @@ -100261,7 +100261,7 @@ "source_location": "L22939", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatefunctioncomponent", - "community": 24, + "community": 17, "norm_label": "updatefunctioncomponent()" }, { @@ -100271,7 +100271,7 @@ "source_location": "L23007", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updateclasscomponent", - "community": 24, + "community": 17, "norm_label": "updateclasscomponent()" }, { @@ -100281,7 +100281,7 @@ "source_location": "L23098", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_finishclasscomponent", - "community": 24, + "community": 17, "norm_label": "finishclasscomponent()" }, { @@ -100291,7 +100291,7 @@ "source_location": "L23179", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_pushhostrootcontext", - "community": 24, + "community": 17, "norm_label": "pushhostrootcontext()" }, { @@ -100301,7 +100301,7 @@ "source_location": "L23192", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatehostroot", - "community": 24, + "community": 17, "norm_label": "updatehostroot()" }, { @@ -100311,7 +100311,7 @@ "source_location": "L23272", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_mounthostrootwithouthydrating", - "community": 24, + "community": 17, "norm_label": "mounthostrootwithouthydrating()" }, { @@ -100321,7 +100321,7 @@ "source_location": "L23281", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatehostcomponent", - "community": 24, + "community": 170, "norm_label": "updatehostcomponent()" }, { @@ -100331,7 +100331,7 @@ "source_location": "L23311", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatehosttext", - "community": 24, + "community": 170, "norm_label": "updatehosttext()" }, { @@ -100341,7 +100341,7 @@ "source_location": "L23321", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_mountlazycomponent", - "community": 24, + "community": 17, "norm_label": "mountlazycomponent()" }, { @@ -100351,7 +100351,7 @@ "source_location": "L23399", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_mountincompleteclasscomponent", - "community": 24, + "community": 17, "norm_label": "mountincompleteclasscomponent()" }, { @@ -100361,7 +100361,7 @@ "source_location": "L23422", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_mountindeterminatecomponent", - "community": 24, + "community": 17, "norm_label": "mountindeterminatecomponent()" }, { @@ -100371,7 +100371,7 @@ "source_location": "L23550", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_validatefunctioncomponentindev", - "community": 24, + "community": 17, "norm_label": "validatefunctioncomponentindev()" }, { @@ -100381,7 +100381,7 @@ "source_location": "L23618", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_mountsuspenseoffscreenstate", - "community": 24, + "community": 225, "norm_label": "mountsuspenseoffscreenstate()" }, { @@ -100391,7 +100391,7 @@ "source_location": "L23626", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatesuspenseoffscreenstate", - "community": 24, + "community": 225, "norm_label": "updatesuspenseoffscreenstate()" }, { @@ -100401,7 +100401,7 @@ "source_location": "L23637", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_shouldremainonfallback", - "community": 24, + "community": 225, "norm_label": "shouldremainonfallback()" }, { @@ -100411,7 +100411,7 @@ "source_location": "L23657", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getremainingworkinprimarytree", - "community": 24, + "community": 225, "norm_label": "getremainingworkinprimarytree()" }, { @@ -100421,7 +100421,7 @@ "source_location": "L23662", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatesuspensecomponent", - "community": 24, + "community": 225, "norm_label": "updatesuspensecomponent()" }, { @@ -100431,7 +100431,7 @@ "source_location": "L23781", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_mountsuspenseprimarychildren", - "community": 24, + "community": 225, "norm_label": "mountsuspenseprimarychildren()" }, { @@ -100441,7 +100441,7 @@ "source_location": "L23793", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_mountsuspensefallbackchildren", - "community": 24, + "community": 225, "norm_label": "mountsuspensefallbackchildren()" }, { @@ -100451,7 +100451,7 @@ "source_location": "L23834", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_mountworkinprogressoffscreenfiber", - "community": 24, + "community": 225, "norm_label": "mountworkinprogressoffscreenfiber()" }, { @@ -100461,7 +100461,7 @@ "source_location": "L23840", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updateworkinprogressoffscreenfiber", - "community": 24, + "community": 225, "norm_label": "updateworkinprogressoffscreenfiber()" }, { @@ -100471,7 +100471,7 @@ "source_location": "L23846", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatesuspenseprimarychildren", - "community": 24, + "community": 225, "norm_label": "updatesuspenseprimarychildren()" }, { @@ -100481,7 +100481,7 @@ "source_location": "L23877", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatesuspensefallbackchildren", - "community": 24, + "community": 225, "norm_label": "updatesuspensefallbackchildren()" }, { @@ -100491,7 +100491,7 @@ "source_location": "L23942", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_retrysuspensecomponentwithouthydrating", - "community": 24, + "community": 225, "norm_label": "retrysuspensecomponentwithouthydrating()" }, { @@ -100501,7 +100501,7 @@ "source_location": "L23967", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_mountsuspensefallbackafterretrywithouthydrating", - "community": 24, + "community": 225, "norm_label": "mountsuspensefallbackafterretrywithouthydrating()" }, { @@ -100511,7 +100511,7 @@ "source_location": "L23992", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_mountdehydratedsuspensecomponent", - "community": 24, + "community": 225, "norm_label": "mountdehydratedsuspensecomponent()" }, { @@ -100521,7 +100521,7 @@ "source_location": "L24023", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatedehydratedsuspensecomponent", - "community": 24, + "community": 225, "norm_label": "updatedehydratedsuspensecomponent()" }, { @@ -100531,7 +100531,7 @@ "source_location": "L24161", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_schedulesuspenseworkonfiber", - "community": 24, + "community": 27, "norm_label": "schedulesuspenseworkonfiber()" }, { @@ -100541,7 +100541,7 @@ "source_location": "L24172", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_propagatesuspensecontextchange", - "community": 24, + "community": 17, "norm_label": "propagatesuspensecontextchange()" }, { @@ -100551,7 +100551,7 @@ "source_location": "L24215", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_findlastcontentrow", - "community": 24, + "community": 225, "norm_label": "findlastcontentrow()" }, { @@ -100561,7 +100561,7 @@ "source_location": "L24239", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_validaterevealorder", - "community": 24, + "community": 17, "norm_label": "validaterevealorder()" }, { @@ -100571,7 +100571,7 @@ "source_location": "L24275", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_validatetailoptions", - "community": 24, + "community": 17, "norm_label": "validatetailoptions()" }, { @@ -100581,7 +100581,7 @@ "source_location": "L24291", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_validatesuspenselistnestedchild", - "community": 24, + "community": 478, "norm_label": "validatesuspenselistnestedchild()" }, { @@ -100591,7 +100591,7 @@ "source_location": "L24308", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_validatesuspenselistchildren", - "community": 24, + "community": 478, "norm_label": "validatesuspenselistchildren()" }, { @@ -100601,7 +100601,7 @@ "source_location": "L24343", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_initsuspenselistrenderstate", - "community": 24, + "community": 17, "norm_label": "initsuspenselistrenderstate()" }, { @@ -100611,7 +100611,7 @@ "source_location": "L24373", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatesuspenselistcomponent", - "community": 24, + "community": 17, "norm_label": "updatesuspenselistcomponent()" }, { @@ -100621,7 +100621,7 @@ "source_location": "L24484", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updateportalcomponent", - "community": 24, + "community": 17, "norm_label": "updateportalcomponent()" }, { @@ -100631,7 +100631,7 @@ "source_location": "L24504", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatecontextprovider", - "community": 24, + "community": 17, "norm_label": "updatecontextprovider()" }, { @@ -100641,7 +100641,7 @@ "source_location": "L24553", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatecontextconsumer", - "community": 24, + "community": 17, "norm_label": "updatecontextconsumer()" }, { @@ -100651,7 +100651,7 @@ "source_location": "L24614", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markworkinprogressreceivedupdate", - "community": 24, + "community": 142, "norm_label": "markworkinprogressreceivedupdate()" }, { @@ -100661,7 +100661,7 @@ "source_location": "L24618", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_resetsuspendedcurrentonmountinlegacymode", - "community": 24, + "community": 17, "norm_label": "resetsuspendedcurrentonmountinlegacymode()" }, { @@ -100671,7 +100671,7 @@ "source_location": "L24633", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_bailoutonalreadyfinishedwork", - "community": 24, + "community": 17, "norm_label": "bailoutonalreadyfinishedwork()" }, { @@ -100681,7 +100681,7 @@ "source_location": "L24661", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_remountfiber", - "community": 24, + "community": 137, "norm_label": "remountfiber()" }, { @@ -100691,7 +100691,7 @@ "source_location": "L24719", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_checkscheduledupdateorcontext", - "community": 24, + "community": 17, "norm_label": "checkscheduledupdateorcontext()" }, { @@ -100701,7 +100701,7 @@ "source_location": "L24731", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_attemptearlybailoutifnoscheduledupdate", - "community": 24, + "community": 17, "norm_label": "attemptearlybailoutifnoscheduledupdate()" }, { @@ -100711,7 +100711,7 @@ "source_location": "L24909", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_beginwork", - "community": 24, + "community": 17, "norm_label": "beginwork()" }, { @@ -100721,7 +100721,7 @@ "source_location": "L25104", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markupdate", - "community": 24, + "community": 82, "norm_label": "markupdate()" }, { @@ -100731,7 +100731,7 @@ "source_location": "L25110", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markref_1", - "community": 24, + "community": 82, "norm_label": "markref$1()" }, { @@ -100741,7 +100741,7 @@ "source_location": "L25197", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_cutofftailifneeded", - "community": 24, + "community": 82, "norm_label": "cutofftailifneeded()" }, { @@ -100751,7 +100751,7 @@ "source_location": "L25277", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_bubbleproperties", - "community": 24, + "community": 170, "norm_label": "bubbleproperties()" }, { @@ -100761,7 +100761,7 @@ "source_location": "L25372", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_completedehydratedsuspenseboundary", - "community": 24, + "community": 170, "norm_label": "completedehydratedsuspenseboundary()" }, { @@ -100771,7 +100771,7 @@ "source_location": "L25457", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_completework", - "community": 24, + "community": 82, "norm_label": "completework()" }, { @@ -100781,7 +100781,7 @@ "source_location": "L26034", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_unwindwork", - "community": 24, + "community": 82, "norm_label": "unwindwork()" }, { @@ -100791,7 +100791,7 @@ "source_location": "L26150", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_unwindinterruptedwork", - "community": 24, + "community": 82, "norm_label": "unwindinterruptedwork()" }, { @@ -100811,7 +100811,7 @@ "source_location": "L26255", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_safelycallcommithooklayouteffectlistmount", - "community": 24, + "community": 2, "norm_label": "safelycallcommithooklayouteffectlistmount()" }, { @@ -100821,7 +100821,7 @@ "source_location": "L26264", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_safelycallcomponentwillunmount", - "community": 24, + "community": 2, "norm_label": "safelycallcomponentwillunmount()" }, { @@ -100831,7 +100831,7 @@ "source_location": "L26273", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_safelycallcomponentdidmount", - "community": 24, + "community": 2, "norm_label": "safelycallcomponentdidmount()" }, { @@ -100841,7 +100841,7 @@ "source_location": "L26282", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_safelyattachref", - "community": 24, + "community": 2, "norm_label": "safelyattachref()" }, { @@ -100851,7 +100851,7 @@ "source_location": "L26290", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_safelydetachref", - "community": 24, + "community": 2, "norm_label": "safelydetachref()" }, { @@ -100861,7 +100861,7 @@ "source_location": "L26323", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_safelycalldestroy", - "community": 24, + "community": 2, "norm_label": "safelycalldestroy()" }, { @@ -100891,7 +100891,7 @@ "source_location": "L26359", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitbeforemutationeffects_complete", - "community": 24, + "community": 2, "norm_label": "commitbeforemutationeffects_complete()" }, { @@ -100901,7 +100901,7 @@ "source_location": "L26383", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitbeforemutationeffectsonfiber", - "community": 24, + "community": 2, "norm_label": "commitbeforemutationeffectsonfiber()" }, { @@ -100911,7 +100911,7 @@ "source_location": "L26464", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commithookeffectlistunmount", - "community": 24, + "community": 2, "norm_label": "commithookeffectlistunmount()" }, { @@ -100921,7 +100921,7 @@ "source_location": "L26516", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commithookeffectlistmount", - "community": 24, + "community": 2, "norm_label": "commithookeffectlistmount()" }, { @@ -100931,7 +100931,7 @@ "source_location": "L26593", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitpassiveeffectdurations", - "community": 24, + "community": 2, "norm_label": "commitpassiveeffectdurations()" }, { @@ -100941,7 +100941,7 @@ "source_location": "L26646", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitlayouteffectonfiber", - "community": 24, + "community": 2, "norm_label": "commitlayouteffectonfiber()" }, { @@ -100951,7 +100951,7 @@ "source_location": "L26902", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_reappearlayouteffectsonfiber", - "community": 24, + "community": 2, "norm_label": "reappearlayouteffectsonfiber()" }, { @@ -100961,7 +100961,7 @@ "source_location": "L26944", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_hideorunhideallchildren", - "community": 24, + "community": 2, "norm_label": "hideorunhideallchildren()" }, { @@ -100971,7 +100971,7 @@ "source_location": "L27016", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitattachref", - "community": 24, + "community": 2, "norm_label": "commitattachref()" }, { @@ -100981,7 +100981,7 @@ "source_location": "L27063", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_detachfibermutation", - "community": 24, + "community": 2, "norm_label": "detachfibermutation()" }, { @@ -101001,7 +101001,7 @@ "source_location": "L27151", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_gethostparentfiber", - "community": 24, + "community": 569, "norm_label": "gethostparentfiber()" }, { @@ -101011,7 +101011,7 @@ "source_location": "L27165", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_ishostparent", - "community": 24, + "community": 569, "norm_label": "ishostparent()" }, { @@ -101021,7 +101021,7 @@ "source_location": "L27169", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_gethostsibling", - "community": 24, + "community": 569, "norm_label": "gethostsibling()" }, { @@ -101031,7 +101031,7 @@ "source_location": "L27217", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitplacement", - "community": 24, + "community": 569, "norm_label": "commitplacement()" }, { @@ -101041,7 +101041,7 @@ "source_location": "L27258", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_insertorappendplacementnodeintocontainer", - "community": 24, + "community": 569, "norm_label": "insertorappendplacementnodeintocontainer()" }, { @@ -101051,7 +101051,7 @@ "source_location": "L27285", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_insertorappendplacementnode", - "community": 24, + "community": 569, "norm_label": "insertorappendplacementnode()" }, { @@ -101061,7 +101061,7 @@ "source_location": "L27319", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitdeletioneffects", - "community": 24, + "community": 2, "norm_label": "commitdeletioneffects()" }, { @@ -101071,7 +101071,7 @@ "source_location": "L27377", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_recursivelytraversedeletioneffects", - "community": 24, + "community": 2, "norm_label": "recursivelytraversedeletioneffects()" }, { @@ -101081,7 +101081,7 @@ "source_location": "L27387", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitdeletioneffectsonfiber", - "community": 24, + "community": 2, "norm_label": "commitdeletioneffectsonfiber()" }, { @@ -101091,7 +101091,7 @@ "source_location": "L27569", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitsuspensecallback", - "community": 24, + "community": 2, "norm_label": "commitsuspensecallback()" }, { @@ -101101,7 +101101,7 @@ "source_location": "L27574", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitsuspensehydrationcallbacks", - "community": 24, + "community": 2, "norm_label": "commitsuspensehydrationcallbacks()" }, { @@ -101111,7 +101111,7 @@ "source_location": "L27595", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_attachsuspenseretrylisteners", - "community": 24, + "community": 115, "norm_label": "attachsuspenseretrylisteners()" }, { @@ -101121,7 +101121,7 @@ "source_location": "L27632", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitmutationeffects", - "community": 24, + "community": 2, "norm_label": "commitmutationeffects()" }, { @@ -101131,7 +101131,7 @@ "source_location": "L27642", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_recursivelytraversemutationeffects", - "community": 24, + "community": 2, "norm_label": "recursivelytraversemutationeffects()" }, { @@ -101141,7 +101141,7 @@ "source_location": "L27674", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitmutationeffectsonfiber", - "community": 24, + "community": 2, "norm_label": "commitmutationeffectsonfiber()" }, { @@ -101151,7 +101151,7 @@ "source_location": "L27976", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitreconciliationeffects", - "community": 24, + "community": 569, "norm_label": "commitreconciliationeffects()" }, { @@ -101161,7 +101161,7 @@ "source_location": "L28001", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitlayouteffects", - "community": 24, + "community": 2, "norm_label": "commitlayouteffects()" }, { @@ -101171,7 +101171,7 @@ "source_location": "L28010", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitlayouteffects_begin", - "community": 24, + "community": 2, "norm_label": "commitlayouteffects_begin()" }, { @@ -101181,7 +101181,7 @@ "source_location": "L28072", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitlayoutmounteffects_complete", - "community": 24, + "community": 2, "norm_label": "commitlayoutmounteffects_complete()" }, { @@ -101191,7 +101191,7 @@ "source_location": "L28106", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_disappearlayouteffects_begin", - "community": 24, + "community": 2, "norm_label": "disappearlayouteffects_begin()" }, { @@ -101201,7 +101201,7 @@ "source_location": "L28176", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_disappearlayouteffects_complete", - "community": 24, + "community": 2, "norm_label": "disappearlayouteffects_complete()" }, { @@ -101211,7 +101211,7 @@ "source_location": "L28197", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_reappearlayouteffects_begin", - "community": 24, + "community": 2, "norm_label": "reappearlayouteffects_begin()" }, { @@ -101221,7 +101221,7 @@ "source_location": "L28224", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_reappearlayouteffects_complete", - "community": 24, + "community": 2, "norm_label": "reappearlayouteffects_complete()" }, { @@ -101231,7 +101231,7 @@ "source_location": "L28257", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitpassivemounteffects", - "community": 24, + "community": 164, "norm_label": "commitpassivemounteffects()" }, { @@ -101241,7 +101241,7 @@ "source_location": "L28262", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitpassivemounteffects_begin", - "community": 24, + "community": 164, "norm_label": "commitpassivemounteffects_begin()" }, { @@ -101251,7 +101251,7 @@ "source_location": "L28276", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitpassivemounteffects_complete", - "community": 24, + "community": 2, "norm_label": "commitpassivemounteffects_complete()" }, { @@ -101261,7 +101261,7 @@ "source_location": "L28309", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitpassivemountonfiber", - "community": 24, + "community": 2, "norm_label": "commitpassivemountonfiber()" }, { @@ -101271,7 +101271,7 @@ "source_location": "L28332", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitpassiveunmounteffects", - "community": 24, + "community": 164, "norm_label": "commitpassiveunmounteffects()" }, { @@ -101281,7 +101281,7 @@ "source_location": "L28337", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitpassiveunmounteffects_begin", - "community": 24, + "community": 2, "norm_label": "commitpassiveunmounteffects_begin()" }, { @@ -101291,7 +101291,7 @@ "source_location": "L28394", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitpassiveunmounteffects_complete", - "community": 24, + "community": 2, "norm_label": "commitpassiveunmounteffects_complete()" }, { @@ -101301,7 +101301,7 @@ "source_location": "L28416", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitpassiveunmountonfiber", - "community": 24, + "community": 2, "norm_label": "commitpassiveunmountonfiber()" }, { @@ -101311,7 +101311,7 @@ "source_location": "L28435", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitpassiveunmounteffectsinsideofdeletedtree_begin", - "community": 24, + "community": 2, "norm_label": "commitpassiveunmounteffectsinsideofdeletedtree_begin()" }, { @@ -101331,7 +101331,7 @@ "source_location": "L28483", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitpassiveunmountinsidedeletedtreeonfiber", - "community": 24, + "community": 2, "norm_label": "commitpassiveunmountinsidedeletedtreeonfiber()" }, { @@ -101341,7 +101341,7 @@ "source_location": "L28503", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_invokelayouteffectmountindev", - "community": 24, + "community": 2, "norm_label": "invokelayouteffectmountindev()" }, { @@ -101351,7 +101351,7 @@ "source_location": "L28537", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_invokepassiveeffectmountindev", - "community": 24, + "community": 2, "norm_label": "invokepassiveeffectmountindev()" }, { @@ -101361,7 +101361,7 @@ "source_location": "L28558", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_invokelayouteffectunmountindev", - "community": 24, + "community": 2, "norm_label": "invokelayouteffectunmountindev()" }, { @@ -101371,7 +101371,7 @@ "source_location": "L28590", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_invokepassiveeffectunmountindev", - "community": 24, + "community": 2, "norm_label": "invokepassiveeffectunmountindev()" }, { @@ -101381,7 +101381,7 @@ "source_location": "L28624", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_oncommitroot_1", - "community": 24, + "community": 164, "norm_label": "oncommitroot$1()" }, { @@ -101391,7 +101391,7 @@ "source_location": "L28633", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_islegacyactenvironment", - "community": 24, + "community": 2, "norm_label": "islegacyactenvironment()" }, { @@ -101401,7 +101401,7 @@ "source_location": "L28646", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_isconcurrentactenvironment", - "community": 24, + "community": 2, "norm_label": "isconcurrentactenvironment()" }, { @@ -101411,7 +101411,7 @@ "source_location": "L28735", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_resetrendertimer", - "community": 24, + "community": 164, "norm_label": "resetrendertimer()" }, { @@ -101421,7 +101421,7 @@ "source_location": "L28739", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getrendertargettime", - "community": 24, + "community": 82, "norm_label": "getrendertargettime()" }, { @@ -101431,7 +101431,7 @@ "source_location": "L28765", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getworkinprogressroot", - "community": 24, + "community": 142, "norm_label": "getworkinprogressroot()" }, { @@ -101441,7 +101441,7 @@ "source_location": "L28768", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_requesteventtime", - "community": 24, + "community": 27, "norm_label": "requesteventtime()" }, { @@ -101451,7 +101451,7 @@ "source_location": "L28784", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_requestupdatelane", - "community": 24, + "community": 27, "norm_label": "requestupdatelane()" }, { @@ -101461,7 +101461,7 @@ "source_location": "L28853", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_requestretrylane", - "community": 24, + "community": 27, "norm_label": "requestretrylane()" }, { @@ -101471,7 +101471,7 @@ "source_location": "L28867", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_scheduleupdateonfiber", - "community": 24, + "community": 27, "norm_label": "scheduleupdateonfiber()" }, { @@ -101481,7 +101481,7 @@ "source_location": "L28938", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_scheduleinitialhydrationonroot", - "community": 24, + "community": 27, "norm_label": "scheduleinitialhydrationonroot()" }, { @@ -101491,7 +101491,7 @@ "source_location": "L28953", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_isunsafeclassrenderphaseupdate", - "community": 24, + "community": 27, "norm_label": "isunsafeclassrenderphaseupdate()" }, { @@ -101501,7 +101501,7 @@ "source_location": "L28966", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_ensurerootisscheduled", - "community": 24, + "community": 27, "norm_label": "ensurerootisscheduled()" }, { @@ -101511,7 +101511,7 @@ "source_location": "L29085", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_performconcurrentworkonroot", - "community": 24, + "community": 115, "norm_label": "performconcurrentworkonroot()" }, { @@ -101521,7 +101521,7 @@ "source_location": "L29217", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_recoverfromconcurrenterror", - "community": 24, + "community": 115, "norm_label": "recoverfromconcurrenterror()" }, { @@ -101531,7 +101531,7 @@ "source_location": "L29262", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_queuerecoverableerrors", - "community": 24, + "community": 170, "norm_label": "queuerecoverableerrors()" }, { @@ -101541,7 +101541,7 @@ "source_location": "L29270", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_finishconcurrentrender", - "community": 24, + "community": 27, "norm_label": "finishconcurrentrender()" }, { @@ -101551,7 +101551,7 @@ "source_location": "L29385", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_isrenderconsistentwithexternalstores", - "community": 24, + "community": 115, "norm_label": "isrenderconsistentwithexternalstores()" }, { @@ -101561,7 +101561,7 @@ "source_location": "L29448", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markrootsuspended_1", - "community": 24, + "community": 115, "norm_label": "markrootsuspended$1()" }, { @@ -101571,7 +101571,7 @@ "source_location": "L29460", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_performsyncworkonroot", - "community": 24, + "community": 115, "norm_label": "performsyncworkonroot()" }, { @@ -101581,7 +101581,7 @@ "source_location": "L29517", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_flushroot", - "community": 24, + "community": 164, "norm_label": "flushroot()" }, { @@ -101591,7 +101591,7 @@ "source_location": "L29528", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_batchedupdates_1", - "community": 24, + "community": 164, "norm_label": "batchedupdates$1()" }, { @@ -101601,7 +101601,7 @@ "source_location": "L29545", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_discreteupdates", - "community": 24, + "community": 164, "norm_label": "discreteupdates()" }, { @@ -101611,7 +101611,7 @@ "source_location": "L29565", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_flushsync", - "community": 24, + "community": 164, "norm_label": "flushsync()" }, { @@ -101621,7 +101621,7 @@ "source_location": "L29598", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_isalreadyrendering", - "community": 24, + "community": 164, "norm_label": "isalreadyrendering()" }, { @@ -101631,7 +101631,7 @@ "source_location": "L29603", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_pushrenderlanes", - "community": 24, + "community": 137, "norm_label": "pushrenderlanes()" }, { @@ -101641,7 +101641,7 @@ "source_location": "L29608", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_poprenderlanes", - "community": 24, + "community": 82, "norm_label": "poprenderlanes()" }, { @@ -101651,7 +101651,7 @@ "source_location": "L29613", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_preparefreshstack", - "community": 24, + "community": 115, "norm_label": "preparefreshstack()" }, { @@ -101661,7 +101661,7 @@ "source_location": "L29656", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_handleerror", - "community": 24, + "community": 115, "norm_label": "handleerror()" }, { @@ -101671,7 +101671,7 @@ "source_location": "L29727", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_pushdispatcher", - "community": 24, + "community": 115, "norm_label": "pushdispatcher()" }, { @@ -101681,7 +101681,7 @@ "source_location": "L29741", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_popdispatcher", - "community": 24, + "community": 115, "norm_label": "popdispatcher()" }, { @@ -101691,7 +101691,7 @@ "source_location": "L29745", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markcommittimeoffallback", - "community": 24, + "community": 2, "norm_label": "markcommittimeoffallback()" }, { @@ -101701,7 +101701,7 @@ "source_location": "L29748", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markskippedupdatelanes", - "community": 24, + "community": 27, "norm_label": "markskippedupdatelanes()" }, { @@ -101711,7 +101711,7 @@ "source_location": "L29751", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_renderdidsuspend", - "community": 24, + "community": 82, "norm_label": "renderdidsuspend()" }, { @@ -101721,7 +101721,7 @@ "source_location": "L29756", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_renderdidsuspenddelayifpossible", - "community": 24, + "community": 27, "norm_label": "renderdidsuspenddelayifpossible()" }, { @@ -101731,7 +101731,7 @@ "source_location": "L29774", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_renderdiderror", - "community": 24, + "community": 115, "norm_label": "renderdiderror()" }, { @@ -101741,7 +101741,7 @@ "source_location": "L29787", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_renderhasnotsuspendedyet", - "community": 24, + "community": 82, "norm_label": "renderhasnotsuspendedyet()" }, { @@ -101751,7 +101751,7 @@ "source_location": "L29793", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_renderrootsync", - "community": 24, + "community": 115, "norm_label": "renderrootsync()" }, { @@ -101761,7 +101761,7 @@ "source_location": "L29856", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_workloopsync", - "community": 24, + "community": 115, "norm_label": "workloopsync()" }, { @@ -101771,7 +101771,7 @@ "source_location": "L29863", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_renderrootconcurrent", - "community": 24, + "community": 115, "norm_label": "renderrootconcurrent()" }, { @@ -101781,7 +101781,7 @@ "source_location": "L29933", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_workloopconcurrent", - "community": 24, + "community": 115, "norm_label": "workloopconcurrent()" }, { @@ -101791,7 +101791,7 @@ "source_location": "L29940", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_performunitofwork", - "community": 24, + "community": 2, "norm_label": "performunitofwork()" }, { @@ -101801,7 +101801,7 @@ "source_location": "L29969", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_completeunitofwork", - "community": 24, + "community": 2, "norm_label": "completeunitofwork()" }, { @@ -101811,7 +101811,7 @@ "source_location": "L30066", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitroot", - "community": 24, + "community": 164, "norm_label": "commitroot()" }, { @@ -101821,7 +101821,7 @@ "source_location": "L30084", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitrootimpl", - "community": 24, + "community": 164, "norm_label": "commitrootimpl()" }, { @@ -101831,7 +101831,7 @@ "source_location": "L30361", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_flushpassiveeffects", - "community": 24, + "community": 164, "norm_label": "flushpassiveeffects()" }, { @@ -101841,7 +101841,7 @@ "source_location": "L30386", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_enqueuependingpassiveprofilereffect", - "community": 24, + "community": 137, "norm_label": "enqueuependingpassiveprofilereffect()" }, { @@ -101851,7 +101851,7 @@ "source_location": "L30400", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_flushpassiveeffectsimpl", - "community": 24, + "community": 164, "norm_label": "flushpassiveeffectsimpl()" }, { @@ -101861,7 +101861,7 @@ "source_location": "L30485", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_isalreadyfailedlegacyerrorboundary", - "community": 24, + "community": 115, "norm_label": "isalreadyfailedlegacyerrorboundary()" }, { @@ -101871,7 +101871,7 @@ "source_location": "L30488", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_marklegacyerrorboundaryasfailed", - "community": 24, + "community": 27, "norm_label": "marklegacyerrorboundaryasfailed()" }, { @@ -101891,7 +101891,7 @@ "source_location": "L30505", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_capturecommitphaseerroronroot", - "community": 24, + "community": 27, "norm_label": "capturecommitphaseerroronroot()" }, { @@ -101901,7 +101901,7 @@ "source_location": "L30517", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_capturecommitphaseerror", - "community": 24, + "community": 2, "norm_label": "capturecommitphaseerror()" }, { @@ -101911,7 +101911,7 @@ "source_location": "L30571", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_pingsuspendedroot", - "community": 24, + "community": 27, "norm_label": "pingsuspendedroot()" }, { @@ -101921,7 +101921,7 @@ "source_location": "L30605", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_retrytimedoutboundary", - "community": 24, + "community": 27, "norm_label": "retrytimedoutboundary()" }, { @@ -101931,7 +101931,7 @@ "source_location": "L30626", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_retrydehydratedsuspenseboundary", - "community": 24, + "community": 27, "norm_label": "retrydehydratedsuspenseboundary()" }, { @@ -101941,7 +101941,7 @@ "source_location": "L30636", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_resolveretrywakeable", - "community": 24, + "community": 27, "norm_label": "resolveretrywakeable()" }, { @@ -101951,7 +101951,7 @@ "source_location": "L30677", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_jnd", - "community": 24, + "community": 27, "norm_label": "jnd()" }, { @@ -101961,7 +101961,7 @@ "source_location": "L30681", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_checkfornestedupdates", - "community": 24, + "community": 27, "norm_label": "checkfornestedupdates()" }, { @@ -101971,7 +101971,7 @@ "source_location": "L30698", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_flushrenderphasestrictmodewarningsindev", - "community": 24, + "community": 164, "norm_label": "flushrenderphasestrictmodewarningsindev()" }, { @@ -101981,7 +101981,7 @@ "source_location": "L30708", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_commitdoubleinvokeeffectsindev", - "community": 24, + "community": 2, "norm_label": "commitdoubleinvokeeffectsindev()" }, { @@ -101991,7 +101991,7 @@ "source_location": "L30730", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_invokeeffectsindev", - "community": 24, + "community": 2, "norm_label": "invokeeffectsindev()" }, { @@ -102001,7 +102001,7 @@ "source_location": "L30758", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_warnaboutupdateonnotyetmountedfiberindev", - "community": 24, + "community": 2, "norm_label": "warnaboutupdateonnotyetmountedfiberindev()" }, { @@ -102011,7 +102011,7 @@ "source_location": "L30869", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_warnaboutrenderphaseupdatesindev", - "community": 24, + "community": 2, "norm_label": "warnaboutrenderphaseupdatesindev()" }, { @@ -102021,7 +102021,7 @@ "source_location": "L30906", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_restorependingupdaters", - "community": 24, + "community": 115, "norm_label": "restorependingupdaters()" }, { @@ -102031,7 +102031,7 @@ "source_location": "L30920", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_schedulecallback_1", - "community": 24, + "community": 137, "norm_label": "schedulecallback$1()" }, { @@ -102041,7 +102041,7 @@ "source_location": "L30935", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_cancelcallback_1", - "community": 24, + "community": 27, "norm_label": "cancelcallback$1()" }, { @@ -102051,7 +102051,7 @@ "source_location": "L30944", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_shouldforceflushfallbacksindev", - "community": 24, + "community": 27, "norm_label": "shouldforceflushfallbacksindev()" }, { @@ -102061,7 +102061,7 @@ "source_location": "L30949", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_warnifupdatesnotwrappedwithactdev", - "community": 24, + "community": 2, "norm_label": "warnifupdatesnotwrappedwithactdev()" }, { @@ -102071,7 +102071,7 @@ "source_location": "L30994", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_warnifsuspenseresolutionnotwrappedwithactdev", - "community": 24, + "community": 2, "norm_label": "warnifsuspenseresolutionnotwrappedwithactdev()" }, { @@ -102081,7 +102081,7 @@ "source_location": "L31002", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_setisrunninginsertioneffect", - "community": 24, + "community": 2, "norm_label": "setisrunninginsertioneffect()" }, { @@ -102091,7 +102091,7 @@ "source_location": "L31017", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_resolvefunctionforhotreloading", - "community": 24, + "community": 17, "norm_label": "resolvefunctionforhotreloading()" }, { @@ -102101,7 +102101,7 @@ "source_location": "L31034", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_resolveclassforhotreloading", - "community": 24, + "community": 17, "norm_label": "resolveclassforhotreloading()" }, { @@ -102111,7 +102111,7 @@ "source_location": "L31038", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_resolveforwardrefforhotreloading", - "community": 24, + "community": 17, "norm_label": "resolveforwardrefforhotreloading()" }, { @@ -102131,7 +102131,7 @@ "source_location": "L31160", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markfailederrorboundaryforhotreloading", - "community": 24, + "community": 27, "norm_label": "markfailederrorboundaryforhotreloading()" }, { @@ -102141,7 +102141,7 @@ "source_location": "L31209", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_schedulefiberswithfamiliesrecursively", - "community": 24, + "community": 27, "norm_label": "schedulefiberswithfamiliesrecursively()" }, { @@ -102191,7 +102191,7 @@ "source_location": "L31511", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_shouldconstruct_1", - "community": 24, + "community": 17, "norm_label": "shouldconstruct$1()" }, { @@ -102201,7 +102201,7 @@ "source_location": "L31516", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_issimplefunctioncomponent", - "community": 24, + "community": 17, "norm_label": "issimplefunctioncomponent()" }, { @@ -102211,7 +102211,7 @@ "source_location": "L31519", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_resolvelazycomponenttag", - "community": 24, + "community": 17, "norm_label": "resolvelazycomponenttag()" }, { @@ -102221,7 +102221,7 @@ "source_location": "L31537", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createworkinprogress", - "community": 24, + "community": 17, "norm_label": "createworkinprogress()" }, { @@ -102231,7 +102231,7 @@ "source_location": "L31630", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_resetworkinprogress", - "community": 24, + "community": 82, "norm_label": "resetworkinprogress()" }, { @@ -102241,7 +102241,7 @@ "source_location": "L31691", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createhostrootfiber", - "community": 24, + "community": 27, "norm_label": "createhostrootfiber()" }, { @@ -102251,7 +102251,7 @@ "source_location": "L31717", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createfiberfromtypeandprops", - "community": 24, + "community": 17, "norm_label": "createfiberfromtypeandprops()" }, { @@ -102261,7 +102261,7 @@ "source_location": "L31848", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createfiberfromelement", - "community": 24, + "community": 17, "norm_label": "createfiberfromelement()" }, { @@ -102271,7 +102271,7 @@ "source_location": "L31867", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createfiberfromfragment", - "community": 24, + "community": 225, "norm_label": "createfiberfromfragment()" }, { @@ -102281,7 +102281,7 @@ "source_location": "L31873", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createfiberfromprofiler", - "community": 24, + "community": 2, "norm_label": "createfiberfromprofiler()" }, { @@ -102291,7 +102291,7 @@ "source_location": "L31894", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createfiberfromsuspense", - "community": 24, + "community": 17, "norm_label": "createfiberfromsuspense()" }, { @@ -102301,7 +102301,7 @@ "source_location": "L31900", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createfiberfromsuspenselist", - "community": 24, + "community": 17, "norm_label": "createfiberfromsuspenselist()" }, { @@ -102311,7 +102311,7 @@ "source_location": "L31906", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createfiberfromoffscreen", - "community": 24, + "community": 225, "norm_label": "createfiberfromoffscreen()" }, { @@ -102331,7 +102331,7 @@ "source_location": "L31921", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createfiberfromhostinstancefordeletion", - "community": 24, + "community": 170, "norm_label": "createfiberfromhostinstancefordeletion()" }, { @@ -102371,7 +102371,7 @@ "source_location": "L31993", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_fiberrootnode", - "community": 24, + "community": 137, "norm_label": "fiberrootnode()" }, { @@ -102381,7 +102381,7 @@ "source_location": "L32049", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createfiberroot", - "community": 24, + "community": 27, "norm_label": "createfiberroot()" }, { @@ -102391,7 +102391,7 @@ "source_location": "L32080", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createportal", - "community": 24, + "community": 374, "norm_label": "createportal()" }, { @@ -102401,7 +102401,7 @@ "source_location": "L32106", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getcontextforsubtree", - "community": 24, + "community": 82, "norm_label": "getcontextforsubtree()" }, { @@ -102411,7 +102411,7 @@ "source_location": "L32125", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_findhostinstancewithwarning", - "community": 24, + "community": 2, "norm_label": "findhostinstancewithwarning()" }, { @@ -102421,7 +102421,7 @@ "source_location": "L32175", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createcontainer", - "community": 24, + "community": 27, "norm_label": "createcontainer()" }, { @@ -102431,7 +102431,7 @@ "source_location": "L32180", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createhydrationcontainer", - "community": 24, + "community": 27, "norm_label": "createhydrationcontainer()" }, { @@ -102441,7 +102441,7 @@ "source_location": "L32201", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_updatecontainer", - "community": 24, + "community": 27, "norm_label": "updatecontainer()" }, { @@ -102451,7 +102451,7 @@ "source_location": "L32257", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getpublicrootinstance", - "community": 24, + "community": 2, "norm_label": "getpublicrootinstance()" }, { @@ -102461,7 +102461,7 @@ "source_location": "L32272", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_attemptsynchronoushydration_1", - "community": 24, + "community": 27, "norm_label": "attemptsynchronoushydration$1()" }, { @@ -102471,7 +102471,7 @@ "source_location": "L32307", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markretrylaneimpl", - "community": 24, + "community": 27, "norm_label": "markretrylaneimpl()" }, { @@ -102481,7 +102481,7 @@ "source_location": "L32316", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_markretrylaneifnothydrated", - "community": 24, + "community": 27, "norm_label": "markretrylaneifnothydrated()" }, { @@ -102491,7 +102491,7 @@ "source_location": "L32324", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_attemptcontinuoushydration_1", - "community": 24, + "community": 27, "norm_label": "attemptcontinuoushydration$1()" }, { @@ -102501,7 +102501,7 @@ "source_location": "L32343", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_attempthydrationatcurrentpriority_1", - "community": 24, + "community": 27, "norm_label": "attempthydrationatcurrentpriority$1()" }, { @@ -102521,7 +102521,7 @@ "source_location": "L32374", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_shoulderror", - "community": 24, + "community": 17, "norm_label": "shoulderror()" }, { @@ -102531,7 +102531,7 @@ "source_location": "L32382", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_shouldsuspend", - "community": 24, + "community": 225, "norm_label": "shouldsuspend()" }, { @@ -102591,7 +102591,7 @@ "source_location": "L32736", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createroot", - "community": 24, + "community": 374, "norm_label": "createroot()" }, { @@ -102621,7 +102621,7 @@ "source_location": "L32794", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_hydrateroot", - "community": 24, + "community": 374, "norm_label": "hydrateroot()" }, { @@ -102631,7 +102631,7 @@ "source_location": "L32845", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_isvalidcontainer", - "community": 24, + "community": 374, "norm_label": "isvalidcontainer()" }, { @@ -102641,7 +102641,7 @@ "source_location": "L32850", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_isvalidcontainerlegacy", - "community": 24, + "community": 374, "norm_label": "isvalidcontainerlegacy()" }, { @@ -102651,7 +102651,7 @@ "source_location": "L32854", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_warnifreactdomcontainerindev", - "community": 24, + "community": 374, "norm_label": "warnifreactdomcontainerindev()" }, { @@ -102661,7 +102661,7 @@ "source_location": "L32899", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_getreactrootelementincontainer", - "community": 24, + "community": 374, "norm_label": "getreactrootelementincontainer()" }, { @@ -102671,7 +102671,7 @@ "source_location": "L32911", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_nooponrecoverableerror", - "community": 24, + "community": 27, "norm_label": "nooponrecoverableerror()" }, { @@ -102681,7 +102681,7 @@ "source_location": "L32915", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_legacycreaterootfromdomcontainer", - "community": 24, + "community": 27, "norm_label": "legacycreaterootfromdomcontainer()" }, { @@ -102691,7 +102691,7 @@ "source_location": "L32975", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_warnoninvalidcallback_1", - "community": 24, + "community": 374, "norm_label": "warnoninvalidcallback$1()" }, { @@ -102701,7 +102701,7 @@ "source_location": "L32983", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_legacyrendersubtreeintocontainer", - "community": 24, + "community": 374, "norm_label": "legacyrendersubtreeintocontainer()" }, { @@ -102711,7 +102711,7 @@ "source_location": "L33015", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_finddomnode", - "community": 24, + "community": 2, "norm_label": "finddomnode()" }, { @@ -102721,7 +102721,7 @@ "source_location": "L33048", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_hydrate", - "community": 24, + "community": 374, "norm_label": "hydrate()" }, { @@ -102731,7 +102731,7 @@ "source_location": "L33068", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_render", - "community": 24, + "community": 17, "norm_label": "render()" }, { @@ -102741,7 +102741,7 @@ "source_location": "L33087", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_unstable_rendersubtreeintocontainer", - "community": 24, + "community": 374, "norm_label": "unstable_rendersubtreeintocontainer()" }, { @@ -102751,7 +102751,7 @@ "source_location": "L33103", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_unmountcomponentatnode", - "community": 24, + "community": 374, "norm_label": "unmountcomponentatnode()" }, { @@ -102761,7 +102761,7 @@ "source_location": "L33179", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createportal_1", - "community": 24, + "community": 374, "norm_label": "createportal$1()" }, { @@ -102771,7 +102771,7 @@ "source_location": "L33191", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_rendersubtreeintocontainer", - "community": 24, + "community": 374, "norm_label": "rendersubtreeintocontainer()" }, { @@ -102781,7 +102781,7 @@ "source_location": "L33202", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_createroot_1", - "community": 24, + "community": 374, "norm_label": "createroot$1()" }, { @@ -102791,7 +102791,7 @@ "source_location": "L33212", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_hydrateroot_1", - "community": 24, + "community": 374, "norm_label": "hydrateroot$1()" }, { @@ -102801,7 +102801,7 @@ "source_location": "L33225", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_react_flushsync_1", - "community": 24, + "community": 164, "norm_label": "flushsync$1()" }, { @@ -103491,7 +103491,7 @@ "source_location": "L6103", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_resolvestyleconfig", - "community": 37, + "community": 621, "norm_label": "resolvestyleconfig()" }, { @@ -104511,7 +104511,7 @@ "source_location": "L11833", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_usecolormode", - "community": 37, + "community": 621, "norm_label": "usecolormode()" }, { @@ -104611,7 +104611,7 @@ "source_location": "L12375", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_globalstyle", - "community": 37, + "community": 621, "norm_label": "globalstyle()" }, { @@ -104661,7 +104661,7 @@ "source_location": "L12493", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_useconstant", - "community": 24, + "community": 17, "norm_label": "useconstant()" }, { @@ -105021,7 +105021,7 @@ "source_location": "L13457", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_getvaluestate", - "community": 283, + "community": 337, "norm_label": "getvaluestate()" }, { @@ -105031,7 +105031,7 @@ "source_location": "L13465", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_resolvevariantfromprops", - "community": 283, + "community": 337, "norm_label": "resolvevariantfromprops()" }, { @@ -105281,7 +105281,7 @@ "source_location": "L14214", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_resolvevariant", - "community": 421, + "community": 188, "norm_label": "resolvevariant()" }, { @@ -105441,7 +105441,7 @@ "source_location": "L14317", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_then", - "community": 421, + "community": 188, "norm_label": "then()" }, { @@ -105451,7 +105451,7 @@ "source_location": "L14324", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_getvaluetransition", - "community": 421, + "community": 188, "norm_label": "getvaluetransition()" }, { @@ -105781,7 +105781,7 @@ "source_location": "L14929", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_jump", - "community": 337, + "community": 188, "norm_label": "jump()" }, { @@ -105811,7 +105811,7 @@ "source_location": "L14983", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_start", - "community": 421, + "community": 188, "norm_label": "start()" }, { @@ -105851,7 +105851,7 @@ "source_location": "L15032", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_destroy", - "community": 24, + "community": 2, "norm_label": "destroy()" }, { @@ -105861,7 +105861,7 @@ "source_location": "L15040", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_motionvalue", - "community": 337, + "community": 188, "norm_label": "motionvalue()" }, { @@ -105871,7 +105871,7 @@ "source_location": "L15045", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_setmotionvalue", - "community": 337, + "community": 188, "norm_label": "setmotionvalue()" }, { @@ -105881,7 +105881,7 @@ "source_location": "L15052", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_settarget", - "community": 421, + "community": 188, "norm_label": "settarget()" }, { @@ -105891,7 +105891,7 @@ "source_location": "L15067", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_iswillchangemotionvalue", - "community": 421, + "community": 188, "norm_label": "iswillchangemotionvalue()" }, { @@ -105901,7 +105901,7 @@ "source_location": "L15072", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_addvaluetowillchange", - "community": 421, + "community": 188, "norm_label": "addvaluetowillchange()" }, { @@ -105911,7 +105911,7 @@ "source_location": "L15081", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_getoptimisedappearid", - "community": 421, + "community": 188, "norm_label": "getoptimisedappearid()" }, { @@ -106121,7 +106121,7 @@ "source_location": "L15613", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_measureinitialstate", - "community": 337, + "community": 188, "norm_label": "measureinitialstate()" }, { @@ -106141,7 +106141,7 @@ "source_location": "L15617", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_measureendstate", - "community": 337, + "community": 188, "norm_label": "measureendstate()" }, { @@ -106661,7 +106661,7 @@ "source_location": "L17200", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_shouldblockanimation", - "community": 421, + "community": 188, "norm_label": "shouldblockanimation()" }, { @@ -106671,7 +106671,7 @@ "source_location": "L17205", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_animatetarget", - "community": 421, + "community": 188, "norm_label": "animatetarget()" }, { @@ -106681,7 +106681,7 @@ "source_location": "L17252", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_animatevariant", - "community": 421, + "community": 188, "norm_label": "animatevariant()" }, { @@ -106711,7 +106711,7 @@ "source_location": "L17290", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_animatevisualelement", - "community": 421, + "community": 188, "norm_label": "animatevisualelement()" }, { @@ -107041,7 +107041,7 @@ "source_location": "L17829", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_applyconstraints", - "community": 421, + "community": 188, "norm_label": "applyconstraints()" }, { @@ -107171,7 +107171,7 @@ "source_location": "L17944", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_transformboxpoints", - "community": 337, + "community": 421, "norm_label": "transformboxpoints()" }, { @@ -107281,7 +107281,7 @@ "source_location": "L18036", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_translateaxis", - "community": 337, + "community": 421, "norm_label": "translateaxis()" }, { @@ -107311,7 +107311,7 @@ "source_location": "L18050", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_measureviewportbox", - "community": 337, + "community": 421, "norm_label": "measureviewportbox()" }, { @@ -107321,7 +107321,7 @@ "source_location": "L18053", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_measurepagebox", - "community": 337, + "community": 421, "norm_label": "measurepagebox()" }, { @@ -107331,7 +107331,7 @@ "source_location": "L18192", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_updateaxis", - "community": 421, + "community": 188, "norm_label": "updateaxis()" }, { @@ -107371,7 +107371,7 @@ "source_location": "L18275", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_startaxisvalueanimation", - "community": 421, + "community": 188, "norm_label": "startaxisvalueanimation()" }, { @@ -107401,7 +107401,7 @@ "source_location": "L18289", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_getanimationstate", - "community": 421, + "community": 188, "norm_label": "getanimationstate()" }, { @@ -107411,7 +107411,7 @@ "source_location": "L18299", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_getaxismotionvalue", - "community": 421, + "community": 188, "norm_label": "getaxismotionvalue()" }, { @@ -107461,7 +107461,7 @@ "source_location": "L18408", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_shoulddrag", - "community": 421, + "community": 188, "norm_label": "shoulddrag()" }, { @@ -107551,7 +107551,7 @@ "source_location": "L18666", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_animatesinglevalue", - "community": 421, + "community": 188, "norm_label": "animatesinglevalue()" }, { @@ -107851,7 +107851,7 @@ "source_location": "L19005", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_canceltreeoptimisedtransformanimations", - "community": 421, + "community": 188, "norm_label": "canceltreeoptimisedtransformanimations()" }, { @@ -108171,7 +108171,7 @@ "source_location": "L20338", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_updatemotionvaluesfromprops", - "community": 337, + "community": 188, "norm_label": "updatemotionvaluesfromprops()" }, { @@ -108251,7 +108251,7 @@ "source_location": "L20552", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_getstaticvalue", - "community": 337, + "community": 188, "norm_label": "getstaticvalue()" }, { @@ -108281,7 +108281,7 @@ "source_location": "L20600", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_getdefaulttransition", - "community": 421, + "community": 188, "norm_label": "getdefaulttransition()" }, { @@ -108321,7 +108321,7 @@ "source_location": "L20622", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_addvalue", - "community": 337, + "community": 188, "norm_label": "addvalue()" }, { @@ -108331,7 +108331,7 @@ "source_location": "L20635", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_removevalue", - "community": 337, + "community": 188, "norm_label": "removevalue()" }, { @@ -108341,7 +108341,7 @@ "source_location": "L20648", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_hasvalue", - "community": 337, + "community": 188, "norm_label": "hasvalue()" }, { @@ -108351,7 +108351,7 @@ "source_location": "L20651", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_getvalue", - "community": 337, + "community": 188, "norm_label": "getvalue()" }, { @@ -108381,7 +108381,7 @@ "source_location": "L20691", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_getbasetarget", - "community": 283, + "community": 337, "norm_label": "getbasetarget()" }, { @@ -108401,7 +108401,7 @@ "source_location": "L20731", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_getbasetargetfromprops", - "community": 283, + "community": 337, "norm_label": "getbasetargetfromprops()" }, { @@ -108411,7 +108411,7 @@ "source_location": "L20734", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_removevaluefromrenderstate", - "community": 337, + "community": 188, "norm_label": "removevaluefromrenderstate()" }, { @@ -108431,7 +108431,7 @@ "source_location": "L20755", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_getcomputedstyle", - "community": 337, + "community": 188, "norm_label": "getcomputedstyle()" }, { @@ -108441,7 +108441,7 @@ "source_location": "L20764", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_readvaluefrominstance", - "community": 337, + "community": 188, "norm_label": "readvaluefrominstance()" }, { @@ -108451,7 +108451,7 @@ "source_location": "L20774", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_measureinstanceviewportbox", - "community": 337, + "community": 421, "norm_label": "measureinstanceviewportbox()" }, { @@ -108531,7 +108531,7 @@ "source_location": "L21226", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_styled2", - "community": 37, + "community": 621, "norm_label": "styled2()" }, { @@ -108541,7 +108541,7 @@ "source_location": "L21252", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_factory", - "community": 37, + "community": 621, "norm_label": "factory()" }, { @@ -108561,7 +108561,7 @@ "source_location": "L21423", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_usetheme2", - "community": 37, + "community": 621, "norm_label": "usetheme2()" }, { @@ -108571,7 +108571,7 @@ "source_location": "L21436", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_usechakra", - "community": 37, + "community": 621, "norm_label": "usechakra()" }, { @@ -108581,7 +108581,7 @@ "source_location": "L21443", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_omitreactelements", - "community": 37, + "community": 621, "norm_label": "omitreactelements()" }, { @@ -108591,7 +108591,7 @@ "source_location": "L21450", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_usestyleconfigimpl", - "community": 37, + "community": 621, "norm_label": "usestyleconfigimpl()" }, { @@ -108601,7 +108601,7 @@ "source_location": "L21472", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_usestyleconfig", - "community": 37, + "community": 621, "norm_label": "usestyleconfig()" }, { @@ -108611,7 +108611,7 @@ "source_location": "L21475", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_ds_thingtime_bundle_usemultistyleconfig", - "community": 37, + "community": 621, "norm_label": "usemultistyleconfig()" }, { @@ -109311,7 +109311,7 @@ "source_location": "L1598", "_origin": "ast", "id": "docs_design_thingtime_landing_1b_product_split_support_init", - "community": 24, + "community": 17, "norm_label": "init()" }, { @@ -109351,7 +109351,7 @@ "source_location": "L93", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_setextrastackframe", - "community": 13, + "community": 86, "norm_label": "setextrastackframe()" }, { @@ -109761,7 +109761,7 @@ "source_location": "L1514", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_isvalidelementtype", - "community": 13, + "community": 86, "norm_label": "isvalidelementtype()" }, { @@ -109771,7 +109771,7 @@ "source_location": "L1537", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_memo", - "community": 13, + "community": 86, "norm_label": "memo()" }, { @@ -110041,7 +110041,7 @@ "source_location": "L2073", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_setcurrentlyvalidatingelement_1", - "community": 13, + "community": 86, "norm_label": "setcurrentlyvalidatingelement$1()" }, { @@ -110051,7 +110051,7 @@ "source_location": "L2091", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_getdeclarationerroraddendum", - "community": 78, + "community": 160, "norm_label": "getdeclarationerroraddendum()" }, { @@ -110061,7 +110061,7 @@ "source_location": "L2103", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_getsourceinfoerroraddendum", - "community": 13, + "community": 86, "norm_label": "getsourceinfoerroraddendum()" }, { @@ -110071,7 +110071,7 @@ "source_location": "L2113", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_getsourceinfoerroraddendumforprops", - "community": 13, + "community": 86, "norm_label": "getsourceinfoerroraddendumforprops()" }, { @@ -110111,7 +110111,7 @@ "source_location": "L2242", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_validateproptypes", - "community": 78, + "community": 86, "norm_label": "validateproptypes()" }, { @@ -110121,7 +110121,7 @@ "source_location": "L2285", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_validatefragmentprops", - "community": 13, + "community": 86, "norm_label": "validatefragmentprops()" }, { @@ -110131,7 +110131,7 @@ "source_location": "L2311", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_createelementwithvalidation", - "community": 78, + "community": 86, "norm_label": "createelementwithvalidation()" }, { @@ -110271,7 +110271,7 @@ "source_location": "L2687", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_unstable_runwithpriority", - "community": 431, + "community": 314, "norm_label": "unstable_runwithpriority()" }, { @@ -110281,7 +110281,7 @@ "source_location": "L2710", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_unstable_next", - "community": 431, + "community": 314, "norm_label": "unstable_next()" }, { @@ -110571,7 +110571,7 @@ "source_location": "L3683", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_isattributenamesafe", - "community": 96, + "community": 160, "norm_label": "isattributenamesafe()" }, { @@ -110651,7 +110651,7 @@ "source_location": "L4075", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_getvalueforattribute", - "community": 96, + "community": 160, "norm_label": "getvalueforattribute()" }, { @@ -110731,7 +110731,7 @@ "source_location": "L4829", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_getcurrentfiberownernameindevornull", - "community": 78, + "community": 160, "norm_label": "getcurrentfiberownernameindevornull()" }, { @@ -110821,7 +110821,7 @@ "source_location": "L4932", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_ischeckable", - "community": 13, + "community": 160, "norm_label": "ischeckable()" }, { @@ -110831,7 +110831,7 @@ "source_location": "L4938", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_gettracker", - "community": 13, + "community": 160, "norm_label": "gettracker()" }, { @@ -110841,7 +110841,7 @@ "source_location": "L4942", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_detachtracker", - "community": 13, + "community": 160, "norm_label": "detachtracker()" }, { @@ -110851,7 +110851,7 @@ "source_location": "L4946", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_getvaluefromnode", - "community": 13, + "community": 160, "norm_label": "getvaluefromnode()" }, { @@ -110861,7 +110861,7 @@ "source_location": "L4962", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_trackvalueonnode", - "community": 13, + "community": 160, "norm_label": "trackvalueonnode()" }, { @@ -110871,7 +110871,7 @@ "source_location": "L5021", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_track", - "community": 13, + "community": 160, "norm_label": "track()" }, { @@ -110881,7 +110881,7 @@ "source_location": "L5029", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_updatevalueifchanged", - "community": 13, + "community": 160, "norm_label": "updatevalueifchanged()" }, { @@ -111131,7 +111131,7 @@ "source_location": "L5705", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_getintrinsicnamespace", - "community": 571, + "community": 13, "norm_label": "getintrinsicnamespace()" }, { @@ -111141,7 +111141,7 @@ "source_location": "L5717", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_getchildnamespace", - "community": 571, + "community": 13, "norm_label": "getchildnamespace()" }, { @@ -111251,7 +111251,7 @@ "source_location": "L6880", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_validateproperty", - "community": 160, + "community": 96, "norm_label": "validateproperty()" }, { @@ -111261,7 +111261,7 @@ "source_location": "L6930", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_warninvalidariaprops", - "community": 160, + "community": 96, "norm_label": "warninvalidariaprops()" }, { @@ -111271,7 +111271,7 @@ "source_location": "L6954", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_validateproperties", - "community": 160, + "community": 96, "norm_label": "validateproperties()" }, { @@ -111301,7 +111301,7 @@ "source_location": "L7174", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_setreplayingevent", - "community": 170, + "community": 13, "norm_label": "setreplayingevent()" }, { @@ -111311,7 +111311,7 @@ "source_location": "L7183", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_resetreplayingevent", - "community": 170, + "community": 13, "norm_label": "resetreplayingevent()" }, { @@ -111321,7 +111321,7 @@ "source_location": "L7192", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_isreplayingevent", - "community": 170, + "community": 156, "norm_label": "isreplayingevent()" }, { @@ -111331,7 +111331,7 @@ "source_location": "L7204", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_geteventtarget", - "community": 170, + "community": 13, "norm_label": "geteventtarget()" }, { @@ -111341,7 +111341,7 @@ "source_location": "L7222", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_restorestateoftarget", - "community": 170, + "community": 13, "norm_label": "restorestateoftarget()" }, { @@ -111371,7 +111371,7 @@ "source_location": "L7259", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_needsstaterestore", - "community": 170, + "community": 13, "norm_label": "needsstaterestore()" }, { @@ -111381,7 +111381,7 @@ "source_location": "L7262", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_restorestateifneeded", - "community": 170, + "community": 13, "norm_label": "restorestateifneeded()" }, { @@ -111391,7 +111391,7 @@ "source_location": "L7294", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_finisheventhandler", - "community": 170, + "community": 13, "norm_label": "finisheventhandler()" }, { @@ -111401,7 +111401,7 @@ "source_location": "L7312", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_batchedupdates", - "community": 170, + "community": 13, "norm_label": "batchedupdates()" }, { @@ -111511,7 +111511,7 @@ "source_location": "L7638", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_rethrowcaughterror", - "community": 170, + "community": 13, "norm_label": "rethrowcaughterror()" }, { @@ -111551,7 +111551,7 @@ "source_location": "L7695", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_has", - "community": 128, + "community": 78, "norm_label": "has()" }, { @@ -111571,7 +111571,7 @@ "source_location": "L7805", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_getnearestmountedfiber", - "community": 170, + "community": 13, "norm_label": "getnearestmountedfiber()" }, { @@ -111581,7 +111581,7 @@ "source_location": "L7842", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_getsuspenseinstancefromfiber", - "community": 170, + "community": 13, "norm_label": "getsuspenseinstancefromfiber()" }, { @@ -111591,7 +111591,7 @@ "source_location": "L7861", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_getcontainerfromfiber", - "community": 170, + "community": 13, "norm_label": "getcontainerfromfiber()" }, { @@ -111601,7 +111601,7 @@ "source_location": "L7864", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_isfibermounted", - "community": 170, + "community": 13, "norm_label": "isfibermounted()" }, { @@ -111621,7 +111621,7 @@ "source_location": "L7892", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_assertismounted", - "community": 170, + "community": 13, "norm_label": "assertismounted()" }, { @@ -111631,7 +111631,7 @@ "source_location": "L7898", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_findcurrentfiberusingslowpath", - "community": 170, + "community": 13, "norm_label": "findcurrentfiberusingslowpath()" }, { @@ -111691,7 +111691,7 @@ "source_location": "L8185", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_onscheduleroot", - "community": 128, + "community": 96, "norm_label": "onscheduleroot()" }, { @@ -111971,7 +111971,7 @@ "source_location": "L8467", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_markrenderscheduled", - "community": 128, + "community": 96, "norm_label": "markrenderscheduled()" }, { @@ -111991,7 +111991,7 @@ "source_location": "L8481", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_markstateupdatescheduled", - "community": 214, + "community": 51, "norm_label": "markstateupdatescheduled()" }, { @@ -112071,7 +112071,7 @@ "source_location": "L8992", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_gethighestprioritypendinglanes", - "community": 157, + "community": 51, "norm_label": "gethighestprioritypendinglanes()" }, { @@ -112091,7 +112091,7 @@ "source_location": "L9008", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_includessynclane", - "community": 128, + "community": 51, "norm_label": "includessynclane()" }, { @@ -112161,7 +112161,7 @@ "source_location": "L9034", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_istransitionlane", - "community": 214, + "community": 51, "norm_label": "istransitionlane()" }, { @@ -112171,7 +112171,7 @@ "source_location": "L9037", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_claimnexttransitionlane", - "community": 214, + "community": 51, "norm_label": "claimnexttransitionlane()" }, { @@ -112201,7 +112201,7 @@ "source_location": "L9063", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_pickarbitrarylane", - "community": 214, + "community": 51, "norm_label": "pickarbitrarylane()" }, { @@ -112241,7 +112241,7 @@ "source_location": "L9082", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_issubsetoflanes", - "community": 214, + "community": 157, "norm_label": "issubsetoflanes()" }, { @@ -112251,7 +112251,7 @@ "source_location": "L9085", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_mergelanes", - "community": 214, + "community": 51, "norm_label": "mergelanes()" }, { @@ -112261,7 +112261,7 @@ "source_location": "L9088", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_removelanes", - "community": 78, + "community": 571, "norm_label": "removelanes()" }, { @@ -112271,7 +112271,7 @@ "source_location": "L9091", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_intersectlanes", - "community": 214, + "community": 51, "norm_label": "intersectlanes()" }, { @@ -112281,7 +112281,7 @@ "source_location": "L9096", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_lanetolanes", - "community": 78, + "community": 571, "norm_label": "lanetolanes()" }, { @@ -112291,7 +112291,7 @@ "source_location": "L9099", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_higherprioritylane", - "community": 157, + "community": 51, "norm_label": "higherprioritylane()" }, { @@ -112311,7 +112311,7 @@ "source_location": "L9114", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_markrootupdated", - "community": 157, + "community": 51, "norm_label": "markrootupdated()" }, { @@ -112351,7 +112351,7 @@ "source_location": "L9180", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_markrootentangled", - "community": 214, + "community": 51, "norm_label": "markrootentangled()" }, { @@ -112451,7 +112451,7 @@ "source_location": "L9344", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_ishighereventpriority", - "community": 170, + "community": 13, "norm_label": "ishighereventpriority()" }, { @@ -112471,7 +112471,7 @@ "source_location": "L9368", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_isrootdehydrated", - "community": 170, + "community": 13, "norm_label": "isrootdehydrated()" }, { @@ -112491,7 +112491,7 @@ "source_location": "L9378", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_attemptsynchronoushydration", - "community": 170, + "community": 13, "norm_label": "attemptsynchronoushydration()" }, { @@ -112541,7 +112541,7 @@ "source_location": "L9414", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_isdiscreteeventthatrequireshydration", - "community": 170, + "community": 13, "norm_label": "isdiscreteeventthatrequireshydration()" }, { @@ -112551,7 +112551,7 @@ "source_location": "L9418", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_createqueuedreplayableevent", - "community": 170, + "community": 13, "norm_label": "createqueuedreplayableevent()" }, { @@ -112561,7 +112561,7 @@ "source_location": "L9428", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_clearifcontinuousevent", - "community": 170, + "community": 13, "norm_label": "clearifcontinuousevent()" }, { @@ -112571,7 +112571,7 @@ "source_location": "L9463", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_accumulateorcreatecontinuousqueuedreplayableevent", - "community": 170, + "community": 13, "norm_label": "accumulateorcreatecontinuousqueuedreplayableevent()" }, { @@ -112581,7 +112581,7 @@ "source_location": "L9493", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_queueifcontinuousevent", - "community": 170, + "community": 13, "norm_label": "queueifcontinuousevent()" }, { @@ -112591,7 +112591,7 @@ "source_location": "L9539", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_attemptexplicithydrationtarget", - "community": 170, + "community": 13, "norm_label": "attemptexplicithydrationtarget()" }, { @@ -112601,7 +112601,7 @@ "source_location": "L9579", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_queueexplicithydrationtarget", - "community": 170, + "community": 13, "norm_label": "queueexplicithydrationtarget()" }, { @@ -112611,7 +112611,7 @@ "source_location": "L9605", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_attemptreplaycontinuousqueuedevent", - "community": 170, + "community": 13, "norm_label": "attemptreplaycontinuousqueuedevent()" }, { @@ -112621,7 +112621,7 @@ "source_location": "L9643", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_attemptreplaycontinuousqueuedeventinmap", - "community": 170, + "community": 13, "norm_label": "attemptreplaycontinuousqueuedeventinmap()" }, { @@ -112631,7 +112631,7 @@ "source_location": "L9649", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_replayunblockedevents", - "community": 170, + "community": 13, "norm_label": "replayunblockedevents()" }, { @@ -112671,7 +112671,7 @@ "source_location": "L9752", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_isenabled", - "community": 422, + "community": 13, "norm_label": "isenabled()" }, { @@ -112721,7 +112721,7 @@ "source_location": "L9815", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_dispatcheventwithenablecapturephaseselectivehydrationwithoutdiscreteeventreplay", - "community": 170, + "community": 13, "norm_label": "dispatcheventwithenablecapturephaseselectivehydrationwithoutdiscreteeventreplay()" }, { @@ -112731,7 +112731,7 @@ "source_location": "L9869", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_findinstanceblockingevent", - "community": 170, + "community": 13, "norm_label": "findinstanceblockingevent()" }, { @@ -113031,7 +113031,7 @@ "source_location": "L11066", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_istextinputelement", - "community": 170, + "community": 156, "norm_label": "istextinputelement()" }, { @@ -113071,7 +113071,7 @@ "source_location": "L11139", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_shouldusechangeevent", - "community": 170, + "community": 156, "norm_label": "shouldusechangeevent()" }, { @@ -113081,7 +113081,7 @@ "source_location": "L11144", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_manualdispatchchangeevent", - "community": 170, + "community": 13, "norm_label": "manualdispatchchangeevent()" }, { @@ -113091,7 +113091,7 @@ "source_location": "L11161", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_runeventinbatch", - "community": 170, + "community": 13, "norm_label": "runeventinbatch()" }, { @@ -113171,7 +113171,7 @@ "source_location": "L11273", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_shoulduseclickevent", - "community": 170, + "community": 156, "norm_label": "shoulduseclickevent()" }, { @@ -113211,7 +113211,7 @@ "source_location": "L11317", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_extractevents_1", - "community": 170, + "community": 156, "norm_label": "extractevents$1()" }, { @@ -113231,7 +113231,7 @@ "source_location": "L11368", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_extractevents_2", - "community": 170, + "community": 156, "norm_label": "extractevents$2()" }, { @@ -113251,7 +113251,7 @@ "source_location": "L11485", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_shallowequal", - "community": 13, + "community": 156, "norm_label": "shallowequal()" }, { @@ -113441,7 +113441,7 @@ "source_location": "L11965", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_geteventtargetdocument", - "community": 13, + "community": 156, "norm_label": "geteventtargetdocument()" }, { @@ -113451,7 +113451,7 @@ "source_location": "L11977", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_constructselectevent", - "community": 13, + "community": 156, "norm_label": "constructselectevent()" }, { @@ -113461,7 +113461,7 @@ "source_location": "L12021", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_extractevents_3", - "community": 170, + "community": 156, "norm_label": "extractevents$3()" }, { @@ -113521,7 +113521,7 @@ "source_location": "L12351", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_extractevents_5", - "community": 170, + "community": 156, "norm_label": "extractevents$5()" }, { @@ -113551,7 +113551,7 @@ "source_location": "L12433", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_processdispatchqueue", - "community": 170, + "community": 13, "norm_label": "processdispatchqueue()" }, { @@ -113561,7 +113561,7 @@ "source_location": "L12447", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_dispatcheventsforplugins", - "community": 170, + "community": 13, "norm_label": "dispatcheventsforplugins()" }, { @@ -113611,7 +113611,7 @@ "source_location": "L12550", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_ismatchingrootcontainer", - "community": 170, + "community": 13, "norm_label": "ismatchingrootcontainer()" }, { @@ -113621,7 +113621,7 @@ "source_location": "L12554", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_dispatcheventforplugineventsystem", - "community": 170, + "community": 13, "norm_label": "dispatcheventforplugineventsystem()" }, { @@ -113901,7 +113901,7 @@ "source_location": "L14216", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_getroothostcontext", - "community": 571, + "community": 13, "norm_label": "getroothostcontext()" }, { @@ -113911,7 +113911,7 @@ "source_location": "L14250", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_getchildhostcontext", - "community": 571, + "community": 13, "norm_label": "getchildhostcontext()" }, { @@ -113961,7 +113961,7 @@ "source_location": "L14300", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_appendinitialchild", - "community": 13, + "community": 580, "norm_label": "appendinitialchild()" }, { @@ -114051,7 +114051,7 @@ "source_location": "L14406", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_resettextcontent", - "community": 13, + "community": 580, "norm_label": "resettextcontent()" }, { @@ -114071,7 +114071,7 @@ "source_location": "L14412", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_appendchild", - "community": 13, + "community": 580, "norm_label": "appendchild()" }, { @@ -114081,7 +114081,7 @@ "source_location": "L14415", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_appendchildtocontainer", - "community": 13, + "community": 580, "norm_label": "appendchildtocontainer()" }, { @@ -114091,7 +114091,7 @@ "source_location": "L14441", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_insertbefore", - "community": 13, + "community": 580, "norm_label": "insertbefore()" }, { @@ -114101,7 +114101,7 @@ "source_location": "L14444", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_insertincontainerbefore", - "community": 13, + "community": 580, "norm_label": "insertincontainerbefore()" }, { @@ -114231,7 +114231,7 @@ "source_location": "L14566", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_issuspenseinstancepending", - "community": 78, + "community": 571, "norm_label": "issuspenseinstancepending()" }, { @@ -114241,7 +114241,7 @@ "source_location": "L14569", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_issuspenseinstancefallback", - "community": 78, + "community": 571, "norm_label": "issuspenseinstancefallback()" }, { @@ -114251,7 +114251,7 @@ "source_location": "L14572", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_getsuspenseinstancefallbackerrordetails", - "community": 78, + "community": 571, "norm_label": "getsuspenseinstancefallbackerrordetails()" }, { @@ -114261,7 +114261,7 @@ "source_location": "L14604", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_registersuspenseinstanceretry", - "community": 78, + "community": 571, "norm_label": "registersuspenseinstanceretry()" }, { @@ -114361,7 +114361,7 @@ "source_location": "L14703", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_getparentsuspenseinstance", - "community": 170, + "community": 13, "norm_label": "getparentsuspenseinstance()" }, { @@ -114581,7 +114581,7 @@ "source_location": "L14869", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_getclosestinstancefromnode", - "community": 170, + "community": 13, "norm_label": "getclosestinstancefromnode()" }, { @@ -114591,7 +114591,7 @@ "source_location": "L14952", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_getinstancefromnode", - "community": 170, + "community": 13, "norm_label": "getinstancefromnode()" }, { @@ -114601,7 +114601,7 @@ "source_location": "L14970", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_getnodefrominstance", - "community": 170, + "community": 156, "norm_label": "getnodefrominstance()" }, { @@ -114611,7 +114611,7 @@ "source_location": "L14981", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_getfibercurrentpropsfromnode", - "community": 170, + "community": 156, "norm_label": "getfibercurrentpropsfromnode()" }, { @@ -114721,7 +114721,7 @@ "source_location": "L15221", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_pushtoplevelcontextobject", - "community": 571, + "community": 156, "norm_label": "pushtoplevelcontextobject()" }, { @@ -114731,7 +114731,7 @@ "source_location": "L15232", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_processchildcontext", - "community": 78, + "community": 96, "norm_label": "processchildcontext()" }, { @@ -114751,7 +114751,7 @@ "source_location": "L15285", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_invalidatecontextprovider", - "community": 78, + "community": 156, "norm_label": "invalidatecontextprovider()" }, { @@ -114761,7 +114761,7 @@ "source_location": "L15313", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_findcurrentunmaskedcontext", - "community": 78, + "community": 13, "norm_label": "findcurrentunmaskedcontext()" }, { @@ -114791,7 +114791,7 @@ "source_location": "L15368", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_flushsynccallbacksonlyinlegacymode", - "community": 157, + "community": 51, "norm_label": "flushsynccallbacksonlyinlegacymode()" }, { @@ -114931,7 +114931,7 @@ "source_location": "L15610", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_warnifhydrating", - "community": 78, + "community": 571, "norm_label": "warnifhydrating()" }, { @@ -114941,7 +114941,7 @@ "source_location": "L15618", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_markdidthrowwhilehydratingdev", - "community": 128, + "community": 51, "norm_label": "markdidthrowwhilehydratingdev()" }, { @@ -115121,7 +115121,7 @@ "source_location": "L16053", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_hasunhydratedtailnodes", - "community": 571, + "community": 313, "norm_label": "hasunhydratedtailnodes()" }, { @@ -115151,7 +115151,7 @@ "source_location": "L16074", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_upgradehydrationerrorstorecoverable", - "community": 571, + "community": 313, "norm_label": "upgradehydrationerrorstorecoverable()" }, { @@ -115171,7 +115171,7 @@ "source_location": "L16088", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_queuehydrationerror", - "community": 78, + "community": 571, "norm_label": "queuehydrationerror()" }, { @@ -115181,7 +115181,7 @@ "source_location": "L16098", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_requestcurrenttransition", - "community": 214, + "community": 51, "norm_label": "requestcurrenttransition()" }, { @@ -115261,7 +115261,7 @@ "source_location": "L17463", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_resetchildfibers", - "community": 571, + "community": 13, "norm_label": "resetchildfibers()" }, { @@ -115281,7 +115281,7 @@ "source_location": "L17495", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_enterdisallowedcontextreadindev", - "community": 13, + "community": 78, "norm_label": "enterdisallowedcontextreadindev()" }, { @@ -115291,7 +115291,7 @@ "source_location": "L17500", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_exitdisallowedcontextreadindev", - "community": 13, + "community": 78, "norm_label": "exitdisallowedcontextreadindev()" }, { @@ -115321,7 +115321,7 @@ "source_location": "L17529", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_schedulecontextworkonparentpath", - "community": 214, + "community": 51, "norm_label": "schedulecontextworkonparentpath()" }, { @@ -115331,7 +115331,7 @@ "source_location": "L17559", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_propagatecontextchange", - "community": 214, + "community": 51, "norm_label": "propagatecontextchange()" }, { @@ -115341,7 +115341,7 @@ "source_location": "L17565", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_propagatecontextchange_eager", - "community": 214, + "community": 51, "norm_label": "propagatecontextchange_eager()" }, { @@ -115371,7 +115371,7 @@ "source_location": "L17759", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_pushconcurrentupdatequeue", - "community": 214, + "community": 51, "norm_label": "pushconcurrentupdatequeue()" }, { @@ -115391,7 +115391,7 @@ "source_location": "L17795", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_enqueueconcurrenthookupdate", - "community": 214, + "community": 51, "norm_label": "enqueueconcurrenthookupdate()" }, { @@ -115401,7 +115401,7 @@ "source_location": "L17812", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_enqueueconcurrenthookupdateandeagerlybailout", - "community": 214, + "community": 51, "norm_label": "enqueueconcurrenthookupdateandeagerlybailout()" }, { @@ -115411,7 +115411,7 @@ "source_location": "L17828", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_enqueueconcurrentclassupdate", - "community": 214, + "community": 51, "norm_label": "enqueueconcurrentclassupdate()" }, { @@ -115421,7 +115421,7 @@ "source_location": "L17845", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_enqueueconcurrentrenderforlane", - "community": 157, + "community": 51, "norm_label": "enqueueconcurrentrenderforlane()" }, { @@ -115431,7 +115431,7 @@ "source_location": "L17852", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_markupdatelanefromfibertoroot", - "community": 214, + "community": 51, "norm_label": "markupdatelanefromfibertoroot()" }, { @@ -115461,7 +115461,7 @@ "source_location": "L17943", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_createupdate", - "community": 128, + "community": 51, "norm_label": "createupdate()" }, { @@ -115471,7 +115471,7 @@ "source_location": "L17954", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_enqueueupdate", - "community": 128, + "community": 51, "norm_label": "enqueueupdate()" }, { @@ -115481,7 +115481,7 @@ "source_location": "L17995", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_entangletransitions", - "community": 214, + "community": 51, "norm_label": "entangletransitions()" }, { @@ -115491,7 +115491,7 @@ "source_location": "L18022", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_enqueuecapturedupdate", - "community": 128, + "community": 51, "norm_label": "enqueuecapturedupdate()" }, { @@ -115501,7 +115501,7 @@ "source_location": "L18104", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_getstatefromupdate", - "community": 13, + "community": 78, "norm_label": "getstatefromupdate()" }, { @@ -115511,7 +115511,7 @@ "source_location": "L18195", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_processupdatequeue", - "community": 214, + "community": 78, "norm_label": "processupdatequeue()" }, { @@ -115571,7 +115571,7 @@ "source_location": "L18435", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_pushhostcontainer", - "community": 571, + "community": 78, "norm_label": "pushhostcontainer()" }, { @@ -115621,7 +115621,7 @@ "source_location": "L18510", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_hassuspensecontext", - "community": 78, + "community": 571, "norm_label": "hassuspensecontext()" }, { @@ -115631,7 +115631,7 @@ "source_location": "L18513", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_setdefaultshallowsuspensecontext", - "community": 78, + "community": 571, "norm_label": "setdefaultshallowsuspensecontext()" }, { @@ -115641,7 +115641,7 @@ "source_location": "L18516", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_setshallowsuspensecontext", - "community": 78, + "community": 571, "norm_label": "setshallowsuspensecontext()" }, { @@ -115651,7 +115651,7 @@ "source_location": "L18519", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_addsubtreesuspensecontext", - "community": 78, + "community": 571, "norm_label": "addsubtreesuspensecontext()" }, { @@ -115661,7 +115661,7 @@ "source_location": "L18522", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_pushsuspensecontext", - "community": 78, + "community": 571, "norm_label": "pushsuspensecontext()" }, { @@ -115681,7 +115681,7 @@ "source_location": "L18529", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_shouldcapturesuspense", - "community": 128, + "community": 51, "norm_label": "shouldcapturesuspense()" }, { @@ -115691,7 +115691,7 @@ "source_location": "L18549", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_findfirstsuspended", - "community": 78, + "community": 571, "norm_label": "findfirstsuspended()" }, { @@ -115821,7 +115821,7 @@ "source_location": "L18986", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_mountworkinprogresshook", - "community": 13, + "community": 214, "norm_label": "mountworkinprogresshook()" }, { @@ -115851,7 +115851,7 @@ "source_location": "L19073", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_basicstatereducer", - "community": 13, + "community": 214, "norm_label": "basicstatereducer()" }, { @@ -115941,7 +115941,7 @@ "source_location": "L19468", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_updatestoreinstance", - "community": 157, + "community": 51, "norm_label": "updatestoreinstance()" }, { @@ -115951,7 +115951,7 @@ "source_location": "L19482", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_subscribetostore", - "community": 157, + "community": 51, "norm_label": "subscribetostore()" }, { @@ -115961,7 +115961,7 @@ "source_location": "L19496", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_checkifsnapshotchanged", - "community": 157, + "community": 51, "norm_label": "checkifsnapshotchanged()" }, { @@ -115971,7 +115971,7 @@ "source_location": "L19508", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_forcestorererender", - "community": 157, + "community": 51, "norm_label": "forcestorererender()" }, { @@ -115981,7 +115981,7 @@ "source_location": "L19516", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_mountstate", - "community": 13, + "community": 214, "norm_label": "mountstate()" }, { @@ -116021,7 +116021,7 @@ "source_location": "L19577", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_mountref", - "community": 13, + "community": 214, "norm_label": "mountref()" }, { @@ -116121,7 +116121,7 @@ "source_location": "L19662", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_imperativehandleeffect", - "community": 103, + "community": 96, "norm_label": "imperativehandleeffect()" }, { @@ -116161,7 +116161,7 @@ "source_location": "L19731", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_mountcallback", - "community": 13, + "community": 214, "norm_label": "mountcallback()" }, { @@ -116181,7 +116181,7 @@ "source_location": "L19757", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_mountmemo", - "community": 13, + "community": 214, "norm_label": "mountmemo()" }, { @@ -116201,7 +116201,7 @@ "source_location": "L19786", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_mountdeferredvalue", - "community": 13, + "community": 214, "norm_label": "mountdeferredvalue()" }, { @@ -116241,7 +116241,7 @@ "source_location": "L19886", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_mounttransition", - "community": 13, + "community": 214, "norm_label": "mounttransition()" }, { @@ -116301,7 +116301,7 @@ "source_location": "L19964", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_dispatchreduceraction", - "community": 214, + "community": 51, "norm_label": "dispatchreduceraction()" }, { @@ -116311,7 +116311,7 @@ "source_location": "L19995", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_dispatchsetstate", - "community": 214, + "community": 51, "norm_label": "dispatchsetstate()" }, { @@ -116321,7 +116321,7 @@ "source_location": "L20070", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_isrenderphaseupdate", - "community": 214, + "community": 51, "norm_label": "isrenderphaseupdate()" }, { @@ -116331,7 +116331,7 @@ "source_location": "L20075", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_enqueuerenderphaseupdate", - "community": 214, + "community": 51, "norm_label": "enqueuerenderphaseupdate()" }, { @@ -116341,7 +116341,7 @@ "source_location": "L20094", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_entangletransitionupdate", - "community": 214, + "community": 51, "norm_label": "entangletransitionupdate()" }, { @@ -116351,7 +116351,7 @@ "source_location": "L20113", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_markupdateindevtools", - "community": 214, + "community": 51, "norm_label": "markupdateindevtools()" }, { @@ -116611,7 +116611,7 @@ "source_location": "L21981", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_createcapturedvalueatfiber", - "community": 13, + "community": 78, "norm_label": "createcapturedvalueatfiber()" }, { @@ -116621,7 +116621,7 @@ "source_location": "L21991", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_createcapturedvalue", - "community": 78, + "community": 571, "norm_label": "createcapturedvalue()" }, { @@ -116631,7 +116631,7 @@ "source_location": "L22003", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_showerrordialog", - "community": 128, + "community": 51, "norm_label": "showerrordialog()" }, { @@ -116641,7 +116641,7 @@ "source_location": "L22007", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_logcapturederror", - "community": 128, + "community": 51, "norm_label": "logcapturederror()" }, { @@ -116651,7 +116651,7 @@ "source_location": "L22078", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_createrooterrorupdate", - "community": 128, + "community": 51, "norm_label": "createrooterrorupdate()" }, { @@ -116661,7 +116661,7 @@ "source_location": "L22097", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_createclasserrorupdate", - "community": 128, + "community": 51, "norm_label": "createclasserrorupdate()" }, { @@ -116671,7 +116671,7 @@ "source_location": "L22159", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_attachpinglistener", - "community": 128, + "community": 157, "norm_label": "attachpinglistener()" }, { @@ -116681,7 +116681,7 @@ "source_location": "L22204", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_attachretrylistener", - "community": 128, + "community": 51, "norm_label": "attachretrylistener()" }, { @@ -116691,7 +116691,7 @@ "source_location": "L22227", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_resetsuspendedcomponent", - "community": 128, + "community": 51, "norm_label": "resetsuspendedcomponent()" }, { @@ -116701,7 +116701,7 @@ "source_location": "L22247", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_getnearestsuspenseboundarytocapture", - "community": 128, + "community": 51, "norm_label": "getnearestsuspenseboundarytocapture()" }, { @@ -116711,7 +116711,7 @@ "source_location": "L22263", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_marksuspenseboundaryshouldcapture", - "community": 128, + "community": 51, "norm_label": "marksuspenseboundaryshouldcapture()" }, { @@ -116721,7 +116721,7 @@ "source_location": "L22371", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_throwexception", - "community": 128, + "community": 51, "norm_label": "throwexception()" }, { @@ -116731,7 +116731,7 @@ "source_location": "L22504", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_getsuspendedcache", - "community": 78, + "community": 571, "norm_label": "getsuspendedcache()" }, { @@ -116871,7 +116871,7 @@ "source_location": "L23179", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_pushhostrootcontext", - "community": 571, + "community": 78, "norm_label": "pushhostrootcontext()" }, { @@ -116961,7 +116961,7 @@ "source_location": "L23618", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_mountsuspenseoffscreenstate", - "community": 78, + "community": 571, "norm_label": "mountsuspenseoffscreenstate()" }, { @@ -116971,7 +116971,7 @@ "source_location": "L23626", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_updatesuspenseoffscreenstate", - "community": 78, + "community": 51, "norm_label": "updatesuspenseoffscreenstate()" }, { @@ -116981,7 +116981,7 @@ "source_location": "L23637", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_shouldremainonfallback", - "community": 78, + "community": 571, "norm_label": "shouldremainonfallback()" }, { @@ -116991,7 +116991,7 @@ "source_location": "L23657", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_getremainingworkinprimarytree", - "community": 78, + "community": 571, "norm_label": "getremainingworkinprimarytree()" }, { @@ -117001,7 +117001,7 @@ "source_location": "L23662", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_updatesuspensecomponent", - "community": 78, + "community": 571, "norm_label": "updatesuspensecomponent()" }, { @@ -117011,7 +117011,7 @@ "source_location": "L23781", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_mountsuspenseprimarychildren", - "community": 78, + "community": 571, "norm_label": "mountsuspenseprimarychildren()" }, { @@ -117021,7 +117021,7 @@ "source_location": "L23793", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_mountsuspensefallbackchildren", - "community": 78, + "community": 571, "norm_label": "mountsuspensefallbackchildren()" }, { @@ -117031,7 +117031,7 @@ "source_location": "L23834", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_mountworkinprogressoffscreenfiber", - "community": 78, + "community": 571, "norm_label": "mountworkinprogressoffscreenfiber()" }, { @@ -117041,7 +117041,7 @@ "source_location": "L23840", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_updateworkinprogressoffscreenfiber", - "community": 78, + "community": 571, "norm_label": "updateworkinprogressoffscreenfiber()" }, { @@ -117051,7 +117051,7 @@ "source_location": "L23846", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_updatesuspenseprimarychildren", - "community": 78, + "community": 571, "norm_label": "updatesuspenseprimarychildren()" }, { @@ -117061,7 +117061,7 @@ "source_location": "L23877", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_updatesuspensefallbackchildren", - "community": 78, + "community": 571, "norm_label": "updatesuspensefallbackchildren()" }, { @@ -117071,7 +117071,7 @@ "source_location": "L23942", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_retrysuspensecomponentwithouthydrating", - "community": 78, + "community": 571, "norm_label": "retrysuspensecomponentwithouthydrating()" }, { @@ -117081,7 +117081,7 @@ "source_location": "L23967", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_mountsuspensefallbackafterretrywithouthydrating", - "community": 78, + "community": 571, "norm_label": "mountsuspensefallbackafterretrywithouthydrating()" }, { @@ -117091,7 +117091,7 @@ "source_location": "L23992", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_mountdehydratedsuspensecomponent", - "community": 78, + "community": 571, "norm_label": "mountdehydratedsuspensecomponent()" }, { @@ -117101,7 +117101,7 @@ "source_location": "L24023", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_updatedehydratedsuspensecomponent", - "community": 78, + "community": 571, "norm_label": "updatedehydratedsuspensecomponent()" }, { @@ -117111,7 +117111,7 @@ "source_location": "L24161", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_schedulesuspenseworkonfiber", - "community": 214, + "community": 51, "norm_label": "schedulesuspenseworkonfiber()" }, { @@ -117121,7 +117121,7 @@ "source_location": "L24172", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_propagatesuspensecontextchange", - "community": 78, + "community": 51, "norm_label": "propagatesuspensecontextchange()" }, { @@ -117131,7 +117131,7 @@ "source_location": "L24215", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_findlastcontentrow", - "community": 78, + "community": 571, "norm_label": "findlastcontentrow()" }, { @@ -117141,7 +117141,7 @@ "source_location": "L24239", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_validaterevealorder", - "community": 78, + "community": 571, "norm_label": "validaterevealorder()" }, { @@ -117151,7 +117151,7 @@ "source_location": "L24275", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_validatetailoptions", - "community": 78, + "community": 571, "norm_label": "validatetailoptions()" }, { @@ -117181,7 +117181,7 @@ "source_location": "L24343", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_initsuspenselistrenderstate", - "community": 78, + "community": 571, "norm_label": "initsuspenselistrenderstate()" }, { @@ -117191,7 +117191,7 @@ "source_location": "L24373", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_updatesuspenselistcomponent", - "community": 78, + "community": 571, "norm_label": "updatesuspenselistcomponent()" }, { @@ -117331,7 +117331,7 @@ "source_location": "L25277", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_bubbleproperties", - "community": 571, + "community": 313, "norm_label": "bubbleproperties()" }, { @@ -117341,7 +117341,7 @@ "source_location": "L25372", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_completedehydratedsuspenseboundary", - "community": 571, + "community": 313, "norm_label": "completedehydratedsuspenseboundary()" }, { @@ -117581,7 +117581,7 @@ "source_location": "L27151", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_gethostparentfiber", - "community": 13, + "community": 580, "norm_label": "gethostparentfiber()" }, { @@ -117591,7 +117591,7 @@ "source_location": "L27165", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_ishostparent", - "community": 13, + "community": 580, "norm_label": "ishostparent()" }, { @@ -117601,7 +117601,7 @@ "source_location": "L27169", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_gethostsibling", - "community": 13, + "community": 580, "norm_label": "gethostsibling()" }, { @@ -117611,7 +117611,7 @@ "source_location": "L27217", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_commitplacement", - "community": 13, + "community": 580, "norm_label": "commitplacement()" }, { @@ -117621,7 +117621,7 @@ "source_location": "L27258", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_insertorappendplacementnodeintocontainer", - "community": 13, + "community": 580, "norm_label": "insertorappendplacementnodeintocontainer()" }, { @@ -117631,7 +117631,7 @@ "source_location": "L27285", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_insertorappendplacementnode", - "community": 13, + "community": 580, "norm_label": "insertorappendplacementnode()" }, { @@ -117691,7 +117691,7 @@ "source_location": "L27595", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_attachsuspenseretrylisteners", - "community": 128, + "community": 157, "norm_label": "attachsuspenseretrylisteners()" }, { @@ -117731,7 +117731,7 @@ "source_location": "L27976", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_commitreconciliationeffects", - "community": 13, + "community": 580, "norm_label": "commitreconciliationeffects()" }, { @@ -117991,7 +117991,7 @@ "source_location": "L28735", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_resetrendertimer", - "community": 157, + "community": 51, "norm_label": "resetrendertimer()" }, { @@ -118021,7 +118021,7 @@ "source_location": "L28768", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_requesteventtime", - "community": 157, + "community": 51, "norm_label": "requesteventtime()" }, { @@ -118031,7 +118031,7 @@ "source_location": "L28784", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_requestupdatelane", - "community": 214, + "community": 51, "norm_label": "requestupdatelane()" }, { @@ -118051,7 +118051,7 @@ "source_location": "L28867", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_scheduleupdateonfiber", - "community": 157, + "community": 51, "norm_label": "scheduleupdateonfiber()" }, { @@ -118061,7 +118061,7 @@ "source_location": "L28938", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_scheduleinitialhydrationonroot", - "community": 157, + "community": 51, "norm_label": "scheduleinitialhydrationonroot()" }, { @@ -118071,7 +118071,7 @@ "source_location": "L28953", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_isunsafeclassrenderphaseupdate", - "community": 128, + "community": 51, "norm_label": "isunsafeclassrenderphaseupdate()" }, { @@ -118111,7 +118111,7 @@ "source_location": "L29262", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_queuerecoverableerrors", - "community": 571, + "community": 313, "norm_label": "queuerecoverableerrors()" }, { @@ -118161,7 +118161,7 @@ "source_location": "L29517", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_flushroot", - "community": 157, + "community": 51, "norm_label": "flushroot()" }, { @@ -118171,7 +118171,7 @@ "source_location": "L29528", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_batchedupdates_1", - "community": 157, + "community": 51, "norm_label": "batchedupdates$1()" }, { @@ -118211,7 +118211,7 @@ "source_location": "L29603", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_pushrenderlanes", - "community": 156, + "community": 51, "norm_label": "pushrenderlanes()" }, { @@ -118311,7 +118311,7 @@ "source_location": "L29774", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_renderdiderror", - "community": 128, + "community": 51, "norm_label": "renderdiderror()" }, { @@ -118421,7 +118421,7 @@ "source_location": "L30386", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_enqueuependingpassiveprofilereffect", - "community": 156, + "community": 157, "norm_label": "enqueuependingpassiveprofilereffect()" }, { @@ -118441,7 +118441,7 @@ "source_location": "L30485", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_isalreadyfailedlegacyerrorboundary", - "community": 128, + "community": 51, "norm_label": "isalreadyfailedlegacyerrorboundary()" }, { @@ -118451,7 +118451,7 @@ "source_location": "L30488", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_marklegacyerrorboundaryasfailed", - "community": 128, + "community": 51, "norm_label": "marklegacyerrorboundaryasfailed()" }, { @@ -118471,7 +118471,7 @@ "source_location": "L30505", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_capturecommitphaseerroronroot", - "community": 157, + "community": 51, "norm_label": "capturecommitphaseerroronroot()" }, { @@ -118501,7 +118501,7 @@ "source_location": "L30605", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_retrytimedoutboundary", - "community": 157, + "community": 51, "norm_label": "retrytimedoutboundary()" }, { @@ -118511,7 +118511,7 @@ "source_location": "L30626", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_retrydehydratedsuspenseboundary", - "community": 157, + "community": 51, "norm_label": "retrydehydratedsuspenseboundary()" }, { @@ -118521,7 +118521,7 @@ "source_location": "L30636", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_resolveretrywakeable", - "community": 157, + "community": 51, "norm_label": "resolveretrywakeable()" }, { @@ -118541,7 +118541,7 @@ "source_location": "L30681", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_checkfornestedupdates", - "community": 157, + "community": 51, "norm_label": "checkfornestedupdates()" }, { @@ -118601,7 +118601,7 @@ "source_location": "L30906", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_restorependingupdaters", - "community": 128, + "community": 157, "norm_label": "restorependingupdaters()" }, { @@ -118611,7 +118611,7 @@ "source_location": "L30920", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_schedulecallback_1", - "community": 156, + "community": 157, "norm_label": "schedulecallback$1()" }, { @@ -118711,7 +118711,7 @@ "source_location": "L31160", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_markfailederrorboundaryforhotreloading", - "community": 128, + "community": 51, "norm_label": "markfailederrorboundaryforhotreloading()" }, { @@ -118721,7 +118721,7 @@ "source_location": "L31209", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_schedulefiberswithfamiliesrecursively", - "community": 157, + "community": 51, "norm_label": "schedulefiberswithfamiliesrecursively()" }, { @@ -118811,7 +118811,7 @@ "source_location": "L31630", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_resetworkinprogress", - "community": 571, + "community": 13, "norm_label": "resetworkinprogress()" }, { @@ -118851,7 +118851,7 @@ "source_location": "L31867", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_createfiberfromfragment", - "community": 78, + "community": 571, "norm_label": "createfiberfromfragment()" }, { @@ -118861,7 +118861,7 @@ "source_location": "L31873", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_createfiberfromprofiler", - "community": 96, + "community": 78, "norm_label": "createfiberfromprofiler()" }, { @@ -118891,7 +118891,7 @@ "source_location": "L31906", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_createfiberfromoffscreen", - "community": 78, + "community": 571, "norm_label": "createfiberfromoffscreen()" }, { @@ -118981,7 +118981,7 @@ "source_location": "L32106", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_getcontextforsubtree", - "community": 78, + "community": 96, "norm_label": "getcontextforsubtree()" }, { @@ -119011,7 +119011,7 @@ "source_location": "L32180", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_createhydrationcontainer", - "community": 128, + "community": 51, "norm_label": "createhydrationcontainer()" }, { @@ -119021,7 +119021,7 @@ "source_location": "L32201", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_updatecontainer", - "community": 128, + "community": 96, "norm_label": "updatecontainer()" }, { @@ -119041,7 +119041,7 @@ "source_location": "L32272", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_attemptsynchronoushydration_1", - "community": 157, + "community": 51, "norm_label": "attemptsynchronoushydration$1()" }, { @@ -119051,7 +119051,7 @@ "source_location": "L32307", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_markretrylaneimpl", - "community": 157, + "community": 51, "norm_label": "markretrylaneimpl()" }, { @@ -119061,7 +119061,7 @@ "source_location": "L32316", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_markretrylaneifnothydrated", - "community": 157, + "community": 51, "norm_label": "markretrylaneifnothydrated()" }, { @@ -119071,7 +119071,7 @@ "source_location": "L32324", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_attemptcontinuoushydration_1", - "community": 157, + "community": 51, "norm_label": "attemptcontinuoushydration$1()" }, { @@ -119081,7 +119081,7 @@ "source_location": "L32343", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_attempthydrationatcurrentpriority_1", - "community": 157, + "community": 51, "norm_label": "attempthydrationatcurrentpriority$1()" }, { @@ -119111,7 +119111,7 @@ "source_location": "L32382", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_shouldsuspend", - "community": 78, + "community": 571, "norm_label": "shouldsuspend()" }, { @@ -119191,7 +119191,7 @@ "source_location": "L32787", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_react_schedulehydration", - "community": 170, + "community": 13, "norm_label": "schedulehydration()" }, { @@ -120611,7 +120611,7 @@ "source_location": "L10516", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_stylesheet2", - "community": 1246, + "community": 38, "norm_label": "stylesheet2()" }, { @@ -120621,7 +120621,7 @@ "source_location": "L10518", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_stylesheet2_inserttag", - "community": 1246, + "community": 38, "norm_label": "._inserttag()" }, { @@ -121021,7 +121021,7 @@ "source_location": "L11328", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_getregisteredstyles", - "community": 422, + "community": 419, "norm_label": "getregisteredstyles()" }, { @@ -121331,7 +121331,7 @@ "source_location": "L12659", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_onlyelements", - "community": 422, + "community": 419, "norm_label": "onlyelements()" }, { @@ -121861,7 +121861,7 @@ "source_location": "L14214", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_resolvevariant", - "community": 419, + "community": 423, "norm_label": "resolvevariant()" }, { @@ -122021,7 +122021,7 @@ "source_location": "L14317", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_then", - "community": 419, + "community": 423, "norm_label": "then()" }, { @@ -122031,7 +122031,7 @@ "source_location": "L14324", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_getvaluetransition", - "community": 419, + "community": 423, "norm_label": "getvaluetransition()" }, { @@ -122101,7 +122101,7 @@ "source_location": "L14458", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_resolveelements", - "community": 422, + "community": 419, "norm_label": "resolveelements()" }, { @@ -122111,7 +122111,7 @@ "source_location": "L14474", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_setupgesture", - "community": 422, + "community": 419, "norm_label": "setupgesture()" }, { @@ -122121,7 +122121,7 @@ "source_location": "L14487", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_filterevents", - "community": 422, + "community": 419, "norm_label": "filterevents()" }, { @@ -122131,7 +122131,7 @@ "source_location": "L14494", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_hover", - "community": 422, + "community": 419, "norm_label": "hover()" }, { @@ -122181,7 +122181,7 @@ "source_location": "L14592", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_press", - "community": 422, + "community": 419, "norm_label": "press()" }, { @@ -122251,7 +122251,7 @@ "source_location": "L14759", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_clear", - "community": 422, + "community": 419, "norm_label": "clear()" }, { @@ -122321,7 +122321,7 @@ "source_location": "L14883", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_clearlisteners", - "community": 422, + "community": 419, "norm_label": "clearlisteners()" }, { @@ -122391,7 +122391,7 @@ "source_location": "L14983", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_start", - "community": 419, + "community": 423, "norm_label": "start()" }, { @@ -122431,7 +122431,7 @@ "source_location": "L15032", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_destroy", - "community": 96, + "community": 419, "norm_label": "destroy()" }, { @@ -122461,7 +122461,7 @@ "source_location": "L15052", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_settarget", - "community": 419, + "community": 423, "norm_label": "settarget()" }, { @@ -122471,7 +122471,7 @@ "source_location": "L15067", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_iswillchangemotionvalue", - "community": 419, + "community": 423, "norm_label": "iswillchangemotionvalue()" }, { @@ -122481,7 +122481,7 @@ "source_location": "L15072", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_addvaluetowillchange", - "community": 419, + "community": 423, "norm_label": "addvaluetowillchange()" }, { @@ -122491,7 +122491,7 @@ "source_location": "L15081", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_getoptimisedappearid", - "community": 419, + "community": 423, "norm_label": "getoptimisedappearid()" }, { @@ -122631,7 +122631,7 @@ "source_location": "L15480", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_removenontranslationaltransform", - "community": 422, + "community": 419, "norm_label": "removenontranslationaltransform()" }, { @@ -122641,7 +122641,7 @@ "source_location": "L15510", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_measureallkeyframes", - "community": 422, + "community": 419, "norm_label": "measureallkeyframes()" }, { @@ -122651,7 +122651,7 @@ "source_location": "L15545", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_readallkeyframes", - "community": 422, + "community": 419, "norm_label": "readallkeyframes()" }, { @@ -122661,7 +122661,7 @@ "source_location": "L15553", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_flushkeyframeresolvers", - "community": 422, + "community": 419, "norm_label": "flushkeyframeresolvers()" }, { @@ -122671,7 +122671,7 @@ "source_location": "L15570", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_scheduleresolve", - "community": 422, + "community": 419, "norm_label": "scheduleresolve()" }, { @@ -122731,7 +122731,7 @@ "source_location": "L15630", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_resume", - "community": 422, + "community": 419, "norm_label": "resume()" }, { @@ -122811,7 +122811,7 @@ "source_location": "L15874", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_resolved", - "community": 422, + "community": 419, "norm_label": "resolved()" }, { @@ -123241,7 +123241,7 @@ "source_location": "L17200", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_shouldblockanimation", - "community": 419, + "community": 423, "norm_label": "shouldblockanimation()" }, { @@ -123251,7 +123251,7 @@ "source_location": "L17205", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_animatetarget", - "community": 419, + "community": 423, "norm_label": "animatetarget()" }, { @@ -123261,7 +123261,7 @@ "source_location": "L17252", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_animatevariant", - "community": 419, + "community": 423, "norm_label": "animatevariant()" }, { @@ -123271,7 +123271,7 @@ "source_location": "L17272", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_animatechildren", - "community": 422, + "community": 419, "norm_label": "animatechildren()" }, { @@ -123281,7 +123281,7 @@ "source_location": "L17285", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_sortbytreeorder", - "community": 422, + "community": 419, "norm_label": "sortbytreeorder()" }, { @@ -123291,7 +123291,7 @@ "source_location": "L17290", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_animatevisualelement", - "community": 419, + "community": 423, "norm_label": "animatevisualelement()" }, { @@ -123391,7 +123391,7 @@ "source_location": "L17559", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_unmount", - "community": 422, + "community": 419, "norm_label": "unmount()" }, { @@ -123621,7 +123621,7 @@ "source_location": "L17829", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_applyconstraints", - "community": 419, + "community": 423, "norm_label": "applyconstraints()" }, { @@ -123731,7 +123731,7 @@ "source_location": "L17935", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_convertboundingboxtobox", - "community": 423, + "community": 338, "norm_label": "convertboundingboxtobox()" }, { @@ -123751,7 +123751,7 @@ "source_location": "L17944", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_transformboxpoints", - "community": 423, + "community": 338, "norm_label": "transformboxpoints()" }, { @@ -123861,7 +123861,7 @@ "source_location": "L18036", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_translateaxis", - "community": 423, + "community": 338, "norm_label": "translateaxis()" }, { @@ -123891,7 +123891,7 @@ "source_location": "L18050", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_measureviewportbox", - "community": 423, + "community": 338, "norm_label": "measureviewportbox()" }, { @@ -123901,7 +123901,7 @@ "source_location": "L18053", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_measurepagebox", - "community": 423, + "community": 338, "norm_label": "measurepagebox()" }, { @@ -123911,7 +123911,7 @@ "source_location": "L18192", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_updateaxis", - "community": 419, + "community": 423, "norm_label": "updateaxis()" }, { @@ -123951,7 +123951,7 @@ "source_location": "L18275", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_startaxisvalueanimation", - "community": 419, + "community": 423, "norm_label": "startaxisvalueanimation()" }, { @@ -123981,7 +123981,7 @@ "source_location": "L18289", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_getanimationstate", - "community": 419, + "community": 423, "norm_label": "getanimationstate()" }, { @@ -123991,7 +123991,7 @@ "source_location": "L18299", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_getaxismotionvalue", - "community": 419, + "community": 423, "norm_label": "getaxismotionvalue()" }, { @@ -124041,7 +124041,7 @@ "source_location": "L18408", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_shoulddrag", - "community": 419, + "community": 423, "norm_label": "shoulddrag()" }, { @@ -124131,7 +124131,7 @@ "source_location": "L18666", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_animatesinglevalue", - "community": 419, + "community": 423, "norm_label": "animatesinglevalue()" }, { @@ -124161,7 +124161,7 @@ "source_location": "L18699", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_foreach", - "community": 422, + "community": 419, "norm_label": "foreach()" }, { @@ -124431,7 +124431,7 @@ "source_location": "L19005", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_canceltreeoptimisedtransformanimations", - "community": 419, + "community": 423, "norm_label": "canceltreeoptimisedtransformanimations()" }, { @@ -124451,7 +124451,7 @@ "source_location": "L19877", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_updatelayout", - "community": 423, + "community": 422, "norm_label": "updatelayout()" }, { @@ -124801,7 +124801,7 @@ "source_location": "L20514", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_sortnodeposition", - "community": 422, + "community": 419, "norm_label": "sortnodeposition()" }, { @@ -124861,7 +124861,7 @@ "source_location": "L20600", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_getdefaulttransition", - "community": 419, + "community": 423, "norm_label": "getdefaulttransition()" }, { @@ -124971,7 +124971,7 @@ "source_location": "L20728", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_sortinstancenodeposition", - "community": 422, + "community": 419, "norm_label": "sortinstancenodeposition()" }, { @@ -125031,7 +125031,7 @@ "source_location": "L20774", "_origin": "ast", "id": "docs_design_thingtime_landing_1c_crowdfund_campaign_ds_thingtime_bundle_measureinstanceviewportbox", - "community": 423, + "community": 338, "norm_label": "measureinstanceviewportbox()" }, { @@ -125941,7 +125941,7 @@ "source_location": "L155", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_warn", - "community": 111, + "community": 262, "norm_label": "warn()" }, { @@ -125961,7 +125961,7 @@ "source_location": "L178", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_printwarning", - "community": 111, + "community": 262, "norm_label": "printwarning()" }, { @@ -126301,7 +126301,7 @@ "source_location": "L1225", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_createcontext", - "community": 111, + "community": 262, "norm_label": "createcontext()" }, { @@ -126521,7 +126521,7 @@ "source_location": "L1682", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_disabledlog", - "community": 262, + "community": 591, "norm_label": "disabledlog()" }, { @@ -126531,7 +126531,7 @@ "source_location": "L1685", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_disablelogs", - "community": 262, + "community": 591, "norm_label": "disablelogs()" }, { @@ -126541,7 +126541,7 @@ "source_location": "L1719", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_reenablelogs", - "community": 262, + "community": 591, "norm_label": "reenablelogs()" }, { @@ -126551,7 +126551,7 @@ "source_location": "L1765", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_describebuiltincomponentframe", - "community": 262, + "community": 591, "norm_label": "describebuiltincomponentframe()" }, { @@ -126561,7 +126561,7 @@ "source_location": "L1789", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_describenativecomponentframe", - "community": 262, + "community": 591, "norm_label": "describenativecomponentframe()" }, { @@ -126571,7 +126571,7 @@ "source_location": "L1948", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_describefunctioncomponentframe", - "community": 262, + "community": 591, "norm_label": "describefunctioncomponentframe()" }, { @@ -126581,7 +126581,7 @@ "source_location": "L1954", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_shouldconstruct", - "community": 262, + "community": 591, "norm_label": "shouldconstruct()" }, { @@ -126591,7 +126591,7 @@ "source_location": "L1959", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_describeunknownelementtypeframeindev", - "community": 262, + "community": 591, "norm_label": "describeunknownelementtypeframeindev()" }, { @@ -126601,7 +126601,7 @@ "source_location": "L2012", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_setcurrentlyvalidatingelement", - "community": 262, + "community": 591, "norm_label": "setcurrentlyvalidatingelement()" }, { @@ -126721,7 +126721,7 @@ "source_location": "L2375", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_createfactorywithvalidation", - "community": 111, + "community": 262, "norm_label": "createfactorywithvalidation()" }, { @@ -126851,7 +126851,7 @@ "source_location": "L2687", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_unstable_runwithpriority", - "community": 431, + "community": 314, "norm_label": "unstable_runwithpriority()" }, { @@ -126861,7 +126861,7 @@ "source_location": "L2710", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_unstable_next", - "community": 431, + "community": 314, "norm_label": "unstable_next()" }, { @@ -127251,7 +127251,7 @@ "source_location": "L4511", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_describeclasscomponentframe", - "community": 262, + "community": 591, "norm_label": "describeclasscomponentframe()" }, { @@ -127261,7 +127261,7 @@ "source_location": "L4577", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_describefiber", - "community": 262, + "community": 591, "norm_label": "describefiber()" }, { @@ -127271,7 +127271,7 @@ "source_location": "L4610", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_getstackbyfiberindevandprod", - "community": 262, + "community": 591, "norm_label": "getstackbyfiberindevandprod()" }, { @@ -127321,7 +127321,7 @@ "source_location": "L4845", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_getcurrentfiberstackindev", - "community": 262, + "community": 591, "norm_label": "getcurrentfiberstackindev()" }, { @@ -127401,7 +127401,7 @@ "source_location": "L4932", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_ischeckable", - "community": 23, + "community": 149, "norm_label": "ischeckable()" }, { @@ -127411,7 +127411,7 @@ "source_location": "L4938", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_gettracker", - "community": 23, + "community": 149, "norm_label": "gettracker()" }, { @@ -127421,7 +127421,7 @@ "source_location": "L4942", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_detachtracker", - "community": 23, + "community": 149, "norm_label": "detachtracker()" }, { @@ -127431,7 +127431,7 @@ "source_location": "L4946", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_getvaluefromnode", - "community": 23, + "community": 149, "norm_label": "getvaluefromnode()" }, { @@ -127441,7 +127441,7 @@ "source_location": "L4962", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_trackvalueonnode", - "community": 23, + "community": 149, "norm_label": "trackvalueonnode()" }, { @@ -127451,7 +127451,7 @@ "source_location": "L5021", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_track", - "community": 23, + "community": 149, "norm_label": "track()" }, { @@ -127461,7 +127461,7 @@ "source_location": "L5029", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_updatevalueifchanged", - "community": 23, + "community": 149, "norm_label": "updatevalueifchanged()" }, { @@ -127711,7 +127711,7 @@ "source_location": "L5705", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_getintrinsicnamespace", - "community": 23, + "community": 87, "norm_label": "getintrinsicnamespace()" }, { @@ -127721,7 +127721,7 @@ "source_location": "L5717", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_getchildnamespace", - "community": 23, + "community": 87, "norm_label": "getchildnamespace()" }, { @@ -127881,7 +127881,7 @@ "source_location": "L7174", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_setreplayingevent", - "community": 23, + "community": 582, "norm_label": "setreplayingevent()" }, { @@ -127891,7 +127891,7 @@ "source_location": "L7183", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_resetreplayingevent", - "community": 23, + "community": 582, "norm_label": "resetreplayingevent()" }, { @@ -128121,7 +128121,7 @@ "source_location": "L7692", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_get", - "community": 23, + "community": 563, "norm_label": "get()" }, { @@ -128181,7 +128181,7 @@ "source_location": "L7864", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_isfibermounted", - "community": 139, + "community": 98, "norm_label": "isfibermounted()" }, { @@ -128191,7 +128191,7 @@ "source_location": "L7867", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_ismounted", - "community": 23, + "community": 563, "norm_label": "ismounted()" }, { @@ -128841,7 +128841,7 @@ "source_location": "L9088", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_removelanes", - "community": 87, + "community": 223, "norm_label": "removelanes()" }, { @@ -128861,7 +128861,7 @@ "source_location": "L9096", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_lanetolanes", - "community": 87, + "community": 223, "norm_label": "lanetolanes()" }, { @@ -129161,7 +129161,7 @@ "source_location": "L9493", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_queueifcontinuousevent", - "community": 23, + "community": 563, "norm_label": "queueifcontinuousevent()" }, { @@ -129191,7 +129191,7 @@ "source_location": "L9605", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_attemptreplaycontinuousqueuedevent", - "community": 23, + "community": 582, "norm_label": "attemptreplaycontinuousqueuedevent()" }, { @@ -129201,7 +129201,7 @@ "source_location": "L9643", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_attemptreplaycontinuousqueuedeventinmap", - "community": 23, + "community": 582, "norm_label": "attemptreplaycontinuousqueuedeventinmap()" }, { @@ -129211,7 +129211,7 @@ "source_location": "L9649", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_replayunblockedevents", - "community": 23, + "community": 582, "norm_label": "replayunblockedevents()" }, { @@ -129221,7 +129221,7 @@ "source_location": "L9669", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_schedulecallbackifunblocked", - "community": 563, + "community": 582, "norm_label": "schedulecallbackifunblocked()" }, { @@ -130481,7 +130481,7 @@ "source_location": "L14216", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_getroothostcontext", - "community": 23, + "community": 98, "norm_label": "getroothostcontext()" }, { @@ -130491,7 +130491,7 @@ "source_location": "L14250", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_getchildhostcontext", - "community": 23, + "community": 87, "norm_label": "getchildhostcontext()" }, { @@ -130811,7 +130811,7 @@ "source_location": "L14566", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_issuspenseinstancepending", - "community": 87, + "community": 223, "norm_label": "issuspenseinstancepending()" }, { @@ -130821,7 +130821,7 @@ "source_location": "L14569", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_issuspenseinstancefallback", - "community": 87, + "community": 223, "norm_label": "issuspenseinstancefallback()" }, { @@ -130831,7 +130831,7 @@ "source_location": "L14572", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_getsuspenseinstancefallbackerrordetails", - "community": 87, + "community": 223, "norm_label": "getsuspenseinstancefallbackerrordetails()" }, { @@ -130841,7 +130841,7 @@ "source_location": "L14604", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_registersuspenseinstanceretry", - "community": 87, + "community": 223, "norm_label": "registersuspenseinstanceretry()" }, { @@ -131301,7 +131301,7 @@ "source_location": "L15221", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_pushtoplevelcontextobject", - "community": 98, + "community": 183, "norm_label": "pushtoplevelcontextobject()" }, { @@ -131311,7 +131311,7 @@ "source_location": "L15232", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_processchildcontext", - "community": 183, + "community": 98, "norm_label": "processchildcontext()" }, { @@ -131331,7 +131331,7 @@ "source_location": "L15285", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_invalidatecontextprovider", - "community": 183, + "community": 98, "norm_label": "invalidatecontextprovider()" }, { @@ -131341,7 +131341,7 @@ "source_location": "L15313", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_findcurrentunmaskedcontext", - "community": 139, + "community": 98, "norm_label": "findcurrentunmaskedcontext()" }, { @@ -131511,7 +131511,7 @@ "source_location": "L15610", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_warnifhydrating", - "community": 87, + "community": 223, "norm_label": "warnifhydrating()" }, { @@ -131751,7 +131751,7 @@ "source_location": "L16088", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_queuehydrationerror", - "community": 87, + "community": 223, "norm_label": "queuehydrationerror()" }, { @@ -131841,7 +131841,7 @@ "source_location": "L17463", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_resetchildfibers", - "community": 23, + "community": 87, "norm_label": "resetchildfibers()" }, { @@ -132201,7 +132201,7 @@ "source_location": "L18510", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_hassuspensecontext", - "community": 87, + "community": 223, "norm_label": "hassuspensecontext()" }, { @@ -132211,7 +132211,7 @@ "source_location": "L18513", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_setdefaultshallowsuspensecontext", - "community": 87, + "community": 223, "norm_label": "setdefaultshallowsuspensecontext()" }, { @@ -132221,7 +132221,7 @@ "source_location": "L18516", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_setshallowsuspensecontext", - "community": 87, + "community": 223, "norm_label": "setshallowsuspensecontext()" }, { @@ -132231,7 +132231,7 @@ "source_location": "L18519", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_addsubtreesuspensecontext", - "community": 87, + "community": 223, "norm_label": "addsubtreesuspensecontext()" }, { @@ -132241,7 +132241,7 @@ "source_location": "L18522", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_pushsuspensecontext", - "community": 87, + "community": 223, "norm_label": "pushsuspensecontext()" }, { @@ -132271,7 +132271,7 @@ "source_location": "L18549", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_findfirstsuspended", - "community": 87, + "community": 223, "norm_label": "findfirstsuspended()" }, { @@ -132401,7 +132401,7 @@ "source_location": "L18986", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_mountworkinprogresshook", - "community": 23, + "community": 384, "norm_label": "mountworkinprogresshook()" }, { @@ -132431,7 +132431,7 @@ "source_location": "L19073", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_basicstatereducer", - "community": 23, + "community": 384, "norm_label": "basicstatereducer()" }, { @@ -132441,7 +132441,7 @@ "source_location": "L19078", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_mountreducer", - "community": 23, + "community": 384, "norm_label": "mountreducer()" }, { @@ -132561,7 +132561,7 @@ "source_location": "L19516", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_mountstate", - "community": 23, + "community": 384, "norm_label": "mountstate()" }, { @@ -132601,7 +132601,7 @@ "source_location": "L19577", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_mountref", - "community": 23, + "community": 384, "norm_label": "mountref()" }, { @@ -132621,7 +132621,7 @@ "source_location": "L19594", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_mounteffectimpl", - "community": 23, + "community": 384, "norm_label": "mounteffectimpl()" }, { @@ -132641,7 +132641,7 @@ "source_location": "L19624", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_mounteffect", - "community": 23, + "community": 384, "norm_label": "mounteffect()" }, { @@ -132661,7 +132661,7 @@ "source_location": "L19636", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_mountinsertioneffect", - "community": 23, + "community": 384, "norm_label": "mountinsertioneffect()" }, { @@ -132681,7 +132681,7 @@ "source_location": "L19644", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_mountlayouteffect", - "community": 23, + "community": 384, "norm_label": "mountlayouteffect()" }, { @@ -132711,7 +132711,7 @@ "source_location": "L19690", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_mountimperativehandle", - "community": 23, + "community": 384, "norm_label": "mountimperativehandle()" }, { @@ -132741,7 +132741,7 @@ "source_location": "L19731", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_mountcallback", - "community": 23, + "community": 384, "norm_label": "mountcallback()" }, { @@ -132761,7 +132761,7 @@ "source_location": "L19757", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_mountmemo", - "community": 23, + "community": 384, "norm_label": "mountmemo()" }, { @@ -132781,7 +132781,7 @@ "source_location": "L19786", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_mountdeferredvalue", - "community": 23, + "community": 384, "norm_label": "mountdeferredvalue()" }, { @@ -132821,7 +132821,7 @@ "source_location": "L19886", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_mounttransition", - "community": 23, + "community": 384, "norm_label": "mounttransition()" }, { @@ -133201,7 +133201,7 @@ "source_location": "L21991", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_createcapturedvalue", - "community": 87, + "community": 223, "norm_label": "createcapturedvalue()" }, { @@ -133211,7 +133211,7 @@ "source_location": "L22003", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_showerrordialog", - "community": 139, + "community": 563, "norm_label": "showerrordialog()" }, { @@ -133221,7 +133221,7 @@ "source_location": "L22007", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_logcapturederror", - "community": 139, + "community": 563, "norm_label": "logcapturederror()" }, { @@ -133311,7 +133311,7 @@ "source_location": "L22504", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_getsuspendedcache", - "community": 87, + "community": 223, "norm_label": "getsuspendedcache()" }, { @@ -133541,7 +133541,7 @@ "source_location": "L23618", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_mountsuspenseoffscreenstate", - "community": 87, + "community": 223, "norm_label": "mountsuspenseoffscreenstate()" }, { @@ -133561,7 +133561,7 @@ "source_location": "L23637", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_shouldremainonfallback", - "community": 87, + "community": 223, "norm_label": "shouldremainonfallback()" }, { @@ -133571,7 +133571,7 @@ "source_location": "L23657", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_getremainingworkinprimarytree", - "community": 87, + "community": 223, "norm_label": "getremainingworkinprimarytree()" }, { @@ -133581,7 +133581,7 @@ "source_location": "L23662", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_updatesuspensecomponent", - "community": 87, + "community": 223, "norm_label": "updatesuspensecomponent()" }, { @@ -133591,7 +133591,7 @@ "source_location": "L23781", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_mountsuspenseprimarychildren", - "community": 87, + "community": 223, "norm_label": "mountsuspenseprimarychildren()" }, { @@ -133651,7 +133651,7 @@ "source_location": "L23942", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_retrysuspensecomponentwithouthydrating", - "community": 87, + "community": 223, "norm_label": "retrysuspensecomponentwithouthydrating()" }, { @@ -133671,7 +133671,7 @@ "source_location": "L23992", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_mountdehydratedsuspensecomponent", - "community": 87, + "community": 223, "norm_label": "mountdehydratedsuspensecomponent()" }, { @@ -133681,7 +133681,7 @@ "source_location": "L24023", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_updatedehydratedsuspensecomponent", - "community": 87, + "community": 223, "norm_label": "updatedehydratedsuspensecomponent()" }, { @@ -133711,7 +133711,7 @@ "source_location": "L24215", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_findlastcontentrow", - "community": 87, + "community": 223, "norm_label": "findlastcontentrow()" }, { @@ -133721,7 +133721,7 @@ "source_location": "L24239", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_validaterevealorder", - "community": 87, + "community": 223, "norm_label": "validaterevealorder()" }, { @@ -133731,7 +133731,7 @@ "source_location": "L24275", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_validatetailoptions", - "community": 87, + "community": 223, "norm_label": "validatetailoptions()" }, { @@ -133761,7 +133761,7 @@ "source_location": "L24343", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_initsuspenselistrenderstate", - "community": 87, + "community": 223, "norm_label": "initsuspenselistrenderstate()" }, { @@ -133771,7 +133771,7 @@ "source_location": "L24373", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_updatesuspenselistcomponent", - "community": 87, + "community": 223, "norm_label": "updatesuspenselistcomponent()" }, { @@ -135001,7 +135001,7 @@ "source_location": "L30386", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_enqueuependingpassiveprofilereffect", - "community": 183, + "community": 315, "norm_label": "enqueuependingpassiveprofilereffect()" }, { @@ -135191,7 +135191,7 @@ "source_location": "L30920", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_schedulecallback_1", - "community": 183, + "community": 315, "norm_label": "schedulecallback$1()" }, { @@ -135391,7 +135391,7 @@ "source_location": "L31630", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_resetworkinprogress", - "community": 23, + "community": 87, "norm_label": "resetworkinprogress()" }, { @@ -135561,7 +135561,7 @@ "source_location": "L32106", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_getcontextforsubtree", - "community": 139, + "community": 98, "norm_label": "getcontextforsubtree()" }, { @@ -135691,7 +135691,7 @@ "source_location": "L32382", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_react_shouldsuspend", - "community": 87, + "community": 223, "norm_label": "shouldsuspend()" }, { @@ -136651,7 +136651,7 @@ "source_location": "L6103", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_thingtime_bundle_resolvestyleconfig", - "community": 660, + "community": 39, "norm_label": "resolvestyleconfig()" }, { @@ -137671,7 +137671,7 @@ "source_location": "L11833", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_thingtime_bundle_usecolormode", - "community": 660, + "community": 39, "norm_label": "usecolormode()" }, { @@ -137771,7 +137771,7 @@ "source_location": "L12375", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_thingtime_bundle_globalstyle", - "community": 660, + "community": 39, "norm_label": "globalstyle()" }, { @@ -141401,7 +141401,7 @@ "source_location": "L20541", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_thingtime_bundle_triggerbuild", - "community": 641, + "community": 284, "norm_label": "triggerbuild()" }, { @@ -141691,7 +141691,7 @@ "source_location": "L21226", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_thingtime_bundle_styled2", - "community": 660, + "community": 39, "norm_label": "styled2()" }, { @@ -141701,7 +141701,7 @@ "source_location": "L21252", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_thingtime_bundle_factory", - "community": 660, + "community": 39, "norm_label": "factory()" }, { @@ -141721,7 +141721,7 @@ "source_location": "L21423", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_thingtime_bundle_usetheme2", - "community": 660, + "community": 39, "norm_label": "usetheme2()" }, { @@ -141731,7 +141731,7 @@ "source_location": "L21436", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_thingtime_bundle_usechakra", - "community": 660, + "community": 39, "norm_label": "usechakra()" }, { @@ -141741,7 +141741,7 @@ "source_location": "L21443", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_thingtime_bundle_omitreactelements", - "community": 660, + "community": 39, "norm_label": "omitreactelements()" }, { @@ -141751,7 +141751,7 @@ "source_location": "L21450", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_thingtime_bundle_usestyleconfigimpl", - "community": 660, + "community": 39, "norm_label": "usestyleconfigimpl()" }, { @@ -141761,7 +141761,7 @@ "source_location": "L21472", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_thingtime_bundle_usestyleconfig", - "community": 660, + "community": 39, "norm_label": "usestyleconfig()" }, { @@ -141771,7 +141771,7 @@ "source_location": "L21475", "_origin": "ast", "id": "docs_design_thingtime_landing_1d_developer_first_ds_thingtime_bundle_usemultistyleconfig", - "community": 660, + "community": 39, "norm_label": "usemultistyleconfig()" }, { @@ -142521,7 +142521,7 @@ "source_location": "L155", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_warn", - "community": 54, + "community": 403, "norm_label": "warn()" }, { @@ -142531,7 +142531,7 @@ "source_location": "L166", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_error", - "community": 54, + "community": 403, "norm_label": "error()" }, { @@ -142541,7 +142541,7 @@ "source_location": "L178", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_printwarning", - "community": 54, + "community": 403, "norm_label": "printwarning()" }, { @@ -142551,7 +142551,7 @@ "source_location": "L205", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_warnnoop", - "community": 54, + "community": 403, "norm_label": "warnnoop()" }, { @@ -142631,7 +142631,7 @@ "source_location": "L445", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_typename", - "community": 54, + "community": 403, "norm_label": "typename()" }, { @@ -142641,7 +142641,7 @@ "source_location": "L455", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_willcoercionthrow", - "community": 54, + "community": 403, "norm_label": "willcoercionthrow()" }, { @@ -142651,7 +142651,7 @@ "source_location": "L466", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_teststringcoercion", - "community": 54, + "community": 403, "norm_label": "teststringcoercion()" }, { @@ -142661,7 +142661,7 @@ "source_location": "L492", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_checkkeystringcoercion", - "community": 54, + "community": 403, "norm_label": "checkkeystringcoercion()" }, { @@ -142701,7 +142701,7 @@ "source_location": "L616", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_hasvalidref", - "community": 54, + "community": 403, "norm_label": "hasvalidref()" }, { @@ -142711,7 +142711,7 @@ "source_location": "L630", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_hasvalidkey", - "community": 54, + "community": 403, "norm_label": "hasvalidkey()" }, { @@ -142721,7 +142721,7 @@ "source_location": "L644", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_definekeypropwarninggetter", - "community": 54, + "community": 403, "norm_label": "definekeypropwarninggetter()" }, { @@ -142731,7 +142731,7 @@ "source_location": "L662", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_definerefpropwarninggetter", - "community": 54, + "community": 403, "norm_label": "definerefpropwarninggetter()" }, { @@ -142741,7 +142741,7 @@ "source_location": "L680", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_warnifstringrefcannotbeautoconverted", - "community": 54, + "community": 403, "norm_label": "warnifstringrefcannotbeautoconverted()" }, { @@ -142751,7 +142751,7 @@ "source_location": "L773", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_createelement", - "community": 54, + "community": 403, "norm_label": "createelement()" }, { @@ -142771,7 +142771,7 @@ "source_location": "L867", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_cloneelement", - "community": 54, + "community": 403, "norm_label": "cloneelement()" }, { @@ -142881,7 +142881,7 @@ "source_location": "L1225", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_createcontext", - "community": 54, + "community": 403, "norm_label": "createcontext()" }, { @@ -142891,7 +142891,7 @@ "source_location": "L1344", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_lazyinitializer", - "community": 54, + "community": 403, "norm_label": "lazyinitializer()" }, { @@ -142901,7 +142901,7 @@ "source_location": "L1401", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_lazy", - "community": 54, + "community": 403, "norm_label": "lazy()" }, { @@ -142911,7 +142911,7 @@ "source_location": "L1457", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_forwardref", - "community": 54, + "community": 403, "norm_label": "forwardref()" }, { @@ -142921,7 +142921,7 @@ "source_location": "L1514", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_isvalidelementtype", - "community": 14, + "community": 403, "norm_label": "isvalidelementtype()" }, { @@ -142931,7 +142931,7 @@ "source_location": "L1537", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_memo", - "community": 14, + "community": 403, "norm_label": "memo()" }, { @@ -143101,7 +143101,7 @@ "source_location": "L1682", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_disabledlog", - "community": 403, + "community": 14, "norm_label": "disabledlog()" }, { @@ -143111,7 +143111,7 @@ "source_location": "L1685", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_disablelogs", - "community": 403, + "community": 14, "norm_label": "disablelogs()" }, { @@ -143121,7 +143121,7 @@ "source_location": "L1719", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_reenablelogs", - "community": 403, + "community": 14, "norm_label": "reenablelogs()" }, { @@ -143131,7 +143131,7 @@ "source_location": "L1765", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_describebuiltincomponentframe", - "community": 403, + "community": 14, "norm_label": "describebuiltincomponentframe()" }, { @@ -143141,7 +143141,7 @@ "source_location": "L1789", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_describenativecomponentframe", - "community": 403, + "community": 14, "norm_label": "describenativecomponentframe()" }, { @@ -143151,7 +143151,7 @@ "source_location": "L1948", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_describefunctioncomponentframe", - "community": 403, + "community": 14, "norm_label": "describefunctioncomponentframe()" }, { @@ -143161,7 +143161,7 @@ "source_location": "L1954", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_shouldconstruct", - "community": 403, + "community": 14, "norm_label": "shouldconstruct()" }, { @@ -143171,7 +143171,7 @@ "source_location": "L1959", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_describeunknownelementtypeframeindev", - "community": 403, + "community": 14, "norm_label": "describeunknownelementtypeframeindev()" }, { @@ -143181,7 +143181,7 @@ "source_location": "L2012", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_setcurrentlyvalidatingelement", - "community": 403, + "community": 14, "norm_label": "setcurrentlyvalidatingelement()" }, { @@ -143211,7 +143211,7 @@ "source_location": "L2091", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_getdeclarationerroraddendum", - "community": 92, + "community": 403, "norm_label": "getdeclarationerroraddendum()" }, { @@ -143271,7 +143271,7 @@ "source_location": "L2242", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_validateproptypes", - "community": 92, + "community": 403, "norm_label": "validateproptypes()" }, { @@ -143291,7 +143291,7 @@ "source_location": "L2311", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_createelementwithvalidation", - "community": 92, + "community": 403, "norm_label": "createelementwithvalidation()" }, { @@ -143301,7 +143301,7 @@ "source_location": "L2375", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_createfactorywithvalidation", - "community": 54, + "community": 403, "norm_label": "createfactorywithvalidation()" }, { @@ -143431,7 +143431,7 @@ "source_location": "L2687", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_unstable_runwithpriority", - "community": 431, + "community": 314, "norm_label": "unstable_runwithpriority()" }, { @@ -143441,7 +143441,7 @@ "source_location": "L2710", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_unstable_next", - "community": 431, + "community": 314, "norm_label": "unstable_next()" }, { @@ -143531,7 +143531,7 @@ "source_location": "L2885", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_requestpaint", - "community": 252, + "community": 158, "norm_label": "requestpaint()" }, { @@ -143591,7 +143591,7 @@ "source_location": "L3035", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_starttransition", - "community": 252, + "community": 158, "norm_label": "starttransition()" }, { @@ -143601,7 +143601,7 @@ "source_location": "L3065", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_enqueuetask", - "community": 54, + "community": 403, "norm_label": "enqueuetask()" }, { @@ -143611,7 +143611,7 @@ "source_location": "L3102", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_act", - "community": 54, + "community": 403, "norm_label": "act()" }, { @@ -143621,7 +143621,7 @@ "source_location": "L3229", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_popactscope", - "community": 54, + "community": 403, "norm_label": "popactscope()" }, { @@ -143631,7 +143631,7 @@ "source_location": "L3239", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_recursivelyflushasyncactwork", - "community": 54, + "community": 403, "norm_label": "recursivelyflushasyncactwork()" }, { @@ -143641,7 +143641,7 @@ "source_location": "L3267", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_flushactqueue", - "community": 54, + "community": 403, "norm_label": "flushactqueue()" }, { @@ -143681,7 +143681,7 @@ "source_location": "L3593", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_checkattributestringcoercion", - "community": 54, + "community": 403, "norm_label": "checkattributestringcoercion()" }, { @@ -143691,7 +143691,7 @@ "source_location": "L3611", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_checkpropstringcoercion", - "community": 54, + "community": 403, "norm_label": "checkpropstringcoercion()" }, { @@ -143701,7 +143701,7 @@ "source_location": "L3620", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_checkcsspropertystringcoercion", - "community": 54, + "community": 403, "norm_label": "checkcsspropertystringcoercion()" }, { @@ -143711,7 +143711,7 @@ "source_location": "L3629", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_checkhtmlstringcoercion", - "community": 54, + "community": 403, "norm_label": "checkhtmlstringcoercion()" }, { @@ -143721,7 +143721,7 @@ "source_location": "L3638", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_checkformfieldvaluestringcoercion", - "community": 54, + "community": 403, "norm_label": "checkformfieldvaluestringcoercion()" }, { @@ -143831,7 +143831,7 @@ "source_location": "L4511", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_describeclasscomponentframe", - "community": 403, + "community": 14, "norm_label": "describeclasscomponentframe()" }, { @@ -143841,7 +143841,7 @@ "source_location": "L4577", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_describefiber", - "community": 403, + "community": 14, "norm_label": "describefiber()" }, { @@ -143851,7 +143851,7 @@ "source_location": "L4610", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_getstackbyfiberindevandprod", - "community": 403, + "community": 14, "norm_label": "getstackbyfiberindevandprod()" }, { @@ -143891,7 +143891,7 @@ "source_location": "L4829", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_getcurrentfiberownernameindevornull", - "community": 92, + "community": 403, "norm_label": "getcurrentfiberownernameindevornull()" }, { @@ -143901,7 +143901,7 @@ "source_location": "L4845", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_getcurrentfiberstackindev", - "community": 403, + "community": 14, "norm_label": "getcurrentfiberstackindev()" }, { @@ -143971,7 +143971,7 @@ "source_location": "L4920", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_checkcontrolledvalueprops", - "community": 131, + "community": 403, "norm_label": "checkcontrolledvalueprops()" }, { @@ -144171,7 +144171,7 @@ "source_location": "L5416", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_checkselectproptypes", - "community": 131, + "community": 403, "norm_label": "checkselectproptypes()" }, { @@ -144201,7 +144201,7 @@ "source_location": "L5511", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_initwrapperstate_1", - "community": 131, + "community": 403, "norm_label": "initwrapperstate$1()" }, { @@ -144251,7 +144251,7 @@ "source_location": "L5606", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_initwrapperstate_2", - "community": 131, + "community": 403, "norm_label": "initwrapperstate$2()" }, { @@ -144291,7 +144291,7 @@ "source_location": "L5705", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_getintrinsicnamespace", - "community": 131, + "community": 163, "norm_label": "getintrinsicnamespace()" }, { @@ -144301,7 +144301,7 @@ "source_location": "L5717", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_getchildnamespace", - "community": 131, + "community": 163, "norm_label": "getchildnamespace()" }, { @@ -144411,7 +144411,7 @@ "source_location": "L6880", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_validateproperty", - "community": 131, + "community": 403, "norm_label": "validateproperty()" }, { @@ -144421,7 +144421,7 @@ "source_location": "L6930", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_warninvalidariaprops", - "community": 131, + "community": 403, "norm_label": "warninvalidariaprops()" }, { @@ -144431,7 +144431,7 @@ "source_location": "L6954", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_validateproperties", - "community": 131, + "community": 403, "norm_label": "validateproperties()" }, { @@ -144441,7 +144441,7 @@ "source_location": "L6963", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_validateproperties_1", - "community": 54, + "community": 403, "norm_label": "validateproperties$1()" }, { @@ -144481,7 +144481,7 @@ "source_location": "L7192", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_isreplayingevent", - "community": 14, + "community": 820, "norm_label": "isreplayingevent()" }, { @@ -144611,7 +144611,7 @@ "source_location": "L7410", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_invokeguardedcallbackprod", - "community": 54, + "community": 403, "norm_label": "invokeguardedcallbackprod()" }, { @@ -144701,7 +144701,7 @@ "source_location": "L7692", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_get", - "community": 54, + "community": 14, "norm_label": "get()" }, { @@ -144711,7 +144711,7 @@ "source_location": "L7695", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_has", - "community": 54, + "community": 92, "norm_label": "has()" }, { @@ -144771,7 +144771,7 @@ "source_location": "L7867", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_ismounted", - "community": 54, + "community": 14, "norm_label": "ismounted()" }, { @@ -144861,7 +144861,7 @@ "source_location": "L8200", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_oncommitroot", - "community": 252, + "community": 158, "norm_label": "oncommitroot()" }, { @@ -144871,7 +144871,7 @@ "source_location": "L8245", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_onpostcommitroot", - "community": 252, + "community": 158, "norm_label": "onpostcommitroot()" }, { @@ -144921,7 +144921,7 @@ "source_location": "L8320", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_markcommitstarted", - "community": 252, + "community": 158, "norm_label": "markcommitstarted()" }, { @@ -144931,7 +144931,7 @@ "source_location": "L8327", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_markcommitstopped", - "community": 252, + "community": 158, "norm_label": "markcommitstopped()" }, { @@ -145061,7 +145061,7 @@ "source_location": "L8418", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_marklayouteffectsstarted", - "community": 252, + "community": 158, "norm_label": "marklayouteffectsstarted()" }, { @@ -145071,7 +145071,7 @@ "source_location": "L8425", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_marklayouteffectsstopped", - "community": 252, + "community": 158, "norm_label": "marklayouteffectsstopped()" }, { @@ -145081,7 +145081,7 @@ "source_location": "L8432", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_markpassiveeffectsstarted", - "community": 252, + "community": 158, "norm_label": "markpassiveeffectsstarted()" }, { @@ -145091,7 +145091,7 @@ "source_location": "L8439", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_markpassiveeffectsstopped", - "community": 252, + "community": 158, "norm_label": "markpassiveeffectsstopped()" }, { @@ -145341,7 +145341,7 @@ "source_location": "L9050", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_claimnextretrylane", - "community": 14, + "community": 215, "norm_label": "claimnextretrylane()" }, { @@ -145401,7 +145401,7 @@ "source_location": "L9082", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_issubsetoflanes", - "community": 235, + "community": 158, "norm_label": "issubsetoflanes()" }, { @@ -145411,7 +145411,7 @@ "source_location": "L9085", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_mergelanes", - "community": 235, + "community": 215, "norm_label": "mergelanes()" }, { @@ -145421,7 +145421,7 @@ "source_location": "L9088", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_removelanes", - "community": 445, + "community": 163, "norm_label": "removelanes()" }, { @@ -145441,7 +145441,7 @@ "source_location": "L9096", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_lanetolanes", - "community": 445, + "community": 163, "norm_label": "lanetolanes()" }, { @@ -145451,7 +145451,7 @@ "source_location": "L9099", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_higherprioritylane", - "community": 14, + "community": 215, "norm_label": "higherprioritylane()" }, { @@ -145561,7 +145561,7 @@ "source_location": "L9322", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_getcurrentupdatepriority", - "community": 252, + "community": 158, "norm_label": "getcurrentupdatepriority()" }, { @@ -145571,7 +145571,7 @@ "source_location": "L9325", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_setcurrentupdatepriority", - "community": 252, + "community": 158, "norm_label": "setcurrentupdatepriority()" }, { @@ -145591,7 +145591,7 @@ "source_location": "L9338", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_highereventpriority", - "community": 252, + "community": 158, "norm_label": "highereventpriority()" }, { @@ -145601,7 +145601,7 @@ "source_location": "L9341", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_lowereventpriority", - "community": 252, + "community": 158, "norm_label": "lowereventpriority()" }, { @@ -145831,7 +145831,7 @@ "source_location": "L9752", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_isenabled", - "community": 430, + "community": 14, "norm_label": "isenabled()" }, { @@ -145851,7 +145851,7 @@ "source_location": "L9777", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_dispatchdiscreteevent", - "community": 252, + "community": 158, "norm_label": "dispatchdiscreteevent()" }, { @@ -145861,7 +145861,7 @@ "source_location": "L9791", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_dispatchcontinuousevent", - "community": 252, + "community": 158, "norm_label": "dispatchcontinuousevent()" }, { @@ -145871,7 +145871,7 @@ "source_location": "L9805", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_dispatchevent", - "community": 252, + "community": 158, "norm_label": "dispatchevent()" }, { @@ -146191,7 +146191,7 @@ "source_location": "L11066", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_istextinputelement", - "community": 14, + "community": 820, "norm_label": "istextinputelement()" }, { @@ -146201,7 +146201,7 @@ "source_location": "L11094", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_iseventsupported", - "community": 54, + "community": 403, "norm_label": "iseventsupported()" }, { @@ -146231,7 +146231,7 @@ "source_location": "L11139", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_shouldusechangeevent", - "community": 14, + "community": 820, "norm_label": "shouldusechangeevent()" }, { @@ -146331,7 +146331,7 @@ "source_location": "L11273", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_shoulduseclickevent", - "community": 14, + "community": 820, "norm_label": "shoulduseclickevent()" }, { @@ -146371,7 +146371,7 @@ "source_location": "L11317", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_extractevents_1", - "community": 14, + "community": 820, "norm_label": "extractevents$1()" }, { @@ -146391,7 +146391,7 @@ "source_location": "L11368", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_extractevents_2", - "community": 14, + "community": 820, "norm_label": "extractevents$2()" }, { @@ -146411,7 +146411,7 @@ "source_location": "L11485", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_shallowequal", - "community": 14, + "community": 820, "norm_label": "shallowequal()" }, { @@ -146601,7 +146601,7 @@ "source_location": "L11965", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_geteventtargetdocument", - "community": 14, + "community": 820, "norm_label": "geteventtargetdocument()" }, { @@ -146611,7 +146611,7 @@ "source_location": "L11977", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_constructselectevent", - "community": 14, + "community": 820, "norm_label": "constructselectevent()" }, { @@ -146621,7 +146621,7 @@ "source_location": "L12021", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_extractevents_3", - "community": 14, + "community": 820, "norm_label": "extractevents$3()" }, { @@ -146681,7 +146681,7 @@ "source_location": "L12351", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_extractevents_5", - "community": 14, + "community": 820, "norm_label": "extractevents$5()" }, { @@ -146741,7 +146741,7 @@ "source_location": "L12470", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_listentonativeevent", - "community": 54, + "community": 403, "norm_label": "listentonativeevent()" }, { @@ -146751,7 +146751,7 @@ "source_location": "L12486", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_listentoallsupportedevents", - "community": 54, + "community": 403, "norm_label": "listentoallsupportedevents()" }, { @@ -146821,7 +146821,7 @@ "source_location": "L12729", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_getparent", - "community": 14, + "community": 820, "norm_label": "getparent()" }, { @@ -146831,7 +146831,7 @@ "source_location": "L12754", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_getlowestcommonancestor", - "community": 14, + "community": 820, "norm_label": "getlowestcommonancestor()" }, { @@ -146851,7 +146851,7 @@ "source_location": "L12849", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_accumulateenterleavetwophaselisteners", - "community": 14, + "community": 820, "norm_label": "accumulateenterleavetwophaselisteners()" }, { @@ -147061,7 +147061,7 @@ "source_location": "L14216", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_getroothostcontext", - "community": 92, + "community": 163, "norm_label": "getroothostcontext()" }, { @@ -147071,7 +147071,7 @@ "source_location": "L14250", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_getchildhostcontext", - "community": 131, + "community": 163, "norm_label": "getchildhostcontext()" }, { @@ -147391,7 +147391,7 @@ "source_location": "L14566", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_issuspenseinstancepending", - "community": 445, + "community": 163, "norm_label": "issuspenseinstancepending()" }, { @@ -147401,7 +147401,7 @@ "source_location": "L14569", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_issuspenseinstancefallback", - "community": 445, + "community": 163, "norm_label": "issuspenseinstancefallback()" }, { @@ -147411,7 +147411,7 @@ "source_location": "L14572", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_getsuspenseinstancefallbackerrordetails", - "community": 445, + "community": 163, "norm_label": "getsuspenseinstancefallbackerrordetails()" }, { @@ -147421,7 +147421,7 @@ "source_location": "L14604", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_registersuspenseinstanceretry", - "community": 445, + "community": 163, "norm_label": "registersuspenseinstanceretry()" }, { @@ -147681,7 +147681,7 @@ "source_location": "L14830", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_prepareportalmount", - "community": 54, + "community": 403, "norm_label": "prepareportalmount()" }, { @@ -147711,7 +147711,7 @@ "source_location": "L14853", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_markcontainerasroot", - "community": 54, + "community": 403, "norm_label": "markcontainerasroot()" }, { @@ -147721,7 +147721,7 @@ "source_location": "L14856", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_unmarkcontainerasroot", - "community": 54, + "community": 403, "norm_label": "unmarkcontainerasroot()" }, { @@ -147731,7 +147731,7 @@ "source_location": "L14859", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_iscontainermarkedasroot", - "community": 54, + "community": 403, "norm_label": "iscontainermarkedasroot()" }, { @@ -147761,7 +147761,7 @@ "source_location": "L14970", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_getnodefrominstance", - "community": 14, + "community": 820, "norm_label": "getnodefrominstance()" }, { @@ -147771,7 +147771,7 @@ "source_location": "L14981", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_getfibercurrentpropsfromnode", - "community": 14, + "community": 820, "norm_label": "getfibercurrentpropsfromnode()" }, { @@ -147851,7 +147851,7 @@ "source_location": "L15200", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_iscontextprovider", - "community": 163, + "community": 92, "norm_label": "iscontextprovider()" }, { @@ -147891,7 +147891,7 @@ "source_location": "L15232", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_processchildcontext", - "community": 163, + "community": 820, "norm_label": "processchildcontext()" }, { @@ -147911,7 +147911,7 @@ "source_location": "L15285", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_invalidatecontextprovider", - "community": 163, + "community": 820, "norm_label": "invalidatecontextprovider()" }, { @@ -147921,7 +147921,7 @@ "source_location": "L15313", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_findcurrentunmaskedcontext", - "community": 163, + "community": 14, "norm_label": "findcurrentunmaskedcontext()" }, { @@ -147961,7 +147961,7 @@ "source_location": "L15378", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_flushsynccallbacks", - "community": 252, + "community": 158, "norm_label": "flushsynccallbacks()" }, { @@ -148031,7 +148031,7 @@ "source_location": "L15539", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_getbitlength", - "community": 131, + "community": 92, "norm_label": "getbitlength()" }, { @@ -148041,7 +148041,7 @@ "source_location": "L15543", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_getleadingbit", - "community": 131, + "community": 92, "norm_label": "getleadingbit()" }, { @@ -148091,7 +148091,7 @@ "source_location": "L15610", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_warnifhydrating", - "community": 445, + "community": 163, "norm_label": "warnifhydrating()" }, { @@ -148331,7 +148331,7 @@ "source_location": "L16088", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_queuehydrationerror", - "community": 445, + "community": 163, "norm_label": "queuehydrationerror()" }, { @@ -148351,7 +148351,7 @@ "source_location": "L16388", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_isreactclass", - "community": 54, + "community": 403, "norm_label": "isreactclass()" }, { @@ -148361,7 +148361,7 @@ "source_location": "L16392", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_coerceref", - "community": 54, + "community": 403, "norm_label": "coerceref()" }, { @@ -148441,7 +148441,7 @@ "source_location": "L17495", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_enterdisallowedcontextreadindev", - "community": 235, + "community": 92, "norm_label": "enterdisallowedcontextreadindev()" }, { @@ -148451,7 +148451,7 @@ "source_location": "L17500", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_exitdisallowedcontextreadindev", - "community": 235, + "community": 92, "norm_label": "exitdisallowedcontextreadindev()" }, { @@ -148481,7 +148481,7 @@ "source_location": "L17529", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_schedulecontextworkonparentpath", - "community": 235, + "community": 215, "norm_label": "schedulecontextworkonparentpath()" }, { @@ -148661,7 +148661,7 @@ "source_location": "L18104", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_getstatefromupdate", - "community": 235, + "community": 92, "norm_label": "getstatefromupdate()" }, { @@ -148671,7 +148671,7 @@ "source_location": "L18195", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_processupdatequeue", - "community": 235, + "community": 92, "norm_label": "processupdatequeue()" }, { @@ -148781,7 +148781,7 @@ "source_location": "L18510", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_hassuspensecontext", - "community": 445, + "community": 163, "norm_label": "hassuspensecontext()" }, { @@ -148791,7 +148791,7 @@ "source_location": "L18513", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_setdefaultshallowsuspensecontext", - "community": 92, + "community": 163, "norm_label": "setdefaultshallowsuspensecontext()" }, { @@ -148801,7 +148801,7 @@ "source_location": "L18516", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_setshallowsuspensecontext", - "community": 92, + "community": 163, "norm_label": "setshallowsuspensecontext()" }, { @@ -148811,7 +148811,7 @@ "source_location": "L18519", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_addsubtreesuspensecontext", - "community": 445, + "community": 163, "norm_label": "addsubtreesuspensecontext()" }, { @@ -148821,7 +148821,7 @@ "source_location": "L18522", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_pushsuspensecontext", - "community": 92, + "community": 163, "norm_label": "pushsuspensecontext()" }, { @@ -148851,7 +148851,7 @@ "source_location": "L18549", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_findfirstsuspended", - "community": 445, + "community": 163, "norm_label": "findfirstsuspended()" }, { @@ -148871,7 +148871,7 @@ "source_location": "L18633", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_registermutablesourceforhydration", - "community": 54, + "community": 403, "norm_label": "registermutablesourceforhydration()" }, { @@ -149021,7 +149021,7 @@ "source_location": "L19078", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_mountreducer", - "community": 92, + "community": 235, "norm_label": "mountreducer()" }, { @@ -149281,7 +149281,7 @@ "source_location": "L19662", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_imperativehandleeffect", - "community": 103, + "community": 403, "norm_label": "imperativehandleeffect()" }, { @@ -149431,7 +149431,7 @@ "source_location": "L19917", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_getisupdatingopaquevalueinrenderphaseindev", - "community": 54, + "community": 215, "norm_label": "getisupdatingopaquevalueinrenderphaseindev()" }, { @@ -149531,7 +149531,7 @@ "source_location": "L21001", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_marknestedupdatescheduled", - "community": 252, + "community": 158, "norm_label": "marknestedupdatescheduled()" }, { @@ -149571,7 +149571,7 @@ "source_location": "L21025", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_recordcommittime", - "community": 252, + "community": 158, "norm_label": "recordcommittime()" }, { @@ -149661,7 +149661,7 @@ "source_location": "L21145", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_resolvedefaultprops", - "community": 54, + "community": 92, "norm_label": "resolvedefaultprops()" }, { @@ -149721,7 +149721,7 @@ "source_location": "L21628", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_callcomponentwillmount", - "community": 54, + "community": 92, "norm_label": "callcomponentwillmount()" }, { @@ -149771,7 +149771,7 @@ "source_location": "L21981", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_createcapturedvalueatfiber", - "community": 403, + "community": 92, "norm_label": "createcapturedvalueatfiber()" }, { @@ -149781,7 +149781,7 @@ "source_location": "L21991", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_createcapturedvalue", - "community": 445, + "community": 163, "norm_label": "createcapturedvalue()" }, { @@ -149891,7 +149891,7 @@ "source_location": "L22504", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_getsuspendedcache", - "community": 445, + "community": 163, "norm_label": "getsuspendedcache()" }, { @@ -150121,7 +150121,7 @@ "source_location": "L23618", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_mountsuspenseoffscreenstate", - "community": 445, + "community": 163, "norm_label": "mountsuspenseoffscreenstate()" }, { @@ -150131,7 +150131,7 @@ "source_location": "L23626", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_updatesuspenseoffscreenstate", - "community": 445, + "community": 215, "norm_label": "updatesuspenseoffscreenstate()" }, { @@ -150141,7 +150141,7 @@ "source_location": "L23637", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_shouldremainonfallback", - "community": 445, + "community": 163, "norm_label": "shouldremainonfallback()" }, { @@ -150151,7 +150151,7 @@ "source_location": "L23657", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_getremainingworkinprimarytree", - "community": 445, + "community": 163, "norm_label": "getremainingworkinprimarytree()" }, { @@ -150161,7 +150161,7 @@ "source_location": "L23662", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_updatesuspensecomponent", - "community": 445, + "community": 163, "norm_label": "updatesuspensecomponent()" }, { @@ -150171,7 +150171,7 @@ "source_location": "L23781", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_mountsuspenseprimarychildren", - "community": 445, + "community": 163, "norm_label": "mountsuspenseprimarychildren()" }, { @@ -150181,7 +150181,7 @@ "source_location": "L23793", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_mountsuspensefallbackchildren", - "community": 445, + "community": 163, "norm_label": "mountsuspensefallbackchildren()" }, { @@ -150191,7 +150191,7 @@ "source_location": "L23834", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_mountworkinprogressoffscreenfiber", - "community": 445, + "community": 163, "norm_label": "mountworkinprogressoffscreenfiber()" }, { @@ -150201,7 +150201,7 @@ "source_location": "L23840", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_updateworkinprogressoffscreenfiber", - "community": 445, + "community": 92, "norm_label": "updateworkinprogressoffscreenfiber()" }, { @@ -150211,7 +150211,7 @@ "source_location": "L23846", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_updatesuspenseprimarychildren", - "community": 445, + "community": 92, "norm_label": "updatesuspenseprimarychildren()" }, { @@ -150221,7 +150221,7 @@ "source_location": "L23877", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_updatesuspensefallbackchildren", - "community": 445, + "community": 92, "norm_label": "updatesuspensefallbackchildren()" }, { @@ -150231,7 +150231,7 @@ "source_location": "L23942", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_retrysuspensecomponentwithouthydrating", - "community": 445, + "community": 163, "norm_label": "retrysuspensecomponentwithouthydrating()" }, { @@ -150241,7 +150241,7 @@ "source_location": "L23967", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_mountsuspensefallbackafterretrywithouthydrating", - "community": 445, + "community": 163, "norm_label": "mountsuspensefallbackafterretrywithouthydrating()" }, { @@ -150251,7 +150251,7 @@ "source_location": "L23992", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_mountdehydratedsuspensecomponent", - "community": 445, + "community": 163, "norm_label": "mountdehydratedsuspensecomponent()" }, { @@ -150261,7 +150261,7 @@ "source_location": "L24023", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_updatedehydratedsuspensecomponent", - "community": 445, + "community": 163, "norm_label": "updatedehydratedsuspensecomponent()" }, { @@ -150271,7 +150271,7 @@ "source_location": "L24161", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_schedulesuspenseworkonfiber", - "community": 235, + "community": 215, "norm_label": "schedulesuspenseworkonfiber()" }, { @@ -150281,7 +150281,7 @@ "source_location": "L24172", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_propagatesuspensecontextchange", - "community": 92, + "community": 215, "norm_label": "propagatesuspensecontextchange()" }, { @@ -150291,7 +150291,7 @@ "source_location": "L24215", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_findlastcontentrow", - "community": 445, + "community": 163, "norm_label": "findlastcontentrow()" }, { @@ -150301,7 +150301,7 @@ "source_location": "L24239", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_validaterevealorder", - "community": 92, + "community": 163, "norm_label": "validaterevealorder()" }, { @@ -150311,7 +150311,7 @@ "source_location": "L24275", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_validatetailoptions", - "community": 92, + "community": 163, "norm_label": "validatetailoptions()" }, { @@ -150341,7 +150341,7 @@ "source_location": "L24343", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_initsuspenselistrenderstate", - "community": 92, + "community": 163, "norm_label": "initsuspenselistrenderstate()" }, { @@ -150351,7 +150351,7 @@ "source_location": "L24373", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_updatesuspenselistcomponent", - "community": 92, + "community": 163, "norm_label": "updatesuspenselistcomponent()" }, { @@ -150901,7 +150901,7 @@ "source_location": "L28001", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_commitlayouteffects", - "community": 252, + "community": 54, "norm_label": "commitlayouteffects()" }, { @@ -150911,7 +150911,7 @@ "source_location": "L28010", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_commitlayouteffects_begin", - "community": 252, + "community": 54, "norm_label": "commitlayouteffects_begin()" }, { @@ -150951,7 +150951,7 @@ "source_location": "L28197", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_reappearlayouteffects_begin", - "community": 252, + "community": 54, "norm_label": "reappearlayouteffects_begin()" }, { @@ -150971,7 +150971,7 @@ "source_location": "L28257", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_commitpassivemounteffects", - "community": 252, + "community": 158, "norm_label": "commitpassivemounteffects()" }, { @@ -150981,7 +150981,7 @@ "source_location": "L28262", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_commitpassivemounteffects_begin", - "community": 252, + "community": 158, "norm_label": "commitpassivemounteffects_begin()" }, { @@ -151011,7 +151011,7 @@ "source_location": "L28332", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_commitpassiveunmounteffects", - "community": 252, + "community": 158, "norm_label": "commitpassiveunmounteffects()" }, { @@ -151121,7 +151121,7 @@ "source_location": "L28624", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_oncommitroot_1", - "community": 252, + "community": 158, "norm_label": "oncommitroot$1()" }, { @@ -151141,7 +151141,7 @@ "source_location": "L28646", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_isconcurrentactenvironment", - "community": 54, + "community": 403, "norm_label": "isconcurrentactenvironment()" }, { @@ -151201,7 +151201,7 @@ "source_location": "L28853", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_requestretrylane", - "community": 14, + "community": 215, "norm_label": "requestretrylane()" }, { @@ -151341,7 +151341,7 @@ "source_location": "L29545", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_discreteupdates", - "community": 252, + "community": 158, "norm_label": "discreteupdates()" }, { @@ -151351,7 +151351,7 @@ "source_location": "L29565", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_flushsync", - "community": 252, + "community": 158, "norm_label": "flushsync()" }, { @@ -151361,7 +151361,7 @@ "source_location": "L29598", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_isalreadyrendering", - "community": 252, + "community": 158, "norm_label": "isalreadyrendering()" }, { @@ -151371,7 +151371,7 @@ "source_location": "L29603", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_pushrenderlanes", - "community": 820, + "community": 215, "norm_label": "pushrenderlanes()" }, { @@ -151551,7 +151551,7 @@ "source_location": "L30066", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_commitroot", - "community": 252, + "community": 158, "norm_label": "commitroot()" }, { @@ -151561,7 +151561,7 @@ "source_location": "L30084", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_commitrootimpl", - "community": 252, + "community": 158, "norm_label": "commitrootimpl()" }, { @@ -151571,7 +151571,7 @@ "source_location": "L30361", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_flushpassiveeffects", - "community": 252, + "community": 158, "norm_label": "flushpassiveeffects()" }, { @@ -151581,7 +151581,7 @@ "source_location": "L30386", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_enqueuependingpassiveprofilereffect", - "community": 252, + "community": 158, "norm_label": "enqueuependingpassiveprofilereffect()" }, { @@ -151591,7 +151591,7 @@ "source_location": "L30400", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_flushpassiveeffectsimpl", - "community": 252, + "community": 158, "norm_label": "flushpassiveeffectsimpl()" }, { @@ -151601,7 +151601,7 @@ "source_location": "L30485", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_isalreadyfailedlegacyerrorboundary", - "community": 54, + "community": 215, "norm_label": "isalreadyfailedlegacyerrorboundary()" }, { @@ -151711,7 +151711,7 @@ "source_location": "L30698", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_flushrenderphasestrictmodewarningsindev", - "community": 252, + "community": 158, "norm_label": "flushrenderphasestrictmodewarningsindev()" }, { @@ -151751,7 +151751,7 @@ "source_location": "L30869", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_warnaboutrenderphaseupdatesindev", - "community": 54, + "community": 215, "norm_label": "warnaboutrenderphaseupdatesindev()" }, { @@ -151771,7 +151771,7 @@ "source_location": "L30920", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_schedulecallback_1", - "community": 252, + "community": 158, "norm_label": "schedulecallback$1()" }, { @@ -151811,7 +151811,7 @@ "source_location": "L30994", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_warnifsuspenseresolutionnotwrappedwithactdev", - "community": 54, + "community": 403, "norm_label": "warnifsuspenseresolutionnotwrappedwithactdev()" }, { @@ -152011,7 +152011,7 @@ "source_location": "L31867", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_createfiberfromfragment", - "community": 445, + "community": 163, "norm_label": "createfiberfromfragment()" }, { @@ -152021,7 +152021,7 @@ "source_location": "L31873", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_createfiberfromprofiler", - "community": 54, + "community": 92, "norm_label": "createfiberfromprofiler()" }, { @@ -152051,7 +152051,7 @@ "source_location": "L31906", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_createfiberfromoffscreen", - "community": 445, + "community": 163, "norm_label": "createfiberfromoffscreen()" }, { @@ -152131,7 +152131,7 @@ "source_location": "L32080", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_createportal", - "community": 54, + "community": 403, "norm_label": "createportal()" }, { @@ -152141,7 +152141,7 @@ "source_location": "L32106", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_getcontextforsubtree", - "community": 163, + "community": 14, "norm_label": "getcontextforsubtree()" }, { @@ -152191,7 +152191,7 @@ "source_location": "L32257", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_getpublicrootinstance", - "community": 54, + "community": 403, "norm_label": "getpublicrootinstance()" }, { @@ -152211,7 +152211,7 @@ "source_location": "L32307", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_markretrylaneimpl", - "community": 14, + "community": 215, "norm_label": "markretrylaneimpl()" }, { @@ -152271,7 +152271,7 @@ "source_location": "L32382", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_shouldsuspend", - "community": 445, + "community": 163, "norm_label": "shouldsuspend()" }, { @@ -152331,7 +152331,7 @@ "source_location": "L32736", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_createroot", - "community": 54, + "community": 403, "norm_label": "createroot()" }, { @@ -152361,7 +152361,7 @@ "source_location": "L32794", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_hydrateroot", - "community": 54, + "community": 403, "norm_label": "hydrateroot()" }, { @@ -152371,7 +152371,7 @@ "source_location": "L32845", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_isvalidcontainer", - "community": 54, + "community": 403, "norm_label": "isvalidcontainer()" }, { @@ -152381,7 +152381,7 @@ "source_location": "L32850", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_isvalidcontainerlegacy", - "community": 54, + "community": 403, "norm_label": "isvalidcontainerlegacy()" }, { @@ -152391,7 +152391,7 @@ "source_location": "L32854", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_warnifreactdomcontainerindev", - "community": 54, + "community": 403, "norm_label": "warnifreactdomcontainerindev()" }, { @@ -152401,7 +152401,7 @@ "source_location": "L32899", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_getreactrootelementincontainer", - "community": 54, + "community": 403, "norm_label": "getreactrootelementincontainer()" }, { @@ -152411,7 +152411,7 @@ "source_location": "L32911", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_nooponrecoverableerror", - "community": 215, + "community": 403, "norm_label": "nooponrecoverableerror()" }, { @@ -152421,7 +152421,7 @@ "source_location": "L32915", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_legacycreaterootfromdomcontainer", - "community": 215, + "community": 403, "norm_label": "legacycreaterootfromdomcontainer()" }, { @@ -152431,7 +152431,7 @@ "source_location": "L32975", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_warnoninvalidcallback_1", - "community": 54, + "community": 403, "norm_label": "warnoninvalidcallback$1()" }, { @@ -152441,7 +152441,7 @@ "source_location": "L32983", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_legacyrendersubtreeintocontainer", - "community": 54, + "community": 403, "norm_label": "legacyrendersubtreeintocontainer()" }, { @@ -152461,7 +152461,7 @@ "source_location": "L33048", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_hydrate", - "community": 54, + "community": 403, "norm_label": "hydrate()" }, { @@ -152481,7 +152481,7 @@ "source_location": "L33087", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_unstable_rendersubtreeintocontainer", - "community": 54, + "community": 403, "norm_label": "unstable_rendersubtreeintocontainer()" }, { @@ -152491,7 +152491,7 @@ "source_location": "L33103", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_unmountcomponentatnode", - "community": 54, + "community": 403, "norm_label": "unmountcomponentatnode()" }, { @@ -152501,7 +152501,7 @@ "source_location": "L33179", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_createportal_1", - "community": 54, + "community": 403, "norm_label": "createportal$1()" }, { @@ -152511,7 +152511,7 @@ "source_location": "L33191", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_rendersubtreeintocontainer", - "community": 54, + "community": 403, "norm_label": "rendersubtreeintocontainer()" }, { @@ -152521,7 +152521,7 @@ "source_location": "L33202", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_createroot_1", - "community": 54, + "community": 403, "norm_label": "createroot$1()" }, { @@ -152531,7 +152531,7 @@ "source_location": "L33212", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_hydrateroot_1", - "community": 54, + "community": 403, "norm_label": "hydrateroot$1()" }, { @@ -152541,7 +152541,7 @@ "source_location": "L33225", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_react_flushsync_1", - "community": 252, + "community": 158, "norm_label": "flushsync$1()" }, { @@ -153231,7 +153231,7 @@ "source_location": "L6103", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_resolvestyleconfig", - "community": 35, + "community": 622, "norm_label": "resolvestyleconfig()" }, { @@ -153771,7 +153771,7 @@ "source_location": "L10516", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_stylesheet2", - "community": 818, + "community": 35, "norm_label": "stylesheet2()" }, { @@ -153781,7 +153781,7 @@ "source_location": "L10518", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_stylesheet2_inserttag", - "community": 818, + "community": 35, "norm_label": "._inserttag()" }, { @@ -154251,7 +154251,7 @@ "source_location": "L11833", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_usecolormode", - "community": 35, + "community": 622, "norm_label": "usecolormode()" }, { @@ -154351,7 +154351,7 @@ "source_location": "L12375", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_globalstyle", - "community": 35, + "community": 622, "norm_label": "globalstyle()" }, { @@ -154401,7 +154401,7 @@ "source_location": "L12493", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_useconstant", - "community": 92, + "community": 35, "norm_label": "useconstant()" }, { @@ -155591,7 +155591,7 @@ "source_location": "L15032", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_destroy", - "community": 54, + "community": 417, "norm_label": "destroy()" }, { @@ -155601,7 +155601,7 @@ "source_location": "L15040", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_motionvalue", - "community": 320, + "community": 439, "norm_label": "motionvalue()" }, { @@ -155611,7 +155611,7 @@ "source_location": "L15045", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_setmotionvalue", - "community": 320, + "community": 439, "norm_label": "setmotionvalue()" }, { @@ -156551,7 +156551,7 @@ "source_location": "L17559", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_unmount", - "community": 430, + "community": 417, "norm_label": "unmount()" }, { @@ -156781,7 +156781,7 @@ "source_location": "L17829", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_applyconstraints", - "community": 439, + "community": 271, "norm_label": "applyconstraints()" }, { @@ -156911,7 +156911,7 @@ "source_location": "L17944", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_transformboxpoints", - "community": 271, + "community": 320, "norm_label": "transformboxpoints()" }, { @@ -157021,7 +157021,7 @@ "source_location": "L18036", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_translateaxis", - "community": 271, + "community": 320, "norm_label": "translateaxis()" }, { @@ -157051,7 +157051,7 @@ "source_location": "L18050", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_measureviewportbox", - "community": 271, + "community": 320, "norm_label": "measureviewportbox()" }, { @@ -157061,7 +157061,7 @@ "source_location": "L18053", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_measurepagebox", - "community": 271, + "community": 320, "norm_label": "measurepagebox()" }, { @@ -157071,7 +157071,7 @@ "source_location": "L18192", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_updateaxis", - "community": 439, + "community": 271, "norm_label": "updateaxis()" }, { @@ -157201,7 +157201,7 @@ "source_location": "L18408", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_shoulddrag", - "community": 439, + "community": 271, "norm_label": "shoulddrag()" }, { @@ -157611,7 +157611,7 @@ "source_location": "L19877", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_updatelayout", - "community": 271, + "community": 430, "norm_label": "updatelayout()" }, { @@ -157861,7 +157861,7 @@ "source_location": "L20186", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_initintersectionobserver", - "community": 320, + "community": 430, "norm_label": "initintersectionobserver()" }, { @@ -157871,7 +157871,7 @@ "source_location": "L20198", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_observeintersection", - "community": 320, + "community": 430, "norm_label": "observeintersection()" }, { @@ -157911,7 +157911,7 @@ "source_location": "L20338", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_updatemotionvaluesfromprops", - "community": 320, + "community": 439, "norm_label": "updatemotionvaluesfromprops()" }, { @@ -157991,7 +157991,7 @@ "source_location": "L20552", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_getstaticvalue", - "community": 320, + "community": 439, "norm_label": "getstaticvalue()" }, { @@ -158061,7 +158061,7 @@ "source_location": "L20622", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_addvalue", - "community": 320, + "community": 439, "norm_label": "addvalue()" }, { @@ -158071,7 +158071,7 @@ "source_location": "L20635", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_removevalue", - "community": 320, + "community": 439, "norm_label": "removevalue()" }, { @@ -158081,7 +158081,7 @@ "source_location": "L20648", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_hasvalue", - "community": 320, + "community": 439, "norm_label": "hasvalue()" }, { @@ -158091,7 +158091,7 @@ "source_location": "L20651", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_getvalue", - "community": 320, + "community": 439, "norm_label": "getvalue()" }, { @@ -158151,7 +158151,7 @@ "source_location": "L20734", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_removevaluefromrenderstate", - "community": 320, + "community": 439, "norm_label": "removevaluefromrenderstate()" }, { @@ -158191,7 +158191,7 @@ "source_location": "L20774", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_measureinstanceviewportbox", - "community": 271, + "community": 320, "norm_label": "measureinstanceviewportbox()" }, { @@ -158271,7 +158271,7 @@ "source_location": "L21226", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_styled2", - "community": 35, + "community": 622, "norm_label": "styled2()" }, { @@ -158281,7 +158281,7 @@ "source_location": "L21252", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_factory", - "community": 35, + "community": 622, "norm_label": "factory()" }, { @@ -158301,7 +158301,7 @@ "source_location": "L21423", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_usetheme2", - "community": 35, + "community": 622, "norm_label": "usetheme2()" }, { @@ -158311,7 +158311,7 @@ "source_location": "L21436", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_usechakra", - "community": 35, + "community": 622, "norm_label": "usechakra()" }, { @@ -158321,7 +158321,7 @@ "source_location": "L21443", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_omitreactelements", - "community": 35, + "community": 622, "norm_label": "omitreactelements()" }, { @@ -158331,7 +158331,7 @@ "source_location": "L21450", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_usestyleconfigimpl", - "community": 35, + "community": 622, "norm_label": "usestyleconfigimpl()" }, { @@ -158341,7 +158341,7 @@ "source_location": "L21472", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_usestyleconfig", - "community": 35, + "community": 622, "norm_label": "usestyleconfig()" }, { @@ -158351,7 +158351,7 @@ "source_location": "L21475", "_origin": "ast", "id": "docs_design_thingtime_landing_1e_typographic_story_ds_thingtime_bundle_usemultistyleconfig", - "community": 35, + "community": 622, "norm_label": "usemultistyleconfig()" }, { @@ -159061,7 +159061,7 @@ "source_location": "L1", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_dom", - "community": 1243, + "community": 667, "norm_label": "react-dom.js" }, { @@ -159081,7 +159081,7 @@ "source_location": "L37", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_getiteratorfn", - "community": 478, + "community": 395, "norm_label": "getiteratorfn()" }, { @@ -159091,7 +159091,7 @@ "source_location": "L93", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_setextrastackframe", - "community": 478, + "community": 395, "norm_label": "setextrastackframe()" }, { @@ -159101,7 +159101,7 @@ "source_location": "L155", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_warn", - "community": 478, + "community": 0, "norm_label": "warn()" }, { @@ -159111,7 +159111,7 @@ "source_location": "L166", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_error", - "community": 478, + "community": 395, "norm_label": "error()" }, { @@ -159121,7 +159121,7 @@ "source_location": "L178", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_printwarning", - "community": 478, + "community": 0, "norm_label": "printwarning()" }, { @@ -159131,7 +159131,7 @@ "source_location": "L205", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_warnnoop", - "community": 478, + "community": 395, "norm_label": "warnnoop()" }, { @@ -159201,7 +159201,7 @@ "source_location": "L431", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_isarray", - "community": 478, + "community": 395, "norm_label": "isarray()" }, { @@ -159211,7 +159211,7 @@ "source_location": "L445", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_typename", - "community": 478, + "community": 395, "norm_label": "typename()" }, { @@ -159221,7 +159221,7 @@ "source_location": "L455", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_willcoercionthrow", - "community": 478, + "community": 395, "norm_label": "willcoercionthrow()" }, { @@ -159231,7 +159231,7 @@ "source_location": "L466", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_teststringcoercion", - "community": 478, + "community": 395, "norm_label": "teststringcoercion()" }, { @@ -159241,7 +159241,7 @@ "source_location": "L492", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_checkkeystringcoercion", - "community": 478, + "community": 395, "norm_label": "checkkeystringcoercion()" }, { @@ -159281,7 +159281,7 @@ "source_location": "L616", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_hasvalidref", - "community": 478, + "community": 395, "norm_label": "hasvalidref()" }, { @@ -159291,7 +159291,7 @@ "source_location": "L630", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_hasvalidkey", - "community": 478, + "community": 395, "norm_label": "hasvalidkey()" }, { @@ -159301,7 +159301,7 @@ "source_location": "L644", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_definekeypropwarninggetter", - "community": 478, + "community": 395, "norm_label": "definekeypropwarninggetter()" }, { @@ -159311,7 +159311,7 @@ "source_location": "L662", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_definerefpropwarninggetter", - "community": 478, + "community": 395, "norm_label": "definerefpropwarninggetter()" }, { @@ -159321,7 +159321,7 @@ "source_location": "L680", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_warnifstringrefcannotbeautoconverted", - "community": 478, + "community": 395, "norm_label": "warnifstringrefcannotbeautoconverted()" }, { @@ -159331,7 +159331,7 @@ "source_location": "L773", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_createelement", - "community": 478, + "community": 395, "norm_label": "createelement()" }, { @@ -159341,7 +159341,7 @@ "source_location": "L858", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_cloneandreplacekey", - "community": 478, + "community": 0, "norm_label": "cloneandreplacekey()" }, { @@ -159351,7 +159351,7 @@ "source_location": "L867", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_cloneelement", - "community": 478, + "community": 395, "norm_label": "cloneelement()" }, { @@ -159361,7 +159361,7 @@ "source_location": "L947", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_isvalidelement", - "community": 478, + "community": 0, "norm_label": "isvalidelement()" }, { @@ -159371,7 +159371,7 @@ "source_location": "L960", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_escape", - "community": 478, + "community": 0, "norm_label": "escape()" }, { @@ -159381,7 +159381,7 @@ "source_location": "L980", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_escapeuserprovidedkey", - "community": 478, + "community": 0, "norm_label": "escapeuserprovidedkey()" }, { @@ -159391,7 +159391,7 @@ "source_location": "L992", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_getelementkey", - "community": 478, + "community": 0, "norm_label": "getelementkey()" }, { @@ -159401,7 +159401,7 @@ "source_location": "L1008", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_mapintoarray", - "community": 478, + "community": 0, "norm_label": "mapintoarray()" }, { @@ -159451,7 +159451,7 @@ "source_location": "L1217", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_onlychild", - "community": 478, + "community": 0, "norm_label": "onlychild()" }, { @@ -159461,7 +159461,7 @@ "source_location": "L1225", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_createcontext", - "community": 478, + "community": 0, "norm_label": "createcontext()" }, { @@ -159471,7 +159471,7 @@ "source_location": "L1344", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_lazyinitializer", - "community": 478, + "community": 395, "norm_label": "lazyinitializer()" }, { @@ -159481,7 +159481,7 @@ "source_location": "L1401", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_lazy", - "community": 478, + "community": 395, "norm_label": "lazy()" }, { @@ -159491,7 +159491,7 @@ "source_location": "L1457", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_forwardref", - "community": 478, + "community": 395, "norm_label": "forwardref()" }, { @@ -159501,7 +159501,7 @@ "source_location": "L1514", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_isvalidelementtype", - "community": 478, + "community": 395, "norm_label": "isvalidelementtype()" }, { @@ -159511,7 +159511,7 @@ "source_location": "L1537", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_memo", - "community": 478, + "community": 395, "norm_label": "memo()" }, { @@ -159781,7 +159781,7 @@ "source_location": "L2073", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_setcurrentlyvalidatingelement_1", - "community": 478, + "community": 395, "norm_label": "setcurrentlyvalidatingelement$1()" }, { @@ -159791,7 +159791,7 @@ "source_location": "L2091", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_getdeclarationerroraddendum", - "community": 231, + "community": 395, "norm_label": "getdeclarationerroraddendum()" }, { @@ -159801,7 +159801,7 @@ "source_location": "L2103", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_getsourceinfoerroraddendum", - "community": 478, + "community": 0, "norm_label": "getsourceinfoerroraddendum()" }, { @@ -159811,7 +159811,7 @@ "source_location": "L2113", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_getsourceinfoerroraddendumforprops", - "community": 478, + "community": 0, "norm_label": "getsourceinfoerroraddendumforprops()" }, { @@ -159821,7 +159821,7 @@ "source_location": "L2129", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_getcurrentcomponenterrorinfo", - "community": 478, + "community": 395, "norm_label": "getcurrentcomponenterrorinfo()" }, { @@ -159831,7 +159831,7 @@ "source_location": "L2155", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_validateexplicitkey", - "community": 478, + "community": 395, "norm_label": "validateexplicitkey()" }, { @@ -159841,7 +159841,7 @@ "source_location": "L2197", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_validatechildkeys", - "community": 478, + "community": 395, "norm_label": "validatechildkeys()" }, { @@ -159851,7 +159851,7 @@ "source_location": "L2242", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_validateproptypes", - "community": 478, + "community": 231, "norm_label": "validateproptypes()" }, { @@ -159861,7 +159861,7 @@ "source_location": "L2285", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_validatefragmentprops", - "community": 478, + "community": 395, "norm_label": "validatefragmentprops()" }, { @@ -159871,7 +159871,7 @@ "source_location": "L2311", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_createelementwithvalidation", - "community": 478, + "community": 395, "norm_label": "createelementwithvalidation()" }, { @@ -159881,7 +159881,7 @@ "source_location": "L2375", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_createfactorywithvalidation", - "community": 478, + "community": 0, "norm_label": "createfactorywithvalidation()" }, { @@ -159891,7 +159891,7 @@ "source_location": "L2402", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_cloneelementwithvalidation", - "community": 478, + "community": 231, "norm_label": "cloneelementwithvalidation()" }, { @@ -160011,7 +160011,7 @@ "source_location": "L2687", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_unstable_runwithpriority", - "community": 431, + "community": 314, "norm_label": "unstable_runwithpriority()" }, { @@ -160021,7 +160021,7 @@ "source_location": "L2710", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_unstable_next", - "community": 431, + "community": 314, "norm_label": "unstable_next()" }, { @@ -160181,7 +160181,7 @@ "source_location": "L3065", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_enqueuetask", - "community": 478, + "community": 395, "norm_label": "enqueuetask()" }, { @@ -160191,7 +160191,7 @@ "source_location": "L3102", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_act", - "community": 478, + "community": 395, "norm_label": "act()" }, { @@ -160201,7 +160201,7 @@ "source_location": "L3229", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_popactscope", - "community": 478, + "community": 395, "norm_label": "popactscope()" }, { @@ -160211,7 +160211,7 @@ "source_location": "L3239", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_recursivelyflushasyncactwork", - "community": 478, + "community": 395, "norm_label": "recursivelyflushasyncactwork()" }, { @@ -160221,7 +160221,7 @@ "source_location": "L3267", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_flushactqueue", - "community": 478, + "community": 395, "norm_label": "flushactqueue()" }, { @@ -160261,7 +160261,7 @@ "source_location": "L3593", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_checkattributestringcoercion", - "community": 478, + "community": 395, "norm_label": "checkattributestringcoercion()" }, { @@ -160271,7 +160271,7 @@ "source_location": "L3611", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_checkpropstringcoercion", - "community": 478, + "community": 395, "norm_label": "checkpropstringcoercion()" }, { @@ -160281,7 +160281,7 @@ "source_location": "L3620", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_checkcsspropertystringcoercion", - "community": 478, + "community": 395, "norm_label": "checkcsspropertystringcoercion()" }, { @@ -160291,7 +160291,7 @@ "source_location": "L3629", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_checkhtmlstringcoercion", - "community": 478, + "community": 395, "norm_label": "checkhtmlstringcoercion()" }, { @@ -160301,7 +160301,7 @@ "source_location": "L3638", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_checkformfieldvaluestringcoercion", - "community": 478, + "community": 395, "norm_label": "checkformfieldvaluestringcoercion()" }, { @@ -160441,7 +160441,7 @@ "source_location": "L4726", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_getwrappedname_1", - "community": 231, + "community": 265, "norm_label": "getwrappedname$1()" }, { @@ -160451,7 +160451,7 @@ "source_location": "L4732", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_getcontextname_1", - "community": 231, + "community": 265, "norm_label": "getcontextname$1()" }, { @@ -160461,7 +160461,7 @@ "source_location": "L4736", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_getcomponentnamefromfiber", - "community": 231, + "community": 265, "norm_label": "getcomponentnamefromfiber()" }, { @@ -160471,7 +160471,7 @@ "source_location": "L4829", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_getcurrentfiberownernameindevornull", - "community": 231, + "community": 395, "norm_label": "getcurrentfiberownernameindevornull()" }, { @@ -160611,7 +160611,7 @@ "source_location": "L5021", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_track", - "community": 0, + "community": 395, "norm_label": "track()" }, { @@ -160631,7 +160631,7 @@ "source_location": "L5052", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_getactiveelement", - "community": 0, + "community": 395, "norm_label": "getactiveelement()" }, { @@ -160871,7 +160871,7 @@ "source_location": "L5705", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_getintrinsicnamespace", - "community": 438, + "community": 329, "norm_label": "getintrinsicnamespace()" }, { @@ -160881,7 +160881,7 @@ "source_location": "L5717", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_getchildnamespace", - "community": 438, + "community": 329, "norm_label": "getchildnamespace()" }, { @@ -160901,7 +160901,7 @@ "source_location": "L5952", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_dangerousstylevalue", - "community": 0, + "community": 395, "norm_label": "dangerousstylevalue()" }, { @@ -160911,7 +160911,7 @@ "source_location": "L5995", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_hyphenatestylename", - "community": 0, + "community": 395, "norm_label": "hyphenatestylename()" }, { @@ -160921,7 +160921,7 @@ "source_location": "L6104", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_createdangerousstringforstyles", - "community": 0, + "community": 395, "norm_label": "createdangerousstringforstyles()" }, { @@ -160941,7 +160941,7 @@ "source_location": "L6165", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_isvalueempty", - "community": 0, + "community": 395, "norm_label": "isvalueempty()" }, { @@ -160951,7 +160951,7 @@ "source_location": "L6178", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_expandshorthandmap", - "community": 0, + "community": 395, "norm_label": "expandshorthandmap()" }, { @@ -160961,7 +160961,7 @@ "source_location": "L6207", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_validateshorthandpropertycollisionindev", - "community": 0, + "community": 395, "norm_label": "validateshorthandpropertycollisionindev()" }, { @@ -160991,7 +160991,7 @@ "source_location": "L6880", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_validateproperty", - "community": 478, + "community": 395, "norm_label": "validateproperty()" }, { @@ -161001,7 +161001,7 @@ "source_location": "L6930", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_warninvalidariaprops", - "community": 478, + "community": 395, "norm_label": "warninvalidariaprops()" }, { @@ -161011,7 +161011,7 @@ "source_location": "L6954", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_validateproperties", - "community": 478, + "community": 395, "norm_label": "validateproperties()" }, { @@ -161021,7 +161021,7 @@ "source_location": "L6963", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_validateproperties_1", - "community": 478, + "community": 395, "norm_label": "validateproperties$1()" }, { @@ -161101,7 +161101,7 @@ "source_location": "L7248", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_enqueuestaterestore", - "community": 368, + "community": 0, "norm_label": "enqueuestaterestore()" }, { @@ -161191,7 +161191,7 @@ "source_location": "L7410", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_invokeguardedcallbackprod", - "community": 478, + "community": 395, "norm_label": "invokeguardedcallbackprod()" }, { @@ -161281,7 +161281,7 @@ "source_location": "L7692", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_get", - "community": 368, + "community": 0, "norm_label": "get()" }, { @@ -161341,7 +161341,7 @@ "source_location": "L7864", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_isfibermounted", - "community": 231, + "community": 0, "norm_label": "isfibermounted()" }, { @@ -161351,7 +161351,7 @@ "source_location": "L7867", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_ismounted", - "community": 368, + "community": 0, "norm_label": "ismounted()" }, { @@ -161761,7 +161761,7 @@ "source_location": "L8693", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_gethighestprioritylanes", - "community": 357, + "community": 326, "norm_label": "gethighestprioritylanes()" }, { @@ -161771,7 +161771,7 @@ "source_location": "L8760", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_getnextlanes", - "community": 357, + "community": 326, "norm_label": "getnextlanes()" }, { @@ -161781,7 +161781,7 @@ "source_location": "L8872", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_getmostrecenteventtime", - "community": 357, + "community": 326, "norm_label": "getmostrecenteventtime()" }, { @@ -161791,7 +161791,7 @@ "source_location": "L8891", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_computeexpirationtime", - "community": 357, + "community": 326, "norm_label": "computeexpirationtime()" }, { @@ -161801,7 +161801,7 @@ "source_location": "L8956", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_markstarvedlanesasexpired", - "community": 357, + "community": 326, "norm_label": "markstarvedlanesasexpired()" }, { @@ -161811,7 +161811,7 @@ "source_location": "L8992", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_gethighestprioritypendinglanes", - "community": 357, + "community": 326, "norm_label": "gethighestprioritypendinglanes()" }, { @@ -161821,7 +161821,7 @@ "source_location": "L8995", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_getlanestoretrysynchronouslyonerror", - "community": 173, + "community": 326, "norm_label": "getlanestoretrysynchronouslyonerror()" }, { @@ -161841,7 +161841,7 @@ "source_location": "L9011", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_includesnonidlework", - "community": 173, + "community": 326, "norm_label": "includesnonidlework()" }, { @@ -161851,7 +161851,7 @@ "source_location": "L9014", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_includesonlyretries", - "community": 357, + "community": 326, "norm_label": "includesonlyretries()" }, { @@ -161871,7 +161871,7 @@ "source_location": "L9021", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_includesonlytransitions", - "community": 357, + "community": 326, "norm_label": "includesonlytransitions()" }, { @@ -161891,7 +161891,7 @@ "source_location": "L9029", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_includesexpiredlane", - "community": 173, + "community": 326, "norm_label": "includesexpiredlane()" }, { @@ -161931,7 +161931,7 @@ "source_location": "L9060", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_gethighestprioritylane", - "community": 357, + "community": 326, "norm_label": "gethighestprioritylane()" }, { @@ -161941,7 +161941,7 @@ "source_location": "L9063", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_pickarbitrarylane", - "community": 357, + "community": 173, "norm_label": "pickarbitrarylane()" }, { @@ -161951,7 +161951,7 @@ "source_location": "L9071", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_pickarbitrarylaneindex", - "community": 357, + "community": 326, "norm_label": "pickarbitrarylaneindex()" }, { @@ -161961,7 +161961,7 @@ "source_location": "L9075", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_lanetoindex", - "community": 357, + "community": 173, "norm_label": "lanetoindex()" }, { @@ -161981,7 +161981,7 @@ "source_location": "L9082", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_issubsetoflanes", - "community": 357, + "community": 488, "norm_label": "issubsetoflanes()" }, { @@ -161991,7 +161991,7 @@ "source_location": "L9085", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_mergelanes", - "community": 357, + "community": 488, "norm_label": "mergelanes()" }, { @@ -162001,7 +162001,7 @@ "source_location": "L9088", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_removelanes", - "community": 173, + "community": 329, "norm_label": "removelanes()" }, { @@ -162061,7 +162061,7 @@ "source_location": "L9139", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_markrootsuspended", - "community": 173, + "community": 326, "norm_label": "markrootsuspended()" }, { @@ -162071,7 +162071,7 @@ "source_location": "L9153", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_markrootpinged", - "community": 357, + "community": 326, "norm_label": "markrootpinged()" }, { @@ -162081,7 +162081,7 @@ "source_location": "L9156", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_markrootfinished", - "community": 357, + "community": 326, "norm_label": "markrootfinished()" }, { @@ -162101,7 +162101,7 @@ "source_location": "L9209", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_getbumpedlaneforhydration", - "community": 357, + "community": 326, "norm_label": "getbumpedlaneforhydration()" }, { @@ -162111,7 +162111,7 @@ "source_location": "L9267", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_addfibertolanesmap", - "community": 357, + "community": 173, "norm_label": "addfibertolanesmap()" }, { @@ -162121,7 +162121,7 @@ "source_location": "L9283", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_movependingfiberstomemoized", - "community": 357, + "community": 173, "norm_label": "movependingfiberstomemoized()" }, { @@ -162191,7 +162191,7 @@ "source_location": "L9344", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_ishighereventpriority", - "community": 357, + "community": 326, "norm_label": "ishighereventpriority()" }, { @@ -162201,7 +162201,7 @@ "source_location": "L9347", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_lanestoeventpriority", - "community": 357, + "community": 326, "norm_label": "lanestoeventpriority()" }, { @@ -162341,7 +162341,7 @@ "source_location": "L9579", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_queueexplicithydrationtarget", - "community": 0, + "community": 326, "norm_label": "queueexplicithydrationtarget()" }, { @@ -162381,7 +162381,7 @@ "source_location": "L9669", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_schedulecallbackifunblocked", - "community": 265, + "community": 0, "norm_label": "schedulecallbackifunblocked()" }, { @@ -162411,7 +162411,7 @@ "source_location": "L9752", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_isenabled", - "community": 285, + "community": 245, "norm_label": "isenabled()" }, { @@ -162781,7 +162781,7 @@ "source_location": "L11094", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_iseventsupported", - "community": 478, + "community": 395, "norm_label": "iseventsupported()" }, { @@ -162801,7 +162801,7 @@ "source_location": "L11115", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_createandaccumulatechangeevent", - "community": 368, + "community": 0, "norm_label": "createandaccumulatechangeevent()" }, { @@ -162991,7 +162991,7 @@ "source_location": "L11485", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_shallowequal", - "community": 231, + "community": 368, "norm_label": "shallowequal()" }, { @@ -163451,7 +163451,7 @@ "source_location": "L12971", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_normalizemarkupfortextorattribute", - "community": 0, + "community": 299, "norm_label": "normalizemarkupfortextorattribute()" }, { @@ -163461,7 +163461,7 @@ "source_location": "L12980", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_checkforunmatchedtext", - "community": 0, + "community": 299, "norm_label": "checkforunmatchedtext()" }, { @@ -163581,7 +163581,7 @@ "source_location": "L13819", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_diffhydratedtext", - "community": 0, + "community": 299, "norm_label": "diffhydratedtext()" }, { @@ -163641,7 +163641,7 @@ "source_location": "L14216", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_getroothostcontext", - "community": 438, + "community": 329, "norm_label": "getroothostcontext()" }, { @@ -163651,7 +163651,7 @@ "source_location": "L14250", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_getchildhostcontext", - "community": 438, + "community": 329, "norm_label": "getchildhostcontext()" }, { @@ -163701,7 +163701,7 @@ "source_location": "L14300", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_appendinitialchild", - "community": 0, + "community": 594, "norm_label": "appendinitialchild()" }, { @@ -163711,7 +163711,7 @@ "source_location": "L14303", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_finalizeinitialchildren", - "community": 395, + "community": 299, "norm_label": "finalizeinitialchildren()" }, { @@ -163791,7 +163791,7 @@ "source_location": "L14406", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_resettextcontent", - "community": 0, + "community": 594, "norm_label": "resettextcontent()" }, { @@ -163811,7 +163811,7 @@ "source_location": "L14412", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_appendchild", - "community": 0, + "community": 594, "norm_label": "appendchild()" }, { @@ -163821,7 +163821,7 @@ "source_location": "L14415", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_appendchildtocontainer", - "community": 0, + "community": 594, "norm_label": "appendchildtocontainer()" }, { @@ -163831,7 +163831,7 @@ "source_location": "L14441", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_insertbefore", - "community": 0, + "community": 594, "norm_label": "insertbefore()" }, { @@ -163841,7 +163841,7 @@ "source_location": "L14444", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_insertincontainerbefore", - "community": 0, + "community": 594, "norm_label": "insertincontainerbefore()" }, { @@ -163891,7 +163891,7 @@ "source_location": "L14507", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_hideinstance", - "community": 0, + "community": 265, "norm_label": "hideinstance()" }, { @@ -163901,7 +163901,7 @@ "source_location": "L14519", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_hidetextinstance", - "community": 0, + "community": 265, "norm_label": "hidetextinstance()" }, { @@ -163911,7 +163911,7 @@ "source_location": "L14522", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_unhideinstance", - "community": 0, + "community": 395, "norm_label": "unhideinstance()" }, { @@ -163921,7 +163921,7 @@ "source_location": "L14528", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_unhidetextinstance", - "community": 0, + "community": 265, "norm_label": "unhidetextinstance()" }, { @@ -164071,7 +164071,7 @@ "source_location": "L14662", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_hydratetextinstance", - "community": 0, + "community": 299, "norm_label": "hydratetextinstance()" }, { @@ -164081,7 +164081,7 @@ "source_location": "L14669", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_hydratesuspenseinstance", - "community": 438, + "community": 299, "norm_label": "hydratesuspenseinstance()" }, { @@ -164141,7 +164141,7 @@ "source_location": "L14741", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_didnotmatchhydratedcontainertextinstance", - "community": 0, + "community": 299, "norm_label": "didnotmatchhydratedcontainertextinstance()" }, { @@ -164151,7 +164151,7 @@ "source_location": "L14745", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_didnotmatchhydratedtextinstance", - "community": 0, + "community": 299, "norm_label": "didnotmatchhydratedtextinstance()" }, { @@ -164251,7 +164251,7 @@ "source_location": "L14823", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_errorhydratingcontainer", - "community": 173, + "community": 326, "norm_label": "errorhydratingcontainer()" }, { @@ -164291,7 +164291,7 @@ "source_location": "L14853", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_markcontainerasroot", - "community": 478, + "community": 357, "norm_label": "markcontainerasroot()" }, { @@ -164301,7 +164301,7 @@ "source_location": "L14856", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_unmarkcontainerasroot", - "community": 478, + "community": 368, "norm_label": "unmarkcontainerasroot()" }, { @@ -164311,7 +164311,7 @@ "source_location": "L14859", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_iscontainermarkedasroot", - "community": 478, + "community": 368, "norm_label": "iscontainermarkedasroot()" }, { @@ -164351,7 +164351,7 @@ "source_location": "L14981", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_getfibercurrentpropsfromnode", - "community": 395, + "community": 368, "norm_label": "getfibercurrentpropsfromnode()" }, { @@ -164431,7 +164431,7 @@ "source_location": "L15200", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_iscontextprovider", - "community": 231, + "community": 299, "norm_label": "iscontextprovider()" }, { @@ -164461,7 +164461,7 @@ "source_location": "L15221", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_pushtoplevelcontextobject", - "community": 368, + "community": 329, "norm_label": "pushtoplevelcontextobject()" }, { @@ -164471,7 +164471,7 @@ "source_location": "L15232", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_processchildcontext", - "community": 231, + "community": 299, "norm_label": "processchildcontext()" }, { @@ -164481,7 +164481,7 @@ "source_location": "L15269", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_pushcontextprovider", - "community": 231, + "community": 329, "norm_label": "pushcontextprovider()" }, { @@ -164491,7 +164491,7 @@ "source_location": "L15285", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_invalidatecontextprovider", - "community": 231, + "community": 299, "norm_label": "invalidatecontextprovider()" }, { @@ -164501,7 +164501,7 @@ "source_location": "L15313", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_findcurrentunmaskedcontext", - "community": 231, + "community": 299, "norm_label": "findcurrentunmaskedcontext()" }, { @@ -164511,7 +164511,7 @@ "source_location": "L15353", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_schedulesynccallback", - "community": 357, + "community": 326, "norm_label": "schedulesynccallback()" }, { @@ -164521,7 +164521,7 @@ "source_location": "L15364", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_schedulelegacysynccallback", - "community": 357, + "community": 326, "norm_label": "schedulelegacysynccallback()" }, { @@ -164591,7 +164591,7 @@ "source_location": "L15468", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_pushtreeid", - "community": 395, + "community": 231, "norm_label": "pushtreeid()" }, { @@ -164811,7 +164811,7 @@ "source_location": "L15930", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_preparetohydratehosttextinstance", - "community": 0, + "community": 299, "norm_label": "preparetohydratehosttextinstance()" }, { @@ -164821,7 +164821,7 @@ "source_location": "L15971", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_preparetohydratehostsuspenseinstance", - "community": 438, + "community": 299, "norm_label": "preparetohydratehostsuspenseinstance()" }, { @@ -164861,7 +164861,7 @@ "source_location": "L16053", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_hasunhydratedtailnodes", - "community": 438, + "community": 299, "norm_label": "hasunhydratedtailnodes()" }, { @@ -164891,7 +164891,7 @@ "source_location": "L16074", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_upgradehydrationerrorstorecoverable", - "community": 438, + "community": 299, "norm_label": "upgradehydrationerrorstorecoverable()" }, { @@ -164911,7 +164911,7 @@ "source_location": "L16088", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_queuehydrationerror", - "community": 329, + "community": 231, "norm_label": "queuehydrationerror()" }, { @@ -164931,7 +164931,7 @@ "source_location": "L16388", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_isreactclass", - "community": 478, + "community": 395, "norm_label": "isreactclass()" }, { @@ -164941,7 +164941,7 @@ "source_location": "L16392", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_coerceref", - "community": 478, + "community": 395, "norm_label": "coerceref()" }, { @@ -164961,7 +164961,7 @@ "source_location": "L16480", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_warnonfunctiontype", - "community": 231, + "community": 265, "norm_label": "warnonfunctiontype()" }, { @@ -165021,7 +165021,7 @@ "source_location": "L17495", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_enterdisallowedcontextreadindev", - "community": 0, + "community": 231, "norm_label": "enterdisallowedcontextreadindev()" }, { @@ -165031,7 +165031,7 @@ "source_location": "L17500", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_exitdisallowedcontextreadindev", - "community": 0, + "community": 231, "norm_label": "exitdisallowedcontextreadindev()" }, { @@ -165041,7 +165041,7 @@ "source_location": "L17505", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_pushprovider", - "community": 231, + "community": 368, "norm_label": "pushprovider()" }, { @@ -165061,7 +165061,7 @@ "source_location": "L17529", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_schedulecontextworkonparentpath", - "community": 357, + "community": 488, "norm_label": "schedulecontextworkonparentpath()" }, { @@ -165071,7 +165071,7 @@ "source_location": "L17559", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_propagatecontextchange", - "community": 357, + "community": 173, "norm_label": "propagatecontextchange()" }, { @@ -165081,7 +165081,7 @@ "source_location": "L17565", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_propagatecontextchange_eager", - "community": 357, + "community": 173, "norm_label": "propagatecontextchange_eager()" }, { @@ -165121,7 +165121,7 @@ "source_location": "L17766", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_finishqueueingconcurrentupdates", - "community": 173, + "community": 326, "norm_label": "finishqueueingconcurrentupdates()" }, { @@ -165181,7 +165181,7 @@ "source_location": "L17913", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_initializeupdatequeue", - "community": 231, + "community": 357, "norm_label": "initializeupdatequeue()" }, { @@ -165201,7 +165201,7 @@ "source_location": "L17943", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_createupdate", - "community": 357, + "community": 173, "norm_label": "createupdate()" }, { @@ -165241,7 +165241,7 @@ "source_location": "L18104", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_getstatefromupdate", - "community": 0, + "community": 231, "norm_label": "getstatefromupdate()" }, { @@ -165311,7 +165311,7 @@ "source_location": "L18435", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_pushhostcontainer", - "community": 231, + "community": 329, "norm_label": "pushhostcontainer()" }, { @@ -165341,7 +165341,7 @@ "source_location": "L18465", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_pushhostcontext", - "community": 438, + "community": 329, "norm_label": "pushhostcontext()" }, { @@ -165451,7 +165451,7 @@ "source_location": "L18633", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_registermutablesourceforhydration", - "community": 478, + "community": 357, "norm_label": "registermutablesourceforhydration()" }, { @@ -165481,7 +165481,7 @@ "source_location": "L18720", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_checkdepsarearraydev", - "community": 478, + "community": 395, "norm_label": "checkdepsarearraydev()" }, { @@ -166121,7 +166121,7 @@ "source_location": "L21007", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_resetnestedupdateflag", - "community": 173, + "community": 326, "norm_label": "resetnestedupdateflag()" }, { @@ -166131,7 +166131,7 @@ "source_location": "L21014", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_syncnestedupdateflag", - "community": 173, + "community": 326, "norm_label": "syncnestedupdateflag()" }, { @@ -166241,7 +166241,7 @@ "source_location": "L21145", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_resolvedefaultprops", - "community": 231, + "community": 265, "norm_label": "resolvedefaultprops()" }, { @@ -166271,7 +166271,7 @@ "source_location": "L21375", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_checkclassinstance", - "community": 231, + "community": 395, "norm_label": "checkclassinstance()" }, { @@ -166351,7 +166351,7 @@ "source_location": "L21981", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_createcapturedvalueatfiber", - "community": 231, + "community": 590, "norm_label": "createcapturedvalueatfiber()" }, { @@ -166371,7 +166371,7 @@ "source_location": "L22003", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_showerrordialog", - "community": 231, + "community": 173, "norm_label": "showerrordialog()" }, { @@ -166381,7 +166381,7 @@ "source_location": "L22007", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_logcapturederror", - "community": 231, + "community": 173, "norm_label": "logcapturederror()" }, { @@ -166391,7 +166391,7 @@ "source_location": "L22078", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_createrooterrorupdate", - "community": 357, + "community": 173, "norm_label": "createrooterrorupdate()" }, { @@ -166401,7 +166401,7 @@ "source_location": "L22097", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_createclasserrorupdate", - "community": 231, + "community": 173, "norm_label": "createclasserrorupdate()" }, { @@ -166451,7 +166451,7 @@ "source_location": "L22263", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_marksuspenseboundaryshouldcapture", - "community": 357, + "community": 173, "norm_label": "marksuspenseboundaryshouldcapture()" }, { @@ -166531,7 +166531,7 @@ "source_location": "L22811", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_updateoffscreencomponent", - "community": 231, + "community": 488, "norm_label": "updateoffscreencomponent()" }, { @@ -166611,7 +166611,7 @@ "source_location": "L23179", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_pushhostrootcontext", - "community": 231, + "community": 329, "norm_label": "pushhostrootcontext()" }, { @@ -166711,7 +166711,7 @@ "source_location": "L23626", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_updatesuspenseoffscreenstate", - "community": 357, + "community": 488, "norm_label": "updatesuspenseoffscreenstate()" }, { @@ -166731,7 +166731,7 @@ "source_location": "L23657", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_getremainingworkinprimarytree", - "community": 173, + "community": 329, "norm_label": "getremainingworkinprimarytree()" }, { @@ -166851,7 +166851,7 @@ "source_location": "L24161", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_schedulesuspenseworkonfiber", - "community": 357, + "community": 488, "norm_label": "schedulesuspenseworkonfiber()" }, { @@ -166861,7 +166861,7 @@ "source_location": "L24172", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_propagatesuspensecontextchange", - "community": 357, + "community": 488, "norm_label": "propagatesuspensecontextchange()" }, { @@ -166901,7 +166901,7 @@ "source_location": "L24291", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_validatesuspenselistnestedchild", - "community": 478, + "community": 395, "norm_label": "validatesuspenselistnestedchild()" }, { @@ -166911,7 +166911,7 @@ "source_location": "L24308", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_validatesuspenselistchildren", - "community": 478, + "community": 395, "norm_label": "validatesuspenselistchildren()" }, { @@ -166941,7 +166941,7 @@ "source_location": "L24484", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_updateportalcomponent", - "community": 231, + "community": 329, "norm_label": "updateportalcomponent()" }, { @@ -167021,7 +167021,7 @@ "source_location": "L24731", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_attemptearlybailoutifnoscheduledupdate", - "community": 231, + "community": 329, "norm_label": "attemptearlybailoutifnoscheduledupdate()" }, { @@ -167061,7 +167061,7 @@ "source_location": "L25197", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_cutofftailifneeded", - "community": 299, + "community": 231, "norm_label": "cutofftailifneeded()" }, { @@ -167071,7 +167071,7 @@ "source_location": "L25277", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_bubbleproperties", - "community": 438, + "community": 299, "norm_label": "bubbleproperties()" }, { @@ -167081,7 +167081,7 @@ "source_location": "L25372", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_completedehydratedsuspenseboundary", - "community": 438, + "community": 299, "norm_label": "completedehydratedsuspenseboundary()" }, { @@ -167281,7 +167281,7 @@ "source_location": "L26944", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_hideorunhideallchildren", - "community": 0, + "community": 265, "norm_label": "hideorunhideallchildren()" }, { @@ -167321,7 +167321,7 @@ "source_location": "L27151", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_gethostparentfiber", - "community": 0, + "community": 594, "norm_label": "gethostparentfiber()" }, { @@ -167331,7 +167331,7 @@ "source_location": "L27165", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_ishostparent", - "community": 0, + "community": 594, "norm_label": "ishostparent()" }, { @@ -167341,7 +167341,7 @@ "source_location": "L27169", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_gethostsibling", - "community": 0, + "community": 594, "norm_label": "gethostsibling()" }, { @@ -167351,7 +167351,7 @@ "source_location": "L27217", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_commitplacement", - "community": 0, + "community": 594, "norm_label": "commitplacement()" }, { @@ -167361,7 +167361,7 @@ "source_location": "L27258", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_insertorappendplacementnodeintocontainer", - "community": 0, + "community": 594, "norm_label": "insertorappendplacementnodeintocontainer()" }, { @@ -167371,7 +167371,7 @@ "source_location": "L27285", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_insertorappendplacementnode", - "community": 0, + "community": 594, "norm_label": "insertorappendplacementnode()" }, { @@ -167441,7 +167441,7 @@ "source_location": "L27632", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_commitmutationeffects", - "community": 265, + "community": 326, "norm_label": "commitmutationeffects()" }, { @@ -167471,7 +167471,7 @@ "source_location": "L27976", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_commitreconciliationeffects", - "community": 0, + "community": 594, "norm_label": "commitreconciliationeffects()" }, { @@ -167721,7 +167721,7 @@ "source_location": "L28646", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_isconcurrentactenvironment", - "community": 478, + "community": 395, "norm_label": "isconcurrentactenvironment()" }, { @@ -167821,7 +167821,7 @@ "source_location": "L28966", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_ensurerootisscheduled", - "community": 357, + "community": 326, "norm_label": "ensurerootisscheduled()" }, { @@ -167831,7 +167831,7 @@ "source_location": "L29085", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_performconcurrentworkonroot", - "community": 173, + "community": 326, "norm_label": "performconcurrentworkonroot()" }, { @@ -167841,7 +167841,7 @@ "source_location": "L29217", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_recoverfromconcurrenterror", - "community": 173, + "community": 326, "norm_label": "recoverfromconcurrenterror()" }, { @@ -167851,7 +167851,7 @@ "source_location": "L29262", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_queuerecoverableerrors", - "community": 438, + "community": 299, "norm_label": "queuerecoverableerrors()" }, { @@ -167861,7 +167861,7 @@ "source_location": "L29270", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_finishconcurrentrender", - "community": 357, + "community": 326, "norm_label": "finishconcurrentrender()" }, { @@ -167871,7 +167871,7 @@ "source_location": "L29385", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_isrenderconsistentwithexternalstores", - "community": 173, + "community": 326, "norm_label": "isrenderconsistentwithexternalstores()" }, { @@ -167881,7 +167881,7 @@ "source_location": "L29448", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_markrootsuspended_1", - "community": 173, + "community": 326, "norm_label": "markrootsuspended$1()" }, { @@ -167891,7 +167891,7 @@ "source_location": "L29460", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_performsyncworkonroot", - "community": 173, + "community": 326, "norm_label": "performsyncworkonroot()" }, { @@ -167901,7 +167901,7 @@ "source_location": "L29517", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_flushroot", - "community": 357, + "community": 326, "norm_label": "flushroot()" }, { @@ -167951,7 +167951,7 @@ "source_location": "L29603", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_pushrenderlanes", - "community": 357, + "community": 488, "norm_label": "pushrenderlanes()" }, { @@ -167971,7 +167971,7 @@ "source_location": "L29613", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_preparefreshstack", - "community": 173, + "community": 326, "norm_label": "preparefreshstack()" }, { @@ -168021,7 +168021,7 @@ "source_location": "L29748", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_markskippedupdatelanes", - "community": 231, + "community": 488, "norm_label": "markskippedupdatelanes()" }, { @@ -168041,7 +168041,7 @@ "source_location": "L29756", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_renderdidsuspenddelayifpossible", - "community": 173, + "community": 326, "norm_label": "renderdidsuspenddelayifpossible()" }, { @@ -168191,7 +168191,7 @@ "source_location": "L30488", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_marklegacyerrorboundaryasfailed", - "community": 231, + "community": 173, "norm_label": "marklegacyerrorboundaryasfailed()" }, { @@ -168231,7 +168231,7 @@ "source_location": "L30571", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_pingsuspendedroot", - "community": 357, + "community": 326, "norm_label": "pingsuspendedroot()" }, { @@ -168271,7 +168271,7 @@ "source_location": "L30677", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_jnd", - "community": 357, + "community": 326, "norm_label": "jnd()" }, { @@ -168361,7 +168361,7 @@ "source_location": "L30935", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_cancelcallback_1", - "community": 357, + "community": 326, "norm_label": "cancelcallback$1()" }, { @@ -168371,7 +168371,7 @@ "source_location": "L30944", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_shouldforceflushfallbacksindev", - "community": 357, + "community": 326, "norm_label": "shouldforceflushfallbacksindev()" }, { @@ -168391,7 +168391,7 @@ "source_location": "L30994", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_warnifsuspenseresolutionnotwrappedwithactdev", - "community": 478, + "community": 395, "norm_label": "warnifsuspenseresolutionnotwrappedwithactdev()" }, { @@ -168451,7 +168451,7 @@ "source_location": "L31160", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_markfailederrorboundaryforhotreloading", - "community": 231, + "community": 173, "norm_label": "markfailederrorboundaryforhotreloading()" }, { @@ -168461,7 +168461,7 @@ "source_location": "L31209", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_schedulefiberswithfamiliesrecursively", - "community": 357, + "community": 173, "norm_label": "schedulefiberswithfamiliesrecursively()" }, { @@ -168601,7 +168601,7 @@ "source_location": "L31873", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_createfiberfromprofiler", - "community": 478, + "community": 231, "norm_label": "createfiberfromprofiler()" }, { @@ -168711,7 +168711,7 @@ "source_location": "L32080", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_createportal", - "community": 478, + "community": 357, "norm_label": "createportal()" }, { @@ -168721,7 +168721,7 @@ "source_location": "L32106", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_getcontextforsubtree", - "community": 231, + "community": 299, "norm_label": "getcontextforsubtree()" }, { @@ -168911,7 +168911,7 @@ "source_location": "L32736", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_createroot", - "community": 478, + "community": 357, "norm_label": "createroot()" }, { @@ -168931,7 +168931,7 @@ "source_location": "L32787", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_schedulehydration", - "community": 0, + "community": 326, "norm_label": "schedulehydration()" }, { @@ -168941,7 +168941,7 @@ "source_location": "L32794", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_hydrateroot", - "community": 478, + "community": 357, "norm_label": "hydrateroot()" }, { @@ -168951,7 +168951,7 @@ "source_location": "L32845", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_isvalidcontainer", - "community": 478, + "community": 357, "norm_label": "isvalidcontainer()" }, { @@ -168961,7 +168961,7 @@ "source_location": "L32850", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_isvalidcontainerlegacy", - "community": 478, + "community": 368, "norm_label": "isvalidcontainerlegacy()" }, { @@ -168971,7 +168971,7 @@ "source_location": "L32854", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_warnifreactdomcontainerindev", - "community": 478, + "community": 357, "norm_label": "warnifreactdomcontainerindev()" }, { @@ -168981,7 +168981,7 @@ "source_location": "L32899", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_getreactrootelementincontainer", - "community": 478, + "community": 368, "norm_label": "getreactrootelementincontainer()" }, { @@ -169011,7 +169011,7 @@ "source_location": "L32975", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_warnoninvalidcallback_1", - "community": 478, + "community": 368, "norm_label": "warnoninvalidcallback$1()" }, { @@ -169021,7 +169021,7 @@ "source_location": "L32983", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_legacyrendersubtreeintocontainer", - "community": 478, + "community": 368, "norm_label": "legacyrendersubtreeintocontainer()" }, { @@ -169041,7 +169041,7 @@ "source_location": "L33048", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_hydrate", - "community": 478, + "community": 368, "norm_label": "hydrate()" }, { @@ -169051,7 +169051,7 @@ "source_location": "L33068", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_render", - "community": 478, + "community": 368, "norm_label": "render()" }, { @@ -169061,7 +169061,7 @@ "source_location": "L33087", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_unstable_rendersubtreeintocontainer", - "community": 478, + "community": 368, "norm_label": "unstable_rendersubtreeintocontainer()" }, { @@ -169071,7 +169071,7 @@ "source_location": "L33103", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_unmountcomponentatnode", - "community": 478, + "community": 368, "norm_label": "unmountcomponentatnode()" }, { @@ -169081,7 +169081,7 @@ "source_location": "L33179", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_createportal_1", - "community": 478, + "community": 357, "norm_label": "createportal$1()" }, { @@ -169091,7 +169091,7 @@ "source_location": "L33191", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_rendersubtreeintocontainer", - "community": 478, + "community": 368, "norm_label": "rendersubtreeintocontainer()" }, { @@ -169101,7 +169101,7 @@ "source_location": "L33202", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_createroot_1", - "community": 478, + "community": 357, "norm_label": "createroot$1()" }, { @@ -169111,7 +169111,7 @@ "source_location": "L33212", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_hydrateroot_1", - "community": 478, + "community": 357, "norm_label": "hydrateroot$1()" }, { @@ -169811,7 +169811,7 @@ "source_location": "L6103", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_resolvestyleconfig", - "community": 669, + "community": 44, "norm_label": "resolvestyleconfig()" }, { @@ -170831,7 +170831,7 @@ "source_location": "L11833", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_usecolormode", - "community": 669, + "community": 44, "norm_label": "usecolormode()" }, { @@ -170931,7 +170931,7 @@ "source_location": "L12375", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_globalstyle", - "community": 669, + "community": 44, "norm_label": "globalstyle()" }, { @@ -171151,7 +171151,7 @@ "source_location": "L13069", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_warnonce", - "community": 285, + "community": 245, "norm_label": "warnonce()" }, { @@ -171171,7 +171171,7 @@ "source_location": "L13129", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_isvariantlabel", - "community": 44, + "community": 385, "norm_label": "isvariantlabel()" }, { @@ -171181,7 +171181,7 @@ "source_location": "L13138", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_isanimationcontrols", - "community": 285, + "community": 385, "norm_label": "isanimationcontrols()" }, { @@ -171191,7 +171191,7 @@ "source_location": "L13156", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_iscontrollingvariants", - "community": 285, + "community": 385, "norm_label": "iscontrollingvariants()" }, { @@ -171201,7 +171201,7 @@ "source_location": "L13159", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_isvariantnode", - "community": 285, + "community": 385, "norm_label": "isvariantnode()" }, { @@ -171211,7 +171211,7 @@ "source_location": "L13164", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_getcurrenttreevariants", - "community": 44, + "community": 385, "norm_label": "getcurrenttreevariants()" }, { @@ -171221,7 +171221,7 @@ "source_location": "L13176", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_usecreatemotioncontext", - "community": 44, + "community": 385, "norm_label": "usecreatemotioncontext()" }, { @@ -171231,7 +171231,7 @@ "source_location": "L13180", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_variantlabelsasdependency", - "community": 44, + "community": 385, "norm_label": "variantlabelsasdependency()" }, { @@ -171341,7 +171341,7 @@ "source_location": "L13457", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_getvaluestate", - "community": 460, + "community": 385, "norm_label": "getvaluestate()" }, { @@ -171351,7 +171351,7 @@ "source_location": "L13465", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_resolvevariantfromprops", - "community": 460, + "community": 385, "norm_label": "resolvevariantfromprops()" }, { @@ -171371,7 +171371,7 @@ "source_location": "L13511", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_makestate", - "community": 285, + "community": 385, "norm_label": "makestate()" }, { @@ -171381,7 +171381,7 @@ "source_location": "L13528", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_makelatestvalues", - "community": 285, + "community": 385, "norm_label": "makelatestvalues()" }, { @@ -171471,7 +171471,7 @@ "source_location": "L13990", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_addscalecorrector", - "community": 285, + "community": 245, "norm_label": "addscalecorrector()" }, { @@ -171491,7 +171491,7 @@ "source_location": "L14000", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_scrapemotionvaluesfromprops", - "community": 285, + "community": 773, "norm_label": "scrapemotionvaluesfromprops()" }, { @@ -171501,7 +171501,7 @@ "source_location": "L14013", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_scrapemotionvaluesfromprops2", - "community": 285, + "community": 773, "norm_label": "scrapemotionvaluesfromprops2()" }, { @@ -171951,7 +171951,7 @@ "source_location": "L14724", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_adduniqueitem", - "community": 285, + "community": 245, "norm_label": "adduniqueitem()" }, { @@ -171971,7 +171971,7 @@ "source_location": "L14739", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_add", - "community": 285, + "community": 245, "norm_label": "add()" }, { @@ -172041,7 +172041,7 @@ "source_location": "L14860", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_onchange", - "community": 285, + "community": 245, "norm_label": "onchange()" }, { @@ -172051,7 +172051,7 @@ "source_location": "L14866", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_on", - "community": 285, + "community": 245, "norm_label": "on()" }, { @@ -172101,7 +172101,7 @@ "source_location": "L14929", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_jump", - "community": 385, + "community": 460, "norm_label": "jump()" }, { @@ -172181,7 +172181,7 @@ "source_location": "L15040", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_motionvalue", - "community": 385, + "community": 460, "norm_label": "motionvalue()" }, { @@ -172191,7 +172191,7 @@ "source_location": "L15045", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_setmotionvalue", - "community": 385, + "community": 460, "norm_label": "setmotionvalue()" }, { @@ -172441,7 +172441,7 @@ "source_location": "L15613", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_measureinitialstate", - "community": 385, + "community": 460, "norm_label": "measureinitialstate()" }, { @@ -173041,7 +173041,7 @@ "source_location": "L17310", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_getvariantcontext", - "community": 44, + "community": 385, "norm_label": "getvariantcontext()" }, { @@ -173051,7 +173051,7 @@ "source_location": "L17334", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_animatelist", - "community": 44, + "community": 285, "norm_label": "animatelist()" }, { @@ -173061,7 +173061,7 @@ "source_location": "L17337", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_createanimationstate", - "community": 44, + "community": 285, "norm_label": "createanimationstate()" }, { @@ -173081,7 +173081,7 @@ "source_location": "L17498", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_createtypestate", - "community": 44, + "community": 285, "norm_label": "createtypestate()" }, { @@ -173091,7 +173091,7 @@ "source_location": "L17506", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_createstate", - "community": 44, + "community": 285, "norm_label": "createstate()" }, { @@ -173101,7 +173101,7 @@ "source_location": "L17525", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_update", - "community": 285, + "community": 245, "norm_label": "update()" }, { @@ -173111,7 +173111,7 @@ "source_location": "L17540", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_updateanimationcontrolssubscription", - "community": 285, + "community": 385, "norm_label": "updateanimationcontrolssubscription()" }, { @@ -173121,7 +173121,7 @@ "source_location": "L17549", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_mount", - "community": 285, + "community": 245, "norm_label": "mount()" }, { @@ -173141,7 +173141,7 @@ "source_location": "L17624", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_adddomevent", - "community": 285, + "community": 245, "norm_label": "adddomevent()" }, { @@ -173161,7 +173161,7 @@ "source_location": "L17644", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_addpointerevent", - "community": 285, + "community": 245, "norm_label": "addpointerevent()" }, { @@ -173761,7 +173761,7 @@ "source_location": "L18352", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_addlisteners", - "community": 285, + "community": 245, "norm_label": "addlisteners()" }, { @@ -173801,7 +173801,7 @@ "source_location": "L18454", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_onpointerdown", - "community": 285, + "community": 245, "norm_label": "onpointerdown()" }, { @@ -173811,7 +173811,7 @@ "source_location": "L18460", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_createpanhandlers", - "community": 285, + "community": 245, "norm_label": "createpanhandlers()" }, { @@ -173831,7 +173831,7 @@ "source_location": "L18560", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_componentdidmount", - "community": 285, + "community": 245, "norm_label": "componentdidmount()" }, { @@ -174471,7 +174471,7 @@ "source_location": "L20262", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_hasviewportoptionchanged", - "community": 285, + "community": 245, "norm_label": "hasviewportoptionchanged()" }, { @@ -174481,7 +174481,7 @@ "source_location": "L20313", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_initprefersreducedmotion", - "community": 285, + "community": 245, "norm_label": "initprefersreducedmotion()" }, { @@ -174491,7 +174491,7 @@ "source_location": "L20338", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_updatemotionvaluesfromprops", - "community": 385, + "community": 460, "norm_label": "updatemotionvaluesfromprops()" }, { @@ -174531,7 +174531,7 @@ "source_location": "L20488", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_bindtomotionvalue", - "community": 285, + "community": 245, "norm_label": "bindtomotionvalue()" }, { @@ -174551,7 +174551,7 @@ "source_location": "L20520", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_updatefeatures", - "community": 285, + "community": 245, "norm_label": "updatefeatures()" }, { @@ -174571,7 +174571,7 @@ "source_location": "L20552", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_getstaticvalue", - "community": 385, + "community": 460, "norm_label": "getstaticvalue()" }, { @@ -174621,7 +174621,7 @@ "source_location": "L20606", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_getclosestvariantnode", - "community": 285, + "community": 245, "norm_label": "getclosestvariantnode()" }, { @@ -174631,7 +174631,7 @@ "source_location": "L20612", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_addvariantchild", - "community": 285, + "community": 245, "norm_label": "addvariantchild()" }, { @@ -174641,7 +174641,7 @@ "source_location": "L20622", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_addvalue", - "community": 385, + "community": 460, "norm_label": "addvalue()" }, { @@ -174651,7 +174651,7 @@ "source_location": "L20635", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_removevalue", - "community": 385, + "community": 460, "norm_label": "removevalue()" }, { @@ -174661,7 +174661,7 @@ "source_location": "L20648", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_hasvalue", - "community": 385, + "community": 460, "norm_label": "hasvalue()" }, { @@ -174671,7 +174671,7 @@ "source_location": "L20651", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_getvalue", - "community": 385, + "community": 460, "norm_label": "getvalue()" }, { @@ -174701,7 +174701,7 @@ "source_location": "L20691", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_getbasetarget", - "community": 460, + "community": 385, "norm_label": "getbasetarget()" }, { @@ -174721,7 +174721,7 @@ "source_location": "L20731", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_getbasetargetfromprops", - "community": 460, + "community": 385, "norm_label": "getbasetargetfromprops()" }, { @@ -174731,7 +174731,7 @@ "source_location": "L20734", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_removevaluefromrenderstate", - "community": 385, + "community": 460, "norm_label": "removevaluefromrenderstate()" }, { @@ -174741,7 +174741,7 @@ "source_location": "L20738", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_handlechildmotionvalue", - "community": 285, + "community": 245, "norm_label": "handlechildmotionvalue()" }, { @@ -174851,7 +174851,7 @@ "source_location": "L21226", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_styled2", - "community": 669, + "community": 44, "norm_label": "styled2()" }, { @@ -174861,7 +174861,7 @@ "source_location": "L21252", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_factory", - "community": 669, + "community": 44, "norm_label": "factory()" }, { @@ -174881,7 +174881,7 @@ "source_location": "L21423", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_usetheme2", - "community": 669, + "community": 44, "norm_label": "usetheme2()" }, { @@ -174891,7 +174891,7 @@ "source_location": "L21436", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_usechakra", - "community": 669, + "community": 44, "norm_label": "usechakra()" }, { @@ -174901,7 +174901,7 @@ "source_location": "L21443", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_omitreactelements", - "community": 669, + "community": 44, "norm_label": "omitreactelements()" }, { @@ -174911,7 +174911,7 @@ "source_location": "L21450", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_usestyleconfigimpl", - "community": 669, + "community": 44, "norm_label": "usestyleconfigimpl()" }, { @@ -174921,7 +174921,7 @@ "source_location": "L21472", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_usestyleconfig", - "community": 669, + "community": 44, "norm_label": "usestyleconfig()" }, { @@ -174931,7 +174931,7 @@ "source_location": "L21475", "_origin": "ast", "id": "docs_design_thingtime_landing_1f_ecosystem_map_ds_thingtime_bundle_usemultistyleconfig", - "community": 669, + "community": 44, "norm_label": "usemultistyleconfig()" }, { @@ -175661,7 +175661,7 @@ "source_location": "L37", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_getiteratorfn", - "community": 161, + "community": 88, "norm_label": "getiteratorfn()" }, { @@ -175671,7 +175671,7 @@ "source_location": "L93", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_setextrastackframe", - "community": 161, + "community": 88, "norm_label": "setextrastackframe()" }, { @@ -175691,7 +175691,7 @@ "source_location": "L166", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_error", - "community": 112, + "community": 88, "norm_label": "error()" }, { @@ -175711,7 +175711,7 @@ "source_location": "L205", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_warnnoop", - "community": 112, + "community": 88, "norm_label": "warnnoop()" }, { @@ -175781,7 +175781,7 @@ "source_location": "L431", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_isarray", - "community": 161, + "community": 88, "norm_label": "isarray()" }, { @@ -175791,7 +175791,7 @@ "source_location": "L445", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_typename", - "community": 177, + "community": 88, "norm_label": "typename()" }, { @@ -175801,7 +175801,7 @@ "source_location": "L455", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_willcoercionthrow", - "community": 177, + "community": 88, "norm_label": "willcoercionthrow()" }, { @@ -175811,7 +175811,7 @@ "source_location": "L466", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_teststringcoercion", - "community": 177, + "community": 88, "norm_label": "teststringcoercion()" }, { @@ -175821,7 +175821,7 @@ "source_location": "L492", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_checkkeystringcoercion", - "community": 177, + "community": 88, "norm_label": "checkkeystringcoercion()" }, { @@ -175861,7 +175861,7 @@ "source_location": "L616", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_hasvalidref", - "community": 177, + "community": 88, "norm_label": "hasvalidref()" }, { @@ -175871,7 +175871,7 @@ "source_location": "L630", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_hasvalidkey", - "community": 177, + "community": 88, "norm_label": "hasvalidkey()" }, { @@ -175881,7 +175881,7 @@ "source_location": "L644", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_definekeypropwarninggetter", - "community": 177, + "community": 88, "norm_label": "definekeypropwarninggetter()" }, { @@ -175891,7 +175891,7 @@ "source_location": "L662", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_definerefpropwarninggetter", - "community": 177, + "community": 88, "norm_label": "definerefpropwarninggetter()" }, { @@ -175901,7 +175901,7 @@ "source_location": "L680", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_warnifstringrefcannotbeautoconverted", - "community": 177, + "community": 88, "norm_label": "warnifstringrefcannotbeautoconverted()" }, { @@ -175911,7 +175911,7 @@ "source_location": "L773", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_createelement", - "community": 177, + "community": 88, "norm_label": "createelement()" }, { @@ -175921,7 +175921,7 @@ "source_location": "L858", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_cloneandreplacekey", - "community": 161, + "community": 88, "norm_label": "cloneandreplacekey()" }, { @@ -175931,7 +175931,7 @@ "source_location": "L867", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_cloneelement", - "community": 177, + "community": 88, "norm_label": "cloneelement()" }, { @@ -175941,7 +175941,7 @@ "source_location": "L947", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_isvalidelement", - "community": 161, + "community": 88, "norm_label": "isvalidelement()" }, { @@ -175951,7 +175951,7 @@ "source_location": "L960", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_escape", - "community": 161, + "community": 88, "norm_label": "escape()" }, { @@ -175961,7 +175961,7 @@ "source_location": "L980", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_escapeuserprovidedkey", - "community": 161, + "community": 88, "norm_label": "escapeuserprovidedkey()" }, { @@ -175971,7 +175971,7 @@ "source_location": "L992", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_getelementkey", - "community": 161, + "community": 88, "norm_label": "getelementkey()" }, { @@ -175981,7 +175981,7 @@ "source_location": "L1008", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_mapintoarray", - "community": 161, + "community": 88, "norm_label": "mapintoarray()" }, { @@ -176031,7 +176031,7 @@ "source_location": "L1217", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_onlychild", - "community": 161, + "community": 88, "norm_label": "onlychild()" }, { @@ -176051,7 +176051,7 @@ "source_location": "L1344", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_lazyinitializer", - "community": 112, + "community": 88, "norm_label": "lazyinitializer()" }, { @@ -176061,7 +176061,7 @@ "source_location": "L1401", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_lazy", - "community": 112, + "community": 88, "norm_label": "lazy()" }, { @@ -176071,7 +176071,7 @@ "source_location": "L1457", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_forwardref", - "community": 112, + "community": 88, "norm_label": "forwardref()" }, { @@ -176081,7 +176081,7 @@ "source_location": "L1514", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_isvalidelementtype", - "community": 21, + "community": 88, "norm_label": "isvalidelementtype()" }, { @@ -176091,7 +176091,7 @@ "source_location": "L1537", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_memo", - "community": 21, + "community": 88, "norm_label": "memo()" }, { @@ -176261,7 +176261,7 @@ "source_location": "L1682", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_disabledlog", - "community": 161, + "community": 21, "norm_label": "disabledlog()" }, { @@ -176271,7 +176271,7 @@ "source_location": "L1685", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_disablelogs", - "community": 161, + "community": 21, "norm_label": "disablelogs()" }, { @@ -176281,7 +176281,7 @@ "source_location": "L1719", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_reenablelogs", - "community": 161, + "community": 21, "norm_label": "reenablelogs()" }, { @@ -176291,7 +176291,7 @@ "source_location": "L1765", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_describebuiltincomponentframe", - "community": 161, + "community": 21, "norm_label": "describebuiltincomponentframe()" }, { @@ -176301,7 +176301,7 @@ "source_location": "L1789", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_describenativecomponentframe", - "community": 161, + "community": 21, "norm_label": "describenativecomponentframe()" }, { @@ -176311,7 +176311,7 @@ "source_location": "L1948", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_describefunctioncomponentframe", - "community": 161, + "community": 21, "norm_label": "describefunctioncomponentframe()" }, { @@ -176321,7 +176321,7 @@ "source_location": "L1954", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_shouldconstruct", - "community": 161, + "community": 21, "norm_label": "shouldconstruct()" }, { @@ -176331,7 +176331,7 @@ "source_location": "L1959", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_describeunknownelementtypeframeindev", - "community": 161, + "community": 21, "norm_label": "describeunknownelementtypeframeindev()" }, { @@ -176341,7 +176341,7 @@ "source_location": "L2012", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_setcurrentlyvalidatingelement", - "community": 161, + "community": 21, "norm_label": "setcurrentlyvalidatingelement()" }, { @@ -176361,7 +176361,7 @@ "source_location": "L2073", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_setcurrentlyvalidatingelement_1", - "community": 161, + "community": 88, "norm_label": "setcurrentlyvalidatingelement$1()" }, { @@ -176401,7 +176401,7 @@ "source_location": "L2129", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_getcurrentcomponenterrorinfo", - "community": 161, + "community": 88, "norm_label": "getcurrentcomponenterrorinfo()" }, { @@ -176411,7 +176411,7 @@ "source_location": "L2155", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_validateexplicitkey", - "community": 161, + "community": 88, "norm_label": "validateexplicitkey()" }, { @@ -176421,7 +176421,7 @@ "source_location": "L2197", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_validatechildkeys", - "community": 161, + "community": 88, "norm_label": "validatechildkeys()" }, { @@ -176431,7 +176431,7 @@ "source_location": "L2242", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_validateproptypes", - "community": 74, + "community": 88, "norm_label": "validateproptypes()" }, { @@ -176441,7 +176441,7 @@ "source_location": "L2285", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_validatefragmentprops", - "community": 161, + "community": 88, "norm_label": "validatefragmentprops()" }, { @@ -176451,7 +176451,7 @@ "source_location": "L2311", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_createelementwithvalidation", - "community": 74, + "community": 88, "norm_label": "createelementwithvalidation()" }, { @@ -176471,7 +176471,7 @@ "source_location": "L2402", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_cloneelementwithvalidation", - "community": 161, + "community": 88, "norm_label": "cloneelementwithvalidation()" }, { @@ -176501,7 +176501,7 @@ "source_location": "L2425", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_pop", - "community": 254, + "community": 99, "norm_label": "pop()" }, { @@ -176591,7 +176591,7 @@ "source_location": "L2687", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_unstable_runwithpriority", - "community": 431, + "community": 314, "norm_label": "unstable_runwithpriority()" }, { @@ -176601,7 +176601,7 @@ "source_location": "L2710", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_unstable_next", - "community": 431, + "community": 314, "norm_label": "unstable_next()" }, { @@ -176691,7 +176691,7 @@ "source_location": "L2885", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_requestpaint", - "community": 143, + "community": 349, "norm_label": "requestpaint()" }, { @@ -176751,7 +176751,7 @@ "source_location": "L3035", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_starttransition", - "community": 143, + "community": 349, "norm_label": "starttransition()" }, { @@ -176761,7 +176761,7 @@ "source_location": "L3065", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_enqueuetask", - "community": 112, + "community": 88, "norm_label": "enqueuetask()" }, { @@ -176771,7 +176771,7 @@ "source_location": "L3102", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_act", - "community": 112, + "community": 88, "norm_label": "act()" }, { @@ -176781,7 +176781,7 @@ "source_location": "L3229", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_popactscope", - "community": 112, + "community": 88, "norm_label": "popactscope()" }, { @@ -176791,7 +176791,7 @@ "source_location": "L3239", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_recursivelyflushasyncactwork", - "community": 112, + "community": 88, "norm_label": "recursivelyflushasyncactwork()" }, { @@ -176801,7 +176801,7 @@ "source_location": "L3267", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_flushactqueue", - "community": 112, + "community": 88, "norm_label": "flushactqueue()" }, { @@ -176841,7 +176841,7 @@ "source_location": "L3593", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_checkattributestringcoercion", - "community": 177, + "community": 88, "norm_label": "checkattributestringcoercion()" }, { @@ -176851,7 +176851,7 @@ "source_location": "L3611", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_checkpropstringcoercion", - "community": 177, + "community": 88, "norm_label": "checkpropstringcoercion()" }, { @@ -176861,7 +176861,7 @@ "source_location": "L3620", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_checkcsspropertystringcoercion", - "community": 177, + "community": 88, "norm_label": "checkcsspropertystringcoercion()" }, { @@ -176871,7 +176871,7 @@ "source_location": "L3629", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_checkhtmlstringcoercion", - "community": 177, + "community": 88, "norm_label": "checkhtmlstringcoercion()" }, { @@ -176881,7 +176881,7 @@ "source_location": "L3638", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_checkformfieldvaluestringcoercion", - "community": 177, + "community": 88, "norm_label": "checkformfieldvaluestringcoercion()" }, { @@ -176991,7 +176991,7 @@ "source_location": "L4511", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_describeclasscomponentframe", - "community": 161, + "community": 21, "norm_label": "describeclasscomponentframe()" }, { @@ -177001,7 +177001,7 @@ "source_location": "L4577", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_describefiber", - "community": 161, + "community": 21, "norm_label": "describefiber()" }, { @@ -177011,7 +177011,7 @@ "source_location": "L4610", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_getstackbyfiberindevandprod", - "community": 161, + "community": 21, "norm_label": "getstackbyfiberindevandprod()" }, { @@ -177061,7 +177061,7 @@ "source_location": "L4845", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_getcurrentfiberstackindev", - "community": 161, + "community": 21, "norm_label": "getcurrentfiberstackindev()" }, { @@ -177141,7 +177141,7 @@ "source_location": "L4932", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_ischeckable", - "community": 177, + "community": 21, "norm_label": "ischeckable()" }, { @@ -177151,7 +177151,7 @@ "source_location": "L4938", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_gettracker", - "community": 177, + "community": 21, "norm_label": "gettracker()" }, { @@ -177161,7 +177161,7 @@ "source_location": "L4942", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_detachtracker", - "community": 177, + "community": 21, "norm_label": "detachtracker()" }, { @@ -177171,7 +177171,7 @@ "source_location": "L4946", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_getvaluefromnode", - "community": 177, + "community": 21, "norm_label": "getvaluefromnode()" }, { @@ -177181,7 +177181,7 @@ "source_location": "L4962", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_trackvalueonnode", - "community": 177, + "community": 21, "norm_label": "trackvalueonnode()" }, { @@ -177191,7 +177191,7 @@ "source_location": "L5021", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_track", - "community": 177, + "community": 21, "norm_label": "track()" }, { @@ -177201,7 +177201,7 @@ "source_location": "L5029", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_updatevalueifchanged", - "community": 177, + "community": 21, "norm_label": "updatevalueifchanged()" }, { @@ -177451,7 +177451,7 @@ "source_location": "L5705", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_getintrinsicnamespace", - "community": 177, + "community": 254, "norm_label": "getintrinsicnamespace()" }, { @@ -177461,7 +177461,7 @@ "source_location": "L5717", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_getchildnamespace", - "community": 177, + "community": 254, "norm_label": "getchildnamespace()" }, { @@ -177481,7 +177481,7 @@ "source_location": "L5952", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_dangerousstylevalue", - "community": 177, + "community": 21, "norm_label": "dangerousstylevalue()" }, { @@ -177491,7 +177491,7 @@ "source_location": "L5995", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_hyphenatestylename", - "community": 177, + "community": 21, "norm_label": "hyphenatestylename()" }, { @@ -177501,7 +177501,7 @@ "source_location": "L6104", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_createdangerousstringforstyles", - "community": 177, + "community": 21, "norm_label": "createdangerousstringforstyles()" }, { @@ -177571,7 +177571,7 @@ "source_location": "L6880", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_validateproperty", - "community": 184, + "community": 88, "norm_label": "validateproperty()" }, { @@ -177581,7 +177581,7 @@ "source_location": "L6930", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_warninvalidariaprops", - "community": 184, + "community": 88, "norm_label": "warninvalidariaprops()" }, { @@ -177591,7 +177591,7 @@ "source_location": "L6954", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_validateproperties", - "community": 184, + "community": 88, "norm_label": "validateproperties()" }, { @@ -177601,7 +177601,7 @@ "source_location": "L6963", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_validateproperties_1", - "community": 112, + "community": 88, "norm_label": "validateproperties$1()" }, { @@ -177621,7 +177621,7 @@ "source_location": "L7174", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_setreplayingevent", - "community": 21, + "community": 84, "norm_label": "setreplayingevent()" }, { @@ -177631,7 +177631,7 @@ "source_location": "L7183", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_resetreplayingevent", - "community": 21, + "community": 84, "norm_label": "resetreplayingevent()" }, { @@ -177641,7 +177641,7 @@ "source_location": "L7192", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_isreplayingevent", - "community": 21, + "community": 184, "norm_label": "isreplayingevent()" }, { @@ -177651,7 +177651,7 @@ "source_location": "L7204", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_geteventtarget", - "community": 21, + "community": 84, "norm_label": "geteventtarget()" }, { @@ -177661,7 +177661,7 @@ "source_location": "L7222", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_restorestateoftarget", - "community": 21, + "community": 84, "norm_label": "restorestateoftarget()" }, { @@ -177691,7 +177691,7 @@ "source_location": "L7259", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_needsstaterestore", - "community": 21, + "community": 84, "norm_label": "needsstaterestore()" }, { @@ -177701,7 +177701,7 @@ "source_location": "L7262", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_restorestateifneeded", - "community": 21, + "community": 84, "norm_label": "restorestateifneeded()" }, { @@ -177711,7 +177711,7 @@ "source_location": "L7294", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_finisheventhandler", - "community": 21, + "community": 84, "norm_label": "finisheventhandler()" }, { @@ -177721,7 +177721,7 @@ "source_location": "L7312", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_batchedupdates", - "community": 21, + "community": 84, "norm_label": "batchedupdates()" }, { @@ -177771,7 +177771,7 @@ "source_location": "L7410", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_invokeguardedcallbackprod", - "community": 112, + "community": 88, "norm_label": "invokeguardedcallbackprod()" }, { @@ -177831,7 +177831,7 @@ "source_location": "L7638", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_rethrowcaughterror", - "community": 21, + "community": 84, "norm_label": "rethrowcaughterror()" }, { @@ -177861,7 +177861,7 @@ "source_location": "L7692", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_get", - "community": 112, + "community": 84, "norm_label": "get()" }, { @@ -177871,7 +177871,7 @@ "source_location": "L7695", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_has", - "community": 88, + "community": 143, "norm_label": "has()" }, { @@ -177891,7 +177891,7 @@ "source_location": "L7805", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_getnearestmountedfiber", - "community": 21, + "community": 84, "norm_label": "getnearestmountedfiber()" }, { @@ -177901,7 +177901,7 @@ "source_location": "L7842", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_getsuspenseinstancefromfiber", - "community": 21, + "community": 84, "norm_label": "getsuspenseinstancefromfiber()" }, { @@ -177911,7 +177911,7 @@ "source_location": "L7861", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_getcontainerfromfiber", - "community": 21, + "community": 84, "norm_label": "getcontainerfromfiber()" }, { @@ -177921,7 +177921,7 @@ "source_location": "L7864", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_isfibermounted", - "community": 21, + "community": 84, "norm_label": "isfibermounted()" }, { @@ -177931,7 +177931,7 @@ "source_location": "L7867", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_ismounted", - "community": 112, + "community": 84, "norm_label": "ismounted()" }, { @@ -177941,7 +177941,7 @@ "source_location": "L7892", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_assertismounted", - "community": 21, + "community": 84, "norm_label": "assertismounted()" }, { @@ -177951,7 +177951,7 @@ "source_location": "L7898", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_findcurrentfiberusingslowpath", - "community": 21, + "community": 84, "norm_label": "findcurrentfiberusingslowpath()" }, { @@ -178011,7 +178011,7 @@ "source_location": "L8185", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_onscheduleroot", - "community": 378, + "community": 60, "norm_label": "onscheduleroot()" }, { @@ -178021,7 +178021,7 @@ "source_location": "L8200", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_oncommitroot", - "community": 143, + "community": 349, "norm_label": "oncommitroot()" }, { @@ -178081,7 +178081,7 @@ "source_location": "L8320", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_markcommitstarted", - "community": 143, + "community": 349, "norm_label": "markcommitstarted()" }, { @@ -178091,7 +178091,7 @@ "source_location": "L8327", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_markcommitstopped", - "community": 143, + "community": 349, "norm_label": "markcommitstopped()" }, { @@ -178221,7 +178221,7 @@ "source_location": "L8418", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_marklayouteffectsstarted", - "community": 143, + "community": 349, "norm_label": "marklayouteffectsstarted()" }, { @@ -178231,7 +178231,7 @@ "source_location": "L8425", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_marklayouteffectsstopped", - "community": 143, + "community": 349, "norm_label": "marklayouteffectsstopped()" }, { @@ -178291,7 +178291,7 @@ "source_location": "L8467", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_markrenderscheduled", - "community": 378, + "community": 60, "norm_label": "markrenderscheduled()" }, { @@ -178311,7 +178311,7 @@ "source_location": "L8481", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_markstateupdatescheduled", - "community": 378, + "community": 60, "norm_label": "markstateupdatescheduled()" }, { @@ -178341,7 +178341,7 @@ "source_location": "L8693", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_gethighestprioritylanes", - "community": 143, + "community": 184, "norm_label": "gethighestprioritylanes()" }, { @@ -178351,7 +178351,7 @@ "source_location": "L8760", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_getnextlanes", - "community": 143, + "community": 184, "norm_label": "getnextlanes()" }, { @@ -178391,7 +178391,7 @@ "source_location": "L8992", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_gethighestprioritypendinglanes", - "community": 143, + "community": 184, "norm_label": "gethighestprioritypendinglanes()" }, { @@ -178411,7 +178411,7 @@ "source_location": "L9008", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_includessynclane", - "community": 88, + "community": 143, "norm_label": "includessynclane()" }, { @@ -178431,7 +178431,7 @@ "source_location": "L9014", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_includesonlyretries", - "community": 143, + "community": 60, "norm_label": "includesonlyretries()" }, { @@ -178451,7 +178451,7 @@ "source_location": "L9021", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_includesonlytransitions", - "community": 143, + "community": 60, "norm_label": "includesonlytransitions()" }, { @@ -178481,7 +178481,7 @@ "source_location": "L9034", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_istransitionlane", - "community": 378, + "community": 60, "norm_label": "istransitionlane()" }, { @@ -178491,7 +178491,7 @@ "source_location": "L9037", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_claimnexttransitionlane", - "community": 378, + "community": 60, "norm_label": "claimnexttransitionlane()" }, { @@ -178511,7 +178511,7 @@ "source_location": "L9060", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_gethighestprioritylane", - "community": 143, + "community": 184, "norm_label": "gethighestprioritylane()" }, { @@ -178521,7 +178521,7 @@ "source_location": "L9063", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_pickarbitrarylane", - "community": 378, + "community": 60, "norm_label": "pickarbitrarylane()" }, { @@ -178561,7 +178561,7 @@ "source_location": "L9082", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_issubsetoflanes", - "community": 378, + "community": 60, "norm_label": "issubsetoflanes()" }, { @@ -178571,7 +178571,7 @@ "source_location": "L9085", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_mergelanes", - "community": 378, + "community": 60, "norm_label": "mergelanes()" }, { @@ -178581,7 +178581,7 @@ "source_location": "L9088", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_removelanes", - "community": 99, + "community": 143, "norm_label": "removelanes()" }, { @@ -178591,7 +178591,7 @@ "source_location": "L9091", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_intersectlanes", - "community": 378, + "community": 60, "norm_label": "intersectlanes()" }, { @@ -178631,7 +178631,7 @@ "source_location": "L9114", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_markrootupdated", - "community": 143, + "community": 60, "norm_label": "markrootupdated()" }, { @@ -178651,7 +178651,7 @@ "source_location": "L9153", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_markrootpinged", - "community": 143, + "community": 60, "norm_label": "markrootpinged()" }, { @@ -178671,7 +178671,7 @@ "source_location": "L9180", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_markrootentangled", - "community": 378, + "community": 60, "norm_label": "markrootentangled()" }, { @@ -178681,7 +178681,7 @@ "source_location": "L9209", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_getbumpedlaneforhydration", - "community": 143, + "community": 184, "norm_label": "getbumpedlaneforhydration()" }, { @@ -178721,7 +178721,7 @@ "source_location": "L9322", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_getcurrentupdatepriority", - "community": 143, + "community": 349, "norm_label": "getcurrentupdatepriority()" }, { @@ -178731,7 +178731,7 @@ "source_location": "L9325", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_setcurrentupdatepriority", - "community": 143, + "community": 349, "norm_label": "setcurrentupdatepriority()" }, { @@ -178751,7 +178751,7 @@ "source_location": "L9338", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_highereventpriority", - "community": 143, + "community": 349, "norm_label": "highereventpriority()" }, { @@ -178761,7 +178761,7 @@ "source_location": "L9341", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_lowereventpriority", - "community": 143, + "community": 349, "norm_label": "lowereventpriority()" }, { @@ -178771,7 +178771,7 @@ "source_location": "L9344", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_ishighereventpriority", - "community": 21, + "community": 184, "norm_label": "ishighereventpriority()" }, { @@ -178781,7 +178781,7 @@ "source_location": "L9347", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_lanestoeventpriority", - "community": 143, + "community": 184, "norm_label": "lanestoeventpriority()" }, { @@ -178791,7 +178791,7 @@ "source_location": "L9368", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_isrootdehydrated", - "community": 21, + "community": 84, "norm_label": "isrootdehydrated()" }, { @@ -178811,7 +178811,7 @@ "source_location": "L9378", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_attemptsynchronoushydration", - "community": 21, + "community": 84, "norm_label": "attemptsynchronoushydration()" }, { @@ -178861,7 +178861,7 @@ "source_location": "L9414", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_isdiscreteeventthatrequireshydration", - "community": 21, + "community": 84, "norm_label": "isdiscreteeventthatrequireshydration()" }, { @@ -178871,7 +178871,7 @@ "source_location": "L9418", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_createqueuedreplayableevent", - "community": 21, + "community": 84, "norm_label": "createqueuedreplayableevent()" }, { @@ -178881,7 +178881,7 @@ "source_location": "L9428", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_clearifcontinuousevent", - "community": 21, + "community": 84, "norm_label": "clearifcontinuousevent()" }, { @@ -178891,7 +178891,7 @@ "source_location": "L9463", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_accumulateorcreatecontinuousqueuedreplayableevent", - "community": 21, + "community": 84, "norm_label": "accumulateorcreatecontinuousqueuedreplayableevent()" }, { @@ -178901,7 +178901,7 @@ "source_location": "L9493", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_queueifcontinuousevent", - "community": 21, + "community": 84, "norm_label": "queueifcontinuousevent()" }, { @@ -178911,7 +178911,7 @@ "source_location": "L9539", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_attemptexplicithydrationtarget", - "community": 21, + "community": 84, "norm_label": "attemptexplicithydrationtarget()" }, { @@ -178921,7 +178921,7 @@ "source_location": "L9579", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_queueexplicithydrationtarget", - "community": 21, + "community": 84, "norm_label": "queueexplicithydrationtarget()" }, { @@ -178931,7 +178931,7 @@ "source_location": "L9605", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_attemptreplaycontinuousqueuedevent", - "community": 21, + "community": 84, "norm_label": "attemptreplaycontinuousqueuedevent()" }, { @@ -178941,7 +178941,7 @@ "source_location": "L9643", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_attemptreplaycontinuousqueuedeventinmap", - "community": 21, + "community": 84, "norm_label": "attemptreplaycontinuousqueuedeventinmap()" }, { @@ -178951,7 +178951,7 @@ "source_location": "L9649", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_replayunblockedevents", - "community": 21, + "community": 84, "norm_label": "replayunblockedevents()" }, { @@ -178961,7 +178961,7 @@ "source_location": "L9669", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_schedulecallbackifunblocked", - "community": 630, + "community": 84, "norm_label": "schedulecallbackifunblocked()" }, { @@ -178971,7 +178971,7 @@ "source_location": "L9683", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_retryifblockedon", - "community": 630, + "community": 84, "norm_label": "retryifblockedon()" }, { @@ -178991,7 +178991,7 @@ "source_location": "L9752", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_isenabled", - "community": 426, + "community": 255, "norm_label": "isenabled()" }, { @@ -179011,7 +179011,7 @@ "source_location": "L9777", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_dispatchdiscreteevent", - "community": 143, + "community": 349, "norm_label": "dispatchdiscreteevent()" }, { @@ -179021,7 +179021,7 @@ "source_location": "L9791", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_dispatchcontinuousevent", - "community": 143, + "community": 349, "norm_label": "dispatchcontinuousevent()" }, { @@ -179031,7 +179031,7 @@ "source_location": "L9805", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_dispatchevent", - "community": 143, + "community": 349, "norm_label": "dispatchevent()" }, { @@ -179041,7 +179041,7 @@ "source_location": "L9815", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_dispatcheventwithenablecapturephaseselectivehydrationwithoutdiscreteeventreplay", - "community": 21, + "community": 84, "norm_label": "dispatcheventwithenablecapturephaseselectivehydrationwithoutdiscreteeventreplay()" }, { @@ -179051,7 +179051,7 @@ "source_location": "L9869", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_findinstanceblockingevent", - "community": 21, + "community": 84, "norm_label": "findinstanceblockingevent()" }, { @@ -179351,7 +179351,7 @@ "source_location": "L11066", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_istextinputelement", - "community": 21, + "community": 184, "norm_label": "istextinputelement()" }, { @@ -179361,7 +179361,7 @@ "source_location": "L11094", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_iseventsupported", - "community": 177, + "community": 88, "norm_label": "iseventsupported()" }, { @@ -179391,7 +179391,7 @@ "source_location": "L11139", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_shouldusechangeevent", - "community": 21, + "community": 184, "norm_label": "shouldusechangeevent()" }, { @@ -179401,7 +179401,7 @@ "source_location": "L11144", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_manualdispatchchangeevent", - "community": 21, + "community": 84, "norm_label": "manualdispatchchangeevent()" }, { @@ -179411,7 +179411,7 @@ "source_location": "L11161", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_runeventinbatch", - "community": 21, + "community": 84, "norm_label": "runeventinbatch()" }, { @@ -179491,7 +179491,7 @@ "source_location": "L11273", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_shoulduseclickevent", - "community": 21, + "community": 184, "norm_label": "shoulduseclickevent()" }, { @@ -179531,7 +179531,7 @@ "source_location": "L11317", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_extractevents_1", - "community": 21, + "community": 184, "norm_label": "extractevents$1()" }, { @@ -179551,7 +179551,7 @@ "source_location": "L11368", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_extractevents_2", - "community": 21, + "community": 184, "norm_label": "extractevents$2()" }, { @@ -179571,7 +179571,7 @@ "source_location": "L11485", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_shallowequal", - "community": 184, + "community": 74, "norm_label": "shallowequal()" }, { @@ -179781,7 +179781,7 @@ "source_location": "L12021", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_extractevents_3", - "community": 21, + "community": 184, "norm_label": "extractevents$3()" }, { @@ -179841,7 +179841,7 @@ "source_location": "L12351", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_extractevents_5", - "community": 21, + "community": 184, "norm_label": "extractevents$5()" }, { @@ -179871,7 +179871,7 @@ "source_location": "L12433", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_processdispatchqueue", - "community": 21, + "community": 84, "norm_label": "processdispatchqueue()" }, { @@ -179881,7 +179881,7 @@ "source_location": "L12447", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_dispatcheventsforplugins", - "community": 21, + "community": 84, "norm_label": "dispatcheventsforplugins()" }, { @@ -179901,7 +179901,7 @@ "source_location": "L12470", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_listentonativeevent", - "community": 88, + "community": 143, "norm_label": "listentonativeevent()" }, { @@ -179911,7 +179911,7 @@ "source_location": "L12486", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_listentoallsupportedevents", - "community": 88, + "community": 143, "norm_label": "listentoallsupportedevents()" }, { @@ -179931,7 +179931,7 @@ "source_location": "L12550", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_ismatchingrootcontainer", - "community": 21, + "community": 84, "norm_label": "ismatchingrootcontainer()" }, { @@ -179941,7 +179941,7 @@ "source_location": "L12554", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_dispatcheventforplugineventsystem", - "community": 21, + "community": 84, "norm_label": "dispatcheventforplugineventsystem()" }, { @@ -179981,7 +179981,7 @@ "source_location": "L12729", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_getparent", - "community": 184, + "community": 21, "norm_label": "getparent()" }, { @@ -179991,7 +179991,7 @@ "source_location": "L12754", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_getlowestcommonancestor", - "community": 184, + "community": 21, "norm_label": "getlowestcommonancestor()" }, { @@ -180031,7 +180031,7 @@ "source_location": "L12971", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_normalizemarkupfortextorattribute", - "community": 21, + "community": 99, "norm_label": "normalizemarkupfortextorattribute()" }, { @@ -180041,7 +180041,7 @@ "source_location": "L12980", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_checkforunmatchedtext", - "community": 21, + "community": 99, "norm_label": "checkforunmatchedtext()" }, { @@ -180051,7 +180051,7 @@ "source_location": "L13005", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_getownerdocumentfromrootcontainer", - "community": 254, + "community": 99, "norm_label": "getownerdocumentfromrootcontainer()" }, { @@ -180101,7 +180101,7 @@ "source_location": "L13177", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_createtextnode", - "community": 254, + "community": 99, "norm_label": "createtextnode()" }, { @@ -180161,7 +180161,7 @@ "source_location": "L13819", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_diffhydratedtext", - "community": 21, + "community": 99, "norm_label": "diffhydratedtext()" }, { @@ -180221,7 +180221,7 @@ "source_location": "L14216", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_getroothostcontext", - "community": 74, + "community": 254, "norm_label": "getroothostcontext()" }, { @@ -180231,7 +180231,7 @@ "source_location": "L14250", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_getchildhostcontext", - "community": 177, + "community": 254, "norm_label": "getchildhostcontext()" }, { @@ -180271,7 +180271,7 @@ "source_location": "L14278", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_createinstance", - "community": 254, + "community": 99, "norm_label": "createinstance()" }, { @@ -180321,7 +180321,7 @@ "source_location": "L14336", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_createtextinstance", - "community": 254, + "community": 99, "norm_label": "createtextinstance()" }, { @@ -180361,7 +180361,7 @@ "source_location": "L14399", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_commitupdate", - "community": 254, + "community": 99, "norm_label": "commitupdate()" }, { @@ -180451,7 +180451,7 @@ "source_location": "L14462", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_clearsuspenseboundary", - "community": 630, + "community": 112, "norm_label": "clearsuspenseboundary()" }, { @@ -180461,7 +180461,7 @@ "source_location": "L14497", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_clearsuspenseboundaryfromcontainer", - "community": 630, + "community": 112, "norm_label": "clearsuspenseboundaryfromcontainer()" }, { @@ -180471,7 +180471,7 @@ "source_location": "L14507", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_hideinstance", - "community": 112, + "community": 21, "norm_label": "hideinstance()" }, { @@ -180481,7 +180481,7 @@ "source_location": "L14519", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_hidetextinstance", - "community": 112, + "community": 21, "norm_label": "hidetextinstance()" }, { @@ -180491,7 +180491,7 @@ "source_location": "L14522", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_unhideinstance", - "community": 177, + "community": 21, "norm_label": "unhideinstance()" }, { @@ -180501,7 +180501,7 @@ "source_location": "L14528", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_unhidetextinstance", - "community": 112, + "community": 21, "norm_label": "unhidetextinstance()" }, { @@ -180641,7 +180641,7 @@ "source_location": "L14645", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_hydrateinstance", - "community": 254, + "community": 99, "norm_label": "hydrateinstance()" }, { @@ -180651,7 +180651,7 @@ "source_location": "L14662", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_hydratetextinstance", - "community": 21, + "community": 99, "norm_label": "hydratetextinstance()" }, { @@ -180661,7 +180661,7 @@ "source_location": "L14669", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_hydratesuspenseinstance", - "community": 254, + "community": 99, "norm_label": "hydratesuspenseinstance()" }, { @@ -180681,7 +180681,7 @@ "source_location": "L14703", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_getparentsuspenseinstance", - "community": 21, + "community": 84, "norm_label": "getparentsuspenseinstance()" }, { @@ -180691,7 +180691,7 @@ "source_location": "L14730", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_commithydratedcontainer", - "community": 630, + "community": 84, "norm_label": "commithydratedcontainer()" }, { @@ -180701,7 +180701,7 @@ "source_location": "L14734", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_commithydratedsuspenseinstance", - "community": 630, + "community": 84, "norm_label": "commithydratedsuspenseinstance()" }, { @@ -180721,7 +180721,7 @@ "source_location": "L14741", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_didnotmatchhydratedcontainertextinstance", - "community": 21, + "community": 99, "norm_label": "didnotmatchhydratedcontainertextinstance()" }, { @@ -180731,7 +180731,7 @@ "source_location": "L14745", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_didnotmatchhydratedtextinstance", - "community": 21, + "community": 99, "norm_label": "didnotmatchhydratedtextinstance()" }, { @@ -180841,7 +180841,7 @@ "source_location": "L14830", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_prepareportalmount", - "community": 88, + "community": 143, "norm_label": "prepareportalmount()" }, { @@ -180861,7 +180861,7 @@ "source_location": "L14850", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_precachefibernode", - "community": 254, + "community": 99, "norm_label": "precachefibernode()" }, { @@ -180901,7 +180901,7 @@ "source_location": "L14869", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_getclosestinstancefromnode", - "community": 21, + "community": 84, "norm_label": "getclosestinstancefromnode()" }, { @@ -180911,7 +180911,7 @@ "source_location": "L14952", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_getinstancefromnode", - "community": 21, + "community": 84, "norm_label": "getinstancefromnode()" }, { @@ -180921,7 +180921,7 @@ "source_location": "L14970", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_getnodefrominstance", - "community": 21, + "community": 184, "norm_label": "getnodefrominstance()" }, { @@ -180931,7 +180931,7 @@ "source_location": "L14981", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_getfibercurrentpropsfromnode", - "community": 21, + "community": 177, "norm_label": "getfibercurrentpropsfromnode()" }, { @@ -180941,7 +180941,7 @@ "source_location": "L14984", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_updatefiberprops", - "community": 254, + "community": 99, "norm_label": "updatefiberprops()" }, { @@ -181021,7 +181021,7 @@ "source_location": "L15207", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_popcontext", - "community": 254, + "community": 99, "norm_label": "popcontext()" }, { @@ -181031,7 +181031,7 @@ "source_location": "L15214", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_poptoplevelcontextobject", - "community": 254, + "community": 99, "norm_label": "poptoplevelcontextobject()" }, { @@ -181041,7 +181041,7 @@ "source_location": "L15221", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_pushtoplevelcontextobject", - "community": 74, + "community": 184, "norm_label": "pushtoplevelcontextobject()" }, { @@ -181051,7 +181051,7 @@ "source_location": "L15232", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_processchildcontext", - "community": 112, + "community": 84, "norm_label": "processchildcontext()" }, { @@ -181071,7 +181071,7 @@ "source_location": "L15285", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_invalidatecontextprovider", - "community": 184, + "community": 84, "norm_label": "invalidatecontextprovider()" }, { @@ -181081,7 +181081,7 @@ "source_location": "L15313", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_findcurrentunmaskedcontext", - "community": 74, + "community": 84, "norm_label": "findcurrentunmaskedcontext()" }, { @@ -181091,7 +181091,7 @@ "source_location": "L15353", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_schedulesynccallback", - "community": 143, + "community": 184, "norm_label": "schedulesynccallback()" }, { @@ -181101,7 +181101,7 @@ "source_location": "L15364", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_schedulelegacysynccallback", - "community": 143, + "community": 184, "norm_label": "schedulelegacysynccallback()" }, { @@ -181111,7 +181111,7 @@ "source_location": "L15368", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_flushsynccallbacksonlyinlegacymode", - "community": 143, + "community": 60, "norm_label": "flushsynccallbacksonlyinlegacymode()" }, { @@ -181121,7 +181121,7 @@ "source_location": "L15378", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_flushsynccallbacks", - "community": 143, + "community": 349, "norm_label": "flushsynccallbacks()" }, { @@ -181171,7 +181171,7 @@ "source_location": "L15468", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_pushtreeid", - "community": 74, + "community": 177, "norm_label": "pushtreeid()" }, { @@ -181211,7 +181211,7 @@ "source_location": "L15547", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_poptreecontext", - "community": 254, + "community": 99, "norm_label": "poptreecontext()" }, { @@ -181261,7 +181261,7 @@ "source_location": "L15618", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_markdidthrowwhilehydratingdev", - "community": 88, + "community": 143, "norm_label": "markdidthrowwhilehydratingdev()" }, { @@ -181381,7 +181381,7 @@ "source_location": "L15914", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_preparetohydratehostinstance", - "community": 254, + "community": 99, "norm_label": "preparetohydratehostinstance()" }, { @@ -181391,7 +181391,7 @@ "source_location": "L15930", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_preparetohydratehosttextinstance", - "community": 21, + "community": 99, "norm_label": "preparetohydratehosttextinstance()" }, { @@ -181401,7 +181401,7 @@ "source_location": "L15971", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_preparetohydratehostsuspenseinstance", - "community": 254, + "community": 99, "norm_label": "preparetohydratehostsuspenseinstance()" }, { @@ -181501,7 +181501,7 @@ "source_location": "L16098", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_requestcurrenttransition", - "community": 378, + "community": 60, "norm_label": "requestcurrenttransition()" }, { @@ -181511,7 +181511,7 @@ "source_location": "L16388", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_isreactclass", - "community": 112, + "community": 88, "norm_label": "isreactclass()" }, { @@ -181521,7 +181521,7 @@ "source_location": "L16392", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_coerceref", - "community": 112, + "community": 88, "norm_label": "coerceref()" }, { @@ -181581,7 +181581,7 @@ "source_location": "L17463", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_resetchildfibers", - "community": 254, + "community": 21, "norm_label": "resetchildfibers()" }, { @@ -181631,7 +181631,7 @@ "source_location": "L17519", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_popprovider", - "community": 254, + "community": 99, "norm_label": "popprovider()" }, { @@ -181641,7 +181641,7 @@ "source_location": "L17529", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_schedulecontextworkonparentpath", - "community": 378, + "community": 60, "norm_label": "schedulecontextworkonparentpath()" }, { @@ -181651,7 +181651,7 @@ "source_location": "L17559", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_propagatecontextchange", - "community": 378, + "community": 60, "norm_label": "propagatecontextchange()" }, { @@ -181661,7 +181661,7 @@ "source_location": "L17565", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_propagatecontextchange_eager", - "community": 378, + "community": 60, "norm_label": "propagatecontextchange_eager()" }, { @@ -181691,7 +181691,7 @@ "source_location": "L17759", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_pushconcurrentupdatequeue", - "community": 378, + "community": 60, "norm_label": "pushconcurrentupdatequeue()" }, { @@ -181711,7 +181711,7 @@ "source_location": "L17795", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_enqueueconcurrenthookupdate", - "community": 378, + "community": 60, "norm_label": "enqueueconcurrenthookupdate()" }, { @@ -181721,7 +181721,7 @@ "source_location": "L17812", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_enqueueconcurrenthookupdateandeagerlybailout", - "community": 378, + "community": 60, "norm_label": "enqueueconcurrenthookupdateandeagerlybailout()" }, { @@ -181731,7 +181731,7 @@ "source_location": "L17828", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_enqueueconcurrentclassupdate", - "community": 378, + "community": 60, "norm_label": "enqueueconcurrentclassupdate()" }, { @@ -181741,7 +181741,7 @@ "source_location": "L17845", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_enqueueconcurrentrenderforlane", - "community": 143, + "community": 60, "norm_label": "enqueueconcurrentrenderforlane()" }, { @@ -181751,7 +181751,7 @@ "source_location": "L17852", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_markupdatelanefromfibertoroot", - "community": 378, + "community": 60, "norm_label": "markupdatelanefromfibertoroot()" }, { @@ -181761,7 +181761,7 @@ "source_location": "L17913", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_initializeupdatequeue", - "community": 88, + "community": 74, "norm_label": "initializeupdatequeue()" }, { @@ -181781,7 +181781,7 @@ "source_location": "L17943", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_createupdate", - "community": 378, + "community": 60, "norm_label": "createupdate()" }, { @@ -181791,7 +181791,7 @@ "source_location": "L17954", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_enqueueupdate", - "community": 378, + "community": 60, "norm_label": "enqueueupdate()" }, { @@ -181801,7 +181801,7 @@ "source_location": "L17995", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_entangletransitions", - "community": 378, + "community": 60, "norm_label": "entangletransitions()" }, { @@ -181811,7 +181811,7 @@ "source_location": "L18022", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_enqueuecapturedupdate", - "community": 88, + "community": 143, "norm_label": "enqueuecapturedupdate()" }, { @@ -181831,7 +181831,7 @@ "source_location": "L18195", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_processupdatequeue", - "community": 378, + "community": 74, "norm_label": "processupdatequeue()" }, { @@ -181871,7 +181871,7 @@ "source_location": "L18422", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_requiredcontext", - "community": 254, + "community": 99, "norm_label": "requiredcontext()" }, { @@ -181881,7 +181881,7 @@ "source_location": "L18430", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_getroothostcontainer", - "community": 254, + "community": 99, "norm_label": "getroothostcontainer()" }, { @@ -181901,7 +181901,7 @@ "source_location": "L18454", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_pophostcontainer", - "community": 254, + "community": 99, "norm_label": "pophostcontainer()" }, { @@ -181911,7 +181911,7 @@ "source_location": "L18460", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_gethostcontext", - "community": 254, + "community": 99, "norm_label": "gethostcontext()" }, { @@ -181931,7 +181931,7 @@ "source_location": "L18480", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_pophostcontext", - "community": 254, + "community": 99, "norm_label": "pophostcontext()" }, { @@ -181951,7 +181951,7 @@ "source_location": "L18513", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_setdefaultshallowsuspensecontext", - "community": 74, + "community": 99, "norm_label": "setdefaultshallowsuspensecontext()" }, { @@ -181961,7 +181961,7 @@ "source_location": "L18516", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_setshallowsuspensecontext", - "community": 74, + "community": 99, "norm_label": "setshallowsuspensecontext()" }, { @@ -181981,7 +181981,7 @@ "source_location": "L18522", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_pushsuspensecontext", - "community": 74, + "community": 99, "norm_label": "pushsuspensecontext()" }, { @@ -181991,7 +181991,7 @@ "source_location": "L18525", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_popsuspensecontext", - "community": 254, + "community": 99, "norm_label": "popsuspensecontext()" }, { @@ -182001,7 +182001,7 @@ "source_location": "L18529", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_shouldcapturesuspense", - "community": 88, + "community": 143, "norm_label": "shouldcapturesuspense()" }, { @@ -182021,7 +182021,7 @@ "source_location": "L18618", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_resetworkinprogressversions", - "community": 254, + "community": 99, "norm_label": "resetworkinprogressversions()" }, { @@ -182051,7 +182051,7 @@ "source_location": "L18706", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_updatehooktypesdev", - "community": 112, + "community": 143, "norm_label": "updatehooktypesdev()" }, { @@ -182061,7 +182061,7 @@ "source_location": "L18720", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_checkdepsarearraydev", - "community": 161, + "community": 88, "norm_label": "checkdepsarearraydev()" }, { @@ -182071,7 +182071,7 @@ "source_location": "L18730", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_warnonhookmismatchindev", - "community": 112, + "community": 143, "norm_label": "warnonhookmismatchindev()" }, { @@ -182261,7 +182261,7 @@ "source_location": "L19468", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_updatestoreinstance", - "community": 143, + "community": 60, "norm_label": "updatestoreinstance()" }, { @@ -182271,7 +182271,7 @@ "source_location": "L19482", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_subscribetostore", - "community": 143, + "community": 60, "norm_label": "subscribetostore()" }, { @@ -182281,7 +182281,7 @@ "source_location": "L19496", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_checkifsnapshotchanged", - "community": 143, + "community": 60, "norm_label": "checkifsnapshotchanged()" }, { @@ -182291,7 +182291,7 @@ "source_location": "L19508", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_forcestorererender", - "community": 143, + "community": 60, "norm_label": "forcestorererender()" }, { @@ -182591,7 +182591,7 @@ "source_location": "L19917", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_getisupdatingopaquevalueinrenderphaseindev", - "community": 112, + "community": 143, "norm_label": "getisupdatingopaquevalueinrenderphaseindev()" }, { @@ -182621,7 +182621,7 @@ "source_location": "L19964", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_dispatchreduceraction", - "community": 378, + "community": 60, "norm_label": "dispatchreduceraction()" }, { @@ -182631,7 +182631,7 @@ "source_location": "L19995", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_dispatchsetstate", - "community": 378, + "community": 60, "norm_label": "dispatchsetstate()" }, { @@ -182641,7 +182641,7 @@ "source_location": "L20070", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_isrenderphaseupdate", - "community": 378, + "community": 60, "norm_label": "isrenderphaseupdate()" }, { @@ -182651,7 +182651,7 @@ "source_location": "L20075", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_enqueuerenderphaseupdate", - "community": 378, + "community": 60, "norm_label": "enqueuerenderphaseupdate()" }, { @@ -182661,7 +182661,7 @@ "source_location": "L20094", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_entangletransitionupdate", - "community": 378, + "community": 60, "norm_label": "entangletransitionupdate()" }, { @@ -182671,7 +182671,7 @@ "source_location": "L20113", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_markupdateindevtools", - "community": 378, + "community": 60, "norm_label": "markupdateindevtools()" }, { @@ -182691,7 +182691,7 @@ "source_location": "L21001", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_marknestedupdatescheduled", - "community": 143, + "community": 349, "norm_label": "marknestedupdatescheduled()" }, { @@ -182731,7 +182731,7 @@ "source_location": "L21025", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_recordcommittime", - "community": 143, + "community": 349, "norm_label": "recordcommittime()" }, { @@ -182811,7 +182811,7 @@ "source_location": "L21133", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_transferactualduration", - "community": 254, + "community": 99, "norm_label": "transferactualduration()" }, { @@ -182821,7 +182821,7 @@ "source_location": "L21145", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_resolvedefaultprops", - "community": 112, + "community": 74, "norm_label": "resolvedefaultprops()" }, { @@ -182931,7 +182931,7 @@ "source_location": "L21981", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_createcapturedvalueatfiber", - "community": 161, + "community": 74, "norm_label": "createcapturedvalueatfiber()" }, { @@ -182951,7 +182951,7 @@ "source_location": "L22003", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_showerrordialog", - "community": 88, + "community": 112, "norm_label": "showerrordialog()" }, { @@ -182961,7 +182961,7 @@ "source_location": "L22007", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_logcapturederror", - "community": 88, + "community": 112, "norm_label": "logcapturederror()" }, { @@ -182971,7 +182971,7 @@ "source_location": "L22078", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_createrooterrorupdate", - "community": 88, + "community": 60, "norm_label": "createrooterrorupdate()" }, { @@ -182991,7 +182991,7 @@ "source_location": "L22159", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_attachpinglistener", - "community": 88, + "community": 143, "norm_label": "attachpinglistener()" }, { @@ -183001,7 +183001,7 @@ "source_location": "L22204", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_attachretrylistener", - "community": 88, + "community": 143, "norm_label": "attachretrylistener()" }, { @@ -183011,7 +183011,7 @@ "source_location": "L22227", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_resetsuspendedcomponent", - "community": 88, + "community": 143, "norm_label": "resetsuspendedcomponent()" }, { @@ -183021,7 +183021,7 @@ "source_location": "L22247", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_getnearestsuspenseboundarytocapture", - "community": 88, + "community": 143, "norm_label": "getnearestsuspenseboundarytocapture()" }, { @@ -183031,7 +183031,7 @@ "source_location": "L22263", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_marksuspenseboundaryshouldcapture", - "community": 378, + "community": 60, "norm_label": "marksuspenseboundaryshouldcapture()" }, { @@ -183041,7 +183041,7 @@ "source_location": "L22371", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_throwexception", - "community": 88, + "community": 143, "norm_label": "throwexception()" }, { @@ -183291,7 +183291,7 @@ "source_location": "L23626", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_updatesuspenseoffscreenstate", - "community": 99, + "community": 60, "norm_label": "updatesuspenseoffscreenstate()" }, { @@ -183311,7 +183311,7 @@ "source_location": "L23657", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_getremainingworkinprimarytree", - "community": 99, + "community": 143, "norm_label": "getremainingworkinprimarytree()" }, { @@ -183431,7 +183431,7 @@ "source_location": "L24161", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_schedulesuspenseworkonfiber", - "community": 378, + "community": 60, "norm_label": "schedulesuspenseworkonfiber()" }, { @@ -183441,7 +183441,7 @@ "source_location": "L24172", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_propagatesuspensecontextchange", - "community": 74, + "community": 60, "norm_label": "propagatesuspensecontextchange()" }, { @@ -183461,7 +183461,7 @@ "source_location": "L24239", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_validaterevealorder", - "community": 74, + "community": 99, "norm_label": "validaterevealorder()" }, { @@ -183471,7 +183471,7 @@ "source_location": "L24275", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_validatetailoptions", - "community": 74, + "community": 99, "norm_label": "validatetailoptions()" }, { @@ -183481,7 +183481,7 @@ "source_location": "L24291", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_validatesuspenselistnestedchild", - "community": 161, + "community": 88, "norm_label": "validatesuspenselistnestedchild()" }, { @@ -183491,7 +183491,7 @@ "source_location": "L24308", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_validatesuspenselistchildren", - "community": 161, + "community": 88, "norm_label": "validatesuspenselistchildren()" }, { @@ -183501,7 +183501,7 @@ "source_location": "L24343", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_initsuspenselistrenderstate", - "community": 74, + "community": 99, "norm_label": "initsuspenselistrenderstate()" }, { @@ -183511,7 +183511,7 @@ "source_location": "L24373", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_updatesuspenselistcomponent", - "community": 74, + "community": 99, "norm_label": "updatesuspenselistcomponent()" }, { @@ -183621,7 +183621,7 @@ "source_location": "L25104", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_markupdate", - "community": 254, + "community": 99, "norm_label": "markupdate()" }, { @@ -183631,7 +183631,7 @@ "source_location": "L25110", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_markref_1", - "community": 254, + "community": 99, "norm_label": "markref$1()" }, { @@ -183641,7 +183641,7 @@ "source_location": "L25197", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_cutofftailifneeded", - "community": 254, + "community": 99, "norm_label": "cutofftailifneeded()" }, { @@ -183671,7 +183671,7 @@ "source_location": "L25457", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_completework", - "community": 254, + "community": 99, "norm_label": "completework()" }, { @@ -183681,7 +183681,7 @@ "source_location": "L26034", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_unwindwork", - "community": 254, + "community": 99, "norm_label": "unwindwork()" }, { @@ -183691,7 +183691,7 @@ "source_location": "L26150", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_unwindinterruptedwork", - "community": 254, + "community": 99, "norm_label": "unwindinterruptedwork()" }, { @@ -183861,7 +183861,7 @@ "source_location": "L26944", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_hideorunhideallchildren", - "community": 112, + "community": 21, "norm_label": "hideorunhideallchildren()" }, { @@ -184001,7 +184001,7 @@ "source_location": "L27574", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_commitsuspensehydrationcallbacks", - "community": 630, + "community": 84, "norm_label": "commitsuspensehydrationcallbacks()" }, { @@ -184011,7 +184011,7 @@ "source_location": "L27595", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_attachsuspenseretrylisteners", - "community": 88, + "community": 143, "norm_label": "attachsuspenseretrylisteners()" }, { @@ -184051,7 +184051,7 @@ "source_location": "L27976", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_commitreconciliationeffects", - "community": 112, + "community": 21, "norm_label": "commitreconciliationeffects()" }, { @@ -184061,7 +184061,7 @@ "source_location": "L28001", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_commitlayouteffects", - "community": 143, + "community": 112, "norm_label": "commitlayouteffects()" }, { @@ -184071,7 +184071,7 @@ "source_location": "L28010", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_commitlayouteffects_begin", - "community": 143, + "community": 112, "norm_label": "commitlayouteffects_begin()" }, { @@ -184111,7 +184111,7 @@ "source_location": "L28197", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_reappearlayouteffects_begin", - "community": 143, + "community": 112, "norm_label": "reappearlayouteffects_begin()" }, { @@ -184281,7 +184281,7 @@ "source_location": "L28624", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_oncommitroot_1", - "community": 143, + "community": 349, "norm_label": "oncommitroot$1()" }, { @@ -184301,7 +184301,7 @@ "source_location": "L28646", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_isconcurrentactenvironment", - "community": 112, + "community": 88, "norm_label": "isconcurrentactenvironment()" }, { @@ -184311,7 +184311,7 @@ "source_location": "L28735", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_resetrendertimer", - "community": 143, + "community": 60, "norm_label": "resetrendertimer()" }, { @@ -184321,7 +184321,7 @@ "source_location": "L28739", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_getrendertargettime", - "community": 254, + "community": 99, "norm_label": "getrendertargettime()" }, { @@ -184341,7 +184341,7 @@ "source_location": "L28768", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_requesteventtime", - "community": 143, + "community": 60, "norm_label": "requesteventtime()" }, { @@ -184351,7 +184351,7 @@ "source_location": "L28784", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_requestupdatelane", - "community": 378, + "community": 60, "norm_label": "requestupdatelane()" }, { @@ -184371,7 +184371,7 @@ "source_location": "L28867", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_scheduleupdateonfiber", - "community": 143, + "community": 60, "norm_label": "scheduleupdateonfiber()" }, { @@ -184381,7 +184381,7 @@ "source_location": "L28938", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_scheduleinitialhydrationonroot", - "community": 143, + "community": 60, "norm_label": "scheduleinitialhydrationonroot()" }, { @@ -184391,7 +184391,7 @@ "source_location": "L28953", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_isunsafeclassrenderphaseupdate", - "community": 378, + "community": 60, "norm_label": "isunsafeclassrenderphaseupdate()" }, { @@ -184401,7 +184401,7 @@ "source_location": "L28966", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_ensurerootisscheduled", - "community": 143, + "community": 184, "norm_label": "ensurerootisscheduled()" }, { @@ -184441,7 +184441,7 @@ "source_location": "L29270", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_finishconcurrentrender", - "community": 143, + "community": 60, "norm_label": "finishconcurrentrender()" }, { @@ -184481,7 +184481,7 @@ "source_location": "L29517", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_flushroot", - "community": 143, + "community": 60, "norm_label": "flushroot()" }, { @@ -184491,7 +184491,7 @@ "source_location": "L29528", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_batchedupdates_1", - "community": 143, + "community": 60, "norm_label": "batchedupdates$1()" }, { @@ -184501,7 +184501,7 @@ "source_location": "L29545", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_discreteupdates", - "community": 143, + "community": 349, "norm_label": "discreteupdates()" }, { @@ -184511,7 +184511,7 @@ "source_location": "L29565", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_flushsync", - "community": 143, + "community": 349, "norm_label": "flushsync()" }, { @@ -184521,7 +184521,7 @@ "source_location": "L29598", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_isalreadyrendering", - "community": 143, + "community": 349, "norm_label": "isalreadyrendering()" }, { @@ -184531,7 +184531,7 @@ "source_location": "L29603", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_pushrenderlanes", - "community": 184, + "community": 60, "norm_label": "pushrenderlanes()" }, { @@ -184541,7 +184541,7 @@ "source_location": "L29608", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_poprenderlanes", - "community": 254, + "community": 99, "norm_label": "poprenderlanes()" }, { @@ -184601,7 +184601,7 @@ "source_location": "L29748", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_markskippedupdatelanes", - "community": 378, + "community": 74, "norm_label": "markskippedupdatelanes()" }, { @@ -184611,7 +184611,7 @@ "source_location": "L29751", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_renderdidsuspend", - "community": 254, + "community": 99, "norm_label": "renderdidsuspend()" }, { @@ -184631,7 +184631,7 @@ "source_location": "L29774", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_renderdiderror", - "community": 88, + "community": 143, "norm_label": "renderdiderror()" }, { @@ -184641,7 +184641,7 @@ "source_location": "L29787", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_renderhasnotsuspendedyet", - "community": 254, + "community": 99, "norm_label": "renderhasnotsuspendedyet()" }, { @@ -184711,7 +184711,7 @@ "source_location": "L30066", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_commitroot", - "community": 143, + "community": 349, "norm_label": "commitroot()" }, { @@ -184721,7 +184721,7 @@ "source_location": "L30084", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_commitrootimpl", - "community": 143, + "community": 349, "norm_label": "commitrootimpl()" }, { @@ -184731,7 +184731,7 @@ "source_location": "L30361", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_flushpassiveeffects", - "community": 143, + "community": 349, "norm_label": "flushpassiveeffects()" }, { @@ -184761,7 +184761,7 @@ "source_location": "L30485", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_isalreadyfailedlegacyerrorboundary", - "community": 88, + "community": 143, "norm_label": "isalreadyfailedlegacyerrorboundary()" }, { @@ -184791,7 +184791,7 @@ "source_location": "L30505", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_capturecommitphaseerroronroot", - "community": 143, + "community": 60, "norm_label": "capturecommitphaseerroronroot()" }, { @@ -184811,7 +184811,7 @@ "source_location": "L30571", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_pingsuspendedroot", - "community": 143, + "community": 60, "norm_label": "pingsuspendedroot()" }, { @@ -184821,7 +184821,7 @@ "source_location": "L30605", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_retrytimedoutboundary", - "community": 143, + "community": 60, "norm_label": "retrytimedoutboundary()" }, { @@ -184831,7 +184831,7 @@ "source_location": "L30626", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_retrydehydratedsuspenseboundary", - "community": 143, + "community": 60, "norm_label": "retrydehydratedsuspenseboundary()" }, { @@ -184841,7 +184841,7 @@ "source_location": "L30636", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_resolveretrywakeable", - "community": 143, + "community": 60, "norm_label": "resolveretrywakeable()" }, { @@ -184851,7 +184851,7 @@ "source_location": "L30677", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_jnd", - "community": 143, + "community": 60, "norm_label": "jnd()" }, { @@ -184861,7 +184861,7 @@ "source_location": "L30681", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_checkfornestedupdates", - "community": 143, + "community": 60, "norm_label": "checkfornestedupdates()" }, { @@ -184871,7 +184871,7 @@ "source_location": "L30698", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_flushrenderphasestrictmodewarningsindev", - "community": 143, + "community": 349, "norm_label": "flushrenderphasestrictmodewarningsindev()" }, { @@ -184911,7 +184911,7 @@ "source_location": "L30869", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_warnaboutrenderphaseupdatesindev", - "community": 112, + "community": 143, "norm_label": "warnaboutrenderphaseupdatesindev()" }, { @@ -184921,7 +184921,7 @@ "source_location": "L30906", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_restorependingupdaters", - "community": 88, + "community": 143, "norm_label": "restorependingupdaters()" }, { @@ -184941,7 +184941,7 @@ "source_location": "L30935", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_cancelcallback_1", - "community": 143, + "community": 184, "norm_label": "cancelcallback$1()" }, { @@ -184951,7 +184951,7 @@ "source_location": "L30944", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_shouldforceflushfallbacksindev", - "community": 143, + "community": 60, "norm_label": "shouldforceflushfallbacksindev()" }, { @@ -184971,7 +184971,7 @@ "source_location": "L30994", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_warnifsuspenseresolutionnotwrappedwithactdev", - "community": 112, + "community": 88, "norm_label": "warnifsuspenseresolutionnotwrappedwithactdev()" }, { @@ -185041,7 +185041,7 @@ "source_location": "L31209", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_schedulefiberswithfamiliesrecursively", - "community": 143, + "community": 60, "norm_label": "schedulefiberswithfamiliesrecursively()" }, { @@ -185131,7 +185131,7 @@ "source_location": "L31630", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_resetworkinprogress", - "community": 254, + "community": 21, "norm_label": "resetworkinprogress()" }, { @@ -185181,7 +185181,7 @@ "source_location": "L31873", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_createfiberfromprofiler", - "community": 74, + "community": 88, "norm_label": "createfiberfromprofiler()" }, { @@ -185301,7 +185301,7 @@ "source_location": "L32106", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_getcontextforsubtree", - "community": 74, + "community": 84, "norm_label": "getcontextforsubtree()" }, { @@ -185331,7 +185331,7 @@ "source_location": "L32180", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_createhydrationcontainer", - "community": 378, + "community": 88, "norm_label": "createhydrationcontainer()" }, { @@ -185341,7 +185341,7 @@ "source_location": "L32201", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_updatecontainer", - "community": 378, + "community": 60, "norm_label": "updatecontainer()" }, { @@ -185361,7 +185361,7 @@ "source_location": "L32272", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_attemptsynchronoushydration_1", - "community": 143, + "community": 60, "norm_label": "attemptsynchronoushydration$1()" }, { @@ -185381,7 +185381,7 @@ "source_location": "L32316", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_markretrylaneifnothydrated", - "community": 143, + "community": 60, "norm_label": "markretrylaneifnothydrated()" }, { @@ -185391,7 +185391,7 @@ "source_location": "L32324", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_attemptcontinuoushydration_1", - "community": 143, + "community": 60, "norm_label": "attemptcontinuoushydration$1()" }, { @@ -185401,7 +185401,7 @@ "source_location": "L32343", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_attempthydrationatcurrentpriority_1", - "community": 143, + "community": 60, "norm_label": "attempthydrationatcurrentpriority$1()" }, { @@ -185511,7 +185511,7 @@ "source_location": "L32787", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_schedulehydration", - "community": 21, + "community": 84, "norm_label": "schedulehydration()" }, { @@ -185631,7 +185631,7 @@ "source_location": "L33068", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_render", - "community": 74, + "community": 88, "norm_label": "render()" }, { @@ -185701,7 +185701,7 @@ "source_location": "L33225", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_react_flushsync_1", - "community": 143, + "community": 349, "norm_label": "flushsync$1()" }, { @@ -186391,7 +186391,7 @@ "source_location": "L6103", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_resolvestyleconfig", - "community": 40, + "community": 623, "norm_label": "resolvestyleconfig()" }, { @@ -187411,7 +187411,7 @@ "source_location": "L11833", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_usecolormode", - "community": 40, + "community": 623, "norm_label": "usecolormode()" }, { @@ -187511,7 +187511,7 @@ "source_location": "L12375", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_globalstyle", - "community": 40, + "community": 623, "norm_label": "globalstyle()" }, { @@ -187731,7 +187731,7 @@ "source_location": "L13069", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_warnonce", - "community": 426, + "community": 255, "norm_label": "warnonce()" }, { @@ -187751,7 +187751,7 @@ "source_location": "L13129", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_isvariantlabel", - "community": 255, + "community": 40, "norm_label": "isvariantlabel()" }, { @@ -187791,7 +187791,7 @@ "source_location": "L13164", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_getcurrenttreevariants", - "community": 255, + "community": 40, "norm_label": "getcurrenttreevariants()" }, { @@ -187801,7 +187801,7 @@ "source_location": "L13176", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_usecreatemotioncontext", - "community": 255, + "community": 40, "norm_label": "usecreatemotioncontext()" }, { @@ -187811,7 +187811,7 @@ "source_location": "L13180", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_variantlabelsasdependency", - "community": 255, + "community": 40, "norm_label": "variantlabelsasdependency()" }, { @@ -187921,7 +187921,7 @@ "source_location": "L13457", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_getvaluestate", - "community": 440, + "community": 424, "norm_label": "getvaluestate()" }, { @@ -187931,7 +187931,7 @@ "source_location": "L13465", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_resolvevariantfromprops", - "community": 440, + "community": 424, "norm_label": "resolvevariantfromprops()" }, { @@ -188051,7 +188051,7 @@ "source_location": "L13990", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_addscalecorrector", - "community": 426, + "community": 255, "norm_label": "addscalecorrector()" }, { @@ -188071,7 +188071,7 @@ "source_location": "L14000", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_scrapemotionvaluesfromprops", - "community": 727, + "community": 255, "norm_label": "scrapemotionvaluesfromprops()" }, { @@ -188081,7 +188081,7 @@ "source_location": "L14013", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_scrapemotionvaluesfromprops2", - "community": 727, + "community": 255, "norm_label": "scrapemotionvaluesfromprops2()" }, { @@ -188531,7 +188531,7 @@ "source_location": "L14724", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_adduniqueitem", - "community": 426, + "community": 255, "norm_label": "adduniqueitem()" }, { @@ -188551,7 +188551,7 @@ "source_location": "L14739", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_add", - "community": 426, + "community": 255, "norm_label": "add()" }, { @@ -188621,7 +188621,7 @@ "source_location": "L14860", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_onchange", - "community": 426, + "community": 255, "norm_label": "onchange()" }, { @@ -188631,7 +188631,7 @@ "source_location": "L14866", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_on", - "community": 426, + "community": 255, "norm_label": "on()" }, { @@ -188681,7 +188681,7 @@ "source_location": "L14929", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_jump", - "community": 424, + "community": 440, "norm_label": "jump()" }, { @@ -188751,7 +188751,7 @@ "source_location": "L15032", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_destroy", - "community": 112, + "community": 426, "norm_label": "destroy()" }, { @@ -188761,7 +188761,7 @@ "source_location": "L15040", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_motionvalue", - "community": 424, + "community": 440, "norm_label": "motionvalue()" }, { @@ -188771,7 +188771,7 @@ "source_location": "L15045", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_setmotionvalue", - "community": 424, + "community": 440, "norm_label": "setmotionvalue()" }, { @@ -189021,7 +189021,7 @@ "source_location": "L15613", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_measureinitialstate", - "community": 424, + "community": 440, "norm_label": "measureinitialstate()" }, { @@ -189041,7 +189041,7 @@ "source_location": "L15617", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_measureendstate", - "community": 424, + "community": 440, "norm_label": "measureendstate()" }, { @@ -189621,7 +189621,7 @@ "source_location": "L17310", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_getvariantcontext", - "community": 255, + "community": 40, "norm_label": "getvariantcontext()" }, { @@ -189631,7 +189631,7 @@ "source_location": "L17334", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_animatelist", - "community": 255, + "community": 40, "norm_label": "animatelist()" }, { @@ -189641,7 +189641,7 @@ "source_location": "L17337", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_createanimationstate", - "community": 255, + "community": 40, "norm_label": "createanimationstate()" }, { @@ -189661,7 +189661,7 @@ "source_location": "L17498", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_createtypestate", - "community": 255, + "community": 40, "norm_label": "createtypestate()" }, { @@ -189671,7 +189671,7 @@ "source_location": "L17506", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_createstate", - "community": 255, + "community": 40, "norm_label": "createstate()" }, { @@ -189681,7 +189681,7 @@ "source_location": "L17525", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_update", - "community": 426, + "community": 255, "norm_label": "update()" }, { @@ -189691,7 +189691,7 @@ "source_location": "L17540", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_updateanimationcontrolssubscription", - "community": 426, + "community": 255, "norm_label": "updateanimationcontrolssubscription()" }, { @@ -189701,7 +189701,7 @@ "source_location": "L17549", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_mount", - "community": 426, + "community": 255, "norm_label": "mount()" }, { @@ -189721,7 +189721,7 @@ "source_location": "L17624", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_adddomevent", - "community": 426, + "community": 255, "norm_label": "adddomevent()" }, { @@ -189741,7 +189741,7 @@ "source_location": "L17644", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_addpointerevent", - "community": 426, + "community": 255, "norm_label": "addpointerevent()" }, { @@ -190341,7 +190341,7 @@ "source_location": "L18352", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_addlisteners", - "community": 426, + "community": 255, "norm_label": "addlisteners()" }, { @@ -190381,7 +190381,7 @@ "source_location": "L18454", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_onpointerdown", - "community": 426, + "community": 255, "norm_label": "onpointerdown()" }, { @@ -190391,7 +190391,7 @@ "source_location": "L18460", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_createpanhandlers", - "community": 426, + "community": 255, "norm_label": "createpanhandlers()" }, { @@ -190411,7 +190411,7 @@ "source_location": "L18560", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_componentdidmount", - "community": 426, + "community": 255, "norm_label": "componentdidmount()" }, { @@ -191021,7 +191021,7 @@ "source_location": "L20186", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_initintersectionobserver", - "community": 440, + "community": 426, "norm_label": "initintersectionobserver()" }, { @@ -191031,7 +191031,7 @@ "source_location": "L20198", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_observeintersection", - "community": 440, + "community": 426, "norm_label": "observeintersection()" }, { @@ -191051,7 +191051,7 @@ "source_location": "L20262", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_hasviewportoptionchanged", - "community": 426, + "community": 255, "norm_label": "hasviewportoptionchanged()" }, { @@ -191061,7 +191061,7 @@ "source_location": "L20313", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_initprefersreducedmotion", - "community": 426, + "community": 255, "norm_label": "initprefersreducedmotion()" }, { @@ -191071,7 +191071,7 @@ "source_location": "L20338", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_updatemotionvaluesfromprops", - "community": 424, + "community": 440, "norm_label": "updatemotionvaluesfromprops()" }, { @@ -191111,7 +191111,7 @@ "source_location": "L20488", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_bindtomotionvalue", - "community": 426, + "community": 255, "norm_label": "bindtomotionvalue()" }, { @@ -191131,7 +191131,7 @@ "source_location": "L20520", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_updatefeatures", - "community": 426, + "community": 255, "norm_label": "updatefeatures()" }, { @@ -191151,7 +191151,7 @@ "source_location": "L20552", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_getstaticvalue", - "community": 424, + "community": 440, "norm_label": "getstaticvalue()" }, { @@ -191201,7 +191201,7 @@ "source_location": "L20606", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_getclosestvariantnode", - "community": 426, + "community": 255, "norm_label": "getclosestvariantnode()" }, { @@ -191211,7 +191211,7 @@ "source_location": "L20612", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_addvariantchild", - "community": 426, + "community": 255, "norm_label": "addvariantchild()" }, { @@ -191221,7 +191221,7 @@ "source_location": "L20622", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_addvalue", - "community": 424, + "community": 440, "norm_label": "addvalue()" }, { @@ -191231,7 +191231,7 @@ "source_location": "L20635", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_removevalue", - "community": 424, + "community": 440, "norm_label": "removevalue()" }, { @@ -191241,7 +191241,7 @@ "source_location": "L20648", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_hasvalue", - "community": 424, + "community": 440, "norm_label": "hasvalue()" }, { @@ -191251,7 +191251,7 @@ "source_location": "L20651", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_getvalue", - "community": 424, + "community": 440, "norm_label": "getvalue()" }, { @@ -191281,7 +191281,7 @@ "source_location": "L20691", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_getbasetarget", - "community": 440, + "community": 424, "norm_label": "getbasetarget()" }, { @@ -191301,7 +191301,7 @@ "source_location": "L20731", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_getbasetargetfromprops", - "community": 440, + "community": 424, "norm_label": "getbasetargetfromprops()" }, { @@ -191311,7 +191311,7 @@ "source_location": "L20734", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_removevaluefromrenderstate", - "community": 424, + "community": 440, "norm_label": "removevaluefromrenderstate()" }, { @@ -191321,7 +191321,7 @@ "source_location": "L20738", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_handlechildmotionvalue", - "community": 426, + "community": 255, "norm_label": "handlechildmotionvalue()" }, { @@ -191331,7 +191331,7 @@ "source_location": "L20755", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_getcomputedstyle", - "community": 424, + "community": 440, "norm_label": "getcomputedstyle()" }, { @@ -191341,7 +191341,7 @@ "source_location": "L20764", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_readvaluefrominstance", - "community": 424, + "community": 440, "norm_label": "readvaluefrominstance()" }, { @@ -191431,7 +191431,7 @@ "source_location": "L21226", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_styled2", - "community": 40, + "community": 623, "norm_label": "styled2()" }, { @@ -191441,7 +191441,7 @@ "source_location": "L21252", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_factory", - "community": 40, + "community": 623, "norm_label": "factory()" }, { @@ -191461,7 +191461,7 @@ "source_location": "L21423", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_usetheme2", - "community": 40, + "community": 623, "norm_label": "usetheme2()" }, { @@ -191471,7 +191471,7 @@ "source_location": "L21436", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_usechakra", - "community": 40, + "community": 623, "norm_label": "usechakra()" }, { @@ -191481,7 +191481,7 @@ "source_location": "L21443", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_omitreactelements", - "community": 40, + "community": 623, "norm_label": "omitreactelements()" }, { @@ -191491,7 +191491,7 @@ "source_location": "L21450", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_usestyleconfigimpl", - "community": 40, + "community": 623, "norm_label": "usestyleconfigimpl()" }, { @@ -191501,7 +191501,7 @@ "source_location": "L21472", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_usestyleconfig", - "community": 40, + "community": 623, "norm_label": "usestyleconfig()" }, { @@ -191511,7 +191511,7 @@ "source_location": "L21475", "_origin": "ast", "id": "docs_design_thingtime_landing_1g_magic_path_bar_ds_thingtime_bundle_usemultistyleconfig", - "community": 40, + "community": 623, "norm_label": "usemultistyleconfig()" }, { @@ -192271,7 +192271,7 @@ "source_location": "L166", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_error", - "community": 116, + "community": 412, "norm_label": "error()" }, { @@ -192291,7 +192291,7 @@ "source_location": "L205", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_warnnoop", - "community": 116, + "community": 412, "norm_label": "warnnoop()" }, { @@ -192371,7 +192371,7 @@ "source_location": "L445", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_typename", - "community": 172, + "community": 412, "norm_label": "typename()" }, { @@ -192381,7 +192381,7 @@ "source_location": "L455", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_willcoercionthrow", - "community": 172, + "community": 412, "norm_label": "willcoercionthrow()" }, { @@ -192391,7 +192391,7 @@ "source_location": "L466", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_teststringcoercion", - "community": 172, + "community": 412, "norm_label": "teststringcoercion()" }, { @@ -192401,7 +192401,7 @@ "source_location": "L492", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_checkkeystringcoercion", - "community": 172, + "community": 412, "norm_label": "checkkeystringcoercion()" }, { @@ -192441,7 +192441,7 @@ "source_location": "L616", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_hasvalidref", - "community": 354, + "community": 412, "norm_label": "hasvalidref()" }, { @@ -192451,7 +192451,7 @@ "source_location": "L630", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_hasvalidkey", - "community": 354, + "community": 412, "norm_label": "hasvalidkey()" }, { @@ -192461,7 +192461,7 @@ "source_location": "L644", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_definekeypropwarninggetter", - "community": 354, + "community": 412, "norm_label": "definekeypropwarninggetter()" }, { @@ -192471,7 +192471,7 @@ "source_location": "L662", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_definerefpropwarninggetter", - "community": 354, + "community": 412, "norm_label": "definerefpropwarninggetter()" }, { @@ -192481,7 +192481,7 @@ "source_location": "L680", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_warnifstringrefcannotbeautoconverted", - "community": 354, + "community": 412, "norm_label": "warnifstringrefcannotbeautoconverted()" }, { @@ -192491,7 +192491,7 @@ "source_location": "L773", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_createelement", - "community": 354, + "community": 412, "norm_label": "createelement()" }, { @@ -192511,7 +192511,7 @@ "source_location": "L867", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_cloneelement", - "community": 354, + "community": 412, "norm_label": "cloneelement()" }, { @@ -192531,7 +192531,7 @@ "source_location": "L960", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_escape", - "community": 172, + "community": 412, "norm_label": "escape()" }, { @@ -192551,7 +192551,7 @@ "source_location": "L992", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_getelementkey", - "community": 172, + "community": 412, "norm_label": "getelementkey()" }, { @@ -192631,7 +192631,7 @@ "source_location": "L1344", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_lazyinitializer", - "community": 116, + "community": 412, "norm_label": "lazyinitializer()" }, { @@ -192641,7 +192641,7 @@ "source_location": "L1401", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_lazy", - "community": 116, + "community": 412, "norm_label": "lazy()" }, { @@ -192651,7 +192651,7 @@ "source_location": "L1457", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_forwardref", - "community": 116, + "community": 412, "norm_label": "forwardref()" }, { @@ -193071,7 +193071,7 @@ "source_location": "L2422", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_peek", - "community": 642, + "community": 216, "norm_label": "peek()" }, { @@ -193081,7 +193081,7 @@ "source_location": "L2425", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_pop", - "community": 169, + "community": 354, "norm_label": "pop()" }, { @@ -193091,7 +193091,7 @@ "source_location": "L2441", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_siftup", - "community": 216, + "community": 354, "norm_label": "siftup()" }, { @@ -193101,7 +193101,7 @@ "source_location": "L2460", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_siftdown", - "community": 216, + "community": 354, "norm_label": "siftdown()" }, { @@ -193111,7 +193111,7 @@ "source_location": "L2492", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_compare", - "community": 216, + "community": 354, "norm_label": "compare()" }, { @@ -193121,7 +193121,7 @@ "source_location": "L2505", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_marktaskerrored", - "community": 642, + "community": 216, "norm_label": "marktaskerrored()" }, { @@ -193131,7 +193131,7 @@ "source_location": "L2557", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_advancetimers", - "community": 642, + "community": 216, "norm_label": "advancetimers()" }, { @@ -193141,7 +193141,7 @@ "source_location": "L2579", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_handletimeout", - "community": 642, + "community": 216, "norm_label": "handletimeout()" }, { @@ -193151,7 +193151,7 @@ "source_location": "L2597", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_flushwork", - "community": 642, + "community": 216, "norm_label": "flushwork()" }, { @@ -193161,7 +193161,7 @@ "source_location": "L2635", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_workloop", - "community": 642, + "community": 216, "norm_label": "workloop()" }, { @@ -193171,7 +193171,7 @@ "source_location": "L2687", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_unstable_runwithpriority", - "community": 431, + "community": 314, "norm_label": "unstable_runwithpriority()" }, { @@ -193181,7 +193181,7 @@ "source_location": "L2710", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_unstable_next", - "community": 431, + "community": 314, "norm_label": "unstable_next()" }, { @@ -193201,7 +193201,7 @@ "source_location": "L2752", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_unstable_schedulecallback", - "community": 642, + "community": 216, "norm_label": "unstable_schedulecallback()" }, { @@ -193221,7 +193221,7 @@ "source_location": "L2838", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_unstable_continueexecution", - "community": 642, + "community": 216, "norm_label": "unstable_continueexecution()" }, { @@ -193231,7 +193231,7 @@ "source_location": "L2846", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_unstable_getfirstcallbacknode", - "community": 642, + "community": 216, "norm_label": "unstable_getfirstcallbacknode()" }, { @@ -193261,7 +193261,7 @@ "source_location": "L2872", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_shouldyieldtohost", - "community": 642, + "community": 216, "norm_label": "shouldyieldtohost()" }, { @@ -193271,7 +193271,7 @@ "source_location": "L2885", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_requestpaint", - "community": 270, + "community": 222, "norm_label": "requestpaint()" }, { @@ -193291,7 +193291,7 @@ "source_location": "L2970", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_requesthostcallback", - "community": 642, + "community": 216, "norm_label": "requesthostcallback()" }, { @@ -193301,7 +193301,7 @@ "source_location": "L2979", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_requesthosttimeout", - "community": 642, + "community": 216, "norm_label": "requesthosttimeout()" }, { @@ -193311,7 +193311,7 @@ "source_location": "L2985", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_cancelhosttimeout", - "community": 642, + "community": 216, "norm_label": "cancelhosttimeout()" }, { @@ -193331,7 +193331,7 @@ "source_location": "L3035", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_starttransition", - "community": 270, + "community": 222, "norm_label": "starttransition()" }, { @@ -193341,7 +193341,7 @@ "source_location": "L3065", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_enqueuetask", - "community": 116, + "community": 412, "norm_label": "enqueuetask()" }, { @@ -193351,7 +193351,7 @@ "source_location": "L3102", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_act", - "community": 116, + "community": 412, "norm_label": "act()" }, { @@ -193361,7 +193361,7 @@ "source_location": "L3229", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_popactscope", - "community": 116, + "community": 412, "norm_label": "popactscope()" }, { @@ -193371,7 +193371,7 @@ "source_location": "L3239", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_recursivelyflushasyncactwork", - "community": 116, + "community": 412, "norm_label": "recursivelyflushasyncactwork()" }, { @@ -193381,7 +193381,7 @@ "source_location": "L3267", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_flushactqueue", - "community": 116, + "community": 412, "norm_label": "flushactqueue()" }, { @@ -193421,7 +193421,7 @@ "source_location": "L3593", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_checkattributestringcoercion", - "community": 172, + "community": 412, "norm_label": "checkattributestringcoercion()" }, { @@ -193431,7 +193431,7 @@ "source_location": "L3611", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_checkpropstringcoercion", - "community": 172, + "community": 412, "norm_label": "checkpropstringcoercion()" }, { @@ -193441,7 +193441,7 @@ "source_location": "L3620", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_checkcsspropertystringcoercion", - "community": 172, + "community": 412, "norm_label": "checkcsspropertystringcoercion()" }, { @@ -193451,7 +193451,7 @@ "source_location": "L3629", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_checkhtmlstringcoercion", - "community": 172, + "community": 412, "norm_label": "checkhtmlstringcoercion()" }, { @@ -193461,7 +193461,7 @@ "source_location": "L3638", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_checkformfieldvaluestringcoercion", - "community": 172, + "community": 412, "norm_label": "checkformfieldvaluestringcoercion()" }, { @@ -193721,7 +193721,7 @@ "source_location": "L4932", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_ischeckable", - "community": 172, + "community": 25, "norm_label": "ischeckable()" }, { @@ -193731,7 +193731,7 @@ "source_location": "L4938", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_gettracker", - "community": 172, + "community": 25, "norm_label": "gettracker()" }, { @@ -193741,7 +193741,7 @@ "source_location": "L4942", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_detachtracker", - "community": 172, + "community": 25, "norm_label": "detachtracker()" }, { @@ -193751,7 +193751,7 @@ "source_location": "L4946", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_getvaluefromnode", - "community": 172, + "community": 25, "norm_label": "getvaluefromnode()" }, { @@ -193761,7 +193761,7 @@ "source_location": "L4962", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_trackvalueonnode", - "community": 172, + "community": 25, "norm_label": "trackvalueonnode()" }, { @@ -193771,7 +193771,7 @@ "source_location": "L5021", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_track", - "community": 172, + "community": 25, "norm_label": "track()" }, { @@ -193781,7 +193781,7 @@ "source_location": "L5029", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_updatevalueifchanged", - "community": 172, + "community": 25, "norm_label": "updatevalueifchanged()" }, { @@ -194031,7 +194031,7 @@ "source_location": "L5705", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_getintrinsicnamespace", - "community": 354, + "community": 25, "norm_label": "getintrinsicnamespace()" }, { @@ -194041,7 +194041,7 @@ "source_location": "L5717", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_getchildnamespace", - "community": 354, + "community": 25, "norm_label": "getchildnamespace()" }, { @@ -194061,7 +194061,7 @@ "source_location": "L5952", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_dangerousstylevalue", - "community": 172, + "community": 25, "norm_label": "dangerousstylevalue()" }, { @@ -194071,7 +194071,7 @@ "source_location": "L5995", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_hyphenatestylename", - "community": 172, + "community": 25, "norm_label": "hyphenatestylename()" }, { @@ -194081,7 +194081,7 @@ "source_location": "L6104", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_createdangerousstringforstyles", - "community": 172, + "community": 25, "norm_label": "createdangerousstringforstyles()" }, { @@ -194151,7 +194151,7 @@ "source_location": "L6880", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_validateproperty", - "community": 216, + "community": 412, "norm_label": "validateproperty()" }, { @@ -194161,7 +194161,7 @@ "source_location": "L6930", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_warninvalidariaprops", - "community": 216, + "community": 412, "norm_label": "warninvalidariaprops()" }, { @@ -194171,7 +194171,7 @@ "source_location": "L6954", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_validateproperties", - "community": 216, + "community": 412, "norm_label": "validateproperties()" }, { @@ -194181,7 +194181,7 @@ "source_location": "L6963", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_validateproperties_1", - "community": 116, + "community": 412, "norm_label": "validateproperties$1()" }, { @@ -194231,7 +194231,7 @@ "source_location": "L7204", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_geteventtarget", - "community": 25, + "community": 642, "norm_label": "geteventtarget()" }, { @@ -194241,7 +194241,7 @@ "source_location": "L7222", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_restorestateoftarget", - "community": 25, + "community": 642, "norm_label": "restorestateoftarget()" }, { @@ -194271,7 +194271,7 @@ "source_location": "L7259", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_needsstaterestore", - "community": 25, + "community": 642, "norm_label": "needsstaterestore()" }, { @@ -194281,7 +194281,7 @@ "source_location": "L7262", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_restorestateifneeded", - "community": 25, + "community": 642, "norm_label": "restorestateifneeded()" }, { @@ -194291,7 +194291,7 @@ "source_location": "L7294", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_finisheventhandler", - "community": 25, + "community": 642, "norm_label": "finisheventhandler()" }, { @@ -194301,7 +194301,7 @@ "source_location": "L7312", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_batchedupdates", - "community": 25, + "community": 642, "norm_label": "batchedupdates()" }, { @@ -194351,7 +194351,7 @@ "source_location": "L7410", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_invokeguardedcallbackprod", - "community": 116, + "community": 412, "norm_label": "invokeguardedcallbackprod()" }, { @@ -194411,7 +194411,7 @@ "source_location": "L7638", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_rethrowcaughterror", - "community": 25, + "community": 642, "norm_label": "rethrowcaughterror()" }, { @@ -194441,7 +194441,7 @@ "source_location": "L7692", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_get", - "community": 116, + "community": 642, "norm_label": "get()" }, { @@ -194471,7 +194471,7 @@ "source_location": "L7805", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_getnearestmountedfiber", - "community": 25, + "community": 642, "norm_label": "getnearestmountedfiber()" }, { @@ -194481,7 +194481,7 @@ "source_location": "L7842", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_getsuspenseinstancefromfiber", - "community": 25, + "community": 642, "norm_label": "getsuspenseinstancefromfiber()" }, { @@ -194491,7 +194491,7 @@ "source_location": "L7861", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_getcontainerfromfiber", - "community": 25, + "community": 642, "norm_label": "getcontainerfromfiber()" }, { @@ -194501,7 +194501,7 @@ "source_location": "L7864", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_isfibermounted", - "community": 25, + "community": 68, "norm_label": "isfibermounted()" }, { @@ -194511,7 +194511,7 @@ "source_location": "L7867", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_ismounted", - "community": 116, + "community": 642, "norm_label": "ismounted()" }, { @@ -194521,7 +194521,7 @@ "source_location": "L7892", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_assertismounted", - "community": 25, + "community": 642, "norm_label": "assertismounted()" }, { @@ -194531,7 +194531,7 @@ "source_location": "L7898", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_findcurrentfiberusingslowpath", - "community": 25, + "community": 642, "norm_label": "findcurrentfiberusingslowpath()" }, { @@ -194591,7 +194591,7 @@ "source_location": "L8185", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_onscheduleroot", - "community": 116, + "community": 100, "norm_label": "onscheduleroot()" }, { @@ -194601,7 +194601,7 @@ "source_location": "L8200", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_oncommitroot", - "community": 270, + "community": 222, "norm_label": "oncommitroot()" }, { @@ -194611,7 +194611,7 @@ "source_location": "L8245", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_onpostcommitroot", - "community": 270, + "community": 222, "norm_label": "onpostcommitroot()" }, { @@ -194661,7 +194661,7 @@ "source_location": "L8320", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_markcommitstarted", - "community": 270, + "community": 222, "norm_label": "markcommitstarted()" }, { @@ -194671,7 +194671,7 @@ "source_location": "L8327", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_markcommitstopped", - "community": 270, + "community": 222, "norm_label": "markcommitstopped()" }, { @@ -194801,7 +194801,7 @@ "source_location": "L8418", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_marklayouteffectsstarted", - "community": 270, + "community": 222, "norm_label": "marklayouteffectsstarted()" }, { @@ -194811,7 +194811,7 @@ "source_location": "L8425", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_marklayouteffectsstopped", - "community": 270, + "community": 222, "norm_label": "marklayouteffectsstopped()" }, { @@ -194821,7 +194821,7 @@ "source_location": "L8432", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_markpassiveeffectsstarted", - "community": 270, + "community": 222, "norm_label": "markpassiveeffectsstarted()" }, { @@ -194831,7 +194831,7 @@ "source_location": "L8439", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_markpassiveeffectsstopped", - "community": 270, + "community": 222, "norm_label": "markpassiveeffectsstopped()" }, { @@ -194871,7 +194871,7 @@ "source_location": "L8467", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_markrenderscheduled", - "community": 116, + "community": 100, "norm_label": "markrenderscheduled()" }, { @@ -194971,7 +194971,7 @@ "source_location": "L8992", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_gethighestprioritypendinglanes", - "community": 100, + "community": 222, "norm_label": "gethighestprioritypendinglanes()" }, { @@ -194991,7 +194991,7 @@ "source_location": "L9008", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_includessynclane", - "community": 222, + "community": 100, "norm_label": "includessynclane()" }, { @@ -195191,7 +195191,7 @@ "source_location": "L9099", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_higherprioritylane", - "community": 100, + "community": 25, "norm_label": "higherprioritylane()" }, { @@ -195211,7 +195211,7 @@ "source_location": "L9114", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_markrootupdated", - "community": 116, + "community": 100, "norm_label": "markrootupdated()" }, { @@ -195301,7 +195301,7 @@ "source_location": "L9322", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_getcurrentupdatepriority", - "community": 270, + "community": 222, "norm_label": "getcurrentupdatepriority()" }, { @@ -195311,7 +195311,7 @@ "source_location": "L9325", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_setcurrentupdatepriority", - "community": 270, + "community": 222, "norm_label": "setcurrentupdatepriority()" }, { @@ -195331,7 +195331,7 @@ "source_location": "L9338", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_highereventpriority", - "community": 270, + "community": 222, "norm_label": "highereventpriority()" }, { @@ -195341,7 +195341,7 @@ "source_location": "L9341", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_lowereventpriority", - "community": 270, + "community": 222, "norm_label": "lowereventpriority()" }, { @@ -195351,7 +195351,7 @@ "source_location": "L9344", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_ishighereventpriority", - "community": 25, + "community": 642, "norm_label": "ishighereventpriority()" }, { @@ -195371,7 +195371,7 @@ "source_location": "L9368", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_isrootdehydrated", - "community": 25, + "community": 642, "norm_label": "isrootdehydrated()" }, { @@ -195391,7 +195391,7 @@ "source_location": "L9378", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_attemptsynchronoushydration", - "community": 25, + "community": 642, "norm_label": "attemptsynchronoushydration()" }, { @@ -195441,7 +195441,7 @@ "source_location": "L9414", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_isdiscreteeventthatrequireshydration", - "community": 25, + "community": 642, "norm_label": "isdiscreteeventthatrequireshydration()" }, { @@ -195451,7 +195451,7 @@ "source_location": "L9418", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_createqueuedreplayableevent", - "community": 25, + "community": 642, "norm_label": "createqueuedreplayableevent()" }, { @@ -195461,7 +195461,7 @@ "source_location": "L9428", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_clearifcontinuousevent", - "community": 25, + "community": 642, "norm_label": "clearifcontinuousevent()" }, { @@ -195471,7 +195471,7 @@ "source_location": "L9463", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_accumulateorcreatecontinuousqueuedreplayableevent", - "community": 25, + "community": 642, "norm_label": "accumulateorcreatecontinuousqueuedreplayableevent()" }, { @@ -195481,7 +195481,7 @@ "source_location": "L9493", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_queueifcontinuousevent", - "community": 25, + "community": 642, "norm_label": "queueifcontinuousevent()" }, { @@ -195491,7 +195491,7 @@ "source_location": "L9539", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_attemptexplicithydrationtarget", - "community": 25, + "community": 642, "norm_label": "attemptexplicithydrationtarget()" }, { @@ -195501,7 +195501,7 @@ "source_location": "L9579", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_queueexplicithydrationtarget", - "community": 25, + "community": 642, "norm_label": "queueexplicithydrationtarget()" }, { @@ -195541,7 +195541,7 @@ "source_location": "L9669", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_schedulecallbackifunblocked", - "community": 642, + "community": 116, "norm_label": "schedulecallbackifunblocked()" }, { @@ -195591,7 +195591,7 @@ "source_location": "L9777", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_dispatchdiscreteevent", - "community": 270, + "community": 222, "norm_label": "dispatchdiscreteevent()" }, { @@ -195601,7 +195601,7 @@ "source_location": "L9791", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_dispatchcontinuousevent", - "community": 270, + "community": 222, "norm_label": "dispatchcontinuousevent()" }, { @@ -195611,7 +195611,7 @@ "source_location": "L9805", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_dispatchevent", - "community": 270, + "community": 222, "norm_label": "dispatchevent()" }, { @@ -195621,7 +195621,7 @@ "source_location": "L9815", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_dispatcheventwithenablecapturephaseselectivehydrationwithoutdiscreteeventreplay", - "community": 25, + "community": 642, "norm_label": "dispatcheventwithenablecapturephaseselectivehydrationwithoutdiscreteeventreplay()" }, { @@ -195631,7 +195631,7 @@ "source_location": "L9869", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_findinstanceblockingevent", - "community": 25, + "community": 642, "norm_label": "findinstanceblockingevent()" }, { @@ -195941,7 +195941,7 @@ "source_location": "L11094", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_iseventsupported", - "community": 354, + "community": 412, "norm_label": "iseventsupported()" }, { @@ -195981,7 +195981,7 @@ "source_location": "L11144", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_manualdispatchchangeevent", - "community": 25, + "community": 642, "norm_label": "manualdispatchchangeevent()" }, { @@ -195991,7 +195991,7 @@ "source_location": "L11161", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_runeventinbatch", - "community": 25, + "community": 642, "norm_label": "runeventinbatch()" }, { @@ -196451,7 +196451,7 @@ "source_location": "L12433", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_processdispatchqueue", - "community": 25, + "community": 642, "norm_label": "processdispatchqueue()" }, { @@ -196461,7 +196461,7 @@ "source_location": "L12447", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_dispatcheventsforplugins", - "community": 25, + "community": 642, "norm_label": "dispatcheventsforplugins()" }, { @@ -196481,7 +196481,7 @@ "source_location": "L12470", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_listentonativeevent", - "community": 116, + "community": 412, "norm_label": "listentonativeevent()" }, { @@ -196491,7 +196491,7 @@ "source_location": "L12486", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_listentoallsupportedevents", - "community": 116, + "community": 412, "norm_label": "listentoallsupportedevents()" }, { @@ -196511,7 +196511,7 @@ "source_location": "L12550", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_ismatchingrootcontainer", - "community": 25, + "community": 642, "norm_label": "ismatchingrootcontainer()" }, { @@ -196521,7 +196521,7 @@ "source_location": "L12554", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_dispatcheventforplugineventsystem", - "community": 25, + "community": 642, "norm_label": "dispatcheventforplugineventsystem()" }, { @@ -196801,7 +196801,7 @@ "source_location": "L14216", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_getroothostcontext", - "community": 354, + "community": 25, "norm_label": "getroothostcontext()" }, { @@ -196811,7 +196811,7 @@ "source_location": "L14250", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_getchildhostcontext", - "community": 354, + "community": 25, "norm_label": "getchildhostcontext()" }, { @@ -196951,7 +196951,7 @@ "source_location": "L14406", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_resettextcontent", - "community": 25, + "community": 116, "norm_label": "resettextcontent()" }, { @@ -197051,7 +197051,7 @@ "source_location": "L14507", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_hideinstance", - "community": 172, + "community": 25, "norm_label": "hideinstance()" }, { @@ -197061,7 +197061,7 @@ "source_location": "L14519", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_hidetextinstance", - "community": 172, + "community": 25, "norm_label": "hidetextinstance()" }, { @@ -197071,7 +197071,7 @@ "source_location": "L14522", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_unhideinstance", - "community": 172, + "community": 25, "norm_label": "unhideinstance()" }, { @@ -197081,7 +197081,7 @@ "source_location": "L14528", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_unhidetextinstance", - "community": 172, + "community": 25, "norm_label": "unhidetextinstance()" }, { @@ -197261,7 +197261,7 @@ "source_location": "L14703", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_getparentsuspenseinstance", - "community": 25, + "community": 642, "norm_label": "getparentsuspenseinstance()" }, { @@ -197421,7 +197421,7 @@ "source_location": "L14830", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_prepareportalmount", - "community": 116, + "community": 412, "norm_label": "prepareportalmount()" }, { @@ -197451,7 +197451,7 @@ "source_location": "L14853", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_markcontainerasroot", - "community": 116, + "community": 412, "norm_label": "markcontainerasroot()" }, { @@ -197461,7 +197461,7 @@ "source_location": "L14856", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_unmarkcontainerasroot", - "community": 116, + "community": 412, "norm_label": "unmarkcontainerasroot()" }, { @@ -197471,7 +197471,7 @@ "source_location": "L14859", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_iscontainermarkedasroot", - "community": 116, + "community": 412, "norm_label": "iscontainermarkedasroot()" }, { @@ -197481,7 +197481,7 @@ "source_location": "L14869", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_getclosestinstancefromnode", - "community": 25, + "community": 642, "norm_label": "getclosestinstancefromnode()" }, { @@ -197491,7 +197491,7 @@ "source_location": "L14952", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_getinstancefromnode", - "community": 25, + "community": 642, "norm_label": "getinstancefromnode()" }, { @@ -197601,7 +197601,7 @@ "source_location": "L15207", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_popcontext", - "community": 169, + "community": 354, "norm_label": "popcontext()" }, { @@ -197611,7 +197611,7 @@ "source_location": "L15214", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_poptoplevelcontextobject", - "community": 169, + "community": 354, "norm_label": "poptoplevelcontextobject()" }, { @@ -197621,7 +197621,7 @@ "source_location": "L15221", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_pushtoplevelcontextobject", - "community": 216, + "community": 68, "norm_label": "pushtoplevelcontextobject()" }, { @@ -197631,7 +197631,7 @@ "source_location": "L15232", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_processchildcontext", - "community": 116, + "community": 68, "norm_label": "processchildcontext()" }, { @@ -197651,7 +197651,7 @@ "source_location": "L15285", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_invalidatecontextprovider", - "community": 216, + "community": 68, "norm_label": "invalidatecontextprovider()" }, { @@ -197661,7 +197661,7 @@ "source_location": "L15313", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_findcurrentunmaskedcontext", - "community": 25, + "community": 68, "norm_label": "findcurrentunmaskedcontext()" }, { @@ -197701,7 +197701,7 @@ "source_location": "L15378", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_flushsynccallbacks", - "community": 270, + "community": 222, "norm_label": "flushsynccallbacks()" }, { @@ -197771,7 +197771,7 @@ "source_location": "L15539", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_getbitlength", - "community": 172, + "community": 68, "norm_label": "getbitlength()" }, { @@ -197781,7 +197781,7 @@ "source_location": "L15543", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_getleadingbit", - "community": 172, + "community": 68, "norm_label": "getleadingbit()" }, { @@ -197791,7 +197791,7 @@ "source_location": "L15547", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_poptreecontext", - "community": 169, + "community": 354, "norm_label": "poptreecontext()" }, { @@ -197841,7 +197841,7 @@ "source_location": "L15618", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_markdidthrowwhilehydratingdev", - "community": 222, + "community": 100, "norm_label": "markdidthrowwhilehydratingdev()" }, { @@ -198021,7 +198021,7 @@ "source_location": "L16053", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_hasunhydratedtailnodes", - "community": 275, + "community": 354, "norm_label": "hasunhydratedtailnodes()" }, { @@ -198051,7 +198051,7 @@ "source_location": "L16074", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_upgradehydrationerrorstorecoverable", - "community": 275, + "community": 354, "norm_label": "upgradehydrationerrorstorecoverable()" }, { @@ -198091,7 +198091,7 @@ "source_location": "L16388", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_isreactclass", - "community": 116, + "community": 412, "norm_label": "isreactclass()" }, { @@ -198101,7 +198101,7 @@ "source_location": "L16392", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_coerceref", - "community": 116, + "community": 412, "norm_label": "coerceref()" }, { @@ -198161,7 +198161,7 @@ "source_location": "L17463", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_resetchildfibers", - "community": 25, + "community": 354, "norm_label": "resetchildfibers()" }, { @@ -198211,7 +198211,7 @@ "source_location": "L17519", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_popprovider", - "community": 169, + "community": 354, "norm_label": "popprovider()" }, { @@ -198341,7 +198341,7 @@ "source_location": "L17913", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_initializeupdatequeue", - "community": 116, + "community": 412, "norm_label": "initializeupdatequeue()" }, { @@ -198361,7 +198361,7 @@ "source_location": "L17943", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_createupdate", - "community": 116, + "community": 100, "norm_label": "createupdate()" }, { @@ -198371,7 +198371,7 @@ "source_location": "L17954", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_enqueueupdate", - "community": 116, + "community": 100, "norm_label": "enqueueupdate()" }, { @@ -198391,7 +198391,7 @@ "source_location": "L18022", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_enqueuecapturedupdate", - "community": 222, + "community": 100, "norm_label": "enqueuecapturedupdate()" }, { @@ -198451,7 +198451,7 @@ "source_location": "L18422", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_requiredcontext", - "community": 169, + "community": 354, "norm_label": "requiredcontext()" }, { @@ -198461,7 +198461,7 @@ "source_location": "L18430", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_getroothostcontainer", - "community": 169, + "community": 354, "norm_label": "getroothostcontainer()" }, { @@ -198481,7 +198481,7 @@ "source_location": "L18454", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_pophostcontainer", - "community": 169, + "community": 354, "norm_label": "pophostcontainer()" }, { @@ -198491,7 +198491,7 @@ "source_location": "L18460", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_gethostcontext", - "community": 169, + "community": 354, "norm_label": "gethostcontext()" }, { @@ -198501,7 +198501,7 @@ "source_location": "L18465", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_pushhostcontext", - "community": 169, + "community": 354, "norm_label": "pushhostcontext()" }, { @@ -198511,7 +198511,7 @@ "source_location": "L18480", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_pophostcontext", - "community": 169, + "community": 354, "norm_label": "pophostcontext()" }, { @@ -198571,7 +198571,7 @@ "source_location": "L18525", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_popsuspensecontext", - "community": 169, + "community": 354, "norm_label": "popsuspensecontext()" }, { @@ -198581,7 +198581,7 @@ "source_location": "L18529", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_shouldcapturesuspense", - "community": 25, + "community": 100, "norm_label": "shouldcapturesuspense()" }, { @@ -198601,7 +198601,7 @@ "source_location": "L18618", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_resetworkinprogressversions", - "community": 169, + "community": 354, "norm_label": "resetworkinprogressversions()" }, { @@ -198611,7 +198611,7 @@ "source_location": "L18633", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_registermutablesourceforhydration", - "community": 116, + "community": 412, "norm_label": "registermutablesourceforhydration()" }, { @@ -198631,7 +198631,7 @@ "source_location": "L18706", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_updatehooktypesdev", - "community": 116, + "community": 412, "norm_label": "updatehooktypesdev()" }, { @@ -198651,7 +198651,7 @@ "source_location": "L18730", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_warnonhookmismatchindev", - "community": 116, + "community": 412, "norm_label": "warnonhookmismatchindev()" }, { @@ -198761,7 +198761,7 @@ "source_location": "L19078", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_mountreducer", - "community": 68, + "community": 274, "norm_label": "mountreducer()" }, { @@ -199021,7 +199021,7 @@ "source_location": "L19662", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_imperativehandleeffect", - "community": 116, + "community": 412, "norm_label": "imperativehandleeffect()" }, { @@ -199171,7 +199171,7 @@ "source_location": "L19917", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_getisupdatingopaquevalueinrenderphaseindev", - "community": 116, + "community": 100, "norm_label": "getisupdatingopaquevalueinrenderphaseindev()" }, { @@ -199271,7 +199271,7 @@ "source_location": "L21001", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_marknestedupdatescheduled", - "community": 270, + "community": 222, "norm_label": "marknestedupdatescheduled()" }, { @@ -199311,7 +199311,7 @@ "source_location": "L21025", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_recordcommittime", - "community": 270, + "community": 222, "norm_label": "recordcommittime()" }, { @@ -199391,7 +199391,7 @@ "source_location": "L21133", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_transferactualduration", - "community": 169, + "community": 354, "norm_label": "transferactualduration()" }, { @@ -199401,7 +199401,7 @@ "source_location": "L21145", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_resolvedefaultprops", - "community": 116, + "community": 68, "norm_label": "resolvedefaultprops()" }, { @@ -199461,7 +199461,7 @@ "source_location": "L21628", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_callcomponentwillmount", - "community": 116, + "community": 68, "norm_label": "callcomponentwillmount()" }, { @@ -199531,7 +199531,7 @@ "source_location": "L22003", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_showerrordialog", - "community": 116, + "community": 100, "norm_label": "showerrordialog()" }, { @@ -199541,7 +199541,7 @@ "source_location": "L22007", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_logcapturederror", - "community": 116, + "community": 100, "norm_label": "logcapturederror()" }, { @@ -199551,7 +199551,7 @@ "source_location": "L22078", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_createrooterrorupdate", - "community": 116, + "community": 100, "norm_label": "createrooterrorupdate()" }, { @@ -199561,7 +199561,7 @@ "source_location": "L22097", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_createclasserrorupdate", - "community": 116, + "community": 100, "norm_label": "createclasserrorupdate()" }, { @@ -199581,7 +199581,7 @@ "source_location": "L22204", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_attachretrylistener", - "community": 222, + "community": 100, "norm_label": "attachretrylistener()" }, { @@ -199591,7 +199591,7 @@ "source_location": "L22227", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_resetsuspendedcomponent", - "community": 222, + "community": 100, "norm_label": "resetsuspendedcomponent()" }, { @@ -199601,7 +199601,7 @@ "source_location": "L22247", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_getnearestsuspenseboundarytocapture", - "community": 25, + "community": 100, "norm_label": "getnearestsuspenseboundarytocapture()" }, { @@ -199611,7 +199611,7 @@ "source_location": "L22263", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_marksuspenseboundaryshouldcapture", - "community": 116, + "community": 100, "norm_label": "marksuspenseboundaryshouldcapture()" }, { @@ -199621,7 +199621,7 @@ "source_location": "L22371", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_throwexception", - "community": 222, + "community": 100, "norm_label": "throwexception()" }, { @@ -199941,7 +199941,7 @@ "source_location": "L23840", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_updateworkinprogressoffscreenfiber", - "community": 169, + "community": 68, "norm_label": "updateworkinprogressoffscreenfiber()" }, { @@ -199951,7 +199951,7 @@ "source_location": "L23846", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_updatesuspenseprimarychildren", - "community": 169, + "community": 68, "norm_label": "updatesuspenseprimarychildren()" }, { @@ -199961,7 +199961,7 @@ "source_location": "L23877", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_updatesuspensefallbackchildren", - "community": 169, + "community": 68, "norm_label": "updatesuspensefallbackchildren()" }, { @@ -200201,7 +200201,7 @@ "source_location": "L25104", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_markupdate", - "community": 169, + "community": 354, "norm_label": "markupdate()" }, { @@ -200211,7 +200211,7 @@ "source_location": "L25110", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_markref_1", - "community": 169, + "community": 354, "norm_label": "markref$1()" }, { @@ -200221,7 +200221,7 @@ "source_location": "L25197", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_cutofftailifneeded", - "community": 169, + "community": 354, "norm_label": "cutofftailifneeded()" }, { @@ -200231,7 +200231,7 @@ "source_location": "L25277", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_bubbleproperties", - "community": 275, + "community": 354, "norm_label": "bubbleproperties()" }, { @@ -200241,7 +200241,7 @@ "source_location": "L25372", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_completedehydratedsuspenseboundary", - "community": 275, + "community": 354, "norm_label": "completedehydratedsuspenseboundary()" }, { @@ -200251,7 +200251,7 @@ "source_location": "L25457", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_completework", - "community": 169, + "community": 354, "norm_label": "completework()" }, { @@ -200261,7 +200261,7 @@ "source_location": "L26034", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_unwindwork", - "community": 169, + "community": 354, "norm_label": "unwindwork()" }, { @@ -200271,7 +200271,7 @@ "source_location": "L26150", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_unwindinterruptedwork", - "community": 169, + "community": 354, "norm_label": "unwindinterruptedwork()" }, { @@ -200441,7 +200441,7 @@ "source_location": "L26944", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_hideorunhideallchildren", - "community": 172, + "community": 25, "norm_label": "hideorunhideallchildren()" }, { @@ -200481,7 +200481,7 @@ "source_location": "L27151", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_gethostparentfiber", - "community": 25, + "community": 116, "norm_label": "gethostparentfiber()" }, { @@ -200491,7 +200491,7 @@ "source_location": "L27165", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_ishostparent", - "community": 25, + "community": 116, "norm_label": "ishostparent()" }, { @@ -200501,7 +200501,7 @@ "source_location": "L27169", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_gethostsibling", - "community": 25, + "community": 116, "norm_label": "gethostsibling()" }, { @@ -200511,7 +200511,7 @@ "source_location": "L27217", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_commitplacement", - "community": 25, + "community": 116, "norm_label": "commitplacement()" }, { @@ -200641,7 +200641,7 @@ "source_location": "L28001", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_commitlayouteffects", - "community": 270, + "community": 116, "norm_label": "commitlayouteffects()" }, { @@ -200651,7 +200651,7 @@ "source_location": "L28010", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_commitlayouteffects_begin", - "community": 270, + "community": 116, "norm_label": "commitlayouteffects_begin()" }, { @@ -200691,7 +200691,7 @@ "source_location": "L28197", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_reappearlayouteffects_begin", - "community": 270, + "community": 116, "norm_label": "reappearlayouteffects_begin()" }, { @@ -200711,7 +200711,7 @@ "source_location": "L28257", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_commitpassivemounteffects", - "community": 270, + "community": 222, "norm_label": "commitpassivemounteffects()" }, { @@ -200721,7 +200721,7 @@ "source_location": "L28262", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_commitpassivemounteffects_begin", - "community": 270, + "community": 222, "norm_label": "commitpassivemounteffects_begin()" }, { @@ -200751,7 +200751,7 @@ "source_location": "L28332", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_commitpassiveunmounteffects", - "community": 270, + "community": 222, "norm_label": "commitpassiveunmounteffects()" }, { @@ -200861,7 +200861,7 @@ "source_location": "L28624", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_oncommitroot_1", - "community": 270, + "community": 222, "norm_label": "oncommitroot$1()" }, { @@ -200881,7 +200881,7 @@ "source_location": "L28646", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_isconcurrentactenvironment", - "community": 116, + "community": 412, "norm_label": "isconcurrentactenvironment()" }, { @@ -200901,7 +200901,7 @@ "source_location": "L28739", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_getrendertargettime", - "community": 169, + "community": 354, "norm_label": "getrendertargettime()" }, { @@ -200921,7 +200921,7 @@ "source_location": "L28768", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_requesteventtime", - "community": 116, + "community": 100, "norm_label": "requesteventtime()" }, { @@ -200961,7 +200961,7 @@ "source_location": "L28938", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_scheduleinitialhydrationonroot", - "community": 116, + "community": 100, "norm_label": "scheduleinitialhydrationonroot()" }, { @@ -200971,7 +200971,7 @@ "source_location": "L28953", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_isunsafeclassrenderphaseupdate", - "community": 116, + "community": 100, "norm_label": "isunsafeclassrenderphaseupdate()" }, { @@ -201011,7 +201011,7 @@ "source_location": "L29262", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_queuerecoverableerrors", - "community": 275, + "community": 354, "norm_label": "queuerecoverableerrors()" }, { @@ -201081,7 +201081,7 @@ "source_location": "L29545", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_discreteupdates", - "community": 270, + "community": 222, "norm_label": "discreteupdates()" }, { @@ -201091,7 +201091,7 @@ "source_location": "L29565", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_flushsync", - "community": 270, + "community": 222, "norm_label": "flushsync()" }, { @@ -201101,7 +201101,7 @@ "source_location": "L29598", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_isalreadyrendering", - "community": 270, + "community": 222, "norm_label": "isalreadyrendering()" }, { @@ -201121,7 +201121,7 @@ "source_location": "L29608", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_poprenderlanes", - "community": 169, + "community": 354, "norm_label": "poprenderlanes()" }, { @@ -201191,7 +201191,7 @@ "source_location": "L29751", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_renderdidsuspend", - "community": 169, + "community": 354, "norm_label": "renderdidsuspend()" }, { @@ -201211,7 +201211,7 @@ "source_location": "L29774", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_renderdiderror", - "community": 222, + "community": 100, "norm_label": "renderdiderror()" }, { @@ -201221,7 +201221,7 @@ "source_location": "L29787", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_renderhasnotsuspendedyet", - "community": 169, + "community": 354, "norm_label": "renderhasnotsuspendedyet()" }, { @@ -201291,7 +201291,7 @@ "source_location": "L30066", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_commitroot", - "community": 270, + "community": 222, "norm_label": "commitroot()" }, { @@ -201301,7 +201301,7 @@ "source_location": "L30084", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_commitrootimpl", - "community": 270, + "community": 222, "norm_label": "commitrootimpl()" }, { @@ -201311,7 +201311,7 @@ "source_location": "L30361", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_flushpassiveeffects", - "community": 270, + "community": 222, "norm_label": "flushpassiveeffects()" }, { @@ -201321,7 +201321,7 @@ "source_location": "L30386", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_enqueuependingpassiveprofilereffect", - "community": 216, + "community": 222, "norm_label": "enqueuependingpassiveprofilereffect()" }, { @@ -201331,7 +201331,7 @@ "source_location": "L30400", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_flushpassiveeffectsimpl", - "community": 270, + "community": 222, "norm_label": "flushpassiveeffectsimpl()" }, { @@ -201341,7 +201341,7 @@ "source_location": "L30485", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_isalreadyfailedlegacyerrorboundary", - "community": 222, + "community": 100, "norm_label": "isalreadyfailedlegacyerrorboundary()" }, { @@ -201351,7 +201351,7 @@ "source_location": "L30488", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_marklegacyerrorboundaryasfailed", - "community": 116, + "community": 100, "norm_label": "marklegacyerrorboundaryasfailed()" }, { @@ -201371,7 +201371,7 @@ "source_location": "L30505", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_capturecommitphaseerroronroot", - "community": 116, + "community": 100, "norm_label": "capturecommitphaseerroronroot()" }, { @@ -201401,7 +201401,7 @@ "source_location": "L30605", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_retrytimedoutboundary", - "community": 25, + "community": 100, "norm_label": "retrytimedoutboundary()" }, { @@ -201411,7 +201411,7 @@ "source_location": "L30626", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_retrydehydratedsuspenseboundary", - "community": 25, + "community": 100, "norm_label": "retrydehydratedsuspenseboundary()" }, { @@ -201421,7 +201421,7 @@ "source_location": "L30636", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_resolveretrywakeable", - "community": 25, + "community": 100, "norm_label": "resolveretrywakeable()" }, { @@ -201451,7 +201451,7 @@ "source_location": "L30698", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_flushrenderphasestrictmodewarningsindev", - "community": 270, + "community": 222, "norm_label": "flushrenderphasestrictmodewarningsindev()" }, { @@ -201491,7 +201491,7 @@ "source_location": "L30869", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_warnaboutrenderphaseupdatesindev", - "community": 116, + "community": 100, "norm_label": "warnaboutrenderphaseupdatesindev()" }, { @@ -201511,7 +201511,7 @@ "source_location": "L30920", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_schedulecallback_1", - "community": 216, + "community": 222, "norm_label": "schedulecallback$1()" }, { @@ -201551,7 +201551,7 @@ "source_location": "L30994", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_warnifsuspenseresolutionnotwrappedwithactdev", - "community": 116, + "community": 412, "norm_label": "warnifsuspenseresolutionnotwrappedwithactdev()" }, { @@ -201611,7 +201611,7 @@ "source_location": "L31160", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_markfailederrorboundaryforhotreloading", - "community": 116, + "community": 100, "norm_label": "markfailederrorboundaryforhotreloading()" }, { @@ -201711,7 +201711,7 @@ "source_location": "L31630", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_resetworkinprogress", - "community": 25, + "community": 354, "norm_label": "resetworkinprogress()" }, { @@ -201721,7 +201721,7 @@ "source_location": "L31691", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_createhostrootfiber", - "community": 116, + "community": 412, "norm_label": "createhostrootfiber()" }, { @@ -201861,7 +201861,7 @@ "source_location": "L32049", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_createfiberroot", - "community": 116, + "community": 412, "norm_label": "createfiberroot()" }, { @@ -201871,7 +201871,7 @@ "source_location": "L32080", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_createportal", - "community": 172, + "community": 412, "norm_label": "createportal()" }, { @@ -201881,7 +201881,7 @@ "source_location": "L32106", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_getcontextforsubtree", - "community": 116, + "community": 68, "norm_label": "getcontextforsubtree()" }, { @@ -201901,7 +201901,7 @@ "source_location": "L32175", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_createcontainer", - "community": 116, + "community": 412, "norm_label": "createcontainer()" }, { @@ -201911,7 +201911,7 @@ "source_location": "L32180", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_createhydrationcontainer", - "community": 116, + "community": 100, "norm_label": "createhydrationcontainer()" }, { @@ -201921,7 +201921,7 @@ "source_location": "L32201", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_updatecontainer", - "community": 116, + "community": 100, "norm_label": "updatecontainer()" }, { @@ -201931,7 +201931,7 @@ "source_location": "L32257", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_getpublicrootinstance", - "community": 116, + "community": 412, "norm_label": "getpublicrootinstance()" }, { @@ -201951,7 +201951,7 @@ "source_location": "L32307", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_markretrylaneimpl", - "community": 100, + "community": 25, "norm_label": "markretrylaneimpl()" }, { @@ -202071,7 +202071,7 @@ "source_location": "L32736", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_createroot", - "community": 116, + "community": 412, "norm_label": "createroot()" }, { @@ -202091,7 +202091,7 @@ "source_location": "L32787", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_schedulehydration", - "community": 25, + "community": 642, "norm_label": "schedulehydration()" }, { @@ -202101,7 +202101,7 @@ "source_location": "L32794", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_hydrateroot", - "community": 116, + "community": 412, "norm_label": "hydrateroot()" }, { @@ -202111,7 +202111,7 @@ "source_location": "L32845", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_isvalidcontainer", - "community": 172, + "community": 412, "norm_label": "isvalidcontainer()" }, { @@ -202121,7 +202121,7 @@ "source_location": "L32850", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_isvalidcontainerlegacy", - "community": 116, + "community": 412, "norm_label": "isvalidcontainerlegacy()" }, { @@ -202131,7 +202131,7 @@ "source_location": "L32854", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_warnifreactdomcontainerindev", - "community": 116, + "community": 412, "norm_label": "warnifreactdomcontainerindev()" }, { @@ -202141,7 +202141,7 @@ "source_location": "L32899", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_getreactrootelementincontainer", - "community": 116, + "community": 412, "norm_label": "getreactrootelementincontainer()" }, { @@ -202151,7 +202151,7 @@ "source_location": "L32911", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_nooponrecoverableerror", - "community": 116, + "community": 412, "norm_label": "nooponrecoverableerror()" }, { @@ -202161,7 +202161,7 @@ "source_location": "L32915", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_legacycreaterootfromdomcontainer", - "community": 116, + "community": 412, "norm_label": "legacycreaterootfromdomcontainer()" }, { @@ -202171,7 +202171,7 @@ "source_location": "L32975", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_warnoninvalidcallback_1", - "community": 116, + "community": 412, "norm_label": "warnoninvalidcallback$1()" }, { @@ -202181,7 +202181,7 @@ "source_location": "L32983", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_legacyrendersubtreeintocontainer", - "community": 116, + "community": 412, "norm_label": "legacyrendersubtreeintocontainer()" }, { @@ -202201,7 +202201,7 @@ "source_location": "L33048", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_hydrate", - "community": 116, + "community": 412, "norm_label": "hydrate()" }, { @@ -202211,7 +202211,7 @@ "source_location": "L33068", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_render", - "community": 116, + "community": 68, "norm_label": "render()" }, { @@ -202221,7 +202221,7 @@ "source_location": "L33087", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_unstable_rendersubtreeintocontainer", - "community": 116, + "community": 412, "norm_label": "unstable_rendersubtreeintocontainer()" }, { @@ -202231,7 +202231,7 @@ "source_location": "L33103", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_unmountcomponentatnode", - "community": 116, + "community": 412, "norm_label": "unmountcomponentatnode()" }, { @@ -202241,7 +202241,7 @@ "source_location": "L33179", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_createportal_1", - "community": 172, + "community": 412, "norm_label": "createportal$1()" }, { @@ -202251,7 +202251,7 @@ "source_location": "L33191", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_rendersubtreeintocontainer", - "community": 116, + "community": 412, "norm_label": "rendersubtreeintocontainer()" }, { @@ -202261,7 +202261,7 @@ "source_location": "L33202", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_createroot_1", - "community": 116, + "community": 412, "norm_label": "createroot$1()" }, { @@ -202271,7 +202271,7 @@ "source_location": "L33212", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_hydrateroot_1", - "community": 116, + "community": 412, "norm_label": "hydrateroot$1()" }, { @@ -202281,7 +202281,7 @@ "source_location": "L33225", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_react_flushsync_1", - "community": 270, + "community": 222, "norm_label": "flushsync$1()" }, { @@ -202971,7 +202971,7 @@ "source_location": "L6103", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_resolvestyleconfig", - "community": 753, + "community": 34, "norm_label": "resolvestyleconfig()" }, { @@ -203921,7 +203921,7 @@ "source_location": "L11328", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_getregisteredstyles", - "community": 593, + "community": 333, "norm_label": "getregisteredstyles()" }, { @@ -203991,7 +203991,7 @@ "source_location": "L11833", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_usecolormode", - "community": 753, + "community": 34, "norm_label": "usecolormode()" }, { @@ -204091,7 +204091,7 @@ "source_location": "L12375", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_globalstyle", - "community": 753, + "community": 34, "norm_label": "globalstyle()" }, { @@ -204141,7 +204141,7 @@ "source_location": "L12493", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_useconstant", - "community": 68, + "community": 34, "norm_label": "useconstant()" }, { @@ -204231,7 +204231,7 @@ "source_location": "L12659", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_onlyelements", - "community": 593, + "community": 333, "norm_label": "onlyelements()" }, { @@ -204501,7 +204501,7 @@ "source_location": "L13457", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_getvaluestate", - "community": 185, + "community": 333, "norm_label": "getvaluestate()" }, { @@ -204511,7 +204511,7 @@ "source_location": "L13465", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_resolvevariantfromprops", - "community": 185, + "community": 333, "norm_label": "resolvevariantfromprops()" }, { @@ -204761,7 +204761,7 @@ "source_location": "L14214", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_resolvevariant", - "community": 449, + "community": 270, "norm_label": "resolvevariant()" }, { @@ -204921,7 +204921,7 @@ "source_location": "L14317", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_then", - "community": 449, + "community": 270, "norm_label": "then()" }, { @@ -204931,7 +204931,7 @@ "source_location": "L14324", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_getvaluetransition", - "community": 449, + "community": 270, "norm_label": "getvaluetransition()" }, { @@ -205001,7 +205001,7 @@ "source_location": "L14458", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_resolveelements", - "community": 593, + "community": 333, "norm_label": "resolveelements()" }, { @@ -205011,7 +205011,7 @@ "source_location": "L14474", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_setupgesture", - "community": 593, + "community": 333, "norm_label": "setupgesture()" }, { @@ -205021,7 +205021,7 @@ "source_location": "L14487", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_filterevents", - "community": 593, + "community": 333, "norm_label": "filterevents()" }, { @@ -205031,7 +205031,7 @@ "source_location": "L14494", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_hover", - "community": 593, + "community": 333, "norm_label": "hover()" }, { @@ -205081,7 +205081,7 @@ "source_location": "L14592", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_press", - "community": 593, + "community": 333, "norm_label": "press()" }, { @@ -205151,7 +205151,7 @@ "source_location": "L14759", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_clear", - "community": 593, + "community": 333, "norm_label": "clear()" }, { @@ -205221,7 +205221,7 @@ "source_location": "L14883", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_clearlisteners", - "community": 593, + "community": 333, "norm_label": "clearlisteners()" }, { @@ -205291,7 +205291,7 @@ "source_location": "L14983", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_start", - "community": 449, + "community": 270, "norm_label": "start()" }, { @@ -205331,7 +205331,7 @@ "source_location": "L15032", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_destroy", - "community": 593, + "community": 333, "norm_label": "destroy()" }, { @@ -205341,7 +205341,7 @@ "source_location": "L15040", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_motionvalue", - "community": 307, + "community": 270, "norm_label": "motionvalue()" }, { @@ -205351,7 +205351,7 @@ "source_location": "L15045", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_setmotionvalue", - "community": 307, + "community": 270, "norm_label": "setmotionvalue()" }, { @@ -205361,7 +205361,7 @@ "source_location": "L15052", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_settarget", - "community": 449, + "community": 270, "norm_label": "settarget()" }, { @@ -205371,7 +205371,7 @@ "source_location": "L15067", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_iswillchangemotionvalue", - "community": 449, + "community": 270, "norm_label": "iswillchangemotionvalue()" }, { @@ -205381,7 +205381,7 @@ "source_location": "L15072", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_addvaluetowillchange", - "community": 449, + "community": 270, "norm_label": "addvaluetowillchange()" }, { @@ -205391,7 +205391,7 @@ "source_location": "L15081", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_getoptimisedappearid", - "community": 449, + "community": 270, "norm_label": "getoptimisedappearid()" }, { @@ -205531,7 +205531,7 @@ "source_location": "L15480", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_removenontranslationaltransform", - "community": 593, + "community": 333, "norm_label": "removenontranslationaltransform()" }, { @@ -205541,7 +205541,7 @@ "source_location": "L15510", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_measureallkeyframes", - "community": 593, + "community": 333, "norm_label": "measureallkeyframes()" }, { @@ -205551,7 +205551,7 @@ "source_location": "L15545", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_readallkeyframes", - "community": 593, + "community": 333, "norm_label": "readallkeyframes()" }, { @@ -205561,7 +205561,7 @@ "source_location": "L15553", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_flushkeyframeresolvers", - "community": 593, + "community": 333, "norm_label": "flushkeyframeresolvers()" }, { @@ -205571,7 +205571,7 @@ "source_location": "L15570", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_scheduleresolve", - "community": 593, + "community": 333, "norm_label": "scheduleresolve()" }, { @@ -205631,7 +205631,7 @@ "source_location": "L15630", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_resume", - "community": 593, + "community": 333, "norm_label": "resume()" }, { @@ -205711,7 +205711,7 @@ "source_location": "L15874", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_resolved", - "community": 593, + "community": 333, "norm_label": "resolved()" }, { @@ -206141,7 +206141,7 @@ "source_location": "L17200", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_shouldblockanimation", - "community": 449, + "community": 270, "norm_label": "shouldblockanimation()" }, { @@ -206151,7 +206151,7 @@ "source_location": "L17205", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_animatetarget", - "community": 449, + "community": 270, "norm_label": "animatetarget()" }, { @@ -206161,7 +206161,7 @@ "source_location": "L17252", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_animatevariant", - "community": 449, + "community": 270, "norm_label": "animatevariant()" }, { @@ -206171,7 +206171,7 @@ "source_location": "L17272", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_animatechildren", - "community": 593, + "community": 333, "norm_label": "animatechildren()" }, { @@ -206181,7 +206181,7 @@ "source_location": "L17285", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_sortbytreeorder", - "community": 593, + "community": 333, "norm_label": "sortbytreeorder()" }, { @@ -206191,7 +206191,7 @@ "source_location": "L17290", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_animatevisualelement", - "community": 449, + "community": 270, "norm_label": "animatevisualelement()" }, { @@ -206291,7 +206291,7 @@ "source_location": "L17559", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_unmount", - "community": 593, + "community": 333, "norm_label": "unmount()" }, { @@ -206631,7 +206631,7 @@ "source_location": "L17935", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_convertboundingboxtobox", - "community": 307, + "community": 449, "norm_label": "convertboundingboxtobox()" }, { @@ -206851,7 +206851,7 @@ "source_location": "L18275", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_startaxisvalueanimation", - "community": 449, + "community": 270, "norm_label": "startaxisvalueanimation()" }, { @@ -206881,7 +206881,7 @@ "source_location": "L18289", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_getanimationstate", - "community": 449, + "community": 270, "norm_label": "getanimationstate()" }, { @@ -206891,7 +206891,7 @@ "source_location": "L18299", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_getaxismotionvalue", - "community": 449, + "community": 270, "norm_label": "getaxismotionvalue()" }, { @@ -207031,7 +207031,7 @@ "source_location": "L18666", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_animatesinglevalue", - "community": 449, + "community": 270, "norm_label": "animatesinglevalue()" }, { @@ -207061,7 +207061,7 @@ "source_location": "L18699", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_foreach", - "community": 593, + "community": 333, "norm_label": "foreach()" }, { @@ -207331,7 +207331,7 @@ "source_location": "L19005", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_canceltreeoptimisedtransformanimations", - "community": 449, + "community": 270, "norm_label": "canceltreeoptimisedtransformanimations()" }, { @@ -207651,7 +207651,7 @@ "source_location": "L20338", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_updatemotionvaluesfromprops", - "community": 307, + "community": 270, "norm_label": "updatemotionvaluesfromprops()" }, { @@ -207701,7 +207701,7 @@ "source_location": "L20514", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_sortnodeposition", - "community": 593, + "community": 333, "norm_label": "sortnodeposition()" }, { @@ -207731,7 +207731,7 @@ "source_location": "L20552", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_getstaticvalue", - "community": 307, + "community": 270, "norm_label": "getstaticvalue()" }, { @@ -207761,7 +207761,7 @@ "source_location": "L20600", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_getdefaulttransition", - "community": 449, + "community": 270, "norm_label": "getdefaulttransition()" }, { @@ -207801,7 +207801,7 @@ "source_location": "L20622", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_addvalue", - "community": 307, + "community": 270, "norm_label": "addvalue()" }, { @@ -207811,7 +207811,7 @@ "source_location": "L20635", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_removevalue", - "community": 307, + "community": 270, "norm_label": "removevalue()" }, { @@ -207821,7 +207821,7 @@ "source_location": "L20648", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_hasvalue", - "community": 307, + "community": 270, "norm_label": "hasvalue()" }, { @@ -207831,7 +207831,7 @@ "source_location": "L20651", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_getvalue", - "community": 307, + "community": 270, "norm_label": "getvalue()" }, { @@ -207861,7 +207861,7 @@ "source_location": "L20691", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_getbasetarget", - "community": 185, + "community": 333, "norm_label": "getbasetarget()" }, { @@ -207871,7 +207871,7 @@ "source_location": "L20728", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_sortinstancenodeposition", - "community": 593, + "community": 333, "norm_label": "sortinstancenodeposition()" }, { @@ -207881,7 +207881,7 @@ "source_location": "L20731", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_getbasetargetfromprops", - "community": 185, + "community": 333, "norm_label": "getbasetargetfromprops()" }, { @@ -207891,7 +207891,7 @@ "source_location": "L20734", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_removevaluefromrenderstate", - "community": 307, + "community": 270, "norm_label": "removevaluefromrenderstate()" }, { @@ -208011,7 +208011,7 @@ "source_location": "L21226", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_styled2", - "community": 753, + "community": 34, "norm_label": "styled2()" }, { @@ -208021,7 +208021,7 @@ "source_location": "L21252", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_factory", - "community": 753, + "community": 34, "norm_label": "factory()" }, { @@ -208041,7 +208041,7 @@ "source_location": "L21423", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_usetheme2", - "community": 753, + "community": 34, "norm_label": "usetheme2()" }, { @@ -208051,7 +208051,7 @@ "source_location": "L21436", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_usechakra", - "community": 753, + "community": 34, "norm_label": "usechakra()" }, { @@ -208061,7 +208061,7 @@ "source_location": "L21443", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_omitreactelements", - "community": 753, + "community": 34, "norm_label": "omitreactelements()" }, { @@ -208071,7 +208071,7 @@ "source_location": "L21450", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_usestyleconfigimpl", - "community": 753, + "community": 34, "norm_label": "usestyleconfigimpl()" }, { @@ -208081,7 +208081,7 @@ "source_location": "L21472", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_usestyleconfig", - "community": 753, + "community": 34, "norm_label": "usestyleconfig()" }, { @@ -208091,7 +208091,7 @@ "source_location": "L21475", "_origin": "ast", "id": "docs_design_thingtime_landing_1h_ultra_minimal_voxel_ds_thingtime_bundle_usemultistyleconfig", - "community": 753, + "community": 34, "norm_label": "usemultistyleconfig()" }, { @@ -208821,7 +208821,7 @@ "source_location": "L37", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_getiteratorfn", - "community": 89, + "community": 162, "norm_label": "getiteratorfn()" }, { @@ -208831,7 +208831,7 @@ "source_location": "L93", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_setextrastackframe", - "community": 89, + "community": 162, "norm_label": "setextrastackframe()" }, { @@ -208851,7 +208851,7 @@ "source_location": "L166", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_error", - "community": 89, + "community": 126, "norm_label": "error()" }, { @@ -208871,7 +208871,7 @@ "source_location": "L205", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_warnnoop", - "community": 89, + "community": 126, "norm_label": "warnnoop()" }, { @@ -208941,7 +208941,7 @@ "source_location": "L431", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_isarray", - "community": 89, + "community": 162, "norm_label": "isarray()" }, { @@ -208951,7 +208951,7 @@ "source_location": "L445", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_typename", - "community": 89, + "community": 162, "norm_label": "typename()" }, { @@ -208961,7 +208961,7 @@ "source_location": "L455", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_willcoercionthrow", - "community": 89, + "community": 162, "norm_label": "willcoercionthrow()" }, { @@ -208971,7 +208971,7 @@ "source_location": "L466", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_teststringcoercion", - "community": 89, + "community": 162, "norm_label": "teststringcoercion()" }, { @@ -208981,7 +208981,7 @@ "source_location": "L492", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_checkkeystringcoercion", - "community": 89, + "community": 162, "norm_label": "checkkeystringcoercion()" }, { @@ -209021,7 +209021,7 @@ "source_location": "L616", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_hasvalidref", - "community": 89, + "community": 372, "norm_label": "hasvalidref()" }, { @@ -209031,7 +209031,7 @@ "source_location": "L630", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_hasvalidkey", - "community": 89, + "community": 372, "norm_label": "hasvalidkey()" }, { @@ -209041,7 +209041,7 @@ "source_location": "L644", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_definekeypropwarninggetter", - "community": 89, + "community": 372, "norm_label": "definekeypropwarninggetter()" }, { @@ -209051,7 +209051,7 @@ "source_location": "L662", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_definerefpropwarninggetter", - "community": 89, + "community": 372, "norm_label": "definerefpropwarninggetter()" }, { @@ -209061,7 +209061,7 @@ "source_location": "L680", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_warnifstringrefcannotbeautoconverted", - "community": 89, + "community": 372, "norm_label": "warnifstringrefcannotbeautoconverted()" }, { @@ -209071,7 +209071,7 @@ "source_location": "L773", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_createelement", - "community": 89, + "community": 372, "norm_label": "createelement()" }, { @@ -209081,7 +209081,7 @@ "source_location": "L858", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_cloneandreplacekey", - "community": 89, + "community": 162, "norm_label": "cloneandreplacekey()" }, { @@ -209091,7 +209091,7 @@ "source_location": "L867", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_cloneelement", - "community": 89, + "community": 372, "norm_label": "cloneelement()" }, { @@ -209101,7 +209101,7 @@ "source_location": "L947", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_isvalidelement", - "community": 89, + "community": 162, "norm_label": "isvalidelement()" }, { @@ -209111,7 +209111,7 @@ "source_location": "L960", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_escape", - "community": 89, + "community": 162, "norm_label": "escape()" }, { @@ -209121,7 +209121,7 @@ "source_location": "L980", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_escapeuserprovidedkey", - "community": 89, + "community": 162, "norm_label": "escapeuserprovidedkey()" }, { @@ -209131,7 +209131,7 @@ "source_location": "L992", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_getelementkey", - "community": 89, + "community": 162, "norm_label": "getelementkey()" }, { @@ -209141,7 +209141,7 @@ "source_location": "L1008", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_mapintoarray", - "community": 89, + "community": 162, "norm_label": "mapintoarray()" }, { @@ -209191,7 +209191,7 @@ "source_location": "L1217", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_onlychild", - "community": 89, + "community": 162, "norm_label": "onlychild()" }, { @@ -209211,7 +209211,7 @@ "source_location": "L1344", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_lazyinitializer", - "community": 89, + "community": 126, "norm_label": "lazyinitializer()" }, { @@ -209221,7 +209221,7 @@ "source_location": "L1401", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_lazy", - "community": 89, + "community": 126, "norm_label": "lazy()" }, { @@ -209231,7 +209231,7 @@ "source_location": "L1457", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_forwardref", - "community": 89, + "community": 126, "norm_label": "forwardref()" }, { @@ -209241,7 +209241,7 @@ "source_location": "L1514", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_isvalidelementtype", - "community": 89, + "community": 162, "norm_label": "isvalidelementtype()" }, { @@ -209251,7 +209251,7 @@ "source_location": "L1537", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_memo", - "community": 89, + "community": 162, "norm_label": "memo()" }, { @@ -209421,7 +209421,7 @@ "source_location": "L1682", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_disabledlog", - "community": 659, + "community": 11, "norm_label": "disabledlog()" }, { @@ -209431,7 +209431,7 @@ "source_location": "L1685", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_disablelogs", - "community": 659, + "community": 11, "norm_label": "disablelogs()" }, { @@ -209441,7 +209441,7 @@ "source_location": "L1719", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_reenablelogs", - "community": 659, + "community": 11, "norm_label": "reenablelogs()" }, { @@ -209451,7 +209451,7 @@ "source_location": "L1765", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_describebuiltincomponentframe", - "community": 659, + "community": 11, "norm_label": "describebuiltincomponentframe()" }, { @@ -209461,7 +209461,7 @@ "source_location": "L1789", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_describenativecomponentframe", - "community": 659, + "community": 11, "norm_label": "describenativecomponentframe()" }, { @@ -209471,7 +209471,7 @@ "source_location": "L1948", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_describefunctioncomponentframe", - "community": 659, + "community": 11, "norm_label": "describefunctioncomponentframe()" }, { @@ -209481,7 +209481,7 @@ "source_location": "L1954", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_shouldconstruct", - "community": 659, + "community": 11, "norm_label": "shouldconstruct()" }, { @@ -209491,7 +209491,7 @@ "source_location": "L1959", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_describeunknownelementtypeframeindev", - "community": 659, + "community": 11, "norm_label": "describeunknownelementtypeframeindev()" }, { @@ -209501,7 +209501,7 @@ "source_location": "L2012", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_setcurrentlyvalidatingelement", - "community": 659, + "community": 11, "norm_label": "setcurrentlyvalidatingelement()" }, { @@ -209521,7 +209521,7 @@ "source_location": "L2073", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_setcurrentlyvalidatingelement_1", - "community": 89, + "community": 162, "norm_label": "setcurrentlyvalidatingelement$1()" }, { @@ -209541,7 +209541,7 @@ "source_location": "L2103", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_getsourceinfoerroraddendum", - "community": 89, + "community": 162, "norm_label": "getsourceinfoerroraddendum()" }, { @@ -209551,7 +209551,7 @@ "source_location": "L2113", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_getsourceinfoerroraddendumforprops", - "community": 89, + "community": 162, "norm_label": "getsourceinfoerroraddendumforprops()" }, { @@ -209561,7 +209561,7 @@ "source_location": "L2129", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_getcurrentcomponenterrorinfo", - "community": 89, + "community": 162, "norm_label": "getcurrentcomponenterrorinfo()" }, { @@ -209571,7 +209571,7 @@ "source_location": "L2155", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_validateexplicitkey", - "community": 89, + "community": 162, "norm_label": "validateexplicitkey()" }, { @@ -209581,7 +209581,7 @@ "source_location": "L2197", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_validatechildkeys", - "community": 89, + "community": 162, "norm_label": "validatechildkeys()" }, { @@ -209591,7 +209591,7 @@ "source_location": "L2242", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_validateproptypes", - "community": 89, + "community": 162, "norm_label": "validateproptypes()" }, { @@ -209601,7 +209601,7 @@ "source_location": "L2285", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_validatefragmentprops", - "community": 89, + "community": 162, "norm_label": "validatefragmentprops()" }, { @@ -209611,7 +209611,7 @@ "source_location": "L2311", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_createelementwithvalidation", - "community": 89, + "community": 162, "norm_label": "createelementwithvalidation()" }, { @@ -209631,7 +209631,7 @@ "source_location": "L2402", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_cloneelementwithvalidation", - "community": 89, + "community": 162, "norm_label": "cloneelementwithvalidation()" }, { @@ -209661,7 +209661,7 @@ "source_location": "L2425", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_pop", - "community": 249, + "community": 372, "norm_label": "pop()" }, { @@ -209751,7 +209751,7 @@ "source_location": "L2687", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_unstable_runwithpriority", - "community": 431, + "community": 314, "norm_label": "unstable_runwithpriority()" }, { @@ -209761,7 +209761,7 @@ "source_location": "L2710", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_unstable_next", - "community": 431, + "community": 314, "norm_label": "unstable_next()" }, { @@ -209851,7 +209851,7 @@ "source_location": "L2885", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_requestpaint", - "community": 101, + "community": 89, "norm_label": "requestpaint()" }, { @@ -209911,7 +209911,7 @@ "source_location": "L3035", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_starttransition", - "community": 101, + "community": 89, "norm_label": "starttransition()" }, { @@ -209921,7 +209921,7 @@ "source_location": "L3065", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_enqueuetask", - "community": 89, + "community": 126, "norm_label": "enqueuetask()" }, { @@ -209931,7 +209931,7 @@ "source_location": "L3102", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_act", - "community": 89, + "community": 126, "norm_label": "act()" }, { @@ -209941,7 +209941,7 @@ "source_location": "L3229", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_popactscope", - "community": 89, + "community": 126, "norm_label": "popactscope()" }, { @@ -209951,7 +209951,7 @@ "source_location": "L3239", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_recursivelyflushasyncactwork", - "community": 89, + "community": 126, "norm_label": "recursivelyflushasyncactwork()" }, { @@ -209961,7 +209961,7 @@ "source_location": "L3267", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_flushactqueue", - "community": 89, + "community": 126, "norm_label": "flushactqueue()" }, { @@ -210001,7 +210001,7 @@ "source_location": "L3593", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_checkattributestringcoercion", - "community": 89, + "community": 162, "norm_label": "checkattributestringcoercion()" }, { @@ -210011,7 +210011,7 @@ "source_location": "L3611", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_checkpropstringcoercion", - "community": 89, + "community": 162, "norm_label": "checkpropstringcoercion()" }, { @@ -210021,7 +210021,7 @@ "source_location": "L3620", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_checkcsspropertystringcoercion", - "community": 89, + "community": 162, "norm_label": "checkcsspropertystringcoercion()" }, { @@ -210031,7 +210031,7 @@ "source_location": "L3629", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_checkhtmlstringcoercion", - "community": 89, + "community": 162, "norm_label": "checkhtmlstringcoercion()" }, { @@ -210041,7 +210041,7 @@ "source_location": "L3638", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_checkformfieldvaluestringcoercion", - "community": 89, + "community": 162, "norm_label": "checkformfieldvaluestringcoercion()" }, { @@ -210151,7 +210151,7 @@ "source_location": "L4511", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_describeclasscomponentframe", - "community": 659, + "community": 11, "norm_label": "describeclasscomponentframe()" }, { @@ -210161,7 +210161,7 @@ "source_location": "L4577", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_describefiber", - "community": 659, + "community": 11, "norm_label": "describefiber()" }, { @@ -210171,7 +210171,7 @@ "source_location": "L4610", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_getstackbyfiberindevandprod", - "community": 659, + "community": 11, "norm_label": "getstackbyfiberindevandprod()" }, { @@ -210221,7 +210221,7 @@ "source_location": "L4845", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_getcurrentfiberstackindev", - "community": 659, + "community": 11, "norm_label": "getcurrentfiberstackindev()" }, { @@ -210611,7 +210611,7 @@ "source_location": "L5705", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_getintrinsicnamespace", - "community": 249, + "community": 372, "norm_label": "getintrinsicnamespace()" }, { @@ -210621,7 +210621,7 @@ "source_location": "L5717", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_getchildnamespace", - "community": 249, + "community": 372, "norm_label": "getchildnamespace()" }, { @@ -210641,7 +210641,7 @@ "source_location": "L5952", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_dangerousstylevalue", - "community": 11, + "community": 162, "norm_label": "dangerousstylevalue()" }, { @@ -210651,7 +210651,7 @@ "source_location": "L5995", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_hyphenatestylename", - "community": 11, + "community": 162, "norm_label": "hyphenatestylename()" }, { @@ -210661,7 +210661,7 @@ "source_location": "L6104", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_createdangerousstringforstyles", - "community": 11, + "community": 162, "norm_label": "createdangerousstringforstyles()" }, { @@ -210731,7 +210731,7 @@ "source_location": "L6880", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_validateproperty", - "community": 89, + "community": 189, "norm_label": "validateproperty()" }, { @@ -210741,7 +210741,7 @@ "source_location": "L6930", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_warninvalidariaprops", - "community": 89, + "community": 189, "norm_label": "warninvalidariaprops()" }, { @@ -210751,7 +210751,7 @@ "source_location": "L6954", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_validateproperties", - "community": 89, + "community": 189, "norm_label": "validateproperties()" }, { @@ -210761,7 +210761,7 @@ "source_location": "L6963", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_validateproperties_1", - "community": 89, + "community": 126, "norm_label": "validateproperties$1()" }, { @@ -210781,7 +210781,7 @@ "source_location": "L7174", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_setreplayingevent", - "community": 132, + "community": 135, "norm_label": "setreplayingevent()" }, { @@ -210791,7 +210791,7 @@ "source_location": "L7183", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_resetreplayingevent", - "community": 132, + "community": 135, "norm_label": "resetreplayingevent()" }, { @@ -210811,7 +210811,7 @@ "source_location": "L7204", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_geteventtarget", - "community": 189, + "community": 135, "norm_label": "geteventtarget()" }, { @@ -210821,7 +210821,7 @@ "source_location": "L7222", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_restorestateoftarget", - "community": 189, + "community": 135, "norm_label": "restorestateoftarget()" }, { @@ -210851,7 +210851,7 @@ "source_location": "L7259", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_needsstaterestore", - "community": 189, + "community": 135, "norm_label": "needsstaterestore()" }, { @@ -210861,7 +210861,7 @@ "source_location": "L7262", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_restorestateifneeded", - "community": 189, + "community": 135, "norm_label": "restorestateifneeded()" }, { @@ -210871,7 +210871,7 @@ "source_location": "L7294", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_finisheventhandler", - "community": 189, + "community": 135, "norm_label": "finisheventhandler()" }, { @@ -210881,7 +210881,7 @@ "source_location": "L7312", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_batchedupdates", - "community": 189, + "community": 135, "norm_label": "batchedupdates()" }, { @@ -210931,7 +210931,7 @@ "source_location": "L7410", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_invokeguardedcallbackprod", - "community": 89, + "community": 126, "norm_label": "invokeguardedcallbackprod()" }, { @@ -210991,7 +210991,7 @@ "source_location": "L7638", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_rethrowcaughterror", - "community": 189, + "community": 135, "norm_label": "rethrowcaughterror()" }, { @@ -211021,7 +211021,7 @@ "source_location": "L7692", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_get", - "community": 189, + "community": 135, "norm_label": "get()" }, { @@ -211031,7 +211031,7 @@ "source_location": "L7695", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_has", - "community": 75, + "community": 101, "norm_label": "has()" }, { @@ -211051,7 +211051,7 @@ "source_location": "L7805", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_getnearestmountedfiber", - "community": 189, + "community": 135, "norm_label": "getnearestmountedfiber()" }, { @@ -211061,7 +211061,7 @@ "source_location": "L7842", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_getsuspenseinstancefromfiber", - "community": 189, + "community": 135, "norm_label": "getsuspenseinstancefromfiber()" }, { @@ -211071,7 +211071,7 @@ "source_location": "L7861", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_getcontainerfromfiber", - "community": 189, + "community": 135, "norm_label": "getcontainerfromfiber()" }, { @@ -211081,7 +211081,7 @@ "source_location": "L7864", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_isfibermounted", - "community": 189, + "community": 135, "norm_label": "isfibermounted()" }, { @@ -211091,7 +211091,7 @@ "source_location": "L7867", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_ismounted", - "community": 189, + "community": 135, "norm_label": "ismounted()" }, { @@ -211101,7 +211101,7 @@ "source_location": "L7892", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_assertismounted", - "community": 189, + "community": 135, "norm_label": "assertismounted()" }, { @@ -211111,7 +211111,7 @@ "source_location": "L7898", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_findcurrentfiberusingslowpath", - "community": 189, + "community": 135, "norm_label": "findcurrentfiberusingslowpath()" }, { @@ -211181,7 +211181,7 @@ "source_location": "L8200", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_oncommitroot", - "community": 101, + "community": 89, "norm_label": "oncommitroot()" }, { @@ -211191,7 +211191,7 @@ "source_location": "L8245", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_onpostcommitroot", - "community": 101, + "community": 89, "norm_label": "onpostcommitroot()" }, { @@ -211241,7 +211241,7 @@ "source_location": "L8320", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_markcommitstarted", - "community": 101, + "community": 89, "norm_label": "markcommitstarted()" }, { @@ -211251,7 +211251,7 @@ "source_location": "L8327", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_markcommitstopped", - "community": 101, + "community": 89, "norm_label": "markcommitstopped()" }, { @@ -211381,7 +211381,7 @@ "source_location": "L8418", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_marklayouteffectsstarted", - "community": 101, + "community": 89, "norm_label": "marklayouteffectsstarted()" }, { @@ -211391,7 +211391,7 @@ "source_location": "L8425", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_marklayouteffectsstopped", - "community": 101, + "community": 89, "norm_label": "marklayouteffectsstopped()" }, { @@ -211401,7 +211401,7 @@ "source_location": "L8432", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_markpassiveeffectsstarted", - "community": 101, + "community": 89, "norm_label": "markpassiveeffectsstarted()" }, { @@ -211411,7 +211411,7 @@ "source_location": "L8439", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_markpassiveeffectsstopped", - "community": 101, + "community": 89, "norm_label": "markpassiveeffectsstopped()" }, { @@ -211571,7 +211571,7 @@ "source_location": "L9008", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_includessynclane", - "community": 129, + "community": 101, "norm_label": "includessynclane()" }, { @@ -211661,7 +211661,7 @@ "source_location": "L9050", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_claimnextretrylane", - "community": 11, + "community": 129, "norm_label": "claimnextretrylane()" }, { @@ -211681,7 +211681,7 @@ "source_location": "L9063", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_pickarbitrarylane", - "community": 129, + "community": 101, "norm_label": "pickarbitrarylane()" }, { @@ -211721,7 +211721,7 @@ "source_location": "L9082", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_issubsetoflanes", - "community": 101, + "community": 266, "norm_label": "issubsetoflanes()" }, { @@ -211731,7 +211731,7 @@ "source_location": "L9085", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_mergelanes", - "community": 129, + "community": 266, "norm_label": "mergelanes()" }, { @@ -211791,7 +211791,7 @@ "source_location": "L9114", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_markrootupdated", - "community": 129, + "community": 126, "norm_label": "markrootupdated()" }, { @@ -211881,7 +211881,7 @@ "source_location": "L9322", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_getcurrentupdatepriority", - "community": 101, + "community": 89, "norm_label": "getcurrentupdatepriority()" }, { @@ -211891,7 +211891,7 @@ "source_location": "L9325", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_setcurrentupdatepriority", - "community": 101, + "community": 89, "norm_label": "setcurrentupdatepriority()" }, { @@ -211911,7 +211911,7 @@ "source_location": "L9338", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_highereventpriority", - "community": 101, + "community": 89, "norm_label": "highereventpriority()" }, { @@ -211921,7 +211921,7 @@ "source_location": "L9341", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_lowereventpriority", - "community": 101, + "community": 89, "norm_label": "lowereventpriority()" }, { @@ -211931,7 +211931,7 @@ "source_location": "L9344", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_ishighereventpriority", - "community": 189, + "community": 135, "norm_label": "ishighereventpriority()" }, { @@ -211951,7 +211951,7 @@ "source_location": "L9368", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_isrootdehydrated", - "community": 189, + "community": 135, "norm_label": "isrootdehydrated()" }, { @@ -211971,7 +211971,7 @@ "source_location": "L9378", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_attemptsynchronoushydration", - "community": 189, + "community": 135, "norm_label": "attemptsynchronoushydration()" }, { @@ -212021,7 +212021,7 @@ "source_location": "L9414", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_isdiscreteeventthatrequireshydration", - "community": 189, + "community": 135, "norm_label": "isdiscreteeventthatrequireshydration()" }, { @@ -212031,7 +212031,7 @@ "source_location": "L9418", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_createqueuedreplayableevent", - "community": 189, + "community": 135, "norm_label": "createqueuedreplayableevent()" }, { @@ -212041,7 +212041,7 @@ "source_location": "L9428", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_clearifcontinuousevent", - "community": 189, + "community": 135, "norm_label": "clearifcontinuousevent()" }, { @@ -212051,7 +212051,7 @@ "source_location": "L9463", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_accumulateorcreatecontinuousqueuedreplayableevent", - "community": 189, + "community": 135, "norm_label": "accumulateorcreatecontinuousqueuedreplayableevent()" }, { @@ -212061,7 +212061,7 @@ "source_location": "L9493", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_queueifcontinuousevent", - "community": 189, + "community": 135, "norm_label": "queueifcontinuousevent()" }, { @@ -212071,7 +212071,7 @@ "source_location": "L9539", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_attemptexplicithydrationtarget", - "community": 189, + "community": 135, "norm_label": "attemptexplicithydrationtarget()" }, { @@ -212081,7 +212081,7 @@ "source_location": "L9579", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_queueexplicithydrationtarget", - "community": 189, + "community": 135, "norm_label": "queueexplicithydrationtarget()" }, { @@ -212091,7 +212091,7 @@ "source_location": "L9605", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_attemptreplaycontinuousqueuedevent", - "community": 132, + "community": 135, "norm_label": "attemptreplaycontinuousqueuedevent()" }, { @@ -212101,7 +212101,7 @@ "source_location": "L9643", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_attemptreplaycontinuousqueuedeventinmap", - "community": 132, + "community": 135, "norm_label": "attemptreplaycontinuousqueuedeventinmap()" }, { @@ -212111,7 +212111,7 @@ "source_location": "L9649", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_replayunblockedevents", - "community": 132, + "community": 135, "norm_label": "replayunblockedevents()" }, { @@ -212121,7 +212121,7 @@ "source_location": "L9669", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_schedulecallbackifunblocked", - "community": 132, + "community": 126, "norm_label": "schedulecallbackifunblocked()" }, { @@ -212151,7 +212151,7 @@ "source_location": "L9752", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_isenabled", - "community": 11, + "community": 308, "norm_label": "isenabled()" }, { @@ -212171,7 +212171,7 @@ "source_location": "L9777", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_dispatchdiscreteevent", - "community": 101, + "community": 89, "norm_label": "dispatchdiscreteevent()" }, { @@ -212181,7 +212181,7 @@ "source_location": "L9791", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_dispatchcontinuousevent", - "community": 101, + "community": 89, "norm_label": "dispatchcontinuousevent()" }, { @@ -212191,7 +212191,7 @@ "source_location": "L9805", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_dispatchevent", - "community": 101, + "community": 89, "norm_label": "dispatchevent()" }, { @@ -212201,7 +212201,7 @@ "source_location": "L9815", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_dispatcheventwithenablecapturephaseselectivehydrationwithoutdiscreteeventreplay", - "community": 189, + "community": 135, "norm_label": "dispatcheventwithenablecapturephaseselectivehydrationwithoutdiscreteeventreplay()" }, { @@ -212211,7 +212211,7 @@ "source_location": "L9869", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_findinstanceblockingevent", - "community": 189, + "community": 135, "norm_label": "findinstanceblockingevent()" }, { @@ -212521,7 +212521,7 @@ "source_location": "L11094", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_iseventsupported", - "community": 89, + "community": 372, "norm_label": "iseventsupported()" }, { @@ -212561,7 +212561,7 @@ "source_location": "L11144", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_manualdispatchchangeevent", - "community": 189, + "community": 135, "norm_label": "manualdispatchchangeevent()" }, { @@ -212571,7 +212571,7 @@ "source_location": "L11161", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_runeventinbatch", - "community": 189, + "community": 135, "norm_label": "runeventinbatch()" }, { @@ -212731,7 +212731,7 @@ "source_location": "L11485", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_shallowequal", - "community": 189, + "community": 75, "norm_label": "shallowequal()" }, { @@ -213031,7 +213031,7 @@ "source_location": "L12433", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_processdispatchqueue", - "community": 189, + "community": 135, "norm_label": "processdispatchqueue()" }, { @@ -213041,7 +213041,7 @@ "source_location": "L12447", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_dispatcheventsforplugins", - "community": 189, + "community": 135, "norm_label": "dispatcheventsforplugins()" }, { @@ -213061,7 +213061,7 @@ "source_location": "L12470", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_listentonativeevent", - "community": 89, + "community": 101, "norm_label": "listentonativeevent()" }, { @@ -213071,7 +213071,7 @@ "source_location": "L12486", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_listentoallsupportedevents", - "community": 89, + "community": 101, "norm_label": "listentoallsupportedevents()" }, { @@ -213091,7 +213091,7 @@ "source_location": "L12550", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_ismatchingrootcontainer", - "community": 189, + "community": 135, "norm_label": "ismatchingrootcontainer()" }, { @@ -213101,7 +213101,7 @@ "source_location": "L12554", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_dispatcheventforplugineventsystem", - "community": 189, + "community": 135, "norm_label": "dispatcheventforplugineventsystem()" }, { @@ -213191,7 +213191,7 @@ "source_location": "L12971", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_normalizemarkupfortextorattribute", - "community": 11, + "community": 162, "norm_label": "normalizemarkupfortextorattribute()" }, { @@ -213201,7 +213201,7 @@ "source_location": "L12980", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_checkforunmatchedtext", - "community": 11, + "community": 162, "norm_label": "checkforunmatchedtext()" }, { @@ -213211,7 +213211,7 @@ "source_location": "L13005", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_getownerdocumentfromrootcontainer", - "community": 11, + "community": 372, "norm_label": "getownerdocumentfromrootcontainer()" }, { @@ -213231,7 +213231,7 @@ "source_location": "L13011", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_trapclickonnoninteractiveelement", - "community": 162, + "community": 11, "norm_label": "trapclickonnoninteractiveelement()" }, { @@ -213261,7 +213261,7 @@ "source_location": "L13177", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_createtextnode", - "community": 11, + "community": 372, "norm_label": "createtextnode()" }, { @@ -213321,7 +213321,7 @@ "source_location": "L13819", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_diffhydratedtext", - "community": 11, + "community": 372, "norm_label": "diffhydratedtext()" }, { @@ -213381,7 +213381,7 @@ "source_location": "L14216", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_getroothostcontext", - "community": 75, + "community": 372, "norm_label": "getroothostcontext()" }, { @@ -213391,7 +213391,7 @@ "source_location": "L14250", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_getchildhostcontext", - "community": 249, + "community": 372, "norm_label": "getchildhostcontext()" }, { @@ -213431,7 +213431,7 @@ "source_location": "L14278", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_createinstance", - "community": 11, + "community": 372, "norm_label": "createinstance()" }, { @@ -213441,7 +213441,7 @@ "source_location": "L14300", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_appendinitialchild", - "community": 718, + "community": 11, "norm_label": "appendinitialchild()" }, { @@ -213481,7 +213481,7 @@ "source_location": "L14336", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_createtextinstance", - "community": 11, + "community": 372, "norm_label": "createtextinstance()" }, { @@ -213521,7 +213521,7 @@ "source_location": "L14399", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_commitupdate", - "community": 11, + "community": 372, "norm_label": "commitupdate()" }, { @@ -213531,7 +213531,7 @@ "source_location": "L14406", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_resettextcontent", - "community": 718, + "community": 11, "norm_label": "resettextcontent()" }, { @@ -213551,7 +213551,7 @@ "source_location": "L14412", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_appendchild", - "community": 718, + "community": 11, "norm_label": "appendchild()" }, { @@ -213561,7 +213561,7 @@ "source_location": "L14415", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_appendchildtocontainer", - "community": 718, + "community": 11, "norm_label": "appendchildtocontainer()" }, { @@ -213571,7 +213571,7 @@ "source_location": "L14441", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_insertbefore", - "community": 718, + "community": 11, "norm_label": "insertbefore()" }, { @@ -213581,7 +213581,7 @@ "source_location": "L14444", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_insertincontainerbefore", - "community": 718, + "community": 11, "norm_label": "insertincontainerbefore()" }, { @@ -213631,7 +213631,7 @@ "source_location": "L14507", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_hideinstance", - "community": 11, + "community": 126, "norm_label": "hideinstance()" }, { @@ -213641,7 +213641,7 @@ "source_location": "L14519", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_hidetextinstance", - "community": 11, + "community": 126, "norm_label": "hidetextinstance()" }, { @@ -213651,7 +213651,7 @@ "source_location": "L14522", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_unhideinstance", - "community": 11, + "community": 162, "norm_label": "unhideinstance()" }, { @@ -213661,7 +213661,7 @@ "source_location": "L14528", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_unhidetextinstance", - "community": 11, + "community": 126, "norm_label": "unhidetextinstance()" }, { @@ -213801,7 +213801,7 @@ "source_location": "L14645", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_hydrateinstance", - "community": 11, + "community": 372, "norm_label": "hydrateinstance()" }, { @@ -213811,7 +213811,7 @@ "source_location": "L14662", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_hydratetextinstance", - "community": 11, + "community": 372, "norm_label": "hydratetextinstance()" }, { @@ -213821,7 +213821,7 @@ "source_location": "L14669", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_hydratesuspenseinstance", - "community": 11, + "community": 372, "norm_label": "hydratesuspenseinstance()" }, { @@ -213841,7 +213841,7 @@ "source_location": "L14703", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_getparentsuspenseinstance", - "community": 189, + "community": 135, "norm_label": "getparentsuspenseinstance()" }, { @@ -213881,7 +213881,7 @@ "source_location": "L14741", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_didnotmatchhydratedcontainertextinstance", - "community": 11, + "community": 162, "norm_label": "didnotmatchhydratedcontainertextinstance()" }, { @@ -213891,7 +213891,7 @@ "source_location": "L14745", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_didnotmatchhydratedtextinstance", - "community": 11, + "community": 162, "norm_label": "didnotmatchhydratedtextinstance()" }, { @@ -214001,7 +214001,7 @@ "source_location": "L14830", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_prepareportalmount", - "community": 89, + "community": 101, "norm_label": "prepareportalmount()" }, { @@ -214021,7 +214021,7 @@ "source_location": "L14850", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_precachefibernode", - "community": 11, + "community": 372, "norm_label": "precachefibernode()" }, { @@ -214061,7 +214061,7 @@ "source_location": "L14869", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_getclosestinstancefromnode", - "community": 189, + "community": 135, "norm_label": "getclosestinstancefromnode()" }, { @@ -214071,7 +214071,7 @@ "source_location": "L14952", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_getinstancefromnode", - "community": 189, + "community": 135, "norm_label": "getinstancefromnode()" }, { @@ -214091,7 +214091,7 @@ "source_location": "L14981", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_getfibercurrentpropsfromnode", - "community": 189, + "community": 135, "norm_label": "getfibercurrentpropsfromnode()" }, { @@ -214101,7 +214101,7 @@ "source_location": "L14984", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_updatefiberprops", - "community": 11, + "community": 372, "norm_label": "updatefiberprops()" }, { @@ -214181,7 +214181,7 @@ "source_location": "L15207", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_popcontext", - "community": 249, + "community": 372, "norm_label": "popcontext()" }, { @@ -214191,7 +214191,7 @@ "source_location": "L15214", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_poptoplevelcontextobject", - "community": 249, + "community": 372, "norm_label": "poptoplevelcontextobject()" }, { @@ -214201,7 +214201,7 @@ "source_location": "L15221", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_pushtoplevelcontextobject", - "community": 189, + "community": 75, "norm_label": "pushtoplevelcontextobject()" }, { @@ -214211,7 +214211,7 @@ "source_location": "L15232", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_processchildcontext", - "community": 189, + "community": 135, "norm_label": "processchildcontext()" }, { @@ -214231,7 +214231,7 @@ "source_location": "L15285", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_invalidatecontextprovider", - "community": 189, + "community": 135, "norm_label": "invalidatecontextprovider()" }, { @@ -214241,7 +214241,7 @@ "source_location": "L15313", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_findcurrentunmaskedcontext", - "community": 189, + "community": 135, "norm_label": "findcurrentunmaskedcontext()" }, { @@ -214281,7 +214281,7 @@ "source_location": "L15378", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_flushsynccallbacks", - "community": 101, + "community": 89, "norm_label": "flushsynccallbacks()" }, { @@ -214311,7 +214311,7 @@ "source_location": "L15441", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_gettreeid", - "community": 162, + "community": 266, "norm_label": "gettreeid()" }, { @@ -214351,7 +214351,7 @@ "source_location": "L15539", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_getbitlength", - "community": 75, + "community": 266, "norm_label": "getbitlength()" }, { @@ -214361,7 +214361,7 @@ "source_location": "L15543", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_getleadingbit", - "community": 75, + "community": 266, "norm_label": "getleadingbit()" }, { @@ -214371,7 +214371,7 @@ "source_location": "L15547", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_poptreecontext", - "community": 249, + "community": 372, "norm_label": "poptreecontext()" }, { @@ -214421,7 +214421,7 @@ "source_location": "L15618", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_markdidthrowwhilehydratingdev", - "community": 129, + "community": 101, "norm_label": "markdidthrowwhilehydratingdev()" }, { @@ -214541,7 +214541,7 @@ "source_location": "L15914", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_preparetohydratehostinstance", - "community": 11, + "community": 372, "norm_label": "preparetohydratehostinstance()" }, { @@ -214551,7 +214551,7 @@ "source_location": "L15930", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_preparetohydratehosttextinstance", - "community": 11, + "community": 162, "norm_label": "preparetohydratehosttextinstance()" }, { @@ -214561,7 +214561,7 @@ "source_location": "L15971", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_preparetohydratehostsuspenseinstance", - "community": 11, + "community": 372, "norm_label": "preparetohydratehostsuspenseinstance()" }, { @@ -214671,7 +214671,7 @@ "source_location": "L16388", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_isreactclass", - "community": 89, + "community": 126, "norm_label": "isreactclass()" }, { @@ -214681,7 +214681,7 @@ "source_location": "L16392", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_coerceref", - "community": 89, + "community": 126, "norm_label": "coerceref()" }, { @@ -214741,7 +214741,7 @@ "source_location": "L17463", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_resetchildfibers", - "community": 11, + "community": 372, "norm_label": "resetchildfibers()" }, { @@ -214761,7 +214761,7 @@ "source_location": "L17495", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_enterdisallowedcontextreadindev", - "community": 75, + "community": 11, "norm_label": "enterdisallowedcontextreadindev()" }, { @@ -214771,7 +214771,7 @@ "source_location": "L17500", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_exitdisallowedcontextreadindev", - "community": 75, + "community": 11, "norm_label": "exitdisallowedcontextreadindev()" }, { @@ -214791,7 +214791,7 @@ "source_location": "L17519", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_popprovider", - "community": 249, + "community": 372, "norm_label": "popprovider()" }, { @@ -214801,7 +214801,7 @@ "source_location": "L17529", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_schedulecontextworkonparentpath", - "community": 129, + "community": 266, "norm_label": "schedulecontextworkonparentpath()" }, { @@ -214811,7 +214811,7 @@ "source_location": "L17559", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_propagatecontextchange", - "community": 129, + "community": 101, "norm_label": "propagatecontextchange()" }, { @@ -214821,7 +214821,7 @@ "source_location": "L17565", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_propagatecontextchange_eager", - "community": 129, + "community": 101, "norm_label": "propagatecontextchange_eager()" }, { @@ -214921,7 +214921,7 @@ "source_location": "L17913", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_initializeupdatequeue", - "community": 89, + "community": 75, "norm_label": "initializeupdatequeue()" }, { @@ -214941,7 +214941,7 @@ "source_location": "L17943", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_createupdate", - "community": 129, + "community": 101, "norm_label": "createupdate()" }, { @@ -214951,7 +214951,7 @@ "source_location": "L17954", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_enqueueupdate", - "community": 129, + "community": 126, "norm_label": "enqueueupdate()" }, { @@ -214971,7 +214971,7 @@ "source_location": "L18022", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_enqueuecapturedupdate", - "community": 129, + "community": 101, "norm_label": "enqueuecapturedupdate()" }, { @@ -214981,7 +214981,7 @@ "source_location": "L18104", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_getstatefromupdate", - "community": 75, + "community": 11, "norm_label": "getstatefromupdate()" }, { @@ -214991,7 +214991,7 @@ "source_location": "L18195", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_processupdatequeue", - "community": 75, + "community": 266, "norm_label": "processupdatequeue()" }, { @@ -215031,7 +215031,7 @@ "source_location": "L18422", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_requiredcontext", - "community": 249, + "community": 372, "norm_label": "requiredcontext()" }, { @@ -215041,7 +215041,7 @@ "source_location": "L18430", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_getroothostcontainer", - "community": 249, + "community": 372, "norm_label": "getroothostcontainer()" }, { @@ -215061,7 +215061,7 @@ "source_location": "L18454", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_pophostcontainer", - "community": 249, + "community": 372, "norm_label": "pophostcontainer()" }, { @@ -215071,7 +215071,7 @@ "source_location": "L18460", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_gethostcontext", - "community": 249, + "community": 372, "norm_label": "gethostcontext()" }, { @@ -215081,7 +215081,7 @@ "source_location": "L18465", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_pushhostcontext", - "community": 249, + "community": 372, "norm_label": "pushhostcontext()" }, { @@ -215091,7 +215091,7 @@ "source_location": "L18480", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_pophostcontext", - "community": 249, + "community": 372, "norm_label": "pophostcontext()" }, { @@ -215111,7 +215111,7 @@ "source_location": "L18513", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_setdefaultshallowsuspensecontext", - "community": 249, + "community": 75, "norm_label": "setdefaultshallowsuspensecontext()" }, { @@ -215151,7 +215151,7 @@ "source_location": "L18525", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_popsuspensecontext", - "community": 249, + "community": 372, "norm_label": "popsuspensecontext()" }, { @@ -215161,7 +215161,7 @@ "source_location": "L18529", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_shouldcapturesuspense", - "community": 129, + "community": 101, "norm_label": "shouldcapturesuspense()" }, { @@ -215181,7 +215181,7 @@ "source_location": "L18618", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_resetworkinprogressversions", - "community": 249, + "community": 372, "norm_label": "resetworkinprogressversions()" }, { @@ -215211,7 +215211,7 @@ "source_location": "L18706", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_updatehooktypesdev", - "community": 89, + "community": 126, "norm_label": "updatehooktypesdev()" }, { @@ -215221,7 +215221,7 @@ "source_location": "L18720", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_checkdepsarearraydev", - "community": 89, + "community": 162, "norm_label": "checkdepsarearraydev()" }, { @@ -215231,7 +215231,7 @@ "source_location": "L18730", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_warnonhookmismatchindev", - "community": 89, + "community": 126, "norm_label": "warnonhookmismatchindev()" }, { @@ -215301,7 +215301,7 @@ "source_location": "L18986", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_mountworkinprogresshook", - "community": 11, + "community": 266, "norm_label": "mountworkinprogresshook()" }, { @@ -215331,7 +215331,7 @@ "source_location": "L19073", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_basicstatereducer", - "community": 11, + "community": 266, "norm_label": "basicstatereducer()" }, { @@ -215341,7 +215341,7 @@ "source_location": "L19078", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_mountreducer", - "community": 11, + "community": 75, "norm_label": "mountreducer()" }, { @@ -215461,7 +215461,7 @@ "source_location": "L19516", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_mountstate", - "community": 11, + "community": 266, "norm_label": "mountstate()" }, { @@ -215501,7 +215501,7 @@ "source_location": "L19577", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_mountref", - "community": 11, + "community": 266, "norm_label": "mountref()" }, { @@ -215521,7 +215521,7 @@ "source_location": "L19594", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_mounteffectimpl", - "community": 11, + "community": 266, "norm_label": "mounteffectimpl()" }, { @@ -215541,7 +215541,7 @@ "source_location": "L19624", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_mounteffect", - "community": 11, + "community": 266, "norm_label": "mounteffect()" }, { @@ -215561,7 +215561,7 @@ "source_location": "L19636", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_mountinsertioneffect", - "community": 11, + "community": 266, "norm_label": "mountinsertioneffect()" }, { @@ -215581,7 +215581,7 @@ "source_location": "L19644", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_mountlayouteffect", - "community": 11, + "community": 266, "norm_label": "mountlayouteffect()" }, { @@ -215601,7 +215601,7 @@ "source_location": "L19662", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_imperativehandleeffect", - "community": 89, + "community": 103, "norm_label": "imperativehandleeffect()" }, { @@ -215611,7 +215611,7 @@ "source_location": "L19690", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_mountimperativehandle", - "community": 11, + "community": 266, "norm_label": "mountimperativehandle()" }, { @@ -215641,7 +215641,7 @@ "source_location": "L19731", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_mountcallback", - "community": 11, + "community": 266, "norm_label": "mountcallback()" }, { @@ -215661,7 +215661,7 @@ "source_location": "L19757", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_mountmemo", - "community": 11, + "community": 266, "norm_label": "mountmemo()" }, { @@ -215681,7 +215681,7 @@ "source_location": "L19786", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_mountdeferredvalue", - "community": 11, + "community": 266, "norm_label": "mountdeferredvalue()" }, { @@ -215721,7 +215721,7 @@ "source_location": "L19886", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_mounttransition", - "community": 11, + "community": 266, "norm_label": "mounttransition()" }, { @@ -215751,7 +215751,7 @@ "source_location": "L19917", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_getisupdatingopaquevalueinrenderphaseindev", - "community": 129, + "community": 126, "norm_label": "getisupdatingopaquevalueinrenderphaseindev()" }, { @@ -215761,7 +215761,7 @@ "source_location": "L19923", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_mountid", - "community": 162, + "community": 266, "norm_label": "mountid()" }, { @@ -215841,7 +215841,7 @@ "source_location": "L20997", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_iscurrentupdatenested", - "community": 126, + "community": 89, "norm_label": "iscurrentupdatenested()" }, { @@ -215851,7 +215851,7 @@ "source_location": "L21001", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_marknestedupdatescheduled", - "community": 101, + "community": 89, "norm_label": "marknestedupdatescheduled()" }, { @@ -215881,7 +215881,7 @@ "source_location": "L21021", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_getcommittime", - "community": 126, + "community": 89, "norm_label": "getcommittime()" }, { @@ -215891,7 +215891,7 @@ "source_location": "L21025", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_recordcommittime", - "community": 101, + "community": 89, "norm_label": "recordcommittime()" }, { @@ -215971,7 +215971,7 @@ "source_location": "L21133", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_transferactualduration", - "community": 249, + "community": 372, "norm_label": "transferactualduration()" }, { @@ -216041,7 +216041,7 @@ "source_location": "L21628", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_callcomponentwillmount", - "community": 75, + "community": 126, "norm_label": "callcomponentwillmount()" }, { @@ -216091,7 +216091,7 @@ "source_location": "L21981", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_createcapturedvalueatfiber", - "community": 75, + "community": 126, "norm_label": "createcapturedvalueatfiber()" }, { @@ -216111,7 +216111,7 @@ "source_location": "L22003", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_showerrordialog", - "community": 129, + "community": 101, "norm_label": "showerrordialog()" }, { @@ -216121,7 +216121,7 @@ "source_location": "L22007", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_logcapturederror", - "community": 129, + "community": 101, "norm_label": "logcapturederror()" }, { @@ -216131,7 +216131,7 @@ "source_location": "L22078", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_createrooterrorupdate", - "community": 129, + "community": 101, "norm_label": "createrooterrorupdate()" }, { @@ -216141,7 +216141,7 @@ "source_location": "L22097", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_createclasserrorupdate", - "community": 129, + "community": 101, "norm_label": "createclasserrorupdate()" }, { @@ -216161,7 +216161,7 @@ "source_location": "L22204", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_attachretrylistener", - "community": 129, + "community": 101, "norm_label": "attachretrylistener()" }, { @@ -216171,7 +216171,7 @@ "source_location": "L22227", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_resetsuspendedcomponent", - "community": 129, + "community": 101, "norm_label": "resetsuspendedcomponent()" }, { @@ -216181,7 +216181,7 @@ "source_location": "L22247", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_getnearestsuspenseboundarytocapture", - "community": 129, + "community": 101, "norm_label": "getnearestsuspenseboundarytocapture()" }, { @@ -216191,7 +216191,7 @@ "source_location": "L22263", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_marksuspenseboundaryshouldcapture", - "community": 129, + "community": 101, "norm_label": "marksuspenseboundaryshouldcapture()" }, { @@ -216201,7 +216201,7 @@ "source_location": "L22371", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_throwexception", - "community": 129, + "community": 101, "norm_label": "throwexception()" }, { @@ -216451,7 +216451,7 @@ "source_location": "L23626", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_updatesuspenseoffscreenstate", - "community": 129, + "community": 249, "norm_label": "updatesuspenseoffscreenstate()" }, { @@ -216521,7 +216521,7 @@ "source_location": "L23840", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_updateworkinprogressoffscreenfiber", - "community": 75, + "community": 249, "norm_label": "updateworkinprogressoffscreenfiber()" }, { @@ -216531,7 +216531,7 @@ "source_location": "L23846", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_updatesuspenseprimarychildren", - "community": 75, + "community": 249, "norm_label": "updatesuspenseprimarychildren()" }, { @@ -216541,7 +216541,7 @@ "source_location": "L23877", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_updatesuspensefallbackchildren", - "community": 75, + "community": 249, "norm_label": "updatesuspensefallbackchildren()" }, { @@ -216591,7 +216591,7 @@ "source_location": "L24161", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_schedulesuspenseworkonfiber", - "community": 129, + "community": 266, "norm_label": "schedulesuspenseworkonfiber()" }, { @@ -216601,7 +216601,7 @@ "source_location": "L24172", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_propagatesuspensecontextchange", - "community": 129, + "community": 249, "norm_label": "propagatesuspensecontextchange()" }, { @@ -216641,7 +216641,7 @@ "source_location": "L24291", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_validatesuspenselistnestedchild", - "community": 89, + "community": 162, "norm_label": "validatesuspenselistnestedchild()" }, { @@ -216651,7 +216651,7 @@ "source_location": "L24308", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_validatesuspenselistchildren", - "community": 89, + "community": 162, "norm_label": "validatesuspenselistchildren()" }, { @@ -216781,7 +216781,7 @@ "source_location": "L25104", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_markupdate", - "community": 249, + "community": 372, "norm_label": "markupdate()" }, { @@ -216791,7 +216791,7 @@ "source_location": "L25110", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_markref_1", - "community": 249, + "community": 372, "norm_label": "markref$1()" }, { @@ -216801,7 +216801,7 @@ "source_location": "L25197", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_cutofftailifneeded", - "community": 249, + "community": 75, "norm_label": "cutofftailifneeded()" }, { @@ -216831,7 +216831,7 @@ "source_location": "L25457", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_completework", - "community": 249, + "community": 372, "norm_label": "completework()" }, { @@ -216841,7 +216841,7 @@ "source_location": "L26034", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_unwindwork", - "community": 249, + "community": 372, "norm_label": "unwindwork()" }, { @@ -216851,7 +216851,7 @@ "source_location": "L26150", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_unwindinterruptedwork", - "community": 249, + "community": 372, "norm_label": "unwindinterruptedwork()" }, { @@ -216991,7 +216991,7 @@ "source_location": "L26593", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_commitpassiveeffectdurations", - "community": 126, + "community": 89, "norm_label": "commitpassiveeffectdurations()" }, { @@ -217021,7 +217021,7 @@ "source_location": "L26944", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_hideorunhideallchildren", - "community": 11, + "community": 126, "norm_label": "hideorunhideallchildren()" }, { @@ -217061,7 +217061,7 @@ "source_location": "L27151", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_gethostparentfiber", - "community": 718, + "community": 11, "norm_label": "gethostparentfiber()" }, { @@ -217071,7 +217071,7 @@ "source_location": "L27165", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_ishostparent", - "community": 718, + "community": 11, "norm_label": "ishostparent()" }, { @@ -217081,7 +217081,7 @@ "source_location": "L27169", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_gethostsibling", - "community": 718, + "community": 11, "norm_label": "gethostsibling()" }, { @@ -217091,7 +217091,7 @@ "source_location": "L27217", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_commitplacement", - "community": 718, + "community": 11, "norm_label": "commitplacement()" }, { @@ -217101,7 +217101,7 @@ "source_location": "L27258", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_insertorappendplacementnodeintocontainer", - "community": 718, + "community": 11, "norm_label": "insertorappendplacementnodeintocontainer()" }, { @@ -217111,7 +217111,7 @@ "source_location": "L27285", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_insertorappendplacementnode", - "community": 718, + "community": 11, "norm_label": "insertorappendplacementnode()" }, { @@ -217211,7 +217211,7 @@ "source_location": "L27976", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_commitreconciliationeffects", - "community": 718, + "community": 126, "norm_label": "commitreconciliationeffects()" }, { @@ -217221,7 +217221,7 @@ "source_location": "L28001", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_commitlayouteffects", - "community": 126, + "community": 89, "norm_label": "commitlayouteffects()" }, { @@ -217231,7 +217231,7 @@ "source_location": "L28010", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_commitlayouteffects_begin", - "community": 126, + "community": 89, "norm_label": "commitlayouteffects_begin()" }, { @@ -217271,7 +217271,7 @@ "source_location": "L28197", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_reappearlayouteffects_begin", - "community": 126, + "community": 89, "norm_label": "reappearlayouteffects_begin()" }, { @@ -217291,7 +217291,7 @@ "source_location": "L28257", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_commitpassivemounteffects", - "community": 101, + "community": 89, "norm_label": "commitpassivemounteffects()" }, { @@ -217301,7 +217301,7 @@ "source_location": "L28262", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_commitpassivemounteffects_begin", - "community": 101, + "community": 89, "norm_label": "commitpassivemounteffects_begin()" }, { @@ -217331,7 +217331,7 @@ "source_location": "L28332", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_commitpassiveunmounteffects", - "community": 101, + "community": 89, "norm_label": "commitpassiveunmounteffects()" }, { @@ -217441,7 +217441,7 @@ "source_location": "L28624", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_oncommitroot_1", - "community": 101, + "community": 89, "norm_label": "oncommitroot$1()" }, { @@ -217461,7 +217461,7 @@ "source_location": "L28646", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_isconcurrentactenvironment", - "community": 89, + "community": 126, "norm_label": "isconcurrentactenvironment()" }, { @@ -217481,7 +217481,7 @@ "source_location": "L28739", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_getrendertargettime", - "community": 249, + "community": 372, "norm_label": "getrendertargettime()" }, { @@ -217521,7 +217521,7 @@ "source_location": "L28853", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_requestretrylane", - "community": 11, + "community": 129, "norm_label": "requestretrylane()" }, { @@ -217541,7 +217541,7 @@ "source_location": "L28938", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_scheduleinitialhydrationonroot", - "community": 129, + "community": 89, "norm_label": "scheduleinitialhydrationonroot()" }, { @@ -217551,7 +217551,7 @@ "source_location": "L28953", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_isunsafeclassrenderphaseupdate", - "community": 129, + "community": 126, "norm_label": "isunsafeclassrenderphaseupdate()" }, { @@ -217661,7 +217661,7 @@ "source_location": "L29545", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_discreteupdates", - "community": 101, + "community": 89, "norm_label": "discreteupdates()" }, { @@ -217671,7 +217671,7 @@ "source_location": "L29565", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_flushsync", - "community": 101, + "community": 89, "norm_label": "flushsync()" }, { @@ -217681,7 +217681,7 @@ "source_location": "L29598", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_isalreadyrendering", - "community": 101, + "community": 89, "norm_label": "isalreadyrendering()" }, { @@ -217691,7 +217691,7 @@ "source_location": "L29603", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_pushrenderlanes", - "community": 129, + "community": 75, "norm_label": "pushrenderlanes()" }, { @@ -217701,7 +217701,7 @@ "source_location": "L29608", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_poprenderlanes", - "community": 249, + "community": 372, "norm_label": "poprenderlanes()" }, { @@ -217771,7 +217771,7 @@ "source_location": "L29751", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_renderdidsuspend", - "community": 249, + "community": 372, "norm_label": "renderdidsuspend()" }, { @@ -217791,7 +217791,7 @@ "source_location": "L29774", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_renderdiderror", - "community": 129, + "community": 101, "norm_label": "renderdiderror()" }, { @@ -217801,7 +217801,7 @@ "source_location": "L29787", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_renderhasnotsuspendedyet", - "community": 249, + "community": 372, "norm_label": "renderhasnotsuspendedyet()" }, { @@ -217871,7 +217871,7 @@ "source_location": "L30066", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_commitroot", - "community": 101, + "community": 89, "norm_label": "commitroot()" }, { @@ -217881,7 +217881,7 @@ "source_location": "L30084", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_commitrootimpl", - "community": 101, + "community": 89, "norm_label": "commitrootimpl()" }, { @@ -217891,7 +217891,7 @@ "source_location": "L30361", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_flushpassiveeffects", - "community": 101, + "community": 89, "norm_label": "flushpassiveeffects()" }, { @@ -217911,7 +217911,7 @@ "source_location": "L30400", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_flushpassiveeffectsimpl", - "community": 101, + "community": 89, "norm_label": "flushpassiveeffectsimpl()" }, { @@ -217921,7 +217921,7 @@ "source_location": "L30485", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_isalreadyfailedlegacyerrorboundary", - "community": 129, + "community": 101, "norm_label": "isalreadyfailedlegacyerrorboundary()" }, { @@ -217931,7 +217931,7 @@ "source_location": "L30488", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_marklegacyerrorboundaryasfailed", - "community": 129, + "community": 101, "norm_label": "marklegacyerrorboundaryasfailed()" }, { @@ -217951,7 +217951,7 @@ "source_location": "L30505", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_capturecommitphaseerroronroot", - "community": 129, + "community": 126, "norm_label": "capturecommitphaseerroronroot()" }, { @@ -218031,7 +218031,7 @@ "source_location": "L30698", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_flushrenderphasestrictmodewarningsindev", - "community": 101, + "community": 89, "norm_label": "flushrenderphasestrictmodewarningsindev()" }, { @@ -218071,7 +218071,7 @@ "source_location": "L30869", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_warnaboutrenderphaseupdatesindev", - "community": 129, + "community": 126, "norm_label": "warnaboutrenderphaseupdatesindev()" }, { @@ -218131,7 +218131,7 @@ "source_location": "L30994", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_warnifsuspenseresolutionnotwrappedwithactdev", - "community": 89, + "community": 126, "norm_label": "warnifsuspenseresolutionnotwrappedwithactdev()" }, { @@ -218191,7 +218191,7 @@ "source_location": "L31160", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_markfailederrorboundaryforhotreloading", - "community": 129, + "community": 101, "norm_label": "markfailederrorboundaryforhotreloading()" }, { @@ -218291,7 +218291,7 @@ "source_location": "L31630", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_resetworkinprogress", - "community": 11, + "community": 372, "norm_label": "resetworkinprogress()" }, { @@ -218461,7 +218461,7 @@ "source_location": "L32106", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_getcontextforsubtree", - "community": 189, + "community": 135, "norm_label": "getcontextforsubtree()" }, { @@ -218491,7 +218491,7 @@ "source_location": "L32180", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_createhydrationcontainer", - "community": 129, + "community": 89, "norm_label": "createhydrationcontainer()" }, { @@ -218671,7 +218671,7 @@ "source_location": "L32787", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_schedulehydration", - "community": 189, + "community": 135, "norm_label": "schedulehydration()" }, { @@ -218791,7 +218791,7 @@ "source_location": "L33068", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_render", - "community": 75, + "community": 89, "norm_label": "render()" }, { @@ -218861,7 +218861,7 @@ "source_location": "L33225", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_react_flushsync_1", - "community": 101, + "community": 89, "norm_label": "flushsync$1()" }, { @@ -220721,7 +220721,7 @@ "source_location": "L12493", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_useconstant", - "community": 31, + "community": 75, "norm_label": "useconstant()" }, { @@ -220891,7 +220891,7 @@ "source_location": "L13069", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_warnonce", - "community": 428, + "community": 308, "norm_label": "warnonce()" }, { @@ -220911,7 +220911,7 @@ "source_location": "L13129", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_isvariantlabel", - "community": 308, + "community": 31, "norm_label": "isvariantlabel()" }, { @@ -220951,7 +220951,7 @@ "source_location": "L13164", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_getcurrenttreevariants", - "community": 308, + "community": 31, "norm_label": "getcurrenttreevariants()" }, { @@ -220961,7 +220961,7 @@ "source_location": "L13176", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_usecreatemotioncontext", - "community": 308, + "community": 31, "norm_label": "usecreatemotioncontext()" }, { @@ -220971,7 +220971,7 @@ "source_location": "L13180", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_variantlabelsasdependency", - "community": 308, + "community": 31, "norm_label": "variantlabelsasdependency()" }, { @@ -221081,7 +221081,7 @@ "source_location": "L13457", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_getvaluestate", - "community": 499, + "community": 520, "norm_label": "getvaluestate()" }, { @@ -221091,7 +221091,7 @@ "source_location": "L13465", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_resolvevariantfromprops", - "community": 499, + "community": 520, "norm_label": "resolvevariantfromprops()" }, { @@ -221211,7 +221211,7 @@ "source_location": "L13990", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_addscalecorrector", - "community": 428, + "community": 308, "norm_label": "addscalecorrector()" }, { @@ -221231,7 +221231,7 @@ "source_location": "L14000", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_scrapemotionvaluesfromprops", - "community": 598, + "community": 308, "norm_label": "scrapemotionvaluesfromprops()" }, { @@ -221241,7 +221241,7 @@ "source_location": "L14013", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_scrapemotionvaluesfromprops2", - "community": 598, + "community": 308, "norm_label": "scrapemotionvaluesfromprops2()" }, { @@ -221431,7 +221431,7 @@ "source_location": "L14288", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_duration", - "community": 520, + "community": 391, "norm_label": "duration()" }, { @@ -221691,7 +221691,7 @@ "source_location": "L14724", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_adduniqueitem", - "community": 428, + "community": 308, "norm_label": "adduniqueitem()" }, { @@ -221711,7 +221711,7 @@ "source_location": "L14739", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_add", - "community": 428, + "community": 308, "norm_label": "add()" }, { @@ -221721,7 +221721,7 @@ "source_location": "L14743", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_notify", - "community": 520, + "community": 308, "norm_label": "notify()" }, { @@ -221781,7 +221781,7 @@ "source_location": "L14860", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_onchange", - "community": 428, + "community": 308, "norm_label": "onchange()" }, { @@ -221791,7 +221791,7 @@ "source_location": "L14866", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_on", - "community": 428, + "community": 308, "norm_label": "on()" }, { @@ -221831,7 +221831,7 @@ "source_location": "L14919", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_setwithvelocity", - "community": 520, + "community": 391, "norm_label": "setwithvelocity()" }, { @@ -221881,7 +221881,7 @@ "source_location": "L15003", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_stop", - "community": 520, + "community": 391, "norm_label": "stop()" }, { @@ -221901,7 +221901,7 @@ "source_location": "L15020", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_clearanimation", - "community": 520, + "community": 391, "norm_label": "clearanimation()" }, { @@ -222701,7 +222701,7 @@ "source_location": "L17079", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_supports", - "community": 520, + "community": 411, "norm_label": "supports()" }, { @@ -222781,7 +222781,7 @@ "source_location": "L17310", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_getvariantcontext", - "community": 308, + "community": 31, "norm_label": "getvariantcontext()" }, { @@ -222791,7 +222791,7 @@ "source_location": "L17334", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_animatelist", - "community": 308, + "community": 31, "norm_label": "animatelist()" }, { @@ -222801,7 +222801,7 @@ "source_location": "L17337", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_createanimationstate", - "community": 308, + "community": 31, "norm_label": "createanimationstate()" }, { @@ -222821,7 +222821,7 @@ "source_location": "L17498", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_createtypestate", - "community": 308, + "community": 31, "norm_label": "createtypestate()" }, { @@ -222831,7 +222831,7 @@ "source_location": "L17506", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_createstate", - "community": 308, + "community": 31, "norm_label": "createstate()" }, { @@ -222841,7 +222841,7 @@ "source_location": "L17525", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_update", - "community": 428, + "community": 308, "norm_label": "update()" }, { @@ -222851,7 +222851,7 @@ "source_location": "L17540", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_updateanimationcontrolssubscription", - "community": 428, + "community": 308, "norm_label": "updateanimationcontrolssubscription()" }, { @@ -222861,7 +222861,7 @@ "source_location": "L17549", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_mount", - "community": 428, + "community": 308, "norm_label": "mount()" }, { @@ -222881,7 +222881,7 @@ "source_location": "L17624", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_adddomevent", - "community": 428, + "community": 308, "norm_label": "adddomevent()" }, { @@ -222901,7 +222901,7 @@ "source_location": "L17644", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_addpointerevent", - "community": 428, + "community": 308, "norm_label": "addpointerevent()" }, { @@ -223231,7 +223231,7 @@ "source_location": "L17944", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_transformboxpoints", - "community": 443, + "community": 411, "norm_label": "transformboxpoints()" }, { @@ -223371,7 +223371,7 @@ "source_location": "L18050", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_measureviewportbox", - "community": 443, + "community": 411, "norm_label": "measureviewportbox()" }, { @@ -223421,7 +223421,7 @@ "source_location": "L18248", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_startanimation", - "community": 520, + "community": 411, "norm_label": "startanimation()" }, { @@ -223501,7 +223501,7 @@ "source_location": "L18352", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_addlisteners", - "community": 428, + "community": 308, "norm_label": "addlisteners()" }, { @@ -223511,7 +223511,7 @@ "source_location": "L18394", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_getprops", - "community": 520, + "community": 411, "norm_label": "getprops()" }, { @@ -223541,7 +223541,7 @@ "source_location": "L18454", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_onpointerdown", - "community": 428, + "community": 308, "norm_label": "onpointerdown()" }, { @@ -223551,7 +223551,7 @@ "source_location": "L18460", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_createpanhandlers", - "community": 428, + "community": 308, "norm_label": "createpanhandlers()" }, { @@ -223571,7 +223571,7 @@ "source_location": "L18560", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_componentdidmount", - "community": 428, + "community": 308, "norm_label": "componentdidmount()" }, { @@ -223611,7 +223611,7 @@ "source_location": "L18666", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_animatesinglevalue", - "community": 443, + "community": 520, "norm_label": "animatesinglevalue()" }, { @@ -223931,7 +223931,7 @@ "source_location": "L19877", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_updatelayout", - "community": 428, + "community": 411, "norm_label": "updatelayout()" }, { @@ -224001,7 +224001,7 @@ "source_location": "L19973", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_resettransformstyle", - "community": 520, + "community": 308, "norm_label": "resettransformstyle()" }, { @@ -224181,7 +224181,7 @@ "source_location": "L20186", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_initintersectionobserver", - "community": 428, + "community": 499, "norm_label": "initintersectionobserver()" }, { @@ -224191,7 +224191,7 @@ "source_location": "L20198", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_observeintersection", - "community": 428, + "community": 499, "norm_label": "observeintersection()" }, { @@ -224201,7 +224201,7 @@ "source_location": "L20219", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_startobserver", - "community": 428, + "community": 499, "norm_label": "startobserver()" }, { @@ -224211,7 +224211,7 @@ "source_location": "L20262", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_hasviewportoptionchanged", - "community": 428, + "community": 308, "norm_label": "hasviewportoptionchanged()" }, { @@ -224221,7 +224221,7 @@ "source_location": "L20313", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_initprefersreducedmotion", - "community": 428, + "community": 308, "norm_label": "initprefersreducedmotion()" }, { @@ -224241,7 +224241,7 @@ "source_location": "L20404", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_constructor_notifyupdate", - "community": 520, + "community": 308, "norm_label": ".notifyupdate()" }, { @@ -224271,7 +224271,7 @@ "source_location": "L20488", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_bindtomotionvalue", - "community": 428, + "community": 308, "norm_label": "bindtomotionvalue()" }, { @@ -224291,7 +224291,7 @@ "source_location": "L20520", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_updatefeatures", - "community": 428, + "community": 308, "norm_label": "updatefeatures()" }, { @@ -224361,7 +224361,7 @@ "source_location": "L20606", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_getclosestvariantnode", - "community": 428, + "community": 308, "norm_label": "getclosestvariantnode()" }, { @@ -224371,7 +224371,7 @@ "source_location": "L20612", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_addvariantchild", - "community": 428, + "community": 308, "norm_label": "addvariantchild()" }, { @@ -224441,7 +224441,7 @@ "source_location": "L20691", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_getbasetarget", - "community": 499, + "community": 520, "norm_label": "getbasetarget()" }, { @@ -224461,7 +224461,7 @@ "source_location": "L20731", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_getbasetargetfromprops", - "community": 499, + "community": 520, "norm_label": "getbasetargetfromprops()" }, { @@ -224481,7 +224481,7 @@ "source_location": "L20738", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_handlechildmotionvalue", - "community": 428, + "community": 308, "norm_label": "handlechildmotionvalue()" }, { @@ -224511,7 +224511,7 @@ "source_location": "L20774", "_origin": "ast", "id": "docs_design_thingtime_launch_celebration_ds_thingtime_bundle_measureinstanceviewportbox", - "community": 443, + "community": 411, "norm_label": "measureinstanceviewportbox()" }, { @@ -227622,7 +227622,7 @@ "source_location": "L1", "_origin": "ast", "id": "ios_shared_watchattachments_thingtimewatchattachmenttransfer", - "community": 59, + "community": 64, "norm_label": "thingtimewatchattachmenttransfer.swift" }, { @@ -227632,7 +227632,7 @@ "source_location": "L3", "_origin": "ast", "id": "ios_shared_watchattachments_thingtimewatchattachmenttransfer_thingtimewatchattachmentmetadata", - "community": 59, + "community": 64, "norm_label": "thingtimewatchattachmentmetadata" }, { @@ -227642,7 +227642,7 @@ "source_location": "", "_origin": "ast", "id": "ios_shared_watchattachments_thingtimewatchattachmenttransfer_swift_string", - "community": 59, + "community": 64, "norm_label": "string" }, { @@ -227652,7 +227652,7 @@ "source_location": "", "_origin": "ast", "id": "ios_shared_watchattachments_thingtimewatchattachmenttransfer_swift_int64", - "community": 59, + "community": 64, "norm_label": "int64" }, { @@ -227662,7 +227662,7 @@ "source_location": "", "_origin": "ast", "id": "ios_shared_watchattachments_thingtimewatchattachmenttransfer_swift_any", - "community": 59, + "community": 64, "norm_label": "any" }, { @@ -227672,7 +227672,7 @@ "source_location": "L20", "_origin": "ast", "id": "ios_shared_watchattachments_thingtimewatchattachmenttransfer_thingtimewatchattachmenttransfer", - "community": 59, + "community": 64, "norm_label": "thingtimewatchattachmenttransfer" }, { @@ -227682,7 +227682,7 @@ "source_location": "L25", "_origin": "ast", "id": "ios_shared_watchattachments_thingtimewatchattachmenttransfer_thingtimewatchattachmenttransfer_makemetadata", - "community": 59, + "community": 64, "norm_label": ".makemetadata()" }, { @@ -227692,7 +227692,7 @@ "source_location": "L59", "_origin": "ast", "id": "ios_shared_watchattachments_thingtimewatchattachmenttransfer_thingtimewatchattachmenttransfer_metadata", - "community": 59, + "community": 64, "norm_label": ".metadata()" }, { @@ -227702,7 +227702,7 @@ "source_location": "L76", "_origin": "ast", "id": "ios_shared_watchattachments_thingtimewatchattachmenttransfer_thingtimewatchattachmenttransfer_ismimecharacter", - "community": 59, + "community": 64, "norm_label": ".ismimecharacter()" }, { @@ -227712,7 +227712,7 @@ "source_location": "", "_origin": "ast", "id": "character", - "community": 59, + "community": 64, "norm_label": "character" }, { @@ -227722,7 +227722,7 @@ "source_location": "", "_origin": "ast", "id": "ios_shared_watchattachments_thingtimewatchattachmenttransfer_swift_bool", - "community": 59, + "community": 64, "norm_label": "bool" }, { @@ -227732,7 +227732,7 @@ "source_location": "L81", "_origin": "ast", "id": "ios_shared_watchattachments_thingtimewatchattachmenttransfer_thingtimewatchattachmenttransfererror", - "community": 59, + "community": 64, "norm_label": "thingtimewatchattachmenttransfererror" }, { @@ -227742,7 +227742,7 @@ "source_location": "L82", "_origin": "ast", "id": "ios_shared_watchattachments_thingtimewatchattachmenttransfer_thingtimewatchattachmenttransfererror_invalidmetadata", - "community": 59, + "community": 64, "norm_label": "invalidmetadata" }, { @@ -227752,7 +227752,7 @@ "source_location": "L83", "_origin": "ast", "id": "ios_shared_watchattachments_thingtimewatchattachmenttransfer_thingtimewatchattachmenttransfererror_invalidrequestid", - "community": 59, + "community": 64, "norm_label": "invalidrequestid" }, { @@ -227762,7 +227762,7 @@ "source_location": "L84", "_origin": "ast", "id": "ios_shared_watchattachments_thingtimewatchattachmenttransfer_thingtimewatchattachmenttransfererror_invalidfilename", - "community": 59, + "community": 64, "norm_label": "invalidfilename" }, { @@ -227772,7 +227772,7 @@ "source_location": "L85", "_origin": "ast", "id": "ios_shared_watchattachments_thingtimewatchattachmenttransfer_thingtimewatchattachmenttransfererror_invalidcontenttype", - "community": 59, + "community": 64, "norm_label": "invalidcontenttype" }, { @@ -227782,7 +227782,7 @@ "source_location": "L86", "_origin": "ast", "id": "ios_shared_watchattachments_thingtimewatchattachmenttransfer_thingtimewatchattachmenttransfererror_invalidsize", - "community": 59, + "community": 64, "norm_label": "invalidsize" }, { @@ -227792,7 +227792,7 @@ "source_location": "L99", "_origin": "ast", "id": "ios_shared_watchattachments_thingtimewatchattachmenttransfer_thingtimewatchuploadrequirements", - "community": 59, + "community": 64, "norm_label": "thingtimewatchuploadrequirements" }, { @@ -227802,7 +227802,7 @@ "source_location": "L107", "_origin": "ast", "id": "ios_shared_watchattachments_thingtimewatchattachmenttransfer_thingtimewatchuploadrequirements_satisfies", - "community": 59, + "community": 64, "norm_label": ".satisfies()" }, { @@ -227812,7 +227812,7 @@ "source_location": "L113", "_origin": "ast", "id": "ios_shared_watchattachments_thingtimewatchattachmenttransfer_thingtimewatchuploadrequirements_semanticversion", - "community": 59, + "community": 64, "norm_label": ".semanticversion()" }, { @@ -227822,7 +227822,7 @@ "source_location": "", "_origin": "ast", "id": "ios_shared_watchattachments_thingtimewatchattachmenttransfer_swift_int", - "community": 59, + "community": 64, "norm_label": "int" }, { @@ -227912,7 +227912,7 @@ "source_location": "", "_origin": "ast", "id": "identifiable", - "community": 57, + "community": 22, "norm_label": "identifiable" }, { @@ -228212,7 +228212,7 @@ "source_location": "L1", "_origin": "ast", "id": "ios_thingtime_app_thingtimeapp", - "community": 225, + "community": 22, "norm_label": "thingtimeapp.swift" }, { @@ -228222,7 +228222,7 @@ "source_location": "L3", "_origin": "ast", "id": "ios_thingtime_app_thingtimeapp_thingtimeapp", - "community": 225, + "community": 22, "norm_label": "thingtimeapp" }, { @@ -228232,7 +228232,7 @@ "source_location": "", "_origin": "ast", "id": "app", - "community": 225, + "community": 22, "norm_label": "app" }, { @@ -228242,7 +228242,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtime_app_thingtimeapp_swift_scene", - "community": 225, + "community": 22, "norm_label": "scene" }, { @@ -228704,7 +228704,7 @@ "source_location": "L1", "_origin": "ast", "id": "ios_thingtime_native_thingtimeappdelegate", - "community": 22, + "community": 59, "norm_label": "thingtimeappdelegate.swift" }, { @@ -228715,7 +228715,7 @@ "source_location": "L2", "_origin": "ast", "id": "uikit", - "community": 57, + "community": 59, "norm_label": "uikit" }, { @@ -228885,7 +228885,7 @@ "source_location": "L50", "_origin": "ast", "id": "ios_thingtime_native_thingtimeappdelegate_data", - "community": 22, + "community": 59, "norm_label": "data" }, { @@ -228895,7 +228895,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtime_native_thingtimeappdelegate_swift_string", - "community": 22, + "community": 59, "norm_label": "string" }, { @@ -228916,7 +228916,7 @@ "source_location": "L4", "_origin": "ast", "id": "watchconnectivity", - "community": 59, + "community": 22, "norm_label": "watchconnectivity" }, { @@ -229496,7 +229496,7 @@ "source_location": "L1", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader", - "community": 59, + "community": 64, "norm_label": "thingtimewatchattachmentuploader.swift" }, { @@ -229517,7 +229517,7 @@ "source_location": "L6", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_thingtimewatchattachmentuploader", - "community": 59, + "community": 64, "norm_label": "thingtimewatchattachmentuploader" }, { @@ -229527,7 +229527,7 @@ "source_location": "L8", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_result", - "community": 59, + "community": 64, "norm_label": "result" }, { @@ -229537,7 +229537,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_swift_string", - "community": 59, + "community": 64, "norm_label": "string" }, { @@ -229547,7 +229547,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_swift_bool", - "community": 59, + "community": 64, "norm_label": "bool" }, { @@ -229557,7 +229557,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_swift_any", - "community": 59, + "community": 64, "norm_label": "any" }, { @@ -229567,7 +229567,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_swift_void", - "community": 59, + "community": 64, "norm_label": "void" }, { @@ -229577,7 +229577,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_swift_wkwebview", - "community": 59, + "community": 64, "norm_label": "wkwebview" }, { @@ -229587,7 +229587,7 @@ "source_location": "L31", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_thingtimewatchattachmentuploader_attach", - "community": 59, + "community": 64, "norm_label": ".attach()" }, { @@ -229597,7 +229597,7 @@ "source_location": "L35", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_thingtimewatchattachmentuploader_processpending", - "community": 59, + "community": 64, "norm_label": ".processpending()" }, { @@ -229607,7 +229607,7 @@ "source_location": "L72", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_thingtimewatchattachmentuploader_persistincoming", - "community": 59, + "community": 64, "norm_label": ".persistincoming()" }, { @@ -229617,7 +229617,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_swift_wcsessionfile", - "community": 59, + "community": 64, "norm_label": "wcsessionfile" }, { @@ -229627,7 +229627,7 @@ "source_location": "L88", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_thingtimewatchattachmentuploader_upload", - "community": 59, + "community": 64, "norm_label": ".upload()" }, { @@ -229637,7 +229637,7 @@ "source_location": "", "_origin": "ast", "id": "pending", - "community": 59, + "community": 64, "norm_label": "pending" }, { @@ -229647,7 +229647,7 @@ "source_location": "L179", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_thingtimewatchattachmentuploader_verifycapabilities", - "community": 59, + "community": 64, "norm_label": ".verifycapabilities()" }, { @@ -229657,7 +229657,7 @@ "source_location": "L197", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_thingtimewatchattachmentuploader_requestjson", - "community": 59, + "community": 64, "norm_label": ".requestjson()" }, { @@ -229667,7 +229667,7 @@ "source_location": "L243", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_thingtimewatchattachmentuploader_uploadpart", - "community": 59, + "community": 64, "norm_label": ".uploadpart()" }, { @@ -229677,7 +229677,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_swift_data", - "community": 59, + "community": 64, "norm_label": "data" }, { @@ -229687,7 +229687,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_swift_url", - "community": 59, + "community": 64, "norm_label": "url" }, { @@ -229697,7 +229697,7 @@ "source_location": "L254", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_pending", - "community": 59, + "community": 64, "norm_label": "pending" }, { @@ -229707,7 +229707,7 @@ "source_location": "L259", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_preparedpart", - "community": 59, + "community": 64, "norm_label": "preparedpart" }, { @@ -229717,7 +229717,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_swift_int", - "community": 59, + "community": 64, "norm_label": "int" }, { @@ -229727,7 +229727,7 @@ "source_location": "L265", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_thingtimewatchattachmentuploader_loadfile", - "community": 59, + "community": 64, "norm_label": ".loadfile()" }, { @@ -229737,7 +229737,7 @@ "source_location": "L273", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_thingtimewatchattachmentuploader_prepareparts", - "community": 59, + "community": 64, "norm_label": ".prepareparts()" }, { @@ -229747,7 +229747,7 @@ "source_location": "L292", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_thingtimewatchattachmentuploader_payloadurl", - "community": 59, + "community": 64, "norm_label": ".payloadurl()" }, { @@ -229757,7 +229757,7 @@ "source_location": "L298", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_thingtimewatchattachmentuploader_metadataurl", - "community": 59, + "community": 64, "norm_label": ".metadataurl()" }, { @@ -229767,7 +229767,7 @@ "source_location": "L302", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_thingtimewatchattachmentuploader_loadpending", - "community": 59, + "community": 64, "norm_label": ".loadpending()" }, { @@ -229777,7 +229777,7 @@ "source_location": "L313", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_thingtimewatchattachmentuploader_remove", - "community": 59, + "community": 64, "norm_label": ".remove()" }, { @@ -229787,7 +229787,7 @@ "source_location": "L319", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_thingtimewatchattachmentuploaderror", - "community": 59, + "community": 64, "norm_label": "thingtimewatchattachmentuploaderror" }, { @@ -229797,7 +229797,7 @@ "source_location": "L320", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_thingtimewatchattachmentuploaderror_openphone", - "community": 59, + "community": 64, "norm_label": "openphone" }, { @@ -229807,7 +229807,7 @@ "source_location": "L321", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_thingtimewatchattachmentuploaderror_filechanged", - "community": 59, + "community": 64, "norm_label": "filechanged" }, { @@ -229817,7 +229817,7 @@ "source_location": "L322", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_thingtimewatchattachmentuploaderror_invalidserverresponse", - "community": 59, + "community": 64, "norm_label": "invalidserverresponse" }, { @@ -229827,7 +229827,7 @@ "source_location": "L323", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_thingtimewatchattachmentuploaderror_incompatibleserver", - "community": 59, + "community": 64, "norm_label": "incompatibleserver" }, { @@ -229837,7 +229837,7 @@ "source_location": "L324", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_thingtimewatchattachmentuploaderror_server", - "community": 59, + "community": 64, "norm_label": "server" }, { @@ -229847,7 +229847,7 @@ "source_location": "L325", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_thingtimewatchattachmentuploaderror_partuploadfailed", - "community": 59, + "community": 64, "norm_label": "partuploadfailed" }, { @@ -229857,7 +229857,7 @@ "source_location": "L345", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_dictionary", - "community": 59, + "community": 64, "norm_label": "dictionary" }, { @@ -229867,7 +229867,7 @@ "source_location": "L346", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_dictionary_requiredstring", - "community": 59, + "community": 64, "norm_label": ".requiredstring()" }, { @@ -229877,7 +229877,7 @@ "source_location": "L353", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_dictionary_requiredint", - "community": 59, + "community": 64, "norm_label": ".requiredint()" }, { @@ -229887,7 +229887,7 @@ "source_location": "L359", "_origin": "ast", "id": "ios_thingtime_native_thingtimewatchattachmentuploader_dictionary_requireddictionary", - "community": 59, + "community": 64, "norm_label": ".requireddictionary()" }, { @@ -229897,7 +229897,7 @@ "source_location": "L1", "_origin": "ast", "id": "ios_thingtime_web_deploymentpresentation", - "community": 57, + "community": 652, "norm_label": "deploymentpresentation.swift" }, { @@ -229907,7 +229907,7 @@ "source_location": "L3", "_origin": "ast", "id": "ios_thingtime_web_deploymentpresentation_deploymentpresentation", - "community": 57, + "community": 652, "norm_label": "deploymentpresentation" }, { @@ -229917,7 +229917,7 @@ "source_location": "L4", "_origin": "ast", "id": "ios_thingtime_web_deploymentpresentation_deploymentpresentation_title", - "community": 57, + "community": 652, "norm_label": ".title()" }, { @@ -229927,7 +229927,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtime_web_deploymentpresentation_swift_string", - "community": 57, + "community": 652, "norm_label": "string" }, { @@ -229937,7 +229937,7 @@ "source_location": "L17", "_origin": "ast", "id": "ios_thingtime_web_deploymentpresentation_deploymentpresentation_subtitle", - "community": 57, + "community": 652, "norm_label": ".subtitle()" }, { @@ -229947,7 +229947,7 @@ "source_location": "L26", "_origin": "ast", "id": "ios_thingtime_web_deploymentpresentation_deploymentpresentation_statetitle", - "community": 57, + "community": 652, "norm_label": ".statetitle()" }, { @@ -229957,7 +229957,7 @@ "source_location": "L30", "_origin": "ast", "id": "ios_thingtime_web_deploymentpresentation_deploymentpresentation_statusicon", - "community": 57, + "community": 652, "norm_label": ".statusicon()" }, { @@ -229967,7 +229967,7 @@ "source_location": "L43", "_origin": "ast", "id": "ios_thingtime_web_deploymentpresentation_deploymentpresentation_statuscolor", - "community": 57, + "community": 652, "norm_label": ".statuscolor()" }, { @@ -229977,7 +229977,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtime_web_deploymentpresentation_swift_color", - "community": 57, + "community": 652, "norm_label": "color" }, { @@ -229987,7 +229987,7 @@ "source_location": "L56", "_origin": "ast", "id": "ios_thingtime_web_deploymentpresentation_deploymentpresentation_nonempty", - "community": 57, + "community": 652, "norm_label": ".nonempty()" }, { @@ -229997,7 +229997,7 @@ "source_location": "L1", "_origin": "ast", "id": "ios_thingtime_web_destinationpickerdrawer", - "community": 57, + "community": 510, "norm_label": "destinationpickerdrawer.swift" }, { @@ -230007,7 +230007,7 @@ "source_location": "L3", "_origin": "ast", "id": "ios_thingtime_web_destinationpickerdrawer_destinationpickerdrawer", - "community": 57, + "community": 510, "norm_label": "destinationpickerdrawer" }, { @@ -230027,7 +230027,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtime_web_destinationpickerdrawer_swift_string", - "community": 57, + "community": 510, "norm_label": "string" }, { @@ -230037,7 +230037,7 @@ "source_location": "", "_origin": "ast", "id": "edgeinsets", - "community": 57, + "community": 510, "norm_label": "edgeinsets" }, { @@ -230047,7 +230047,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtime_web_destinationpickerdrawer_swift_void", - "community": 57, + "community": 510, "norm_label": "void" }, { @@ -230057,7 +230057,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtime_web_destinationpickerdrawer_swift_set", - "community": 57, + "community": 510, "norm_label": "set" }, { @@ -230067,7 +230067,7 @@ "source_location": "L15", "_origin": "ast", "id": "ios_thingtime_web_destinationpickerdrawer_destinationpickerdrawer_init", - "community": 57, + "community": 510, "norm_label": ".init()" }, { @@ -230077,7 +230077,7 @@ "source_location": "L115", "_origin": "ast", "id": "ios_thingtime_web_destinationpickerdrawer_destinationpickerdrawer_refreshdeployments", - "community": 57, + "community": 510, "norm_label": ".refreshdeployments()" }, { @@ -230087,7 +230087,7 @@ "source_location": "L121", "_origin": "ast", "id": "ios_thingtime_web_destinationpickerdrawer_destinationpickerdrawer_expandselecteddeploymentsection", - "community": 57, + "community": 510, "norm_label": ".expandselecteddeploymentsection()" }, { @@ -230097,7 +230097,7 @@ "source_location": "L131", "_origin": "ast", "id": "ios_thingtime_web_destinationpickerdrawer_destinationpickerdrawer_expansionbinding", - "community": 57, + "community": 510, "norm_label": ".expansionbinding()" }, { @@ -230107,7 +230107,7 @@ "source_location": "", "_origin": "ast", "id": "binding", - "community": 57, + "community": 510, "norm_label": "binding" }, { @@ -230117,7 +230117,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtime_web_destinationpickerdrawer_swift_bool", - "community": 57, + "community": 510, "norm_label": "bool" }, { @@ -230127,7 +230127,7 @@ "source_location": "L147", "_origin": "ast", "id": "ios_thingtime_web_destinationpickerdrawer_destinationpickerheader", - "community": 57, + "community": 510, "norm_label": "destinationpickerheader" }, { @@ -230137,7 +230137,7 @@ "source_location": "L183", "_origin": "ast", "id": "ios_thingtime_web_destinationpickerdrawer_deploymentloadstatus", - "community": 57, + "community": 510, "norm_label": "deploymentloadstatus" }, { @@ -230147,7 +230147,7 @@ "source_location": "L1", "_origin": "ast", "id": "ios_thingtime_web_destinationpickerrows", - "community": 57, + "community": 596, "norm_label": "destinationpickerrows.swift" }, { @@ -230157,7 +230157,7 @@ "source_location": "L4", "_origin": "ast", "id": "ios_thingtime_web_destinationpickerrows_destinationrow", - "community": 57, + "community": 596, "norm_label": "destinationrow" }, { @@ -230167,7 +230167,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtime_web_destinationpickerrows_swift_bool", - "community": 57, + "community": 596, "norm_label": "bool" }, { @@ -230177,7 +230177,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtime_web_destinationpickerrows_swift_void", - "community": 57, + "community": 596, "norm_label": "void" }, { @@ -230187,7 +230187,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtime_web_destinationpickerrows_swift_string", - "community": 57, + "community": 596, "norm_label": "string" }, { @@ -230197,7 +230197,7 @@ "source_location": "L60", "_origin": "ast", "id": "ios_thingtime_web_destinationpickerrows_destinationrow_select", - "community": 57, + "community": 596, "norm_label": ".select()" }, { @@ -230207,7 +230207,7 @@ "source_location": "L65", "_origin": "ast", "id": "ios_thingtime_web_destinationpickerrows_deploymentsectiondisclosure", - "community": 57, + "community": 596, "norm_label": "deploymentsectiondisclosure" }, { @@ -230217,7 +230217,7 @@ "source_location": "L135", "_origin": "ast", "id": "ios_thingtime_web_destinationpickerrows_deploymentsectiondisclosure_successfullabel", - "community": 57, + "community": 596, "norm_label": ".successfullabel()" }, { @@ -230227,7 +230227,7 @@ "source_location": "L144", "_origin": "ast", "id": "ios_thingtime_web_destinationpickerrows_deploymentoptionrow", - "community": 57, + "community": 596, "norm_label": "deploymentoptionrow" }, { @@ -230237,7 +230237,7 @@ "source_location": "L226", "_origin": "ast", "id": "ios_thingtime_web_destinationpickerrows_deploymentoptionrow_select", - "community": 57, + "community": 596, "norm_label": ".select()" }, { @@ -230247,7 +230247,7 @@ "source_location": "L231", "_origin": "ast", "id": "ios_thingtime_web_destinationpickerrows_destinationcontextmenu", - "community": 57, + "community": 596, "norm_label": "destinationcontextmenu" }, { @@ -230257,7 +230257,7 @@ "source_location": "L252", "_origin": "ast", "id": "ios_thingtime_web_destinationpickerrows_destinationcontextmenu_copyurl", - "community": 57, + "community": 596, "norm_label": ".copyurl()" }, { @@ -230267,7 +230267,7 @@ "source_location": "L256", "_origin": "ast", "id": "ios_thingtime_web_destinationpickerrows_destinationcontextmenu_openinbrowser", - "community": 57, + "community": 596, "norm_label": ".openinbrowser()" }, { @@ -230277,7 +230277,7 @@ "source_location": "L1", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdeploymentsclient", - "community": 57, + "community": 469, "norm_label": "thingtimewebdeploymentsclient.swift" }, { @@ -230287,7 +230287,7 @@ "source_location": "L3", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdeploymentsclient_thingtimewebdeploymentsclient", - "community": 57, + "community": 469, "norm_label": "thingtimewebdeploymentsclient" }, { @@ -230297,7 +230297,7 @@ "source_location": "L4", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdeploymentsclient_clienterror", - "community": 57, + "community": 469, "norm_label": "clienterror" }, { @@ -230307,7 +230307,7 @@ "source_location": "", "_origin": "ast", "id": "error", - "community": 10, + "community": 260, "norm_label": "error" }, { @@ -230317,7 +230317,7 @@ "source_location": "L5", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdeploymentsclient_clienterror_invalidresponse", - "community": 57, + "community": 469, "norm_label": "invalidresponse" }, { @@ -230327,7 +230327,7 @@ "source_location": "L6", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdeploymentsclient_clienterror_requestfailed", - "community": 57, + "community": 469, "norm_label": "requestfailed" }, { @@ -230337,7 +230337,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdeploymentsclient_swift_urlsession", - "community": 57, + "community": 469, "norm_label": "urlsession" }, { @@ -230347,7 +230347,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdeploymentsclient_swift_url", - "community": 57, + "community": 469, "norm_label": "url" }, { @@ -230357,7 +230357,7 @@ "source_location": "L12", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdeploymentsclient_thingtimewebdeploymentsclient_fetchdeployments", - "community": 57, + "community": 469, "norm_label": ".fetchdeployments()" }, { @@ -230367,7 +230367,7 @@ "source_location": "L1", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdestination", - "community": 57, + "community": 604, "norm_label": "thingtimewebdestination.swift" }, { @@ -230377,7 +230377,7 @@ "source_location": "L3", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdestination_thingtimewebdestination", - "community": 57, + "community": 523, "norm_label": "thingtimewebdestination" }, { @@ -230387,7 +230387,7 @@ "source_location": "L4", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdestination_startupselection", - "community": 57, + "community": 604, "norm_label": "startupselection" }, { @@ -230397,7 +230397,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdestination_swift_string", - "community": 57, + "community": 604, "norm_label": "string" }, { @@ -230407,7 +230407,7 @@ "source_location": "L9", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdestination_destination", - "community": 57, + "community": 523, "norm_label": "destination" }, { @@ -230417,7 +230417,7 @@ "source_location": "L10", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdestination_source", - "community": 57, + "community": 753, "norm_label": "source" }, { @@ -230427,7 +230427,7 @@ "source_location": "L11", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdestination_source_production", - "community": 57, + "community": 753, "norm_label": "production" }, { @@ -230437,7 +230437,7 @@ "source_location": "L12", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdestination_source_configured", - "community": 57, + "community": 753, "norm_label": "configured" }, { @@ -230447,7 +230447,7 @@ "source_location": "L13", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdestination_source_verceldeployment", - "community": 57, + "community": 753, "norm_label": "verceldeployment" }, { @@ -230457,7 +230457,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdestination_swift_url", - "community": 57, + "community": 523, "norm_label": "url" }, { @@ -230467,7 +230467,7 @@ "source_location": "L23", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdestination_deploymentsummary", - "community": 57, + "community": 604, "norm_label": "deploymentsummary" }, { @@ -230477,7 +230477,7 @@ "source_location": "L36", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdestination_deploymentgroup", - "community": 57, + "community": 604, "norm_label": "deploymentgroup" }, { @@ -230487,7 +230487,7 @@ "source_location": "L42", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdestination_deploymentoption", - "community": 57, + "community": 604, "norm_label": "deploymentoption" }, { @@ -230497,7 +230497,7 @@ "source_location": "L51", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdestination_deploymentsection", - "community": 57, + "community": 604, "norm_label": "deploymentsection" }, { @@ -230507,7 +230507,7 @@ "source_location": "L65", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdestination_deploymentsoverview", - "community": 57, + "community": 604, "norm_label": "deploymentsoverview" }, { @@ -230517,7 +230517,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdestination_swift_bool", - "community": 57, + "community": 604, "norm_label": "bool" }, { @@ -230527,7 +230527,7 @@ "source_location": "L72", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdestination_deploymentsoverview_init", - "community": 57, + "community": 604, "norm_label": ".init()" }, { @@ -230607,7 +230607,7 @@ "source_location": "L227", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdestination_thingtimewebdestination_deploymentgroups", - "community": 57, + "community": 523, "norm_label": ".deploymentgroups()" }, { @@ -230617,7 +230617,7 @@ "source_location": "L265", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdestination_thingtimewebdestination_deploymentsections", - "community": 57, + "community": 604, "norm_label": ".deploymentsections()" }, { @@ -230627,7 +230627,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdestination_swift_set", - "community": 57, + "community": 604, "norm_label": "set" }, { @@ -230637,7 +230637,7 @@ "source_location": "L299", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdestination_thingtimewebdestination_verceldeploymentdestination", - "community": 57, + "community": 523, "norm_label": ".verceldeploymentdestination()" }, { @@ -230647,7 +230647,7 @@ "source_location": "L324", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdestination_thingtimewebdestination_configureddestination", - "community": 57, + "community": 523, "norm_label": ".configureddestination()" }, { @@ -230657,7 +230657,7 @@ "source_location": "L340", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdestination_thingtimewebdestination_isverceldeployment", - "community": 57, + "community": 523, "norm_label": ".isverceldeployment()" }, { @@ -230667,7 +230667,7 @@ "source_location": "L348", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdestination_thingtimewebdestination_isallowedconfiguredurl", - "community": 57, + "community": 523, "norm_label": ".isallowedconfiguredurl()" }, { @@ -230677,7 +230677,7 @@ "source_location": "L366", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdestination_thingtimewebdestination_append", - "community": 57, + "community": 523, "norm_label": ".append()" }, { @@ -230687,7 +230687,7 @@ "source_location": "L374", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdestination_thingtimewebdestination_deploymentgroupidentifier", - "community": 57, + "community": 523, "norm_label": ".deploymentgroupidentifier()" }, { @@ -230697,7 +230697,7 @@ "source_location": "L386", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdestination_thingtimewebdestination_normalizedidentifier", - "community": 57, + "community": 523, "norm_label": ".normalizedidentifier()" }, { @@ -230707,7 +230707,7 @@ "source_location": "L406", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdestination_thingtimewebdestination_validatedhttpsurl", - "community": 57, + "community": 523, "norm_label": ".validatedhttpsurl()" }, { @@ -230717,7 +230717,7 @@ "source_location": "L421", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebdestination_thingtimewebdestination_nonempty", - "community": 57, + "community": 523, "norm_label": ".nonempty()" }, { @@ -230727,7 +230727,7 @@ "source_location": "L1", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebview", - "community": 57, + "community": 59, "norm_label": "thingtimewebview.swift" }, { @@ -230737,7 +230737,7 @@ "source_location": "L4", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebview_thingtimewebview", - "community": 57, + "community": 469, "norm_label": "thingtimewebview" }, { @@ -230747,7 +230747,7 @@ "source_location": "L5", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebview_storagekey", - "community": 57, + "community": 59, "norm_label": "storagekey" }, { @@ -230757,7 +230757,7 @@ "source_location": "L11", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebview_deploymentsloadstate", - "community": 57, + "community": 59, "norm_label": "deploymentsloadstate" }, { @@ -230767,7 +230767,7 @@ "source_location": "L12", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebview_deploymentsloadstate_idle", - "community": 57, + "community": 59, "norm_label": "idle" }, { @@ -230777,7 +230777,7 @@ "source_location": "L13", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebview_deploymentsloadstate_loading", - "community": 57, + "community": 59, "norm_label": "loading" }, { @@ -230787,7 +230787,7 @@ "source_location": "L14", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebview_deploymentsloadstate_loaded", - "community": 57, + "community": 59, "norm_label": "loaded" }, { @@ -230797,7 +230797,7 @@ "source_location": "L15", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebview_deploymentsloadstate_failed", - "community": 57, + "community": 59, "norm_label": "failed" }, { @@ -230807,7 +230807,7 @@ "source_location": "L99", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebview_thingtimewebview_opendrawergesture", - "community": 57, + "community": 469, "norm_label": ".opendrawergesture()" }, { @@ -230817,7 +230817,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebview_swift_cgfloat", - "community": 57, + "community": 469, "norm_label": "cgfloat" }, { @@ -230827,7 +230827,7 @@ "source_location": "", "_origin": "ast", "id": "gesture", - "community": 57, + "community": 469, "norm_label": "gesture" }, { @@ -230837,7 +230837,7 @@ "source_location": "L118", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebview_thingtimewebview_preparedestinationstate", - "community": 57, + "community": 469, "norm_label": ".preparedestinationstate()" }, { @@ -230847,7 +230847,7 @@ "source_location": "L130", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebview_thingtimewebview_ensureselecteddestinationisavailable", - "community": 57, + "community": 469, "norm_label": ".ensureselecteddestinationisavailable()" }, { @@ -230857,7 +230857,7 @@ "source_location": "L140", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebview_thingtimewebview_opendestinationpicker", - "community": 57, + "community": 469, "norm_label": ".opendestinationpicker()" }, { @@ -230867,7 +230867,7 @@ "source_location": "L150", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebview_thingtimewebview_closedestinationpicker", - "community": 57, + "community": 469, "norm_label": ".closedestinationpicker()" }, { @@ -230877,7 +230877,7 @@ "source_location": "L156", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebview_thingtimewebview_select", - "community": 57, + "community": 469, "norm_label": ".select()" }, { @@ -230887,7 +230887,7 @@ "source_location": "L162", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebview_thingtimewebview_refreshdeploymentsifneeded", - "community": 57, + "community": 469, "norm_label": ".refreshdeploymentsifneeded()" }, { @@ -230897,7 +230897,7 @@ "source_location": "L171", "_origin": "ast", "id": "ios_thingtime_web_thingtimewebview_thingtimewebview_refreshdeployments", - "community": 57, + "community": 469, "norm_label": ".refreshdeployments()" }, { @@ -231358,7 +231358,7 @@ "source_location": "L91", "_origin": "ast", "id": "ios_thingtimetests_thingtimewatchpayloadtests_thingtimewatchpayloadtests_testattachmentmetadataroundtripsthroughtransferdictionary", - "community": 59, + "community": 64, "norm_label": ".testattachmentmetadataroundtripsthroughtransferdictionary()" }, { @@ -231378,7 +231378,7 @@ "source_location": "L121", "_origin": "ast", "id": "ios_thingtimetests_thingtimewatchpayloadtests_thingtimewatchpayloadtests_testwatchuploadcapabilityversionsfailclosed", - "community": 59, + "community": 64, "norm_label": ".testwatchuploadcapabilityversionsfailclosed()" }, { @@ -231578,7 +231578,7 @@ "source_location": "L297", "_origin": "ast", "id": "ios_thingtimetests_thingtimewebdestinationtests_thingtimewebdestinationtests_testverceldeploymentdestinationrejectsinvalidapiurls", - "community": 57, + "community": 523, "norm_label": ".testverceldeploymentdestinationrejectsinvalidapiurls()" }, { @@ -231618,7 +231618,7 @@ "source_location": "L1", "_origin": "ast", "id": "ios_thingtimewatch_app_thingtimewatchapp", - "community": 225, + "community": 22, "norm_label": "thingtimewatchapp.swift" }, { @@ -231628,7 +231628,7 @@ "source_location": "L3", "_origin": "ast", "id": "ios_thingtimewatch_app_thingtimewatchapp_thingtimewatchapp", - "community": 225, + "community": 22, "norm_label": "thingtimewatchapp" }, { @@ -231638,7 +231638,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtimewatch_app_thingtimewatchapp_swift_scene", - "community": 225, + "community": 22, "norm_label": "scene" }, { @@ -231799,7 +231799,7 @@ "source_location": "L1", "_origin": "ast", "id": "ios_thingtimewatch_attachments_thingtimewatchaudiorecorder", - "community": 225, + "community": 22, "norm_label": "thingtimewatchaudiorecorder.swift" }, { @@ -231809,7 +231809,7 @@ "source_location": "L4", "_origin": "ast", "id": "ios_thingtimewatch_attachments_thingtimewatchaudiorecorder_thingtimewatchaudiorecorder", - "community": 225, + "community": 22, "norm_label": "thingtimewatchaudiorecorder" }, { @@ -231819,7 +231819,7 @@ "source_location": "", "_origin": "ast", "id": "observableobject", - "community": 43, + "community": 22, "norm_label": "observableobject" }, { @@ -231829,7 +231829,7 @@ "source_location": "L6", "_origin": "ast", "id": "ios_thingtimewatch_attachments_thingtimewatchaudiorecorder_recording", - "community": 225, + "community": 22, "norm_label": "recording" }, { @@ -231839,7 +231839,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtimewatch_attachments_thingtimewatchaudiorecorder_swift_url", - "community": 225, + "community": 22, "norm_label": "url" }, { @@ -231849,7 +231849,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtimewatch_attachments_thingtimewatchaudiorecorder_swift_string", - "community": 225, + "community": 22, "norm_label": "string" }, { @@ -231859,7 +231859,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtimewatch_attachments_thingtimewatchaudiorecorder_swift_int64", - "community": 225, + "community": 22, "norm_label": "int64" }, { @@ -231869,7 +231869,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtimewatch_attachments_thingtimewatchaudiorecorder_swift_void", - "community": 225, + "community": 22, "norm_label": "void" }, { @@ -231879,7 +231879,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtimewatch_attachments_thingtimewatchaudiorecorder_swift_timeinterval", - "community": 225, + "community": 22, "norm_label": "timeinterval" }, { @@ -231889,7 +231889,7 @@ "source_location": "L35", "_origin": "ast", "id": "ios_thingtimewatch_attachments_thingtimewatchaudiorecorder_thingtimewatchaudiorecorder_init", - "community": 225, + "community": 22, "norm_label": ".init()" }, { @@ -231899,7 +231899,7 @@ "source_location": "L39", "_origin": "ast", "id": "ios_thingtimewatch_attachments_thingtimewatchaudiorecorder_thingtimewatchaudiorecorder_record", - "community": 225, + "community": 22, "norm_label": ".record()" }, { @@ -231909,7 +231909,7 @@ "source_location": "L73", "_origin": "ast", "id": "ios_thingtimewatch_attachments_thingtimewatchaudiorecorder_thingtimewatchaudiorecorder_delete", - "community": 225, + "community": 22, "norm_label": ".delete()" }, { @@ -231919,7 +231919,7 @@ "source_location": "L82", "_origin": "ast", "id": "ios_thingtimewatch_attachments_thingtimewatchaudiorecorder_thingtimewatchaudiorecorder_refresh", - "community": 225, + "community": 22, "norm_label": ".refresh()" }, { @@ -231929,7 +231929,7 @@ "source_location": "L91", "_origin": "ast", "id": "ios_thingtimewatch_attachments_thingtimewatchaudiorecorder_thingtimewatchaudiorecorder_complete", - "community": 225, + "community": 22, "norm_label": ".complete()" }, { @@ -231939,7 +231939,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtimewatch_attachments_thingtimewatchaudiorecorder_swift_bool", - "community": 225, + "community": 22, "norm_label": "bool" }, { @@ -231949,7 +231949,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtimewatch_attachments_thingtimewatchaudiorecorder_swift_error", - "community": 225, + "community": 22, "norm_label": "error" }, { @@ -231959,7 +231959,7 @@ "source_location": "L123", "_origin": "ast", "id": "ios_thingtimewatch_attachments_thingtimewatchaudiorecorder_thingtimewatchaudiorecorder_makeoutputurl", - "community": 225, + "community": 22, "norm_label": ".makeoutputurl()" }, { @@ -231969,7 +231969,7 @@ "source_location": "L130", "_origin": "ast", "id": "ios_thingtimewatch_attachments_thingtimewatchaudiorecorder_thingtimewatchaudiorecorder_loadrecordings", - "community": 225, + "community": 22, "norm_label": ".loadrecordings()" }, { @@ -231979,7 +231979,7 @@ "source_location": "L144", "_origin": "ast", "id": "ios_thingtimewatch_attachments_thingtimewatchaudiorecorder_thingtimewatchaudiorecorder_recording", - "community": 225, + "community": 22, "norm_label": ".recording()" }, { @@ -231989,7 +231989,7 @@ "source_location": "", "_origin": "ast", "id": "ios_thingtimewatch_attachments_thingtimewatchaudiorecorder_swift_set", - "community": 225, + "community": 22, "norm_label": "set" }, { @@ -231999,7 +231999,7 @@ "source_location": "", "_origin": "ast", "id": "urlresourcekey", - "community": 225, + "community": 22, "norm_label": "urlresourcekey" }, { @@ -232009,7 +232009,7 @@ "source_location": "L161", "_origin": "ast", "id": "ios_thingtimewatch_attachments_thingtimewatchaudiorecorder_thingtimewatchaudiorecorder_recordingsdirectory", - "community": 225, + "community": 22, "norm_label": ".recordingsdirectory()" }, { @@ -232019,7 +232019,7 @@ "source_location": "L168", "_origin": "ast", "id": "ios_thingtimewatch_attachments_thingtimewatchaudiorecorder_thingtimewatchaudiorecorder_timestamp", - "community": 225, + "community": 22, "norm_label": ".timestamp()" }, { @@ -232029,7 +232029,7 @@ "source_location": "L176", "_origin": "ast", "id": "ios_thingtimewatch_attachments_thingtimewatchaudiorecorder_recordingerror", - "community": 225, + "community": 22, "norm_label": "recordingerror" }, { @@ -232039,7 +232039,7 @@ "source_location": "L177", "_origin": "ast", "id": "ios_thingtimewatch_attachments_thingtimewatchaudiorecorder_recordingerror_recorderunavailable", - "community": 225, + "community": 22, "norm_label": "recorderunavailable" }, { @@ -232049,7 +232049,7 @@ "source_location": "L178", "_origin": "ast", "id": "ios_thingtimewatch_attachments_thingtimewatchaudiorecorder_recordingerror_storageunavailable", - "community": 225, + "community": 22, "norm_label": "storageunavailable" }, { @@ -232529,7 +232529,7 @@ "source_location": "L1", "_origin": "ast", "id": "ios_thingtimewatch_networking_thingtimewatchaccount", - "community": 22, + "community": 56, "norm_label": "thingtimewatchaccount.swift" }, { @@ -234306,7 +234306,7 @@ "source_location": "L1", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main", - "community": 179, + "community": 56, "norm_label": "main.swift" }, { @@ -234327,7 +234327,7 @@ "source_location": "L7", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_xpcservice", - "community": 179, + "community": 56, "norm_label": "xpcservice" }, { @@ -234337,7 +234337,7 @@ "source_location": "", "_origin": "ast", "id": "thingtimenodecontroller", - "community": 71, + "community": 10, "norm_label": "thingtimenodecontroller" }, { @@ -234347,7 +234347,7 @@ "source_location": "L10", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_xpcservice_init", - "community": 179, + "community": 56, "norm_label": ".init()" }, { @@ -234357,7 +234357,7 @@ "source_location": "L14", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_xpcservice_request", - "community": 179, + "community": 56, "norm_label": ".request()" }, { @@ -234367,7 +234367,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_swift_data", - "community": 179, + "community": 56, "norm_label": "data" }, { @@ -234377,7 +234377,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_swift_void", - "community": 179, + "community": 56, "norm_label": "void" }, { @@ -234387,7 +234387,7 @@ "source_location": "L52", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_xpcservice_encoded", - "community": 179, + "community": 56, "norm_label": ".encoded()" }, { @@ -234397,7 +234397,7 @@ "source_location": "L58", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_localpairingpresencegate", - "community": 179, + "community": 56, "norm_label": "localpairingpresencegate" }, { @@ -234417,7 +234417,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_swift_timer", - "community": 179, + "community": 56, "norm_label": "timer" }, { @@ -234427,7 +234427,7 @@ "source_location": "L66", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_localpairingpresencegate_confirm", - "community": 179, + "community": 56, "norm_label": ".confirm()" }, { @@ -234437,7 +234437,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_swift_string", - "community": 179, + "community": 56, "norm_label": "string" }, { @@ -234447,7 +234447,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_swift_bool", - "community": 179, + "community": 56, "norm_label": "bool" }, { @@ -234457,7 +234457,7 @@ "source_location": "L103", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_localpairingpresencegate_expireconfirmation", - "community": 179, + "community": 56, "norm_label": ".expireconfirmation()" }, { @@ -234467,7 +234467,7 @@ "source_location": "L110", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_peersignaturevalidator", - "community": 179, + "community": 56, "norm_label": "peersignaturevalidator" }, { @@ -234477,7 +234477,7 @@ "source_location": "L115", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_peersignaturevalidator_init", - "community": 179, + "community": 56, "norm_label": ".init()" }, { @@ -234487,7 +234487,7 @@ "source_location": "L132", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_peersignaturevalidator_accepts", - "community": 179, + "community": 56, "norm_label": ".accepts()" }, { @@ -234497,7 +234497,7 @@ "source_location": "", "_origin": "ast", "id": "nsxpcconnection", - "community": 179, + "community": 56, "norm_label": "nsxpcconnection" }, { @@ -234507,7 +234507,7 @@ "source_location": "L163", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_peersignaturevalidator_currentteamidentifier", - "community": 179, + "community": 56, "norm_label": ".currentteamidentifier()" }, { @@ -234517,7 +234517,7 @@ "source_location": "L176", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_xpclistenerdelegate", - "community": 179, + "community": 56, "norm_label": "xpclistenerdelegate" }, { @@ -234527,7 +234527,7 @@ "source_location": "", "_origin": "ast", "id": "nsxpclistenerdelegate", - "community": 179, + "community": 56, "norm_label": "nsxpclistenerdelegate" }, { @@ -234537,7 +234537,7 @@ "source_location": "L180", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_xpclistenerdelegate_init", - "community": 179, + "community": 56, "norm_label": ".init()" }, { @@ -234547,7 +234547,7 @@ "source_location": "L184", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_xpclistenerdelegate_listener", - "community": 179, + "community": 56, "norm_label": ".listener()" }, { @@ -234557,7 +234557,7 @@ "source_location": "", "_origin": "ast", "id": "nsxpclistener", - "community": 179, + "community": 56, "norm_label": "nsxpclistener" }, { @@ -234567,7 +234567,7 @@ "source_location": "L196", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_nodecontrollerrelay", - "community": 179, + "community": 56, "norm_label": "nodecontrollerrelay" }, { @@ -234577,7 +234577,7 @@ "source_location": "L199", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_nodecontrollerrelay_install", - "community": 179, + "community": 56, "norm_label": ".install()" }, { @@ -234587,7 +234587,7 @@ "source_location": "L203", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_nodecontrollerrelay_dispatch", - "community": 179, + "community": 181, "norm_label": ".dispatch()" }, { @@ -234597,7 +234597,7 @@ "source_location": "L215", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_multiaccountcontrolplaneruntime", - "community": 179, + "community": 56, "norm_label": "multiaccountcontrolplaneruntime" }, { @@ -234607,7 +234607,7 @@ "source_location": "L216", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_accountruntime", - "community": 179, + "community": 56, "norm_label": "accountruntime" }, { @@ -234617,7 +234617,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_swift_task", - "community": 179, + "community": 56, "norm_label": "task" }, { @@ -234627,7 +234627,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_swift_never", - "community": 179, + "community": 56, "norm_label": "never" }, { @@ -234637,7 +234637,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_swift_url", - "community": 179, + "community": 56, "norm_label": "url" }, { @@ -234647,7 +234647,7 @@ "source_location": "L232", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_multiaccountcontrolplaneruntime_init", - "community": 179, + "community": 56, "norm_label": ".init()" }, { @@ -234657,7 +234657,7 @@ "source_location": "L250", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_multiaccountcontrolplaneruntime_reconcile", - "community": 179, + "community": 56, "norm_label": ".reconcile()" }, { @@ -234667,7 +234667,7 @@ "source_location": "L266", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_multiaccountcontrolplaneruntime_captureconnectorevent", - "community": 179, + "community": 56, "norm_label": ".captureconnectorevent()" }, { @@ -234677,7 +234677,7 @@ "source_location": "L279", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_multiaccountcontrolplaneruntime_stop", - "community": 179, + "community": 56, "norm_label": ".stop()" }, { @@ -234687,7 +234687,7 @@ "source_location": "L283", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_multiaccountcontrolplaneruntime_startaccount", - "community": 127, + "community": 181, "norm_label": ".startaccount()" }, { @@ -234697,7 +234697,7 @@ "source_location": "L356", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_multiaccountcontrolplaneruntime_stopaccount", - "community": 179, + "community": 56, "norm_label": ".stopaccount()" }, { @@ -234707,7 +234707,7 @@ "source_location": "L364", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_appdelegate", - "community": 179, + "community": 56, "norm_label": "appdelegate" }, { @@ -234717,7 +234717,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_swift_nsmenuitem", - "community": 179, + "community": 56, "norm_label": "nsmenuitem" }, { @@ -234727,7 +234727,7 @@ "source_location": "L383", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_appdelegate_applicationdidfinishlaunching", - "community": 179, + "community": 56, "norm_label": ".applicationdidfinishlaunching()" }, { @@ -234737,7 +234737,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_swift_notification", - "community": 179, + "community": 56, "norm_label": "notification" }, { @@ -234747,7 +234747,7 @@ "source_location": "L487", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_appdelegate_applicationwillterminate", - "community": 179, + "community": 56, "norm_label": ".applicationwillterminate()" }, { @@ -234757,7 +234757,7 @@ "source_location": "L502", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_appdelegate_configuremenu", - "community": 179, + "community": 56, "norm_label": ".configuremenu()" }, { @@ -234767,7 +234767,7 @@ "source_location": "L532", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_appdelegate_showabout", - "community": 179, + "community": 56, "norm_label": ".showabout()" }, { @@ -234777,7 +234777,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_swift_any", - "community": 179, + "community": 56, "norm_label": "any" }, { @@ -234787,7 +234787,7 @@ "source_location": "L543", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_appdelegate_refreshstatus", - "community": 179, + "community": 56, "norm_label": ".refreshstatus()" }, { @@ -234797,7 +234797,7 @@ "source_location": "L555", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_appdelegate_openthingtime", - "community": 179, + "community": 56, "norm_label": ".openthingtime()" }, { @@ -234807,7 +234807,7 @@ "source_location": "L560", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_appdelegate_restart", - "community": 179, + "community": 56, "norm_label": ".restart()" }, { @@ -234817,7 +234817,7 @@ "source_location": "L564", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_appdelegate_quit", - "community": 179, + "community": 56, "norm_label": ".quit()" }, { @@ -234827,7 +234827,7 @@ "source_location": "L582", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_appdelegate_connectorconfiguration", - "community": 179, + "community": 56, "norm_label": ".connectorconfiguration()" }, { @@ -234837,7 +234837,7 @@ "source_location": "L605", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_appdelegate_apibaseurl", - "community": 179, + "community": 56, "norm_label": ".apibaseurl()" }, { @@ -234847,7 +234847,7 @@ "source_location": "L621", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_thingtimenodeapplication", - "community": 179, + "community": 56, "norm_label": "thingtimenodeapplication" }, { @@ -234857,7 +234857,7 @@ "source_location": "L623", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenode_main_thingtimenodeapplication_main", - "community": 179, + "community": 56, "norm_label": ".main()" }, { @@ -234867,7 +234867,7 @@ "source_location": "L1", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodebridge_main", - "community": 71, + "community": 56, "norm_label": "main.swift" }, { @@ -234877,7 +234877,7 @@ "source_location": "L6", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodebridge_main_directparentauthenticator", - "community": 71, + "community": 321, "norm_label": "directparentauthenticator" }, { @@ -234887,7 +234887,7 @@ "source_location": "L9", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodebridge_main_directparentauthenticator_accepts", - "community": 71, + "community": 321, "norm_label": ".accepts()" }, { @@ -234897,7 +234897,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodebridge_main_swift_bool", - "community": 71, + "community": 321, "norm_label": "bool" }, { @@ -234907,7 +234907,7 @@ "source_location": "L36", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodebridge_main_directparentauthenticator_acceptsunsigned", - "community": 71, + "community": 321, "norm_label": ".acceptsunsigned()" }, { @@ -234917,7 +234917,7 @@ "source_location": "", "_origin": "ast", "id": "seccode", - "community": 71, + "community": 321, "norm_label": "seccode" }, { @@ -234927,7 +234927,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodebridge_main_swift_pid_t", - "community": 71, + "community": 321, "norm_label": "pid_t" }, { @@ -234937,7 +234937,7 @@ "source_location": "L53", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodebridge_main_directparentauthenticator_copycurrentcode", - "community": 71, + "community": 321, "norm_label": ".copycurrentcode()" }, { @@ -234947,7 +234947,7 @@ "source_location": "L59", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodebridge_main_directparentauthenticator_copycode", - "community": 71, + "community": 321, "norm_label": ".copycode()" }, { @@ -234957,7 +234957,7 @@ "source_location": "L70", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodebridge_main_directparentauthenticator_codeidentity", - "community": 71, + "community": 321, "norm_label": ".codeidentity()" }, { @@ -234967,7 +234967,7 @@ "source_location": "L96", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodebridge_main_directparentauthenticator_satisfiesapplegenericanchor", - "community": 71, + "community": 321, "norm_label": ".satisfiesapplegenericanchor()" }, { @@ -234977,7 +234977,7 @@ "source_location": "L113", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodebridge_main_directparentauthenticator_satisfiesanycodesignature", - "community": 71, + "community": 321, "norm_label": ".satisfiesanycodesignature()" }, { @@ -234987,7 +234987,7 @@ "source_location": "L117", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodebridge_main_directparentauthenticator_unsignedcodeidentity", - "community": 71, + "community": 321, "norm_label": ".unsignedcodeidentity()" }, { @@ -234997,7 +234997,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodebridge_main_swift_string", - "community": 71, + "community": 321, "norm_label": "string" }, { @@ -235007,7 +235007,7 @@ "source_location": "L136", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodebridge_main_oneshotreply", - "community": 71, + "community": 181, "norm_label": "oneshotreply" }, { @@ -235017,7 +235017,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodebridge_main_swift_data", - "community": 71, + "community": 181, "norm_label": "data" }, { @@ -235027,7 +235027,7 @@ "source_location": "L142", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodebridge_main_oneshotreply_finish", - "community": 71, + "community": 181, "norm_label": ".finish()" }, { @@ -235037,7 +235037,7 @@ "source_location": "L154", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodebridge_main_oneshotreply_wait", - "community": 71, + "community": 181, "norm_label": ".wait()" }, { @@ -235047,7 +235047,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodebridge_main_swift_double", - "community": 71, + "community": 181, "norm_label": "double" }, { @@ -235057,7 +235057,7 @@ "source_location": "L162", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodebridge_main_thingtimenodebridge", - "community": 71, + "community": 181, "norm_label": "thingtimenodebridge" }, { @@ -235067,7 +235067,7 @@ "source_location": "L164", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodebridge_main_thingtimenodebridge_main", - "community": 71, + "community": 181, "norm_label": ".main()" }, { @@ -235077,7 +235077,7 @@ "source_location": "L208", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodebridge_main_thingtimenodebridge_encoded", - "community": 71, + "community": 181, "norm_label": ".encoded()" }, { @@ -235087,7 +235087,7 @@ "source_location": "L213", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodebridge_main_thingtimenodebridge_write", - "community": 71, + "community": 181, "norm_label": ".write()" }, { @@ -235097,7 +235097,7 @@ "source_location": "L217", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodebridge_main_thingtimenodebridge_rejectuntrustedparent", - "community": 71, + "community": 181, "norm_label": ".rejectuntrustedparent()" }, { @@ -235107,7 +235107,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodebridge_main_swift_never", - "community": 71, + "community": 181, "norm_label": "never" }, { @@ -235227,7 +235227,7 @@ "source_location": "L1", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal", - "community": 71, + "community": 67, "norm_label": "commandjournal.swift" }, { @@ -235237,7 +235237,7 @@ "source_location": "L4", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_commandjournalstate", - "community": 71, + "community": 67, "norm_label": "commandjournalstate" }, { @@ -235247,7 +235247,7 @@ "source_location": "L5", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_commandjournalstate_running", - "community": 71, + "community": 67, "norm_label": "running" }, { @@ -235257,7 +235257,7 @@ "source_location": "L6", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_commandjournalstate_runningretryable", - "community": 71, + "community": 67, "norm_label": "runningretryable" }, { @@ -235267,7 +235267,7 @@ "source_location": "L7", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_commandjournalstate_retryable", - "community": 71, + "community": 67, "norm_label": "retryable" }, { @@ -235277,7 +235277,7 @@ "source_location": "L8", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_commandjournalstate_succeeded", - "community": 71, + "community": 67, "norm_label": "succeeded" }, { @@ -235287,7 +235287,7 @@ "source_location": "L9", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_commandjournalstate_failed", - "community": 71, + "community": 67, "norm_label": "failed" }, { @@ -235297,7 +235297,7 @@ "source_location": "L10", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_commandjournalstate_uncertain", - "community": 71, + "community": 67, "norm_label": "uncertain" }, { @@ -235307,7 +235307,7 @@ "source_location": "L13", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_commandjournalentry", - "community": 71, + "community": 67, "norm_label": "commandjournalentry" }, { @@ -235317,7 +235317,7 @@ "source_location": "L22", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_commandjournaldisposition", - "community": 71, + "community": 67, "norm_label": "commandjournaldisposition" }, { @@ -235327,7 +235327,7 @@ "source_location": "L23", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_commandjournaldisposition_execute", - "community": 71, + "community": 67, "norm_label": "execute" }, { @@ -235337,7 +235337,7 @@ "source_location": "L24", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_commandjournaldisposition_replay", - "community": 71, + "community": 67, "norm_label": "replay" }, { @@ -235347,7 +235347,7 @@ "source_location": "L25", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_commandjournaldisposition_inprogress", - "community": 71, + "community": 67, "norm_label": "inprogress" }, { @@ -235357,7 +235357,7 @@ "source_location": "L26", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_commandjournaldisposition_uncertain", - "community": 71, + "community": 67, "norm_label": "uncertain" }, { @@ -235367,7 +235367,7 @@ "source_location": "L29", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_commandjournalsnapshot", - "community": 71, + "community": 67, "norm_label": "commandjournalsnapshot" }, { @@ -235377,7 +235377,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_swift_int", - "community": 71, + "community": 10, "norm_label": "int" }, { @@ -235387,7 +235387,7 @@ "source_location": "L34", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_commandjournal", - "community": 71, + "community": 10, "norm_label": "commandjournal" }, { @@ -235397,7 +235397,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_swift_url", - "community": 71, + "community": 10, "norm_label": "url" }, { @@ -235407,7 +235407,7 @@ "source_location": "L41", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_commandjournal_init", - "community": 71, + "community": 10, "norm_label": ".init()" }, { @@ -235417,7 +235417,7 @@ "source_location": "L70", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_commandjournal_defaultfileurl", - "community": 71, + "community": 10, "norm_label": ".defaultfileurl()" }, { @@ -235427,7 +235427,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_swift_filemanager", - "community": 71, + "community": 10, "norm_label": "filemanager" }, { @@ -235437,7 +235437,7 @@ "source_location": "L78", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_commandjournal_begin", - "community": 71, + "community": 10, "norm_label": ".begin()" }, { @@ -235447,7 +235447,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_swift_data", - "community": 71, + "community": 10, "norm_label": "data" }, { @@ -235457,7 +235457,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_swift_bool", - "community": 71, + "community": 10, "norm_label": "bool" }, { @@ -235467,7 +235467,7 @@ "source_location": "L123", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_commandjournal_finish", - "community": 71, + "community": 10, "norm_label": ".finish()" }, { @@ -235477,7 +235477,7 @@ "source_location": "L143", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_commandjournal_markuncertain", - "community": 71, + "community": 10, "norm_label": ".markuncertain()" }, { @@ -235487,7 +235487,7 @@ "source_location": "L160", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_commandjournal_resetretryable", - "community": 71, + "community": 10, "norm_label": ".resetretryable()" }, { @@ -235497,7 +235497,7 @@ "source_location": "L177", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_commandjournal_entry", - "community": 71, + "community": 67, "norm_label": ".entry()" }, { @@ -235507,7 +235507,7 @@ "source_location": "L181", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_commandjournal_count", - "community": 71, + "community": 10, "norm_label": ".count()" }, { @@ -235517,7 +235517,7 @@ "source_location": "L185", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_commandjournal_makecapacityfornewentry", - "community": 71, + "community": 10, "norm_label": ".makecapacityfornewentry()" }, { @@ -235527,7 +235527,7 @@ "source_location": "L197", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_commandjournal_persist", - "community": 71, + "community": 10, "norm_label": ".persist()" }, { @@ -235537,7 +235537,7 @@ "source_location": "L216", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_commandjournal_commandjournal_hash", - "community": 71, + "community": 10, "norm_label": ".hash()" }, { @@ -235757,7 +235757,7 @@ "source_location": "L79", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_connectorruntime_connectorreply", - "community": 67, + "community": 118, "norm_label": "connectorreply" }, { @@ -235797,7 +235797,7 @@ "source_location": "L92", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_connectorruntime_connectorincomingframe_reply", - "community": 179, + "community": 56, "norm_label": "reply" }, { @@ -235997,7 +235997,7 @@ "source_location": "L175", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_connectorruntime_connectorruntime_health", - "community": 118, + "community": 10, "norm_label": ".health()" }, { @@ -236197,7 +236197,7 @@ "source_location": "L1", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_controlplane", - "community": 10, + "community": 181, "norm_label": "controlplane.swift" }, { @@ -236337,7 +236337,7 @@ "source_location": "L117", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_controlplane_pairingclaimresponse", - "community": 10, + "community": 67, "norm_label": "pairingclaimresponse" }, { @@ -236357,7 +236357,7 @@ "source_location": "L127", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_controlplane_deviceheartbeat", - "community": 118, + "community": 67, "norm_label": "deviceheartbeat" }, { @@ -236367,7 +236367,7 @@ "source_location": "L135", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_controlplane_deviceheartbeat_init", - "community": 118, + "community": 67, "norm_label": ".init()" }, { @@ -236467,7 +236467,7 @@ "source_location": "L197", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_controlplane_commandreportstatus", - "community": 10, + "community": 181, "norm_label": "commandreportstatus" }, { @@ -236477,7 +236477,7 @@ "source_location": "L198", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_controlplane_commandreportstatus_succeeded", - "community": 10, + "community": 181, "norm_label": "succeeded" }, { @@ -236487,7 +236487,7 @@ "source_location": "L199", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_controlplane_commandreportstatus_failed", - "community": 10, + "community": 181, "norm_label": "failed" }, { @@ -236497,7 +236497,7 @@ "source_location": "L200", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_controlplane_commandreportstatus_uncertain", - "community": 10, + "community": 181, "norm_label": "uncertain" }, { @@ -236507,7 +236507,7 @@ "source_location": "L203", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_controlplane_commandexecutionreport", - "community": 10, + "community": 181, "norm_label": "commandexecutionreport" }, { @@ -236517,7 +236517,7 @@ "source_location": "L210", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_controlplane_commandexecutionreport_init", - "community": 10, + "community": 181, "norm_label": ".init()" }, { @@ -236897,7 +236897,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_desktopchataccessibility_swift_bool", - "community": 85, + "community": 67, "norm_label": "bool" }, { @@ -236927,7 +236927,7 @@ "source_location": "L50", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_desktopchataccessibility_accessibilitychildrenpage", - "community": 85, + "community": 67, "norm_label": "accessibilitychildrenpage" }, { @@ -236937,7 +236937,7 @@ "source_location": "L54", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_desktopchataccessibility_accessibilitychildrenpage_init", - "community": 85, + "community": 67, "norm_label": ".init()" }, { @@ -236947,7 +236947,7 @@ "source_location": "L60", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_desktopchataccessibility_accessibilitytextvalue", - "community": 85, + "community": 67, "norm_label": "accessibilitytextvalue" }, { @@ -236957,7 +236957,7 @@ "source_location": "L64", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_desktopchataccessibility_accessibilitytextvalue_init", - "community": 85, + "community": 67, "norm_label": ".init()" }, { @@ -237147,7 +237147,7 @@ "source_location": "L171", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_desktopchataccessibility_desktopchataccessibilitycapabilities", - "community": 85, + "community": 67, "norm_label": "desktopchataccessibilitycapabilities" }, { @@ -237157,7 +237157,7 @@ "source_location": "L181", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_desktopchataccessibility_desktopchataccessibilitycapabilities_init", - "community": 85, + "community": 67, "norm_label": ".init()" }, { @@ -237167,7 +237167,7 @@ "source_location": "L194", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_desktopchataccessibility_desktopvisiblechat", - "community": 85, + "community": 67, "norm_label": "desktopvisiblechat" }, { @@ -237177,7 +237177,7 @@ "source_location": "L200", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_desktopchataccessibility_desktopvisiblechat_init", - "community": 85, + "community": 67, "norm_label": ".init()" }, { @@ -237187,7 +237187,7 @@ "source_location": "L206", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_desktopchataccessibility_desktopvisiblemessagerole", - "community": 85, + "community": 67, "norm_label": "desktopvisiblemessagerole" }, { @@ -237197,7 +237197,7 @@ "source_location": "L207", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_desktopchataccessibility_desktopvisiblemessagerole_user", - "community": 85, + "community": 67, "norm_label": "user" }, { @@ -237207,7 +237207,7 @@ "source_location": "L208", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_desktopchataccessibility_desktopvisiblemessagerole_assistant", - "community": 85, + "community": 67, "norm_label": "assistant" }, { @@ -237217,7 +237217,7 @@ "source_location": "L211", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_desktopchataccessibility_desktopvisiblemessage", - "community": 85, + "community": 67, "norm_label": "desktopvisiblemessage" }, { @@ -237227,7 +237227,7 @@ "source_location": "L219", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_desktopchataccessibility_desktopvisiblemessage_init", - "community": 85, + "community": 67, "norm_label": ".init()" }, { @@ -237237,7 +237237,7 @@ "source_location": "L226", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_desktopchataccessibility_desktopvisibleconversation", - "community": 85, + "community": 140, "norm_label": "desktopvisibleconversation" }, { @@ -237247,7 +237247,7 @@ "source_location": "L229", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_desktopchataccessibility_desktopvisibleconversation_init", - "community": 85, + "community": 140, "norm_label": ".init()" }, { @@ -237717,7 +237717,7 @@ "source_location": "L26", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_desktopchatruntime_desktopchatruntimeconnector", - "community": 118, + "community": 67, "norm_label": "desktopchatruntimeconnector" }, { @@ -237937,7 +237937,7 @@ "source_location": "L173", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_desktopchatruntime_desktopchatruntime_clearactivesessions", - "community": 179, + "community": 56, "norm_label": ".clearactivesessions()" }, { @@ -238847,7 +238847,7 @@ "source_location": "L4", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_endpointscope_thingtimenodeendpointscope", - "community": 179, + "community": 56, "norm_label": "thingtimenodeendpointscope" }, { @@ -238857,7 +238857,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_endpointscope_swift_string", - "community": 179, + "community": 56, "norm_label": "string" }, { @@ -238867,7 +238867,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_endpointscope_swift_url", - "community": 179, + "community": 56, "norm_label": "url" }, { @@ -238877,7 +238877,7 @@ "source_location": "L8", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_endpointscope_thingtimenodeendpointscope_init", - "community": 179, + "community": 56, "norm_label": ".init()" }, { @@ -238887,7 +238887,7 @@ "source_location": "L45", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_endpointscope_thingtimenodeendpointscope_commandjournalfileurl", - "community": 179, + "community": 56, "norm_label": ".commandjournalfileurl()" }, { @@ -238897,7 +238897,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_endpointscope_swift_filemanager", - "community": 179, + "community": 56, "norm_label": "filemanager" }, { @@ -238907,7 +238907,7 @@ "source_location": "L51", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_endpointscope_thingtimenodeendpointscope_liveaijournalfileurl", - "community": 179, + "community": 56, "norm_label": ".liveaijournalfileurl()" }, { @@ -238917,7 +238917,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_endpointscope_swift_bool", - "community": 179, + "community": 56, "norm_label": "bool" }, { @@ -238927,7 +238927,7 @@ "source_location": "L73", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_endpointscope_thingtimenodeendpointscope_journaldirectory", - "community": 179, + "community": 56, "norm_label": ".journaldirectory()" }, { @@ -239727,7 +239727,7 @@ "source_location": "L1", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_menubaricon", - "community": 333, + "community": 56, "norm_label": "menubaricon.swift" }, { @@ -239737,7 +239737,7 @@ "source_location": "L4", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_menubaricon_thingtimemenubariconid", - "community": 333, + "community": 56, "norm_label": "thingtimemenubariconid" }, { @@ -239747,7 +239747,7 @@ "source_location": "L5", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_menubaricon_thingtimemenubariconid_treecolor", - "community": 333, + "community": 56, "norm_label": "treecolor" }, { @@ -239757,7 +239757,7 @@ "source_location": "L6", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_menubaricon_thingtimemenubariconid_treetemplate", - "community": 333, + "community": 56, "norm_label": "treetemplate" }, { @@ -239767,7 +239767,7 @@ "source_location": "L7", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_menubaricon_thingtimemenubariconid_treeblack", - "community": 333, + "community": 56, "norm_label": "treeblack" }, { @@ -239777,7 +239777,7 @@ "source_location": "L8", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_menubaricon_thingtimemenubariconid_treewhite", - "community": 333, + "community": 56, "norm_label": "treewhite" }, { @@ -239787,7 +239787,7 @@ "source_location": "L9", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_menubaricon_thingtimemenubariconid_treepink", - "community": 333, + "community": 56, "norm_label": "treepink" }, { @@ -239797,7 +239797,7 @@ "source_location": "L10", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_menubaricon_thingtimemenubariconid_treeblue", - "community": 333, + "community": 56, "norm_label": "treeblue" }, { @@ -239807,7 +239807,7 @@ "source_location": "L11", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_menubaricon_thingtimemenubariconid_wordmarkcolor", - "community": 333, + "community": 56, "norm_label": "wordmarkcolor" }, { @@ -239817,7 +239817,7 @@ "source_location": "L12", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_menubaricon_thingtimemenubariconid_wordmarktemplate", - "community": 333, + "community": 56, "norm_label": "wordmarktemplate" }, { @@ -239827,7 +239827,7 @@ "source_location": "L13", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_menubaricon_thingtimemenubariconid_wordmarkblack", - "community": 333, + "community": 56, "norm_label": "wordmarkblack" }, { @@ -239837,7 +239837,7 @@ "source_location": "L14", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_menubaricon_thingtimemenubariconid_wordmarkwhite", - "community": 333, + "community": 56, "norm_label": "wordmarkwhite" }, { @@ -239847,7 +239847,7 @@ "source_location": "L15", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_menubaricon_thingtimemenubariconid_custom", - "community": 333, + "community": 56, "norm_label": "custom" }, { @@ -239857,7 +239857,7 @@ "source_location": "L19", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_menubaricon_thingtimemenubariconid_init", - "community": 333, + "community": 56, "norm_label": ".init()" }, { @@ -239867,7 +239867,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_menubaricon_swift_bool", - "community": 333, + "community": 56, "norm_label": "bool" }, { @@ -239877,7 +239877,7 @@ "source_location": "L33", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_menubaricon_thingtimestatusmenucopy", - "community": 333, + "community": 56, "norm_label": "thingtimestatusmenucopy" }, { @@ -239887,7 +239887,7 @@ "source_location": "L44", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_menubaricon_thingtimestatusmenucopy_healthy", - "community": 333, + "community": 56, "norm_label": ".healthy()" }, { @@ -239897,7 +239897,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_menubaricon_swift_int", - "community": 333, + "community": 56, "norm_label": "int" }, { @@ -239907,7 +239907,7 @@ "source_location": "L50", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_menubaricon_thingtimestatusmenucopy_commandtitles", - "community": 333, + "community": 56, "norm_label": ".commandtitles()" }, { @@ -239917,7 +239917,7 @@ "source_location": "L57", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_menubaricon_thingtimemenubariconrenderer", - "community": 333, + "community": 56, "norm_label": "thingtimemenubariconrenderer" }, { @@ -239927,7 +239927,7 @@ "source_location": "L64", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_menubaricon_thingtimemenubariconrenderer_image", - "community": 333, + "community": 56, "norm_label": ".image()" }, { @@ -239937,7 +239937,7 @@ "source_location": "", "_origin": "ast", "id": "nsimage", - "community": 333, + "community": 56, "norm_label": "nsimage" }, { @@ -239947,7 +239947,7 @@ "source_location": "L76", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_menubaricon_thingtimemenubariconrenderer_tree", - "community": 333, + "community": 56, "norm_label": ".tree()" }, { @@ -239957,7 +239957,7 @@ "source_location": "L113", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_menubaricon_thingtimemenubariconrenderer_wordmark", - "community": 333, + "community": 56, "norm_label": ".wordmark()" }, { @@ -239967,7 +239967,7 @@ "source_location": "L141", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_menubaricon_thingtimemenubariconrenderer_normalizedcustomimage", - "community": 333, + "community": 56, "norm_label": ".normalizedcustomimage()" }, { @@ -240027,7 +240027,7 @@ "source_location": "L1", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodecontroller", - "community": 71, + "community": 10, "norm_label": "nodecontroller.swift" }, { @@ -240047,7 +240047,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodecontroller_swift_string", - "community": 71, + "community": 10, "norm_label": "string" }, { @@ -240087,7 +240087,7 @@ "source_location": "L29", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodecontroller_pairingclaimparameters", - "community": 71, + "community": 10, "norm_label": "pairingclaimparameters" }, { @@ -240097,7 +240097,7 @@ "source_location": "L33", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodecontroller_permissionrequestparameters", - "community": 71, + "community": 10, "norm_label": "permissionrequestparameters" }, { @@ -240107,7 +240107,7 @@ "source_location": "L37", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodecontroller_actionenvelope", - "community": 71, + "community": 10, "norm_label": "actionenvelope" }, { @@ -240117,7 +240117,7 @@ "source_location": "L42", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodecontroller_connectorsendparameters", - "community": 71, + "community": 10, "norm_label": "connectorsendparameters" }, { @@ -240127,7 +240127,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodecontroller_swift_jsonvalue", - "community": 71, + "community": 10, "norm_label": "jsonvalue" }, { @@ -240137,7 +240137,7 @@ "source_location": "L47", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodecontroller_desktopchatsendparameters", - "community": 71, + "community": 10, "norm_label": "desktopchatsendparameters" }, { @@ -240147,7 +240147,7 @@ "source_location": "L159", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodecontroller_init", - "community": 71, + "community": 10, "norm_label": "init()" }, { @@ -240157,7 +240157,7 @@ "source_location": "L179", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodecontroller_handle", - "community": 71, + "community": 10, "norm_label": "handle()" }, { @@ -240167,7 +240167,7 @@ "source_location": "L195", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodecontroller_handleleasedcommand", - "community": 71, + "community": 10, "norm_label": "handleleasedcommand()" }, { @@ -240177,7 +240177,7 @@ "source_location": "L204", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodecontroller_executeread", - "community": 71, + "community": 10, "norm_label": "executeread()" }, { @@ -240187,7 +240187,7 @@ "source_location": "L247", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodecontroller_executejournaled", - "community": 71, + "community": 10, "norm_label": "executejournaled()" }, { @@ -240197,7 +240197,7 @@ "source_location": "L291", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodecontroller_executemutation", - "community": 118, + "community": 10, "norm_label": "executemutation()" }, { @@ -240237,7 +240237,7 @@ "source_location": "L478", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodecontroller_request", - "community": 71, + "community": 10, "norm_label": "request()" }, { @@ -240247,7 +240247,7 @@ "source_location": "L838", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodecontroller_failureresponse", - "community": 71, + "community": 10, "norm_label": "failureresponse()" }, { @@ -240257,7 +240257,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodecontroller_swift_error", - "community": 71, + "community": 10, "norm_label": "error" }, { @@ -240267,7 +240267,7 @@ "source_location": "L845", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodecontroller_requireobject", - "community": 71, + "community": 10, "norm_label": "requireobject()" }, { @@ -240277,7 +240277,7 @@ "source_location": "L852", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodecontroller_requireonlykeys", - "community": 71, + "community": 10, "norm_label": "requireonlykeys()" }, { @@ -240287,7 +240287,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodecontroller_swift_set", - "community": 71, + "community": 10, "norm_label": "set" }, { @@ -240297,7 +240297,7 @@ "source_location": "L1", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels", - "community": 71, + "community": 181, "norm_label": "nodemodels.swift" }, { @@ -240307,7 +240307,7 @@ "source_location": "L3", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_jsonvalue", - "community": 71, + "community": 181, "norm_label": "jsonvalue" }, { @@ -240317,7 +240317,7 @@ "source_location": "L4", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_jsonvalue_string", - "community": 71, + "community": 181, "norm_label": "string" }, { @@ -240327,7 +240327,7 @@ "source_location": "L5", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_jsonvalue_number", - "community": 71, + "community": 181, "norm_label": "number" }, { @@ -240337,7 +240337,7 @@ "source_location": "L6", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_jsonvalue_bool", - "community": 71, + "community": 181, "norm_label": "bool" }, { @@ -240357,7 +240357,7 @@ "source_location": "L8", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_jsonvalue_array", - "community": 71, + "community": 181, "norm_label": "array" }, { @@ -240367,7 +240367,7 @@ "source_location": "L9", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_jsonvalue_null", - "community": 71, + "community": 181, "norm_label": "null" }, { @@ -240377,7 +240377,7 @@ "source_location": "L11", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_jsonvalue_init", - "community": 71, + "community": 181, "norm_label": ".init()" }, { @@ -240387,7 +240387,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_swift_decoder", - "community": 71, + "community": 181, "norm_label": "decoder" }, { @@ -240397,7 +240397,7 @@ "source_location": "L30", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_jsonvalue_encode", - "community": 71, + "community": 181, "norm_label": ".encode()" }, { @@ -240407,7 +240407,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_swift_string", - "community": 71, + "community": 181, "norm_label": "string" }, { @@ -240417,7 +240417,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_swift_double", - "community": 71, + "community": 181, "norm_label": "double" }, { @@ -240427,7 +240427,7 @@ "source_location": "L62", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_jsonvalue_from", - "community": 71, + "community": 181, "norm_label": ".from()" }, { @@ -240437,7 +240437,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_swift_t", - "community": 71, + "community": 181, "norm_label": "t" }, { @@ -240447,7 +240447,7 @@ "source_location": "L68", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_jsonvalue_decode", - "community": 71, + "community": 181, "norm_label": ".decode()" }, { @@ -240457,7 +240457,7 @@ "source_location": "L75", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_noderequest", - "community": 71, + "community": 10, "norm_label": "noderequest" }, { @@ -240467,7 +240467,7 @@ "source_location": "L81", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_noderequest_init", - "community": 71, + "community": 181, "norm_label": ".init()" }, { @@ -240477,7 +240477,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_swift_data", - "community": 71, + "community": 10, "norm_label": "data" }, { @@ -240487,7 +240487,7 @@ "source_location": "L101", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_nodeerrorpayload", - "community": 71, + "community": 181, "norm_label": "nodeerrorpayload" }, { @@ -240497,7 +240497,7 @@ "source_location": "L105", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_nodeerrorpayload_init", - "community": 71, + "community": 181, "norm_label": ".init()" }, { @@ -240507,7 +240507,7 @@ "source_location": "L111", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_noderesponse", - "community": 71, + "community": 181, "norm_label": "noderesponse" }, { @@ -240517,7 +240517,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_swift_bool", - "community": 71, + "community": 181, "norm_label": "bool" }, { @@ -240527,7 +240527,7 @@ "source_location": "L117", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_noderesponse_success", - "community": 71, + "community": 181, "norm_label": ".success()" }, { @@ -240537,7 +240537,7 @@ "source_location": "L121", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_noderesponse_failure", - "community": 71, + "community": 181, "norm_label": ".failure()" }, { @@ -240547,7 +240547,7 @@ "source_location": "L126", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_journaledoutcome", - "community": 71, + "community": 181, "norm_label": "journaledoutcome" }, { @@ -240557,7 +240557,7 @@ "source_location": "L131", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_journaledoutcome_init", - "community": 71, + "community": 181, "norm_label": ".init()" }, { @@ -240567,7 +240567,7 @@ "source_location": "L137", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_journaledoutcome_response", - "community": 71, + "community": 181, "norm_label": ".response()" }, { @@ -240577,7 +240577,7 @@ "source_location": "L142", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_thingtimenodeerror", - "community": 71, + "community": 10, "norm_label": "thingtimenodeerror" }, { @@ -240587,7 +240587,7 @@ "source_location": "L143", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_thingtimenodeerror_invalidrequest", - "community": 71, + "community": 10, "norm_label": "invalidrequest" }, { @@ -240597,7 +240597,7 @@ "source_location": "L144", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_thingtimenodeerror_commandidrequired", - "community": 71, + "community": 10, "norm_label": "commandidrequired" }, { @@ -240607,7 +240607,7 @@ "source_location": "L145", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_thingtimenodeerror_commandconflict", - "community": 71, + "community": 10, "norm_label": "commandconflict" }, { @@ -240617,7 +240617,7 @@ "source_location": "L146", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_thingtimenodeerror_commandinprogress", - "community": 71, + "community": 10, "norm_label": "commandinprogress" }, { @@ -240627,7 +240627,7 @@ "source_location": "L147", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_thingtimenodeerror_commandoutcomeuncertain", - "community": 71, + "community": 10, "norm_label": "commandoutcomeuncertain" }, { @@ -240637,7 +240637,7 @@ "source_location": "L148", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_thingtimenodeerror_pairingclaimretryable", - "community": 71, + "community": 10, "norm_label": "pairingclaimretryable" }, { @@ -240647,7 +240647,7 @@ "source_location": "L149", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_thingtimenodeerror_credentialstoreunavailable", - "community": 71, + "community": 10, "norm_label": "credentialstoreunavailable" }, { @@ -240657,7 +240657,7 @@ "source_location": "L150", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_thingtimenodeerror_journalcapacityreached", - "community": 71, + "community": 10, "norm_label": "journalcapacityreached" }, { @@ -240667,7 +240667,7 @@ "source_location": "L151", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_thingtimenodeerror_connectorunavailable", - "community": 71, + "community": 10, "norm_label": "connectorunavailable" }, { @@ -240677,7 +240677,7 @@ "source_location": "L152", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_thingtimenodeerror_connectorprotocol", - "community": 71, + "community": 10, "norm_label": "connectorprotocol" }, { @@ -240687,7 +240687,7 @@ "source_location": "L153", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_thingtimenodeerror_policydenied", - "community": 71, + "community": 10, "norm_label": "policydenied" }, { @@ -240697,7 +240697,7 @@ "source_location": "L154", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_nodemodels_thingtimenodeerror_approvalrequired", - "community": 71, + "community": 10, "norm_label": "approvalrequired" }, { @@ -240898,7 +240898,7 @@ "source_location": "", "_origin": "ast", "id": "cgeventsource", - "community": 19, + "community": 95, "norm_label": "cgeventsource" }, { @@ -240918,7 +240918,7 @@ "source_location": "", "_origin": "ast", "id": "cgpoint", - "community": 333, + "community": 56, "norm_label": "cgpoint" }, { @@ -240958,7 +240958,7 @@ "source_location": "L1", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions", - "community": 19, + "community": 56, "norm_label": "safeactions.swift" }, { @@ -240979,7 +240979,7 @@ "source_location": "L6", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_actionorigin", - "community": 19, + "community": 67, "norm_label": "actionorigin" }, { @@ -240989,7 +240989,7 @@ "source_location": "L7", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_actionorigin_localuser", - "community": 19, + "community": 67, "norm_label": "localuser" }, { @@ -240999,7 +240999,7 @@ "source_location": "L8", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_actionorigin_remoteaccount", - "community": 19, + "community": 67, "norm_label": "remoteaccount" }, { @@ -241009,7 +241009,7 @@ "source_location": "L11", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind", - "community": 19, + "community": 95, "norm_label": "safeactionkind" }, { @@ -241019,7 +241019,7 @@ "source_location": "L12", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_refreshtelemetry", - "community": 19, + "community": 95, "norm_label": "refreshtelemetry" }, { @@ -241029,7 +241029,7 @@ "source_location": "L13", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_setoutputvolume", - "community": 19, + "community": 95, "norm_label": "setoutputvolume" }, { @@ -241039,7 +241039,7 @@ "source_location": "L14", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_setoutputmuted", - "community": 19, + "community": 95, "norm_label": "setoutputmuted" }, { @@ -241049,7 +241049,7 @@ "source_location": "L15", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_setinputvolume", - "community": 19, + "community": 95, "norm_label": "setinputvolume" }, { @@ -241059,7 +241059,7 @@ "source_location": "L16", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_setinputmuted", - "community": 19, + "community": 95, "norm_label": "setinputmuted" }, { @@ -241069,7 +241069,7 @@ "source_location": "L17", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_setsoundeffectsoutputvolume", - "community": 19, + "community": 95, "norm_label": "setsoundeffectsoutputvolume" }, { @@ -241079,7 +241079,7 @@ "source_location": "L18", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_setsoundeffectsoutputmuted", - "community": 19, + "community": 95, "norm_label": "setsoundeffectsoutputmuted" }, { @@ -241089,7 +241089,7 @@ "source_location": "L19", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_setdefaultoutputdevice", - "community": 19, + "community": 95, "norm_label": "setdefaultoutputdevice" }, { @@ -241099,7 +241099,7 @@ "source_location": "L20", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_setdefaultinputdevice", - "community": 19, + "community": 95, "norm_label": "setdefaultinputdevice" }, { @@ -241109,7 +241109,7 @@ "source_location": "L21", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_setdefaultsoundeffectsoutputdevice", - "community": 19, + "community": 95, "norm_label": "setdefaultsoundeffectsoutputdevice" }, { @@ -241119,7 +241119,7 @@ "source_location": "L22", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_setdisplaybrightness", - "community": 19, + "community": 95, "norm_label": "setdisplaybrightness" }, { @@ -241129,7 +241129,7 @@ "source_location": "L23", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_setdisplaybrightnessfordisplay", - "community": 19, + "community": 95, "norm_label": "setdisplaybrightnessfordisplay" }, { @@ -241139,7 +241139,7 @@ "source_location": "L24", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_setdisplaymode", - "community": 19, + "community": 95, "norm_label": "setdisplaymode" }, { @@ -241149,7 +241149,7 @@ "source_location": "L25", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_setdisplayorigin", - "community": 19, + "community": 95, "norm_label": "setdisplayorigin" }, { @@ -241159,7 +241159,7 @@ "source_location": "L26", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_setdisplaymirroring", - "community": 19, + "community": 95, "norm_label": "setdisplaymirroring" }, { @@ -241169,7 +241169,7 @@ "source_location": "L27", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_setdefaultprinter", - "community": 19, + "community": 95, "norm_label": "setdefaultprinter" }, { @@ -241179,7 +241179,7 @@ "source_location": "L28", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_setpreferredcamera", - "community": 19, + "community": 95, "norm_label": "setpreferredcamera" }, { @@ -241189,7 +241189,7 @@ "source_location": "L29", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_setbluetoothdeviceconnected", - "community": 19, + "community": 95, "norm_label": "setbluetoothdeviceconnected" }, { @@ -241199,7 +241199,7 @@ "source_location": "L30", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_setvpnconnected", - "community": 19, + "community": 95, "norm_label": "setvpnconnected" }, { @@ -241209,7 +241209,7 @@ "source_location": "L31", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_setpreventidlesleep", - "community": 19, + "community": 95, "norm_label": "setpreventidlesleep" }, { @@ -241219,7 +241219,7 @@ "source_location": "L32", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_setpoweridletimer", - "community": 19, + "community": 95, "norm_label": "setpoweridletimer" }, { @@ -241229,7 +241229,7 @@ "source_location": "L33", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_proposeairdroppolicy", - "community": 19, + "community": 95, "norm_label": "proposeairdroppolicy" }, { @@ -241239,7 +241239,7 @@ "source_location": "L34", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_proposecamerapolicy", - "community": 19, + "community": 95, "norm_label": "proposecamerapolicy" }, { @@ -241249,7 +241249,7 @@ "source_location": "L35", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_setapplemusicplayback", - "community": 19, + "community": 95, "norm_label": "setapplemusicplayback" }, { @@ -241259,7 +241259,7 @@ "source_location": "L36", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_setapplemusicvolume", - "community": 19, + "community": 95, "norm_label": "setapplemusicvolume" }, { @@ -241269,7 +241269,7 @@ "source_location": "L37", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_setspotifyplayback", - "community": 19, + "community": 95, "norm_label": "setspotifyplayback" }, { @@ -241279,7 +241279,7 @@ "source_location": "L38", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_setspotifyvolume", - "community": 19, + "community": 95, "norm_label": "setspotifyvolume" }, { @@ -241289,7 +241289,7 @@ "source_location": "L39", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_setchromeyoutubevolume", - "community": 19, + "community": 95, "norm_label": "setchromeyoutubevolume" }, { @@ -241299,7 +241299,7 @@ "source_location": "L40", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_movepointer", - "community": 19, + "community": 95, "norm_label": "movepointer" }, { @@ -241309,7 +241309,7 @@ "source_location": "L41", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_clickpointer", - "community": 19, + "community": 95, "norm_label": "clickpointer" }, { @@ -241319,7 +241319,7 @@ "source_location": "L42", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_scrollpointer", - "community": 19, + "community": 95, "norm_label": "scrollpointer" }, { @@ -241329,7 +241329,7 @@ "source_location": "L43", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_typetext", - "community": 19, + "community": 95, "norm_label": "typetext" }, { @@ -241339,7 +241339,7 @@ "source_location": "L44", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_sendshortcut", - "community": 19, + "community": 95, "norm_label": "sendshortcut" }, { @@ -241349,7 +241349,7 @@ "source_location": "L45", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_activateapplication", - "community": 19, + "community": 95, "norm_label": "activateapplication" }, { @@ -241359,7 +241359,7 @@ "source_location": "L46", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_launchapplication", - "community": 19, + "community": 95, "norm_label": "launchapplication" }, { @@ -241369,7 +241369,7 @@ "source_location": "L47", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_terminateapplication", - "community": 19, + "community": 95, "norm_label": "terminateapplication" }, { @@ -241379,7 +241379,7 @@ "source_location": "L48", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_forceterminateapplication", - "community": 19, + "community": 95, "norm_label": "forceterminateapplication" }, { @@ -241389,7 +241389,7 @@ "source_location": "L49", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_hideapplication", - "community": 19, + "community": 95, "norm_label": "hideapplication" }, { @@ -241399,7 +241399,7 @@ "source_location": "L50", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_unhideapplication", - "community": 19, + "community": 95, "norm_label": "unhideapplication" }, { @@ -241409,7 +241409,7 @@ "source_location": "L51", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_hideotherapplications", - "community": 19, + "community": 95, "norm_label": "hideotherapplications" }, { @@ -241419,7 +241419,7 @@ "source_location": "L52", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_lockscreen", - "community": 19, + "community": 95, "norm_label": "lockscreen" }, { @@ -241429,7 +241429,7 @@ "source_location": "L53", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_sleepsystem", - "community": 19, + "community": 95, "norm_label": "sleepsystem" }, { @@ -241439,7 +241439,7 @@ "source_location": "L54", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_restartsystem", - "community": 19, + "community": 95, "norm_label": "restartsystem" }, { @@ -241449,7 +241449,7 @@ "source_location": "L55", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_shutdownsystem", - "community": 19, + "community": 95, "norm_label": "shutdownsystem" }, { @@ -241459,7 +241459,7 @@ "source_location": "L56", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_logoutsession", - "community": 19, + "community": 95, "norm_label": "logoutsession" }, { @@ -241469,7 +241469,7 @@ "source_location": "L57", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_connectwifi", - "community": 19, + "community": 95, "norm_label": "connectwifi" }, { @@ -241479,7 +241479,7 @@ "source_location": "L58", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_disconnectwifi", - "community": 19, + "community": 95, "norm_label": "disconnectwifi" }, { @@ -241489,7 +241489,7 @@ "source_location": "L59", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionkind_setwifipower", - "community": 19, + "community": 95, "norm_label": "setwifipower" }, { @@ -241689,7 +241689,7 @@ "source_location": "L330", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionexecutor", - "community": 71, + "community": 10, "norm_label": "safeactionexecutor" }, { @@ -241699,7 +241699,7 @@ "source_location": "L335", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionexecutor_init", - "community": 71, + "community": 10, "norm_label": ".init()" }, { @@ -241719,7 +241719,7 @@ "source_location": "L344", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionexecutor_execute", - "community": 19, + "community": 95, "norm_label": ".execute()" }, { @@ -241729,7 +241729,7 @@ "source_location": "L668", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_safeactionexecutor_displayid", - "community": 19, + "community": 95, "norm_label": ".displayid()" }, { @@ -241739,7 +241739,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_swift_uint32", - "community": 19, + "community": 95, "norm_label": "uint32" }, { @@ -241749,7 +241749,7 @@ "source_location": "L676", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_systemsession", - "community": 19, + "community": 95, "norm_label": "systemsession" }, { @@ -241759,7 +241759,7 @@ "source_location": "L680", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_systemsession_lockscreen", - "community": 19, + "community": 95, "norm_label": ".lockscreen()" }, { @@ -241769,7 +241769,7 @@ "source_location": "L697", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_systempower", - "community": 19, + "community": 95, "norm_label": "systempower" }, { @@ -241779,7 +241779,7 @@ "source_location": "L698", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_systempower_sleep", - "community": 19, + "community": 95, "norm_label": ".sleep()" }, { @@ -241789,7 +241789,7 @@ "source_location": "L715", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_systemlifecycle", - "community": 19, + "community": 95, "norm_label": "systemlifecycle" }, { @@ -241799,7 +241799,7 @@ "source_location": "L716", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_systemlifecycle_restart", - "community": 19, + "community": 95, "norm_label": ".restart()" }, { @@ -241809,7 +241809,7 @@ "source_location": "L717", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_systemlifecycle_shutdown", - "community": 19, + "community": 95, "norm_label": ".shutdown()" }, { @@ -241819,7 +241819,7 @@ "source_location": "L718", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_systemlifecycle_logout", - "community": 19, + "community": 95, "norm_label": ".logout()" }, { @@ -241829,7 +241829,7 @@ "source_location": "L720", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_safeactions_systemlifecycle_run", - "community": 19, + "community": 95, "norm_label": ".run()" }, { @@ -241839,7 +241839,7 @@ "source_location": "L1", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture", - "community": 494, + "community": 314, "norm_label": "screencapture.swift" }, { @@ -241850,7 +241850,7 @@ "source_location": "L2", "_origin": "ast", "id": "coreimage", - "community": 494, + "community": 314, "norm_label": "coreimage" }, { @@ -241861,7 +241861,7 @@ "source_location": "L3", "_origin": "ast", "id": "coremedia", - "community": 494, + "community": 314, "norm_label": "coremedia" }, { @@ -241883,7 +241883,7 @@ "source_location": "L6", "_origin": "ast", "id": "imageio", - "community": 494, + "community": 314, "norm_label": "imageio" }, { @@ -241894,7 +241894,7 @@ "source_location": "L7", "_origin": "ast", "id": "screencapturekit", - "community": 494, + "community": 314, "norm_label": "screencapturekit" }, { @@ -241904,7 +241904,7 @@ "source_location": "L9", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureauthorization", - "community": 469, + "community": 314, "norm_label": "screencaptureauthorization" }, { @@ -241914,7 +241914,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_swift_bool", - "community": 469, + "community": 314, "norm_label": "bool" }, { @@ -241924,7 +241924,7 @@ "source_location": "L13", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureauthorization_init", - "community": 469, + "community": 314, "norm_label": ".init()" }, { @@ -241944,7 +241944,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_swift_int", - "community": 469, + "community": 314, "norm_label": "int" }, { @@ -241954,7 +241954,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_swift_double", - "community": 469, + "community": 314, "norm_label": "double" }, { @@ -241964,7 +241964,7 @@ "source_location": "L36", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencapturelimits_init", - "community": 469, + "community": 314, "norm_label": ".init()" }, { @@ -241974,7 +241974,7 @@ "source_location": "L72", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencapturedisplay", - "community": 469, + "community": 314, "norm_label": "screencapturedisplay" }, { @@ -241984,7 +241984,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_swift_uint32", - "community": 469, + "community": 314, "norm_label": "uint32" }, { @@ -241994,7 +241994,7 @@ "source_location": "L78", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencapturedisplay_init", - "community": 469, + "community": 314, "norm_label": ".init()" }, { @@ -242004,7 +242004,7 @@ "source_location": "L86", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencapturebackendconfiguration", - "community": 469, + "community": 314, "norm_label": "screencapturebackendconfiguration" }, { @@ -242014,7 +242014,7 @@ "source_location": "L92", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencapturebackendconfiguration_init", - "community": 469, + "community": 314, "norm_label": ".init()" }, { @@ -242024,7 +242024,7 @@ "source_location": "L100", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencapturedescriptor", - "community": 494, + "community": 314, "norm_label": "screencapturedescriptor" }, { @@ -242034,7 +242034,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_swift_string", - "community": 469, + "community": 314, "norm_label": "string" }, { @@ -242044,7 +242044,7 @@ "source_location": "L107", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencapturedescriptor_init", - "community": 469, + "community": 314, "norm_label": ".init()" }, { @@ -242054,7 +242054,7 @@ "source_location": "L116", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureframe", - "community": 469, + "community": 314, "norm_label": "screencaptureframe" }, { @@ -242064,7 +242064,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_swift_uint64", - "community": 469, + "community": 314, "norm_label": "uint64" }, { @@ -242074,7 +242074,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_swift_data", - "community": 469, + "community": 314, "norm_label": "data" }, { @@ -242084,7 +242084,7 @@ "source_location": "L128", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureframe_init", - "community": 469, + "community": 314, "norm_label": ".init()" }, { @@ -242134,7 +242134,7 @@ "source_location": "L155", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureerror", - "community": 596, + "community": 314, "norm_label": "screencaptureerror" }, { @@ -242144,7 +242144,7 @@ "source_location": "L156", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureerror_invalidsessionid", - "community": 596, + "community": 314, "norm_label": "invalidsessionid" }, { @@ -242154,7 +242154,7 @@ "source_location": "L157", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureerror_invalidconfiguration", - "community": 469, + "community": 314, "norm_label": "invalidconfiguration" }, { @@ -242164,7 +242164,7 @@ "source_location": "L158", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureerror_sessionlocked", - "community": 596, + "community": 314, "norm_label": "sessionlocked" }, { @@ -242174,7 +242174,7 @@ "source_location": "L159", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureerror_explicitauthorizationrequired", - "community": 596, + "community": 314, "norm_label": "explicitauthorizationrequired" }, { @@ -242184,7 +242184,7 @@ "source_location": "L160", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureerror_permissionnotgranted", - "community": 596, + "community": 314, "norm_label": "permissionnotgranted" }, { @@ -242194,7 +242194,7 @@ "source_location": "L161", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureerror_nodisplaysavailable", - "community": 596, + "community": 314, "norm_label": "nodisplaysavailable" }, { @@ -242204,7 +242204,7 @@ "source_location": "L162", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureerror_displayunavailable", - "community": 393, + "community": 314, "norm_label": "displayunavailable" }, { @@ -242214,7 +242214,7 @@ "source_location": "L163", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureerror_alreadyrunning", - "community": 596, + "community": 314, "norm_label": "alreadyrunning" }, { @@ -242224,7 +242224,7 @@ "source_location": "L164", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureerror_sessionmismatch", - "community": 596, + "community": 314, "norm_label": "sessionmismatch" }, { @@ -242234,7 +242234,7 @@ "source_location": "L165", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureerror_malformedframe", - "community": 596, + "community": 314, "norm_label": "malformedframe" }, { @@ -242244,7 +242244,7 @@ "source_location": "L166", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureerror_frametoolarge", - "community": 596, + "community": 314, "norm_label": "frametoolarge" }, { @@ -242254,7 +242254,7 @@ "source_location": "L167", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureerror_encodingfailed", - "community": 596, + "community": 314, "norm_label": "encodingfailed" }, { @@ -242264,7 +242264,7 @@ "source_location": "L168", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureerror_captureinterrupted", - "community": 596, + "community": 314, "norm_label": "captureinterrupted" }, { @@ -242274,7 +242274,7 @@ "source_location": "L169", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureerror_backendfailure", - "community": 393, + "community": 314, "norm_label": "backendfailure" }, { @@ -242284,7 +242284,7 @@ "source_location": "L209", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencapturerawpayload", - "community": 623, + "community": 314, "norm_label": "screencapturerawpayload" }, { @@ -242294,7 +242294,7 @@ "source_location": "L210", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencapturerawpayload_pixelbuffer", - "community": 623, + "community": 314, "norm_label": "pixelbuffer" }, { @@ -242304,7 +242304,7 @@ "source_location": "L211", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencapturerawpayload_opaque", - "community": 623, + "community": 314, "norm_label": "opaque" }, { @@ -242314,7 +242314,7 @@ "source_location": "L214", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencapturerawframe", - "community": 623, + "community": 314, "norm_label": "screencapturerawframe" }, { @@ -242324,7 +242324,7 @@ "source_location": "L221", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencapturerawframe_init", - "community": 623, + "community": 314, "norm_label": ".init()" }, { @@ -242334,7 +242334,7 @@ "source_location": "L236", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencapturebackendsession", - "community": 621, + "community": 314, "norm_label": "screencapturebackendsession" }, { @@ -242344,7 +242344,7 @@ "source_location": "L240", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencapturebackend", - "community": 494, + "community": 314, "norm_label": "screencapturebackend" }, { @@ -242354,7 +242354,7 @@ "source_location": "L253", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureframeencoding", - "community": 494, + "community": 314, "norm_label": "screencaptureframeencoding" }, { @@ -242364,7 +242364,7 @@ "source_location": "L261", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_jpegscreencaptureframeencoder", - "community": 494, + "community": 314, "norm_label": "jpegscreencaptureframeencoder" }, { @@ -242374,7 +242374,7 @@ "source_location": "L264", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_jpegscreencaptureframeencoder_init", - "community": 494, + "community": 314, "norm_label": ".init()" }, { @@ -242384,7 +242384,7 @@ "source_location": "L266", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_jpegscreencaptureframeencoder_encode", - "community": 469, + "community": 314, "norm_label": ".encode()" }, { @@ -242394,7 +242394,7 @@ "source_location": "L312", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_viewonlyscreencapture", - "community": 494, + "community": 314, "norm_label": "viewonlyscreencapture" }, { @@ -242404,7 +242404,7 @@ "source_location": "L315", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_activecapture", - "community": 494, + "community": 314, "norm_label": "activecapture" }, { @@ -242414,7 +242414,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_swift_uuid", - "community": 393, + "community": 314, "norm_label": "uuid" }, { @@ -242424,7 +242424,7 @@ "source_location": "", "_origin": "ast", "id": "eventhandler", - "community": 431, + "community": 314, "norm_label": "eventhandler" }, { @@ -242434,7 +242434,7 @@ "source_location": "L324", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_startingcapture", - "community": 494, + "community": 314, "norm_label": "startingcapture" }, { @@ -242444,7 +242444,7 @@ "source_location": "L338", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_viewonlyscreencapture_init", - "community": 494, + "community": 314, "norm_label": ".init()" }, { @@ -242454,7 +242454,7 @@ "source_location": "L346", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_viewonlyscreencapture_start", - "community": 393, + "community": 314, "norm_label": ".start()" }, { @@ -242464,7 +242464,7 @@ "source_location": "L497", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_viewonlyscreencapture_stop", - "community": 393, + "community": 314, "norm_label": ".stop()" }, { @@ -242474,7 +242474,7 @@ "source_location": "L525", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_viewonlyscreencapture_isrunning", - "community": 469, + "community": 314, "norm_label": ".isrunning()" }, { @@ -242484,7 +242484,7 @@ "source_location": "L531", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_viewonlyscreencapture_failcapture", - "community": 393, + "community": 314, "norm_label": ".failcapture()" }, { @@ -242494,7 +242494,7 @@ "source_location": "L547", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_viewonlyscreencapture_backendterminated", - "community": 393, + "community": 314, "norm_label": ".backendterminated()" }, { @@ -242504,7 +242504,7 @@ "source_location": "L562", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_viewonlyscreencapture_fittedsize", - "community": 469, + "community": 314, "norm_label": ".fittedsize()" }, { @@ -242514,7 +242514,7 @@ "source_location": "L584", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureframeingress", - "community": 494, + "community": 314, "norm_label": "screencaptureframeingress" }, { @@ -242524,7 +242524,7 @@ "source_location": "L591", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureframeingress_init", - "community": 494, + "community": 314, "norm_label": ".init()" }, { @@ -242534,7 +242534,7 @@ "source_location": "L595", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureframeingress_submit", - "community": 623, + "community": 314, "norm_label": ".submit()" }, { @@ -242544,7 +242544,7 @@ "source_location": "L611", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureframeingress_stop", - "community": 494, + "community": 314, "norm_label": ".stop()" }, { @@ -242554,7 +242554,7 @@ "source_location": "L618", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureframeingress_drain", - "community": 623, + "community": 314, "norm_label": ".drain()" }, { @@ -242564,7 +242564,7 @@ "source_location": "L627", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureframeingress_takenewestframe", - "community": 623, + "community": 314, "norm_label": ".takenewestframe()" }, { @@ -242574,7 +242574,7 @@ "source_location": "L639", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureframepump", - "community": 494, + "community": 314, "norm_label": "screencaptureframepump" }, { @@ -242584,7 +242584,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_swift_void", - "community": 393, + "community": 314, "norm_label": "void" }, { @@ -242594,7 +242594,7 @@ "source_location": "L649", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureframepump_init", - "community": 494, + "community": 314, "norm_label": ".init()" }, { @@ -242604,7 +242604,7 @@ "source_location": "L663", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureframepump_process", - "community": 469, + "community": 314, "norm_label": ".process()" }, { @@ -242614,7 +242614,7 @@ "source_location": "L706", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureframepump_stop", - "community": 494, + "community": 314, "norm_label": ".stop()" }, { @@ -242624,7 +242624,7 @@ "source_location": "L710", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencaptureframepump_fail", - "community": 469, + "community": 314, "norm_label": ".fail()" }, { @@ -242634,7 +242634,7 @@ "source_location": "L717", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencapturekitbackend", - "community": 393, + "community": 314, "norm_label": "screencapturekitbackend" }, { @@ -242644,7 +242644,7 @@ "source_location": "L718", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencapturekitbackend_init", - "community": 393, + "community": 314, "norm_label": ".init()" }, { @@ -242654,7 +242654,7 @@ "source_location": "L720", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencapturekitbackend_preflightauthorized", - "community": 393, + "community": 314, "norm_label": ".preflightauthorized()" }, { @@ -242664,7 +242664,7 @@ "source_location": "L726", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencapturekitbackend_availabledisplays", - "community": 393, + "community": 314, "norm_label": ".availabledisplays()" }, { @@ -242674,7 +242674,7 @@ "source_location": "L744", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencapturekitbackend_startcapture", - "community": 393, + "community": 314, "norm_label": ".startcapture()" }, { @@ -242684,7 +242684,7 @@ "source_location": "L794", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencapturekitoutput", - "community": 393, + "community": 314, "norm_label": "screencapturekitoutput" }, { @@ -242694,7 +242694,7 @@ "source_location": "", "_origin": "ast", "id": "scstreamoutput", - "community": 393, + "community": 314, "norm_label": "scstreamoutput" }, { @@ -242704,7 +242704,7 @@ "source_location": "L799", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencapturekitoutput_init", - "community": 393, + "community": 314, "norm_label": ".init()" }, { @@ -242714,7 +242714,7 @@ "source_location": "L804", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencapturekitoutput_stream", - "community": 393, + "community": 314, "norm_label": ".stream()" }, { @@ -242724,7 +242724,7 @@ "source_location": "", "_origin": "ast", "id": "scstream", - "community": 393, + "community": 314, "norm_label": "scstream" }, { @@ -242734,7 +242734,7 @@ "source_location": "", "_origin": "ast", "id": "cmsamplebuffer", - "community": 393, + "community": 314, "norm_label": "cmsamplebuffer" }, { @@ -242744,7 +242744,7 @@ "source_location": "", "_origin": "ast", "id": "scstreamoutputtype", - "community": 393, + "community": 314, "norm_label": "scstreamoutputtype" }, { @@ -242754,7 +242754,7 @@ "source_location": "L823", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencapturekitsession", - "community": 393, + "community": 314, "norm_label": "screencapturekitsession" }, { @@ -242764,7 +242764,7 @@ "source_location": "", "_origin": "ast", "id": "scstreamdelegate", - "community": 393, + "community": 314, "norm_label": "scstreamdelegate" }, { @@ -242774,7 +242774,7 @@ "source_location": "L831", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencapturekitsession_init", - "community": 393, + "community": 314, "norm_label": ".init()" }, { @@ -242784,7 +242784,7 @@ "source_location": "L839", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencapturekitsession_attach", - "community": 393, + "community": 314, "norm_label": ".attach()" }, { @@ -242794,7 +242794,7 @@ "source_location": "L845", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencapturekitsession_stop", - "community": 393, + "community": 314, "norm_label": ".stop()" }, { @@ -242804,7 +242804,7 @@ "source_location": "L850", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencapturekitsession_beginintentionalstop", - "community": 393, + "community": 314, "norm_label": ".beginintentionalstop()" }, { @@ -242814,7 +242814,7 @@ "source_location": "L863", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_screencapture_screencapturekitsession_stream", - "community": 393, + "community": 314, "norm_label": ".stream()" }, { @@ -243477,7 +243477,7 @@ "source_location": "L473", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_systemcontrols_systemapplemusic_telemetry", - "community": 67, + "community": 95, "norm_label": ".telemetry()" }, { @@ -243547,7 +243547,7 @@ "source_location": "L548", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_systemcontrols_systemspotify_telemetry", - "community": 67, + "community": 95, "norm_label": ".telemetry()" }, { @@ -243667,7 +243667,7 @@ "source_location": "L680", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_systemcontrols_powerassertioncontroller", - "community": 71, + "community": 10, "norm_label": "powerassertioncontroller" }, { @@ -243677,7 +243677,7 @@ "source_location": "", "_origin": "ast", "id": "iopmassertionid", - "community": 71, + "community": 10, "norm_label": "iopmassertionid" }, { @@ -243687,7 +243687,7 @@ "source_location": "L685", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_systemcontrols_powerassertioncontroller_init", - "community": 71, + "community": 10, "norm_label": ".init()" }, { @@ -243697,7 +243697,7 @@ "source_location": "L687", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_systemcontrols_powerassertioncontroller_deinit", - "community": 71, + "community": 10, "norm_label": ".deinit()" }, { @@ -243707,7 +243707,7 @@ "source_location": "L691", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_systemcontrols_powerassertioncontroller_setpreventingidlesleep", - "community": 71, + "community": 10, "norm_label": ".setpreventingidlesleep()" }, { @@ -244232,7 +244232,7 @@ "source_location": "L383", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_telemetry_thingtimenodelog", - "community": 179, + "community": 56, "norm_label": "thingtimenodelog" }, { @@ -244242,7 +244242,7 @@ "source_location": "L389", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_telemetry_devicetelemetrycollector", - "community": 71, + "community": 10, "norm_label": "devicetelemetrycollector" }, { @@ -244252,7 +244252,7 @@ "source_location": "L394", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_telemetry_devicetelemetrycollector_init", - "community": 71, + "community": 10, "norm_label": ".init()" }, { @@ -244262,7 +244262,7 @@ "source_location": "L412", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_telemetry_devicetelemetrycollector_establishsessionactivityafterapplicationlaunch", - "community": 67, + "community": 19, "norm_label": ".establishsessionactivityafterapplicationlaunch()" }, { @@ -244302,7 +244302,7 @@ "source_location": "L480", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_telemetry_devicetelemetrycollector_setpreventidlesleep", - "community": 71, + "community": 10, "norm_label": ".setpreventidlesleep()" }, { @@ -244342,7 +244342,7 @@ "source_location": "L503", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_telemetry_devicetelemetrycollector_sysctlstring", - "community": 71, + "community": 10, "norm_label": ".sysctlstring()" }, { @@ -244352,7 +244352,7 @@ "source_location": "L515", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_telemetry_sessionactivitymonitor", - "community": 67, + "community": 19, "norm_label": "sessionactivitymonitor" }, { @@ -244362,7 +244362,7 @@ "source_location": "", "_origin": "ast", "id": "notificationcenter", - "community": 67, + "community": 19, "norm_label": "notificationcenter" }, { @@ -244382,7 +244382,7 @@ "source_location": "L539", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_telemetry_sessionactivitymonitor_deinit", - "community": 67, + "community": 19, "norm_label": ".deinit()" }, { @@ -244392,7 +244392,7 @@ "source_location": "L543", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_telemetry_sessionactivitymonitor_sessiondidresignactive", - "community": 67, + "community": 19, "norm_label": ".sessiondidresignactive()" }, { @@ -244402,7 +244402,7 @@ "source_location": "L548", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_telemetry_sessionactivitymonitor_sessiondidbecomeactive", - "community": 67, + "community": 19, "norm_label": ".sessiondidbecomeactive()" }, { @@ -244412,7 +244412,7 @@ "source_location": "L553", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_telemetry_sessionactivitymonitor_establishafterapplicationdidfinishlaunching", - "community": 67, + "community": 19, "norm_label": ".establishafterapplicationdidfinishlaunching()" }, { @@ -244892,7 +244892,7 @@ "source_location": "L975", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_telemetry_systemwifi", - "community": 19, + "community": 67, "norm_label": "systemwifi" }, { @@ -244902,7 +244902,7 @@ "source_location": "L976", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_telemetry_systemwifi_snapshot", - "community": 19, + "community": 67, "norm_label": ".snapshot()" }, { @@ -244912,7 +244912,7 @@ "source_location": "L987", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_telemetry_systemwifi_connect", - "community": 19, + "community": 67, "norm_label": ".connect()" }, { @@ -244922,7 +244922,7 @@ "source_location": "L1009", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_telemetry_systemwifi_disconnect", - "community": 19, + "community": 67, "norm_label": ".disconnect()" }, { @@ -244932,7 +244932,7 @@ "source_location": "L1017", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_telemetry_systemwifi_setpower", - "community": 19, + "community": 67, "norm_label": ".setpower()" }, { @@ -244942,7 +244942,7 @@ "source_location": "L1029", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_telemetry_systemwifi_validatedssid", - "community": 19, + "community": 67, "norm_label": ".validatedssid()" }, { @@ -245032,7 +245032,7 @@ "source_location": "L23", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_thingtimeapiclient_thingtimeapiredirectdelegate", - "community": 10, + "community": 260, "norm_label": "thingtimeapiredirectdelegate" }, { @@ -245042,7 +245042,7 @@ "source_location": "", "_origin": "ast", "id": "urlsessiontaskdelegate", - "community": 10, + "community": 260, "norm_label": "urlsessiontaskdelegate" }, { @@ -245052,7 +245052,7 @@ "source_location": "L24", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_thingtimeapiclient_thingtimeapiredirectdelegate_urlsession", - "community": 10, + "community": 260, "norm_label": ".urlsession()" }, { @@ -245062,7 +245062,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_thingtimeapiclient_swift_urlsession", - "community": 10, + "community": 260, "norm_label": "urlsession" }, { @@ -245072,7 +245072,7 @@ "source_location": "", "_origin": "ast", "id": "urlsessiontask", - "community": 10, + "community": 260, "norm_label": "urlsessiontask" }, { @@ -245092,7 +245092,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_thingtimeapiclient_swift_urlrequest", - "community": 10, + "community": 260, "norm_label": "urlrequest" }, { @@ -245102,7 +245102,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_thingtimeapiclient_swift_void", - "community": 10, + "community": 260, "norm_label": "void" }, { @@ -245112,7 +245112,7 @@ "source_location": "L43", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_thingtimeapiclient_thingtimeapiclient", - "community": 10, + "community": 260, "norm_label": "thingtimeapiclient" }, { @@ -245432,7 +245432,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_thingtimeapiclient_swift_jsonvalue", - "community": 10, + "community": 260, "norm_label": "jsonvalue" }, { @@ -245462,7 +245462,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_thingtimeapiclient_swift_url", - "community": 10, + "community": 260, "norm_label": "url" }, { @@ -245472,7 +245472,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_thingtimeapiclient_swift_jsondecoder", - "community": 10, + "community": 260, "norm_label": "jsondecoder" }, { @@ -245482,7 +245482,7 @@ "source_location": "L194", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_thingtimeapiclient_thingtimeapiclient_init", - "community": 10, + "community": 260, "norm_label": ".init()" }, { @@ -245502,7 +245502,7 @@ "source_location": "L254", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_thingtimeapiclient_thingtimeapiclient_claimpairing", - "community": 10, + "community": 260, "norm_label": ".claimpairing()" }, { @@ -245522,7 +245522,7 @@ "source_location": "L368", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_thingtimeapiclient_thingtimeapiclient_leasecommands", - "community": 10, + "community": 260, "norm_label": ".leasecommands()" }, { @@ -245532,7 +245532,7 @@ "source_location": "L398", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_thingtimeapiclient_thingtimeapiclient_reportcommand", - "community": 10, + "community": 260, "norm_label": ".reportcommand()" }, { @@ -245542,7 +245542,7 @@ "source_location": "L424", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_thingtimeapiclient_thingtimeapiclient_heartbeatcommand", - "community": 10, + "community": 260, "norm_label": ".heartbeatcommand()" }, { @@ -245552,7 +245552,7 @@ "source_location": "L444", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_thingtimeapiclient_thingtimeapiclient_syncliveai", - "community": 10, + "community": 260, "norm_label": ".syncliveai()" }, { @@ -245562,7 +245562,7 @@ "source_location": "L457", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_thingtimeapiclient_thingtimeapiclient_requirecredential", - "community": 10, + "community": 260, "norm_label": ".requirecredential()" }, { @@ -245572,7 +245572,7 @@ "source_location": "L465", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_thingtimeapiclient_thingtimeapiclient_send", - "community": 10, + "community": 260, "norm_label": ".send()" }, { @@ -245582,7 +245582,7 @@ "source_location": "", "_origin": "ast", "id": "body", - "community": 10, + "community": 260, "norm_label": "body" }, { @@ -245592,7 +245592,7 @@ "source_location": "L494", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_thingtimeapiclient_thingtimeapiclient_allowed", - "community": 10, + "community": 260, "norm_label": ".allowed()" }, { @@ -245602,7 +245602,7 @@ "source_location": "L500", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_thingtimeapiclient_thingtimeapiclient_pairingerror", - "community": 10, + "community": 260, "norm_label": ".pairingerror()" }, { @@ -245622,7 +245622,7 @@ "source_location": "L519", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_thingtimeapiclient_thingtimeapiclient_isodate", - "community": 10, + "community": 260, "norm_label": ".isodate()" }, { @@ -245632,7 +245632,7 @@ "source_location": "L529", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_thingtimeapiclient_thingtimeapiclient_reporteventid", - "community": 10, + "community": 260, "norm_label": ".reporteventid()" }, { @@ -245642,7 +245642,7 @@ "source_location": "L538", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_thingtimeapiclient_thingtimeapiclient_commandoutputreference", - "community": 10, + "community": 260, "norm_label": ".commandoutputreference()" }, { @@ -245652,7 +245652,7 @@ "source_location": "L1", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_xpccontract", - "community": 179, + "community": 118, "norm_label": "xpccontract.swift" }, { @@ -245662,7 +245662,7 @@ "source_location": "L3", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_xpccontract_thingtimenodexpcprotocol", - "community": 179, + "community": 118, "norm_label": "thingtimenodexpcprotocol" }, { @@ -245672,7 +245672,7 @@ "source_location": "L7", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_xpccontract_thingtimenodexpc", - "community": 179, + "community": 118, "norm_label": "thingtimenodexpc" }, { @@ -245682,7 +245682,7 @@ "source_location": "L12", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_xpccontract_thingtimenodexpcrequestaccess", - "community": 179, + "community": 118, "norm_label": "thingtimenodexpcrequestaccess" }, { @@ -245692,7 +245692,7 @@ "source_location": "L13", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_xpccontract_thingtimenodexpcrequestaccess_onboardingread", - "community": 179, + "community": 118, "norm_label": "onboardingread" }, { @@ -245702,7 +245702,7 @@ "source_location": "L14", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_xpccontract_thingtimenodexpcrequestaccess_pairingmutation", - "community": 179, + "community": 118, "norm_label": "pairingmutation" }, { @@ -245712,7 +245712,7 @@ "source_location": "L15", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_xpccontract_thingtimenodexpcrequestaccess_permissionmutation", - "community": 179, + "community": 118, "norm_label": "permissionmutation" }, { @@ -245722,7 +245722,7 @@ "source_location": "L16", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_xpccontract_thingtimenodexpcrequestaccess_forbidden", - "community": 179, + "community": 118, "norm_label": "forbidden" }, { @@ -245732,7 +245732,7 @@ "source_location": "L19", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_xpccontract_thingtimenodexpcrequestpolicy", - "community": 179, + "community": 118, "norm_label": "thingtimenodexpcrequestpolicy" }, { @@ -245742,7 +245742,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_xpccontract_swift_timeinterval", - "community": 179, + "community": 118, "norm_label": "timeinterval" }, { @@ -245752,7 +245752,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_xpccontract_swift_set", - "community": 179, + "community": 118, "norm_label": "set" }, { @@ -245762,7 +245762,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_xpccontract_swift_string", - "community": 179, + "community": 118, "norm_label": "string" }, { @@ -245772,7 +245772,7 @@ "source_location": "L37", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_xpccontract_thingtimenodexpcrequestpolicy_access", - "community": 179, + "community": 118, "norm_label": ".access()" }, { @@ -245782,7 +245782,7 @@ "source_location": "L44", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_xpccontract_thingtimenodexpcrequestpolicy_confirmationtimeoutseconds", - "community": 179, + "community": 118, "norm_label": ".confirmationtimeoutseconds()" }, { @@ -245792,7 +245792,7 @@ "source_location": "L55", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_xpccontract_thingtimenodexpcrequestpolicy_bridgeresponsetimeoutseconds", - "community": 179, + "community": 118, "norm_label": ".bridgeresponsetimeoutseconds()" }, { @@ -245802,7 +245802,7 @@ "source_location": "L62", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_xpccontract_nodewirecodec", - "community": 71, + "community": 181, "norm_label": "nodewirecodec" }, { @@ -245812,7 +245812,7 @@ "source_location": "L63", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_xpccontract_nodewirecodec_decoderequest", - "community": 71, + "community": 181, "norm_label": ".decoderequest()" }, { @@ -245822,7 +245822,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_xpccontract_swift_data", - "community": 71, + "community": 181, "norm_label": "data" }, { @@ -245832,7 +245832,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_xpccontract_swift_int", - "community": 71, + "community": 181, "norm_label": "int" }, { @@ -245842,7 +245842,7 @@ "source_location": "L71", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_xpccontract_nodewirecodec_encoderequest", - "community": 71, + "community": 181, "norm_label": ".encoderequest()" }, { @@ -245852,7 +245852,7 @@ "source_location": "L80", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_xpccontract_nodewirecodec_decoderesponse", - "community": 71, + "community": 181, "norm_label": ".decoderesponse()" }, { @@ -245862,7 +245862,7 @@ "source_location": "L88", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_xpccontract_nodewirecodec_encoderesponse", - "community": 71, + "community": 181, "norm_label": ".encoderesponse()" }, { @@ -245872,7 +245872,7 @@ "source_location": "L97", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_xpccontract_nodewirecodec_validate", - "community": 71, + "community": 181, "norm_label": ".validate()" }, { @@ -245882,7 +245882,7 @@ "source_location": "L103", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_xpccontract_nodewirecodec_encoder", - "community": 71, + "community": 181, "norm_label": ".encoder()" }, { @@ -245892,7 +245892,7 @@ "source_location": "L110", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_xpccontract_nodewirecodec_decoder", - "community": 71, + "community": 181, "norm_label": ".decoder()" }, { @@ -245902,7 +245902,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_sources_thingtimenodecore_xpccontract_swift_jsondecoder", - "community": 71, + "community": 181, "norm_label": "jsondecoder" }, { @@ -245912,7 +245912,7 @@ "source_location": "L1", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_bridgeparentpolicytests", - "community": 321, + "community": 56, "norm_label": "bridgeparentpolicytests.swift" }, { @@ -246042,7 +246042,7 @@ "source_location": "L1", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_commandjournaltests", - "community": 71, + "community": 56, "norm_label": "commandjournaltests.swift" }, { @@ -246052,7 +246052,7 @@ "source_location": "L5", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_commandjournaltests_commandjournaltests", - "community": 71, + "community": 10, "norm_label": "commandjournaltests" }, { @@ -246062,7 +246062,7 @@ "source_location": "L6", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_commandjournaltests_commandjournaltests_testreplayssamepayloadandrejectsconflictingreuse", - "community": 71, + "community": 10, "norm_label": ".testreplayssamepayloadandrejectsconflictingreuse()" }, { @@ -246072,7 +246072,7 @@ "source_location": "L34", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_commandjournaltests_commandjournaltests_testrunningentryrecoversasuncertainacrossrestart", - "community": 71, + "community": 10, "norm_label": ".testrunningentryrecoversasuncertainacrossrestart()" }, { @@ -246082,7 +246082,7 @@ "source_location": "L49", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_commandjournaltests_commandjournaltests_testexplicitlyretryablepairingentrycanexecuteafterrestart", - "community": 71, + "community": 10, "norm_label": ".testexplicitlyretryablepairingentrycanexecuteafterrestart()" }, { @@ -246092,7 +246092,7 @@ "source_location": "L77", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_commandjournaltests_commandjournaltests_testboundedjournalevictsonlyoldestterminalentry", - "community": 71, + "community": 10, "norm_label": ".testboundedjournalevictsonlyoldestterminalentry()" }, { @@ -246102,7 +246102,7 @@ "source_location": "L112", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_commandjournaltests_commandjournaltests_testjournalrefusestoevictrunningoruncertainentries", - "community": 71, + "community": 10, "norm_label": ".testjournalrefusestoevictrunningoruncertainentries()" }, { @@ -246112,7 +246112,7 @@ "source_location": "L123", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_commandjournaltests_commandjournaltests_temporaryurl", - "community": 71, + "community": 10, "norm_label": ".temporaryurl()" }, { @@ -246122,7 +246122,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_commandjournaltests_swift_string", - "community": 71, + "community": 10, "norm_label": "string" }, { @@ -246132,7 +246132,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_commandjournaltests_swift_url", - "community": 71, + "community": 10, "norm_label": "url" }, { @@ -246142,7 +246142,7 @@ "source_location": "L1", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_controlplaneschedulertests", - "community": 181, + "community": 56, "norm_label": "controlplaneschedulertests.swift" }, { @@ -246162,7 +246162,7 @@ "source_location": "L6", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_controlplaneschedulertests_failure", - "community": 181, + "community": 260, "norm_label": "failure" }, { @@ -246172,7 +246172,7 @@ "source_location": "L6", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_controlplaneschedulertests_failure_heartbeat", - "community": 181, + "community": 260, "norm_label": "heartbeat" }, { @@ -246182,7 +246182,7 @@ "source_location": "L6", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_controlplaneschedulertests_failure_leaseheartbeat", - "community": 181, + "community": 260, "norm_label": "leaseheartbeat" }, { @@ -246242,7 +246242,7 @@ "source_location": "L33", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_controlplaneschedulertests_testcontrolplaneclient_claimpairing", - "community": 10, + "community": 181, "norm_label": ".claimpairing()" }, { @@ -246252,7 +246252,7 @@ "source_location": "L37", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_controlplaneschedulertests_testcontrolplaneclient_sendheartbeat", - "community": 118, + "community": 181, "norm_label": ".sendheartbeat()" }, { @@ -246302,7 +246302,7 @@ "source_location": "L64", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_controlplaneschedulertests_testcontrolplaneclient_reportcommand", - "community": 10, + "community": 181, "norm_label": ".reportcommand()" }, { @@ -246582,7 +246582,7 @@ "source_location": "L98", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_desktopchataccessibilitytests_testbackenderror", - "community": 10, + "community": 260, "norm_label": "testbackenderror" }, { @@ -246592,7 +246592,7 @@ "source_location": "L99", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_desktopchataccessibilitytests_testbackenderror_missingelement", - "community": 10, + "community": 260, "norm_label": "missingelement" }, { @@ -246782,7 +246782,7 @@ "source_location": "L38", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_desktopchatruntimetests_fakedesktopchatcommanding_selectvisiblechat", - "community": 85, + "community": 140, "norm_label": ".selectvisiblechat()" }, { @@ -246912,7 +246912,7 @@ "source_location": "L241", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_desktopchatruntimetests_desktopchatruntimetests_testleasedaccessibilitycommandusesthejournaleddesktoproute", - "community": 71, + "community": 10, "norm_label": ".testleasedaccessibilitycommandusesthejournaleddesktoproute()" }, { @@ -246992,7 +246992,7 @@ "source_location": "L1", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_liveaisynccoordinatortests", - "community": 392, + "community": 56, "norm_label": "liveaisynccoordinatortests.swift" }, { @@ -247002,7 +247002,7 @@ "source_location": "L5", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_liveaisynccoordinatortests_testliveaisyncfailure", - "community": 392, + "community": 260, "norm_label": "testliveaisyncfailure" }, { @@ -247012,7 +247012,7 @@ "source_location": "L6", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_liveaisynccoordinatortests_testliveaisyncfailure_offline", - "community": 392, + "community": 260, "norm_label": "offline" }, { @@ -247312,7 +247312,7 @@ "source_location": "L5", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_menubaricontests_menubaricontests", - "community": 333, + "community": 56, "norm_label": "menubaricontests" }, { @@ -247322,7 +247322,7 @@ "source_location": "L7", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_menubaricontests_menubaricontests_testeverybuiltinidentifierrendersattheexpectedmenubarsize", - "community": 333, + "community": 56, "norm_label": ".testeverybuiltinidentifierrendersattheexpectedmenubarsize()" }, { @@ -247332,7 +247332,7 @@ "source_location": "L16", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_menubaricontests_menubaricontests_testunknownenvironmentvaluefallsbacktopinkfoursquares", - "community": 333, + "community": 56, "norm_label": ".testunknownenvironmentvaluefallsbacktopinkfoursquares()" }, { @@ -247342,7 +247342,7 @@ "source_location": "L21", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_menubaricontests_menubaricontests_testmissingcustomimagefallsbacktocolourtree", - "community": 333, + "community": 56, "norm_label": ".testmissingcustomimagefallsbacktocolourtree()" }, { @@ -247352,7 +247352,7 @@ "source_location": "L27", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_menubaricontests_menubaricontests_teststatusmenuusesthingtimecopyandprovidesarealquitcommand", - "community": 333, + "community": 56, "norm_label": ".teststatusmenuusesthingtimecopyandprovidesarealquitcommand()" }, { @@ -247402,7 +247402,7 @@ "source_location": "L1", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_nodecontrollertests", - "community": 71, + "community": 10, "norm_label": "nodecontrollertests.swift" }, { @@ -247422,7 +247422,7 @@ "source_location": "L11", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_nodecontrollertests_responselosscontrolplaneclient", - "community": 71, + "community": 10, "norm_label": "responselosscontrolplaneclient" }, { @@ -247432,7 +247432,7 @@ "source_location": "L12", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_nodecontrollertests_claimoutcome", - "community": 71, + "community": 10, "norm_label": "claimoutcome" }, { @@ -247442,7 +247442,7 @@ "source_location": "L13", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_nodecontrollertests_claimoutcome_ambiguous", - "community": 71, + "community": 10, "norm_label": "ambiguous" }, { @@ -247452,7 +247452,7 @@ "source_location": "L14", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_nodecontrollertests_claimoutcome_rejected", - "community": 71, + "community": 10, "norm_label": "rejected" }, { @@ -247462,7 +247462,7 @@ "source_location": "L15", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_nodecontrollertests_claimoutcome_succeeded", - "community": 71, + "community": 10, "norm_label": "succeeded" }, { @@ -247472,7 +247472,7 @@ "source_location": "L22", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_nodecontrollertests_responselosscontrolplaneclient_init", - "community": 71, + "community": 10, "norm_label": ".init()" }, { @@ -247492,7 +247492,7 @@ "source_location": "L35", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_nodecontrollertests_responselosscontrolplaneclient_claimpairing", - "community": 71, + "community": 10, "norm_label": ".claimpairing()" }, { @@ -247502,7 +247502,7 @@ "source_location": "L48", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_nodecontrollertests_responselosscontrolplaneclient_sendheartbeat", - "community": 118, + "community": 10, "norm_label": ".sendheartbeat()" }, { @@ -247522,7 +247522,7 @@ "source_location": "L50", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_nodecontrollertests_responselosscontrolplaneclient_heartbeatcommand", - "community": 71, + "community": 10, "norm_label": ".heartbeatcommand()" }, { @@ -247532,7 +247532,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_nodecontrollertests_swift_string", - "community": 71, + "community": 10, "norm_label": "string" }, { @@ -247542,7 +247542,7 @@ "source_location": "L51", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_nodecontrollertests_responselosscontrolplaneclient_reportcommand", - "community": 10, + "community": 181, "norm_label": ".reportcommand()" }, { @@ -247552,7 +247552,7 @@ "source_location": "L54", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_nodecontrollertests_failingkeychaincredentialstore", - "community": 71, + "community": 10, "norm_label": "failingkeychaincredentialstore" }, { @@ -247562,7 +247562,7 @@ "source_location": "L55", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_nodecontrollertests_failingkeychaincredentialstore_load", - "community": 71, + "community": 10, "norm_label": ".load()" }, { @@ -247572,7 +247572,7 @@ "source_location": "L56", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_nodecontrollertests_failingkeychaincredentialstore_loadall", - "community": 71, + "community": 10, "norm_label": ".loadall()" }, { @@ -247592,7 +247592,7 @@ "source_location": "L60", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_nodecontrollertests_failingkeychaincredentialstore_delete", - "community": 71, + "community": 10, "norm_label": ".delete()" }, { @@ -247602,7 +247602,7 @@ "source_location": "L61", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_nodecontrollertests_failingkeychaincredentialstore_loadpendingpairingclaim", - "community": 71, + "community": 10, "norm_label": ".loadpendingpairingclaim()" }, { @@ -247622,7 +247622,7 @@ "source_location": "L65", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_nodecontrollertests_failingkeychaincredentialstore_deletependingpairingclaim", - "community": 71, + "community": 10, "norm_label": ".deletependingpairingclaim()" }, { @@ -247632,7 +247632,7 @@ "source_location": "L68", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_nodecontrollertests_nodecontrollertests", - "community": 71, + "community": 10, "norm_label": "nodecontrollertests" }, { @@ -247642,7 +247642,7 @@ "source_location": "L72", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_nodecontrollertests_nodecontrollertests_testmutationsrequirecommandidandreplayjournaledoutcome", - "community": 71, + "community": 10, "norm_label": ".testmutationsrequirecommandidandreplayjournaledoutcome()" }, { @@ -247652,7 +247652,7 @@ "source_location": "L117", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_nodecontrollertests_nodecontrollertests_testunpairedleasedmachinecontrolsfailclosedbeforesideeffects", - "community": 71, + "community": 10, "norm_label": ".testunpairedleasedmachinecontrolsfailclosedbeforesideeffects()" }, { @@ -247662,7 +247662,7 @@ "source_location": "L169", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_nodecontrollertests_nodecontrollertests_testlocalkeychainfailureisdefinitiveandneverreportedasanunconfirmedserverresponse", - "community": 71, + "community": 10, "norm_label": ".testlocalkeychainfailureisdefinitiveandneverreportedasanunconfirmedserverresponse()" }, { @@ -247672,7 +247672,7 @@ "source_location": "L202", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_nodecontrollertests_nodecontrollertests_testcommittedpairingwithlostresponseretriesexactcompleteandpairslocally", - "community": 71, + "community": 10, "norm_label": ".testcommittedpairingwithlostresponseretriesexactcompleteandpairslocally()" }, { @@ -247682,7 +247682,7 @@ "source_location": "L299", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_nodecontrollertests_nodecontrollertests_testtransientpairingresponselossreconcileswithinoneapprovedrequest", - "community": 71, + "community": 10, "norm_label": ".testtransientpairingresponselossreconcileswithinoneapprovedrequest()" }, { @@ -247692,7 +247692,7 @@ "source_location": "L336", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_nodecontrollertests_nodecontrollertests_testpairingresumerequirescommandidandfailssafelywithoutpendingmaterial", - "community": 71, + "community": 10, "norm_label": ".testpairingresumerequirescommandidandfailssafelywithoutpendingmaterial()" }, { @@ -247702,7 +247702,7 @@ "source_location": "L378", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_nodecontrollertests_nodecontrollertests_testdefinitiveresumerejectionclearspendingbutambiguousfailureretainsit", - "community": 71, + "community": 10, "norm_label": ".testdefinitiveresumerejectionclearspendingbutambiguousfailureretainsit()" }, { @@ -248022,7 +248022,7 @@ "source_location": "L412", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_safeactionpolicytests_safeactionpolicytests_testsessionlockmonitorusespublicworkspacenotifications", - "community": 67, + "community": 19, "norm_label": ".testsessionlockmonitorusespublicworkspacenotifications()" }, { @@ -248032,7 +248032,7 @@ "source_location": "L425", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_safeactionpolicytests_safeactionpolicytests_testsessionlockmonitorlaunchesfailclosedandestablishesactiveorinactivestate", - "community": 67, + "community": 19, "norm_label": ".testsessionlockmonitorlaunchesfailclosedandestablishesactiveorinactivestate()" }, { @@ -248062,7 +248062,7 @@ "source_location": "L6", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_screencapturetests_fakescreencapturesession", - "community": 621, + "community": 314, "norm_label": "fakescreencapturesession" }, { @@ -248072,7 +248072,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_screencapturetests_swift_sendable", - "community": 621, + "community": 314, "norm_label": "sendable" }, { @@ -248092,7 +248092,7 @@ "source_location": "L10", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_screencapturetests_fakescreencapturesession_init", - "community": 621, + "community": 314, "norm_label": ".init()" }, { @@ -248142,7 +248142,7 @@ "source_location": "L28", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_screencapturetests_fakescreencapturebackend", - "community": 621, + "community": 314, "norm_label": "fakescreencapturebackend" }, { @@ -248152,7 +248152,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_screencapturetests_swift_bool", - "community": 621, + "community": 314, "norm_label": "bool" }, { @@ -248162,7 +248162,7 @@ "source_location": "L38", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_screencapturetests_fakescreencapturebackend_init", - "community": 621, + "community": 314, "norm_label": ".init()" }, { @@ -248172,7 +248172,7 @@ "source_location": "L43", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_screencapturetests_fakescreencapturebackend_preflightauthorized", - "community": 621, + "community": 314, "norm_label": ".preflightauthorized()" }, { @@ -248182,7 +248182,7 @@ "source_location": "L48", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_screencapturetests_fakescreencapturebackend_availabledisplays", - "community": 469, + "community": 314, "norm_label": ".availabledisplays()" }, { @@ -248192,7 +248192,7 @@ "source_location": "L50", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_screencapturetests_fakescreencapturebackend_startcapture", - "community": 621, + "community": 314, "norm_label": ".startcapture()" }, { @@ -248202,7 +248202,7 @@ "source_location": "L65", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_screencapturetests_fakescreencapturebackend_emit", - "community": 623, + "community": 314, "norm_label": ".emit()" }, { @@ -248212,7 +248212,7 @@ "source_location": "L69", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_screencapturetests_fakescreencapturebackend_terminate", - "community": 596, + "community": 314, "norm_label": ".terminate()" }, { @@ -248222,7 +248222,7 @@ "source_location": "L73", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_screencapturetests_fakescreencapturebackend_snapshot", - "community": 621, + "community": 314, "norm_label": ".snapshot()" }, { @@ -248232,7 +248232,7 @@ "source_location": "L82", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_screencapturetests_fakescreencapturebackend_recordstop", - "community": 621, + "community": 314, "norm_label": ".recordstop()" }, { @@ -248262,7 +248262,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_screencapturetests_swift_double", - "community": 623, + "community": 314, "norm_label": "double" }, { @@ -248312,7 +248312,7 @@ "source_location": "L105", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_screencapturetests_gatedscreencaptureencoder_encode", - "community": 623, + "community": 314, "norm_label": ".encode()" }, { @@ -248412,7 +248412,7 @@ "source_location": "L227", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_screencapturetests_screencapturetests_testdefaultencoderproducesboundedjpegbytes", - "community": 623, + "community": 314, "norm_label": ".testdefaultencoderproducesboundedjpegbytes()" }, { @@ -248512,7 +248512,7 @@ "source_location": "L451", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_screencapturetests_fakescreencapturebackend_setauthorized", - "community": 621, + "community": 314, "norm_label": ".setauthorized()" }, { @@ -248532,7 +248532,7 @@ "source_location": "L5", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_systemconfigurationprofileproposaltests_systemconfigurationprofileproposaltests", - "community": 56, + "community": 95, "norm_label": "systemconfigurationprofileproposaltests" }, { @@ -248542,7 +248542,7 @@ "source_location": "L7", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_systemconfigurationprofileproposaltests_systemconfigurationprofileproposaltests_testairdropprofileisfixedandcarriesonlytheclosedavailabilityflag", - "community": 56, + "community": 95, "norm_label": ".testairdropprofileisfixedandcarriesonlytheclosedavailabilityflag()" }, { @@ -248552,7 +248552,7 @@ "source_location": "L19", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_systemconfigurationprofileproposaltests_systemconfigurationprofileproposaltests_testcameraprofileisfixedanddoesnotclaimtograntperappcameraaccess", - "community": 56, + "community": 95, "norm_label": ".testcameraprofileisfixedanddoesnotclaimtograntperappcameraaccess()" }, { @@ -248562,7 +248562,7 @@ "source_location": "L31", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_systemconfigurationprofileproposaltests_systemconfigurationprofileproposaltests_propertylist", - "community": 56, + "community": 95, "norm_label": ".propertylist()" }, { @@ -248572,7 +248572,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_systemconfigurationprofileproposaltests_swift_bool", - "community": 56, + "community": 95, "norm_label": "bool" }, { @@ -248582,7 +248582,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_systemconfigurationprofileproposaltests_swift_string", - "community": 56, + "community": 95, "norm_label": "string" }, { @@ -248592,7 +248592,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_systemconfigurationprofileproposaltests_swift_any", - "community": 56, + "community": 95, "norm_label": "any" }, { @@ -248653,7 +248653,7 @@ "source_location": "L6", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_thingtimeapiclienttests_mockurlprotocol", - "community": 321, + "community": 260, "norm_label": "mockurlprotocol" }, { @@ -248663,7 +248663,7 @@ "source_location": "", "_origin": "ast", "id": "urlprotocol", - "community": 321, + "community": 260, "norm_label": "urlprotocol" }, { @@ -248673,7 +248673,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_thingtimeapiclienttests_swift_urlrequest", - "community": 321, + "community": 260, "norm_label": "urlrequest" }, { @@ -248683,7 +248683,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_thingtimeapiclienttests_swift_int", - "community": 321, + "community": 260, "norm_label": "int" }, { @@ -248693,7 +248693,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_thingtimeapiclienttests_swift_data", - "community": 10, + "community": 260, "norm_label": "data" }, { @@ -248703,7 +248703,7 @@ "source_location": "L10", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_thingtimeapiclienttests_mockurlprotocol_caninit", - "community": 321, + "community": 260, "norm_label": ".caninit()" }, { @@ -248713,7 +248713,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_thingtimeapiclienttests_swift_bool", - "community": 321, + "community": 260, "norm_label": "bool" }, { @@ -248723,7 +248723,7 @@ "source_location": "L11", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_thingtimeapiclienttests_mockurlprotocol_canonicalrequest", - "community": 321, + "community": 260, "norm_label": ".canonicalrequest()" }, { @@ -248733,7 +248733,7 @@ "source_location": "L12", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_thingtimeapiclienttests_mockurlprotocol_startloading", - "community": 321, + "community": 260, "norm_label": ".startloading()" }, { @@ -248743,7 +248743,7 @@ "source_location": "L26", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_thingtimeapiclienttests_mockurlprotocol_stoploading", - "community": 321, + "community": 260, "norm_label": ".stoploading()" }, { @@ -248753,7 +248753,7 @@ "source_location": "L29", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_thingtimeapiclienttests_thingtimeapiclienttests", - "community": 10, + "community": 260, "norm_label": "thingtimeapiclienttests" }, { @@ -248773,7 +248773,7 @@ "source_location": "L64", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_thingtimeapiclienttests_thingtimeapiclienttests_bodydata", - "community": 10, + "community": 260, "norm_label": ".bodydata()" }, { @@ -248783,7 +248783,7 @@ "source_location": "L82", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_thingtimeapiclienttests_thingtimeapiclienttests_session", - "community": 10, + "community": 260, "norm_label": ".session()" }, { @@ -248793,7 +248793,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_thingtimeapiclienttests_swift_urlsession", - "community": 10, + "community": 260, "norm_label": "urlsession" }, { @@ -248803,7 +248803,7 @@ "source_location": "L88", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_thingtimeapiclienttests_thingtimeapiclienttests_testprepareandcompleteuseboundproofandreturnpersistedcredential", - "community": 10, + "community": 260, "norm_label": ".testprepareandcompleteuseboundproofandreturnpersistedcredential()" }, { @@ -248813,7 +248813,7 @@ "source_location": "L131", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_thingtimeapiclienttests_thingtimeapiclienttests_testheartbeatusesbearercredentialandclosedstateshape", - "community": 10, + "community": 260, "norm_label": ".testheartbeatusesbearercredentialandclosedstateshape()" }, { @@ -248823,7 +248823,7 @@ "source_location": "L251", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_thingtimeapiclienttests_thingtimeapiclienttests_testrejectsinsecureremotebaseurlanddoesnotsendwithoutpairing", - "community": 10, + "community": 260, "norm_label": ".testrejectsinsecureremotebaseurlanddoesnotsendwithoutpairing()" }, { @@ -248833,7 +248833,7 @@ "source_location": "L261", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_thingtimeapiclienttests_thingtimeapiclienttests_testleaserequiresapprovedenvelopeandparsesfractionalserverdate", - "community": 10, + "community": 260, "norm_label": ".testleaserequiresapprovedenvelopeandparsesfractionalserverdate()" }, { @@ -248843,7 +248843,7 @@ "source_location": "L287", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_thingtimeapiclienttests_thingtimeapiclienttests_testcommandheartbeatusesleaseidentityandparsesexpiration", - "community": 10, + "community": 260, "norm_label": ".testcommandheartbeatusesleaseidentityandparsesexpiration()" }, { @@ -248853,7 +248853,7 @@ "source_location": "L309", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_thingtimeapiclienttests_thingtimeapiclienttests_testcommandreportexposesonlytheboundedopaquenextcursor", - "community": 10, + "community": 260, "norm_label": ".testcommandreportexposesonlytheboundedopaquenextcursor()" }, { @@ -248863,7 +248863,7 @@ "source_location": "L354", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_thingtimeapiclienttests_thingtimeapiclienttests_testliveaisyncusesnodecredentialandpreservesclosedenvelope", - "community": 10, + "community": 260, "norm_label": ".testliveaisyncusesnodecredentialandpreservesclosedenvelope()" }, { @@ -248873,7 +248873,7 @@ "source_location": "L394", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_thingtimeapiclienttests_xctassertthrowserrorasync", - "community": 56, + "community": 260, "norm_label": "xctassertthrowserrorasync()" }, { @@ -248883,7 +248883,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_thingtimeapiclienttests_swift_t", - "community": 56, + "community": 260, "norm_label": "t" }, { @@ -248893,7 +248893,7 @@ "source_location": "", "_origin": "ast", "id": "staticstring", - "community": 56, + "community": 260, "norm_label": "staticstring" }, { @@ -248903,7 +248903,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_thingtimeapiclienttests_swift_uint", - "community": 56, + "community": 260, "norm_label": "uint" }, { @@ -248913,7 +248913,7 @@ "source_location": "L1", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_wirecodectests", - "community": 118, + "community": 56, "norm_label": "wirecodectests.swift" }, { @@ -248933,7 +248933,7 @@ "source_location": "L6", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_wirecodectests_wirecodectests_testxpcrequestandresponseroundtrip", - "community": 71, + "community": 181, "norm_label": ".testxpcrequestandresponseroundtrip()" }, { @@ -248963,7 +248963,7 @@ "source_location": "L46", "_origin": "ast", "id": "macos_thingtimenode_tests_thingtimenodecoretests_wirecodectests_wirecodectests_testxpcpresencetimeoutsfinishbeforetheserverpairingchallengeexpires", - "community": 179, + "community": 118, "norm_label": ".testxpcpresencetimeoutsfinishbeforetheserverpairingchallengeexpires()" }, { @@ -249139,7 +249139,7 @@ "source_location": "L1", "_origin": "ast", "id": "macos_thingtimerecovery_app_thingtimerecoveryinstallermain", - "community": 22, + "community": 56, "norm_label": "thingtimerecoveryinstallermain.swift" }, { @@ -249160,7 +249160,7 @@ "source_location": "L4", "_origin": "ast", "id": "macos_thingtimerecovery_app_thingtimerecoveryinstallermain_fail", - "community": 22, + "community": 56, "norm_label": "fail()" }, { @@ -249170,7 +249170,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimerecovery_app_thingtimerecoveryinstallermain_swift_string", - "community": 22, + "community": 56, "norm_label": "string" }, { @@ -249180,7 +249180,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimerecovery_app_thingtimerecoveryinstallermain_swift_never", - "community": 22, + "community": 56, "norm_label": "never" }, { @@ -249200,7 +249200,7 @@ "source_location": "L3", "_origin": "ast", "id": "macos_thingtimerecovery_models_recoverybuildmetadata_recoveryproduct", - "community": 43, + "community": 22, "norm_label": "recoveryproduct" }, { @@ -249210,7 +249210,7 @@ "source_location": "L4", "_origin": "ast", "id": "macos_thingtimerecovery_models_recoverybuildmetadata_recoveryproduct_electron", - "community": 43, + "community": 22, "norm_label": "electron" }, { @@ -249220,7 +249220,7 @@ "source_location": "L5", "_origin": "ast", "id": "macos_thingtimerecovery_models_recoverybuildmetadata_recoveryproduct_commander", - "community": 43, + "community": 22, "norm_label": "commander" }, { @@ -249240,7 +249240,7 @@ "source_location": "L22", "_origin": "ast", "id": "macos_thingtimerecovery_models_recoverybuildmetadata_recoverybuildmetadata_init", - "community": 85, + "community": 43, "norm_label": ".init()" }, { @@ -249250,7 +249250,7 @@ "source_location": "", "_origin": "ast", "id": "macos_thingtimerecovery_models_recoverybuildmetadata_swift_url", - "community": 85, + "community": 43, "norm_label": "url" }, { @@ -249260,7 +249260,7 @@ "source_location": "L42", "_origin": "ast", "id": "macos_thingtimerecovery_models_recoverybuildmetadata_recoverybuildmetadata_capture", - "community": 85, + "community": 43, "norm_label": ".capture()" }, { @@ -249980,7 +249980,7 @@ "source_location": "L189", "_origin": "ast", "id": "macos_thingtimerecovery_services_githubreleasecatalog_codingkeys_body", - "community": 10, + "community": 260, "norm_label": "body" }, { @@ -250200,7 +250200,7 @@ "source_location": "L1", "_origin": "ast", "id": "macos_thingtimerecovery_services_recoverycache", - "community": 56, + "community": 43, "norm_label": "recoverycache.swift" }, { @@ -250410,7 +250410,7 @@ "source_location": "L169", "_origin": "ast", "id": "macos_thingtimerecovery_services_recoverycache_stabledigest", - "community": 56, + "community": 43, "norm_label": "stabledigest" }, { @@ -251213,7 +251213,7 @@ "source_location": "L4", "_origin": "ast", "id": "macos_thingtimerecovery_views_recoverycontentview_recoveryselection", - "community": 22, + "community": 43, "norm_label": "recoveryselection" }, { @@ -251223,7 +251223,7 @@ "source_location": "L5", "_origin": "ast", "id": "macos_thingtimerecovery_views_recoverycontentview_recoveryselection_cache", - "community": 22, + "community": 43, "norm_label": "cache" }, { @@ -251233,7 +251233,7 @@ "source_location": "L6", "_origin": "ast", "id": "macos_thingtimerecovery_views_recoverycontentview_recoveryselection_release", - "community": 22, + "community": 43, "norm_label": "release" }, { @@ -252049,7 +252049,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_ds_entry", - "community": 591, + "community": 323, "norm_label": ".ds-entry.tsx" }, { @@ -252219,7 +252219,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_providers_chakra_chakrawrapper", - "community": 594, + "community": 323, "norm_label": "chakrawrapper.tsx" }, { @@ -252229,7 +252229,7 @@ "source_location": "L4", "_origin": "ast", "id": "remix_app_providers_chakra_chakrawrapper_chakrawrapper", - "community": 594, + "community": 323, "norm_label": "chakrawrapper()" }, { @@ -252239,7 +252239,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_providers_chakra_components_button", - "community": 594, + "community": 323, "norm_label": "button.tsx" }, { @@ -252249,7 +252249,7 @@ "source_location": "L4", "_origin": "ast", "id": "remix_app_providers_chakra_components_button_chakrabutton", - "community": 594, + "community": 323, "norm_label": "chakrabutton" }, { @@ -252259,7 +252259,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_providers_chakra_colors", - "community": 594, + "community": 323, "norm_label": "colors.tsx" }, { @@ -252269,7 +252269,7 @@ "source_location": "L5", "_origin": "ast", "id": "remix_app_providers_chakra_colors_greys", - "community": 594, + "community": 323, "norm_label": "greys" }, { @@ -252279,7 +252279,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_providers_chakra_colors_g", - "community": 594, + "community": 323, "norm_label": "g" }, { @@ -252289,7 +252289,7 @@ "source_location": "L25", "_origin": "ast", "id": "remix_app_providers_chakra_colors_chakrasdark", - "community": 594, + "community": 323, "norm_label": "chakrasdark" }, { @@ -252299,7 +252299,7 @@ "source_location": "L42", "_origin": "ast", "id": "remix_app_providers_chakra_colors_chakraslight", - "community": 594, + "community": 323, "norm_label": "chakraslight" }, { @@ -252309,7 +252309,7 @@ "source_location": "L61", "_origin": "ast", "id": "remix_app_providers_chakra_colors_chakras", - "community": 594, + "community": 323, "norm_label": "chakras" }, { @@ -252319,7 +252319,7 @@ "source_location": "L70", "_origin": "ast", "id": "remix_app_providers_chakra_colors_colors", - "community": 594, + "community": 323, "norm_label": "colors" }, { @@ -252329,7 +252329,7 @@ "source_location": "L117", "_origin": "ast", "id": "remix_app_providers_chakra_colors_adddark", - "community": 594, + "community": 323, "norm_label": "adddark()" }, { @@ -252449,7 +252449,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_providers_chakra_space", - "community": 594, + "community": 323, "norm_label": "space.tsx" }, { @@ -252459,7 +252459,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_providers_chakra_space_spaceobj", - "community": 594, + "community": 323, "norm_label": "spaceobj" }, { @@ -252469,7 +252469,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_providers_chakra_theme", - "community": 594, + "community": 323, "norm_label": "theme.tsx" }, { @@ -252479,7 +252479,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_providers_chakra_theme_theme", - "community": 594, + "community": 323, "norm_label": "theme" }, { @@ -252489,7 +252489,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_providers_thingtime_thingtimedefaults", - "community": 432, + "community": 323, "norm_label": "thingtimedefaults.tsx" }, { @@ -252499,7 +252499,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_providers_thingtime_thingtimedefaults_thingtimeminimumvalues", - "community": 432, + "community": 323, "norm_label": "thingtimeminimumvalues" }, { @@ -252509,7 +252509,7 @@ "source_location": "L251", "_origin": "ast", "id": "remix_app_providers_thingtime_thingtimedefaults_thingtimeoverwriteall", - "community": 432, + "community": 323, "norm_label": "thingtimeoverwriteall" }, { @@ -252519,7 +252519,7 @@ "source_location": "L390", "_origin": "ast", "id": "remix_app_providers_thingtime_thingtimedefaults_thingtimenewdata", - "community": 432, + "community": 323, "norm_label": "thingtimenewdata" }, { @@ -252529,7 +252529,7 @@ "source_location": "L392", "_origin": "ast", "id": "remix_app_providers_thingtime_thingtimedefaults_versions", - "community": 432, + "community": 323, "norm_label": "versions" }, { @@ -252539,7 +252539,7 @@ "source_location": "L421", "_origin": "ast", "id": "remix_app_providers_thingtime_thingtimedefaults_mergedversions", - "community": 432, + "community": 323, "norm_label": "mergedversions" }, { @@ -252549,7 +252549,7 @@ "source_location": "L425", "_origin": "ast", "id": "remix_app_providers_thingtime_thingtimedefaults_defaultvalues", - "community": 432, + "community": 323, "norm_label": "defaultvalues" }, { @@ -252559,7 +252559,7 @@ "source_location": "L469", "_origin": "ast", "id": "remix_app_providers_thingtime_thingtimedefaults_thingtimedefaults", - "community": 432, + "community": 323, "norm_label": "thingtimedefaults" }, { @@ -252569,7 +252569,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_providers_thingtime_defaults_cmdwatcher", - "community": 613, + "community": 323, "norm_label": "cmdwatcher.ts" }, { @@ -252589,7 +252589,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_providers_thingtimeprovider", - "community": 432, + "community": 323, "norm_label": "thingtimeprovider.tsx" }, { @@ -252609,7 +252609,7 @@ "source_location": "L33", "_origin": "ast", "id": "remix_app_providers_thingtimeprovider_everythingtypes", - "community": 432, + "community": 323, "norm_label": "everythingtypes" }, { @@ -252629,7 +252629,7 @@ "source_location": "L45", "_origin": "ast", "id": "remix_app_providers_thingtimeprovider_thingtimeprovider", - "community": 432, + "community": 323, "norm_label": "thingtimeprovider()" }, { @@ -252639,7 +252639,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_providers_latestrevisionautosave_test", - "community": 2, + "community": 323, "norm_label": "latestrevisionautosave.test.ts" }, { @@ -252649,7 +252649,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_providers_latestrevisionautosave_test_timertask", - "community": 2, + "community": 323, "norm_label": "timertask" }, { @@ -252659,7 +252659,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_providers_latestrevisionautosave_test_faketimers", - "community": 2, + "community": 323, "norm_label": "faketimers" }, { @@ -252669,7 +252669,7 @@ "source_location": "L29", "_origin": "ast", "id": "remix_app_providers_latestrevisionautosave_test_faketimers_advanceby", - "community": 2, + "community": 323, "norm_label": ".advanceby()" }, { @@ -252679,7 +252679,7 @@ "source_location": "L42", "_origin": "ast", "id": "remix_app_providers_latestrevisionautosave_test_deferred", - "community": 2, + "community": 323, "norm_label": "deferred()" }, { @@ -252689,7 +252689,7 @@ "source_location": "L52", "_origin": "ast", "id": "remix_app_providers_latestrevisionautosave_test_flushmicrotasks", - "community": 2, + "community": 323, "norm_label": "flushmicrotasks()" }, { @@ -252699,7 +252699,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_providers_latestrevisionautosave", - "community": 2, + "community": 323, "norm_label": "latestrevisionautosave.ts" }, { @@ -252709,7 +252709,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_providers_latestrevisionautosave_latestrevisionautosavephase", - "community": 2, + "community": 323, "norm_label": "latestrevisionautosavephase" }, { @@ -252719,7 +252719,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_providers_latestrevisionautosave_latestrevisionautosaveerrorcontext", - "community": 2, + "community": 323, "norm_label": "latestrevisionautosaveerrorcontext" }, { @@ -252729,7 +252729,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_providers_latestrevisionautosave_latestrevisionautosavestate", - "community": 2, + "community": 323, "norm_label": "latestrevisionautosavestate" }, { @@ -252739,7 +252739,7 @@ "source_location": "L17", "_origin": "ast", "id": "remix_app_providers_latestrevisionautosave_latestrevisionautosavetimers", - "community": 2, + "community": 323, "norm_label": "latestrevisionautosavetimers" }, { @@ -252749,7 +252749,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_providers_latestrevisionautosave_latestrevisionautosaveoptions", - "community": 2, + "community": 323, "norm_label": "latestrevisionautosaveoptions" }, { @@ -252759,7 +252759,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_providers_latestrevisionautosave_latestrevisionautosavecoordinator", - "community": 2, + "community": 323, "norm_label": "latestrevisionautosavecoordinator" }, { @@ -252769,7 +252769,7 @@ "source_location": "L45", "_origin": "ast", "id": "remix_app_providers_latestrevisionautosave_defaulttimers", - "community": 2, + "community": 323, "norm_label": "defaulttimers" }, { @@ -252779,7 +252779,7 @@ "source_location": "L50", "_origin": "ast", "id": "remix_app_providers_latestrevisionautosave_validatedelay", - "community": 2, + "community": 323, "norm_label": "validatedelay()" }, { @@ -252789,7 +252789,7 @@ "source_location": "L63", "_origin": "ast", "id": "remix_app_providers_latestrevisionautosave_createlatestrevisionautosave", - "community": 2, + "community": 323, "norm_label": "createlatestrevisionautosave()" }, { @@ -252799,7 +252799,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_providers_thingtimemutationqueue_test", - "community": 754, + "community": 323, "norm_label": "thingtimemutationqueue.test.ts" }, { @@ -252809,7 +252809,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_providers_thingtimemutationqueue_test_state", - "community": 754, + "community": 323, "norm_label": "state" }, { @@ -252819,7 +252819,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_providers_thingtimemutationqueue_test_update", - "community": 754, + "community": 323, "norm_label": "update" }, { @@ -252829,7 +252829,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_providers_thingtimemutationqueue", - "community": 754, + "community": 323, "norm_label": "thingtimemutationqueue.ts" }, { @@ -252839,7 +252839,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_providers_thingtimemutationqueue_thingtimemutationdrainresult", - "community": 754, + "community": 323, "norm_label": "thingtimemutationdrainresult" }, { @@ -252849,7 +252849,7 @@ "source_location": "L11", "_origin": "ast", "id": "remix_app_providers_thingtimemutationqueue_drainthingtimemutationqueue", - "community": 754, + "community": 323, "norm_label": "drainthingtimemutationqueue()" }, { @@ -252859,7 +252859,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_providers_thingtimeserialization_test", - "community": 432, + "community": 494, "norm_label": "thingtimeserialization.test.ts" }, { @@ -252869,7 +252869,7 @@ "source_location": "L17", "_origin": "ast", "id": "remix_app_providers_thingtimeserialization_test_roundtrip", - "community": 432, + "community": 494, "norm_label": "roundtrip()" }, { @@ -252879,7 +252879,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_providers_thingtimeserialization", - "community": 432, + "community": 494, "norm_label": "thingtimeserialization.ts" }, { @@ -252889,7 +252889,7 @@ "source_location": "L4", "_origin": "ast", "id": "remix_app_providers_thingtimeserialization_parsedthingtime", - "community": 432, + "community": 494, "norm_label": "parsedthingtime" }, { @@ -252899,7 +252899,7 @@ "source_location": "L10", "_origin": "ast", "id": "remix_app_providers_thingtimeserialization_root_runtime_methods", - "community": 432, + "community": 494, "norm_label": "root_runtime_methods" }, { @@ -252909,7 +252909,7 @@ "source_location": "L12", "_origin": "ast", "id": "remix_app_providers_thingtimeserialization_isrecord", - "community": 432, + "community": 494, "norm_label": "isrecord()" }, { @@ -252919,7 +252919,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_providers_thingtimeserialization_parsediagnostics", - "community": 432, + "community": 494, "norm_label": "parsediagnostics" }, { @@ -252929,7 +252929,7 @@ "source_location": "L20", "_origin": "ast", "id": "remix_app_providers_thingtimeserialization_inert_persisted_function", - "community": 432, + "community": 494, "norm_label": "inert_persisted_function" }, { @@ -252939,7 +252939,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_providers_thingtimeserialization_revivepersistedvalue", - "community": 432, + "community": 494, "norm_label": "revivepersistedvalue()" }, { @@ -252949,7 +252949,7 @@ "source_location": "L66", "_origin": "ast", "id": "remix_app_providers_thingtimeserialization_replacer", - "community": 432, + "community": 494, "norm_label": "replacer()" }, { @@ -252959,7 +252959,7 @@ "source_location": "L81", "_origin": "ast", "id": "remix_app_providers_thingtimeserialization_haspersistedthingtimeruntimemethods", - "community": 432, + "community": 494, "norm_label": "haspersistedthingtimeruntimemethods()" }, { @@ -252969,7 +252969,7 @@ "source_location": "L85", "_origin": "ast", "id": "remix_app_providers_thingtimeserialization_parsethingtimewithdiagnostics", - "community": 432, + "community": 494, "norm_label": "parsethingtimewithdiagnostics()" }, { @@ -252979,7 +252979,7 @@ "source_location": "L108", "_origin": "ast", "id": "remix_app_providers_thingtimeserialization_parsethingtime", - "community": 432, + "community": 494, "norm_label": "parsethingtime()" }, { @@ -252989,7 +252989,7 @@ "source_location": "L112", "_origin": "ast", "id": "remix_app_providers_thingtimeserialization_stringifythingtime", - "community": 432, + "community": 494, "norm_label": "stringifythingtime()" }, { @@ -252999,7 +252999,7 @@ "source_location": "L121", "_origin": "ast", "id": "remix_app_providers_thingtimeserialization_stringifythingtimeforstorage", - "community": 432, + "community": 494, "norm_label": "stringifythingtimeforstorage()" }, { @@ -253239,7 +253239,7 @@ "source_location": "L184", "_origin": "ast", "id": "remix_app_providers_thingtimesyncchannel_serializesyncvalue", - "community": 432, + "community": 494, "norm_label": "serializesyncvalue()" }, { @@ -253269,7 +253269,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_cookies", - "community": 42, + "community": 41, "norm_label": "cookies.ts" }, { @@ -253279,7 +253279,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_cookies_cookieoptions", - "community": 42, + "community": 41, "norm_label": "cookieoptions" }, { @@ -253289,7 +253289,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_api_cookies_parsecookieheader", - "community": 42, + "community": 41, "norm_label": "parsecookieheader()" }, { @@ -253299,7 +253299,7 @@ "source_location": "L25", "_origin": "ast", "id": "remix_app_api_cookies_encodecookievalue", - "community": 42, + "community": 41, "norm_label": "encodecookievalue()" }, { @@ -253309,7 +253309,7 @@ "source_location": "L34", "_origin": "ast", "id": "remix_app_api_cookies_decodecookievalue", - "community": 42, + "community": 41, "norm_label": "decodecookievalue()" }, { @@ -253319,7 +253319,7 @@ "source_location": "L50", "_origin": "ast", "id": "remix_app_api_cookies_serializeoptions", - "community": 42, + "community": 41, "norm_label": "serializeoptions()" }, { @@ -253389,7 +253389,7 @@ "source_location": "L70", "_origin": "ast", "id": "remix_app_api_http_redirect", - "community": 45, + "community": 61, "norm_label": "redirect()" }, { @@ -253709,7 +253709,7 @@ "source_location": "L371", "_origin": "ast", "id": "remix_app_api_utils_actions_execute_resolveschemaref", - "community": 486, + "community": 151, "norm_label": "resolveschemaref()" }, { @@ -253819,7 +253819,7 @@ "source_location": "L773", "_origin": "ast", "id": "remix_app_api_utils_actions_execute_writerunrecord", - "community": 151, + "community": 6, "norm_label": "writerunrecord()" }, { @@ -253829,7 +253829,7 @@ "source_location": "L861", "_origin": "ast", "id": "remix_app_api_utils_actions_execute_inspectactionprogramresult", - "community": 151, + "community": 107, "norm_label": "inspectactionprogramresult" }, { @@ -253869,7 +253869,7 @@ "source_location": "L1008", "_origin": "ast", "id": "remix_app_api_utils_actions_execute_listactionruns", - "community": 486, + "community": 151, "norm_label": "listactionruns()" }, { @@ -255199,7 +255199,7 @@ "source_location": "L18", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_index_bindpacks", - "community": 620, + "community": 151, "norm_label": "bindpacks()" }, { @@ -255219,7 +255219,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle", - "community": 137, + "community": 310, "norm_label": "battle.ts" }, { @@ -255229,7 +255229,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_battlemove", - "community": 137, + "community": 310, "norm_label": "battlemove" }, { @@ -255239,7 +255239,7 @@ "source_location": "L28", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_movespec", - "community": 137, + "community": 310, "norm_label": "movespec" }, { @@ -255249,7 +255249,7 @@ "source_location": "L38", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_move_library", - "community": 137, + "community": 310, "norm_label": "move_library" }, { @@ -255259,7 +255259,7 @@ "source_location": "L137", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_special_types", - "community": 137, + "community": 310, "norm_label": "special_types" }, { @@ -255269,7 +255269,7 @@ "source_location": "L139", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_isspecialtype", - "community": 137, + "community": 310, "norm_label": "isspecialtype()" }, { @@ -255309,7 +255309,7 @@ "source_location": "L181", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_struggle", - "community": 137, + "community": 310, "norm_label": "struggle" }, { @@ -255319,7 +255319,7 @@ "source_location": "L193", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_battlemon", - "community": 137, + "community": 310, "norm_label": "battlemon" }, { @@ -255329,7 +255329,7 @@ "source_location": "L211", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_battlemonfrommember", - "community": 137, + "community": 310, "norm_label": "battlemonfrommember()" }, { @@ -255339,7 +255339,7 @@ "source_location": "L231", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_memberfrombattlemon", - "community": 341, + "community": 620, "norm_label": "memberfrombattlemon()" }, { @@ -255349,7 +255349,7 @@ "source_location": "L249", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_status_label", - "community": 137, + "community": 310, "norm_label": "status_label" }, { @@ -255359,7 +255359,7 @@ "source_location": "L257", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_effectivespeed", - "community": 137, + "community": 310, "norm_label": "effectivespeed()" }, { @@ -255369,7 +255369,7 @@ "source_location": "L259", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_effectiveattack", - "community": 137, + "community": 310, "norm_label": "effectiveattack()" }, { @@ -255379,7 +255379,7 @@ "source_location": "L264", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_labelof", - "community": 137, + "community": 310, "norm_label": "labelof()" }, { @@ -255389,7 +255389,7 @@ "source_location": "L266", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_strikeresult", - "community": 137, + "community": 310, "norm_label": "strikeresult" }, { @@ -255399,7 +255399,7 @@ "source_location": "L272", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_strike", - "community": 137, + "community": 310, "norm_label": "strike()" }, { @@ -255409,7 +255409,7 @@ "source_location": "L349", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_endofturnstatus", - "community": 137, + "community": 310, "norm_label": "endofturnstatus()" }, { @@ -255419,7 +255419,7 @@ "source_location": "L361", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_wildpickmove", - "community": 137, + "community": 310, "norm_label": "wildpickmove()" }, { @@ -255429,7 +255429,7 @@ "source_location": "L367", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_decrementpp", - "community": 137, + "community": 310, "norm_label": "decrementpp()" }, { @@ -255439,7 +255439,7 @@ "source_location": "L372", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_expgrant", - "community": 137, + "community": 310, "norm_label": "expgrant" }, { @@ -255459,7 +255459,7 @@ "source_location": "L413", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_ball_bonus", - "community": 137, + "community": 620, "norm_label": "ball_bonus" }, { @@ -255469,7 +255469,7 @@ "source_location": "L419", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_status_catch_bonus", - "community": 137, + "community": 310, "norm_label": "status_catch_bonus" }, { @@ -255479,7 +255479,7 @@ "source_location": "L428", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_catchattempt", - "community": 303, + "community": 310, "norm_label": "catchattempt()" }, { @@ -255489,7 +255489,7 @@ "source_location": "L444", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_ball_break_flavor", - "community": 137, + "community": 620, "norm_label": "ball_break_flavor" }, { @@ -255499,7 +255499,7 @@ "source_location": "L452", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_runattempt", - "community": 137, + "community": 310, "norm_label": "runattempt()" }, { @@ -255509,7 +255509,7 @@ "source_location": "L460", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_applybattleitem", - "community": 137, + "community": 620, "norm_label": "applybattleitem()" }, { @@ -255519,7 +255519,7 @@ "source_location": "L489", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_turnoutcome", - "community": 137, + "community": 310, "norm_label": "turnoutcome" }, { @@ -255529,7 +255529,7 @@ "source_location": "L491", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_turnresult", - "community": 137, + "community": 620, "norm_label": "turnresult" }, { @@ -255539,7 +255539,7 @@ "source_location": "L499", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_turnstate", - "community": 137, + "community": 310, "norm_label": "turnstate" }, { @@ -255549,7 +255549,7 @@ "source_location": "L506", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_wildturn", - "community": 137, + "community": 310, "norm_label": "wildturn()" }, { @@ -255559,7 +255559,7 @@ "source_location": "L515", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_concludeiffainted", - "community": 137, + "community": 310, "norm_label": "concludeiffainted()" }, { @@ -255569,7 +255569,7 @@ "source_location": "L529", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_applyendofturn", - "community": 137, + "community": 310, "norm_label": "applyendofturn()" }, { @@ -255579,7 +255579,7 @@ "source_location": "L537", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_finish", - "community": 137, + "community": 310, "norm_label": "finish()" }, { @@ -255589,7 +255589,7 @@ "source_location": "L543", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_resolvemoveturn", - "community": 137, + "community": 310, "norm_label": "resolvemoveturn()" }, { @@ -255599,7 +255599,7 @@ "source_location": "L579", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_battle_resolvewildturn", - "community": 137, + "community": 310, "norm_label": "resolvewildturn()" }, { @@ -255839,7 +255839,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_index", - "community": 341, + "community": 620, "norm_label": "index.ts" }, { @@ -255849,7 +255849,7 @@ "source_location": "L71", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_index_fail", - "community": 341, + "community": 620, "norm_label": "fail()" }, { @@ -255859,7 +255859,7 @@ "source_location": "L73", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_index_isrecord", - "community": 341, + "community": 620, "norm_label": "isrecord()" }, { @@ -255869,7 +255869,7 @@ "source_location": "L75", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_index_asrecord", - "community": 341, + "community": 620, "norm_label": "asrecord()" }, { @@ -255879,7 +255879,7 @@ "source_location": "L80", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_index_asint", - "community": 341, + "community": 620, "norm_label": "asint()" }, { @@ -255889,7 +255889,7 @@ "source_location": "L92", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_index_asfinite", - "community": 341, + "community": 620, "norm_label": "asfinite()" }, { @@ -255899,7 +255899,7 @@ "source_location": "L98", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_index_asdirection", - "community": 341, + "community": 620, "norm_label": "asdirection()" }, { @@ -255909,7 +255909,7 @@ "source_location": "L103", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_index_asspecies", - "community": 341, + "community": 620, "norm_label": "asspecies()" }, { @@ -255919,7 +255919,7 @@ "source_location": "L114", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_index_asgender", - "community": 341, + "community": 620, "norm_label": "asgender()" }, { @@ -255929,7 +255929,7 @@ "source_location": "L123", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_index_bagofkeys", - "community": 341, + "community": 620, "norm_label": "bagofkeys()" }, { @@ -255939,7 +255939,7 @@ "source_location": "L132", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_index_playerfacing", - "community": 341, + "community": 620, "norm_label": "playerfacing" }, { @@ -255949,7 +255949,7 @@ "source_location": "L133", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_index_playergender", - "community": 341, + "community": 620, "norm_label": "playergender" }, { @@ -255959,7 +255959,7 @@ "source_location": "L135", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_index_playerposition", - "community": 341, + "community": 620, "norm_label": "playerposition" }, { @@ -255969,7 +255969,7 @@ "source_location": "L146", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_index_parseposition", - "community": 341, + "community": 620, "norm_label": "parseposition()" }, { @@ -255979,7 +255979,7 @@ "source_location": "L162", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_index_seededrng", - "community": 341, + "community": 620, "norm_label": "seededrng()" }, { @@ -255989,7 +255989,7 @@ "source_location": "L178", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_index_randomsuffix", - "community": 341, + "community": 303, "norm_label": "randomsuffix()" }, { @@ -255999,7 +255999,7 @@ "source_location": "L195", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_index_toradians", - "community": 341, + "community": 620, "norm_label": "toradians()" }, { @@ -256009,7 +256009,7 @@ "source_location": "L196", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_index_projectlatitude", - "community": 341, + "community": 620, "norm_label": "projectlatitude()" }, { @@ -256019,7 +256019,7 @@ "source_location": "L197", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_index_minlatitudeprojected", - "community": 341, + "community": 620, "norm_label": "minlatitudeprojected" }, { @@ -256029,7 +256029,7 @@ "source_location": "L199", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_index_blockforcoordinates", - "community": 341, + "community": 620, "norm_label": "blockforcoordinates()" }, { @@ -256039,7 +256039,7 @@ "source_location": "L210", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_index_publictile", - "community": 341, + "community": 620, "norm_label": "publictile()" }, { @@ -256049,7 +256049,7 @@ "source_location": "L218", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_index_turnpayload", - "community": 341, + "community": 620, "norm_label": "turnpayload()" }, { @@ -256079,7 +256079,7 @@ "source_location": "L535", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_index_pokeworldpackfunctionname", - "community": 341, + "community": 620, "norm_label": "pokeworldpackfunctionname" }, { @@ -256089,7 +256089,7 @@ "source_location": "L537", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_index_pokeworldpackcontext", - "community": 341, + "community": 620, "norm_label": "pokeworldpackcontext()" }, { @@ -256099,7 +256099,7 @@ "source_location": "L544", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_index_pokeworldspeciesseed", - "community": 341, + "community": 620, "norm_label": "pokeworldspeciesseed" }, { @@ -256109,7 +256109,7 @@ "source_location": "L562", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_index_pokeworld_species_seed", - "community": 60, + "community": 46, "norm_label": "pokeworld_species_seed" }, { @@ -256159,7 +256159,7 @@ "source_location": "L36", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_pokedex_statblock", - "community": 137, + "community": 310, "norm_label": "statblock" }, { @@ -256219,7 +256219,7 @@ "source_location": "L49", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_pokedex_getspecies", - "community": 303, + "community": 310, "norm_label": "getspecies()" }, { @@ -256229,7 +256229,7 @@ "source_location": "L51", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_pokedex_speciesbyname", - "community": 341, + "community": 620, "norm_label": "speciesbyname()" }, { @@ -256369,7 +256369,7 @@ "source_location": "L173", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_pokedex_typeeffectiveness", - "community": 137, + "community": 310, "norm_label": "typeeffectiveness()" }, { @@ -256379,7 +256379,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_pokeworld_test", - "community": 303, + "community": 341, "norm_label": "pokeworld.test.ts" }, { @@ -256389,7 +256389,7 @@ "source_location": "L52", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_pokeworld_test_seq", - "community": 303, + "community": 341, "norm_label": "seq()" }, { @@ -256399,7 +256399,7 @@ "source_location": "L57", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_pokeworld_test_context", - "community": 303, + "community": 341, "norm_label": "context()" }, { @@ -256409,7 +256409,7 @@ "source_location": "L59", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_pokeworld_test_call", - "community": 303, + "community": 341, "norm_label": "call()" }, { @@ -256419,7 +256419,7 @@ "source_location": "L65", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_pokeworld_test_trainer", - "community": 303, + "community": 341, "norm_label": "trainer()" }, { @@ -256429,7 +256429,7 @@ "source_location": "L66", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_pokeworld_test_wildof", - "community": 303, + "community": 341, "norm_label": "wildof()" }, { @@ -256439,7 +256439,7 @@ "source_location": "L68", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_pokeworld_test_uluru", - "community": 303, + "community": 341, "norm_label": "uluru" }, { @@ -256449,7 +256449,7 @@ "source_location": "L536", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_pokeworld_test_ruletile", - "community": 303, + "community": 341, "norm_label": "ruletile()" }, { @@ -256459,7 +256459,7 @@ "source_location": "L538", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_pokeworld_test_lookupfrom", - "community": 303, + "community": 341, "norm_label": "lookupfrom()" }, { @@ -256469,7 +256469,7 @@ "source_location": "L546", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_pokeworld_test_nothingcollected", - "community": 303, + "community": 341, "norm_label": "nothingcollected()" }, { @@ -256479,7 +256479,7 @@ "source_location": "L816", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_pokeworld_test_sample_blocks", - "community": 303, + "community": 341, "norm_label": "sample_blocks" }, { @@ -256489,7 +256489,7 @@ "source_location": "L842", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_pokeworld_test_walkable", - "community": 303, + "community": 341, "norm_label": "walkable()" }, { @@ -256499,7 +256499,7 @@ "source_location": "L844", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_pokeworld_test_reachesportal", - "community": 303, + "community": 341, "norm_label": "reachesportal()" }, { @@ -256529,7 +256529,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_rules_directions", - "community": 341, + "community": 620, "norm_label": "directions" }, { @@ -256889,7 +256889,7 @@ "source_location": "L11", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_trainer_statuscondition", - "community": 137, + "community": 310, "norm_label": "statuscondition" }, { @@ -256909,7 +256909,7 @@ "source_location": "L15", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_trainer_partymember", - "community": 137, + "community": 310, "norm_label": "partymember" }, { @@ -256989,7 +256989,7 @@ "source_location": "L95", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_trainer_memberiv", - "community": 137, + "community": 310, "norm_label": "memberiv()" }, { @@ -257009,7 +257009,7 @@ "source_location": "L134", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_trainer_memberdisplayname", - "community": 137, + "community": 310, "norm_label": "memberdisplayname()" }, { @@ -257639,7 +257639,7 @@ "source_location": "L584", "_origin": "ast", "id": "remix_app_api_utils_actions_packs_pokeworld_world_tileat", - "community": 303, + "community": 341, "norm_label": "tileat()" }, { @@ -258179,7 +258179,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_admin_integrationcore_test", - "community": 50, + "community": 445, "norm_label": "integrationcore.test.ts" }, { @@ -258189,7 +258189,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_admin_integrationcore", - "community": 50, + "community": 445, "norm_label": "integrationcore.ts" }, { @@ -258199,7 +258199,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_api_utils_admin_integrationcore_endpointprovider", - "community": 50, + "community": 445, "norm_label": "endpointprovider" }, { @@ -258209,7 +258209,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_api_utils_admin_integrationcore_endpointwritemode", - "community": 50, + "community": 445, "norm_label": "endpointwritemode" }, { @@ -258219,7 +258219,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_api_utils_admin_integrationcore_proxyoperation", - "community": 50, + "community": 445, "norm_label": "proxyoperation" }, { @@ -258229,7 +258229,7 @@ "source_location": "L11", "_origin": "ast", "id": "remix_app_api_utils_admin_integrationcore_storedadminintegrationendpoint", - "community": 50, + "community": 445, "norm_label": "storedadminintegrationendpoint" }, { @@ -258239,7 +258239,7 @@ "source_location": "L26", "_origin": "ast", "id": "remix_app_api_utils_admin_integrationcore_publicadminintegrationendpoint", - "community": 50, + "community": 445, "norm_label": "publicadminintegrationendpoint" }, { @@ -258249,7 +258249,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_api_utils_admin_integrationcore_endpointinput", - "community": 50, + "community": 445, "norm_label": "endpointinput" }, { @@ -258259,7 +258259,7 @@ "source_location": "L47", "_origin": "ast", "id": "remix_app_api_utils_admin_integrationcore_astext", - "community": 50, + "community": 445, "norm_label": "astext()" }, { @@ -258269,7 +258269,7 @@ "source_location": "L53", "_origin": "ast", "id": "remix_app_api_utils_admin_integrationcore_isunsafehostname", - "community": 50, + "community": 445, "norm_label": "isunsafehostname()" }, { @@ -258279,7 +258279,7 @@ "source_location": "L65", "_origin": "ast", "id": "remix_app_api_utils_admin_integrationcore_configuredgenerichosts", - "community": 50, + "community": 445, "norm_label": "configuredgenerichosts()" }, { @@ -258289,7 +258289,7 @@ "source_location": "L73", "_origin": "ast", "id": "remix_app_api_utils_admin_integrationcore_normalizeintegrationorigin", - "community": 50, + "community": 445, "norm_label": "normalizeintegrationorigin()" }, { @@ -258299,7 +258299,7 @@ "source_location": "L86", "_origin": "ast", "id": "remix_app_api_utils_admin_integrationcore_normalizepathprefixes", - "community": 50, + "community": 445, "norm_label": "normalizepathprefixes()" }, { @@ -258309,7 +258309,7 @@ "source_location": "L98", "_origin": "ast", "id": "remix_app_api_utils_admin_integrationcore_normalizeendpointinput", - "community": 50, + "community": 445, "norm_label": "normalizeendpointinput()" }, { @@ -258319,7 +258319,7 @@ "source_location": "L118", "_origin": "ast", "id": "remix_app_api_utils_admin_integrationcore_publicendpoint", - "community": 50, + "community": 252, "norm_label": "publicendpoint()" }, { @@ -258329,7 +258329,7 @@ "source_location": "L132", "_origin": "ast", "id": "remix_app_api_utils_admin_integrationcore_operationallowed", - "community": 50, + "community": 252, "norm_label": "operationallowed()" }, { @@ -258339,7 +258339,7 @@ "source_location": "L138", "_origin": "ast", "id": "remix_app_api_utils_admin_integrationcore_methodforoperation", - "community": 50, + "community": 252, "norm_label": "methodforoperation()" }, { @@ -258349,7 +258349,7 @@ "source_location": "L143", "_origin": "ast", "id": "remix_app_api_utils_admin_integrationcore_resolveendpointpath", - "community": 50, + "community": 445, "norm_label": "resolveendpointpath()" }, { @@ -258359,7 +258359,7 @@ "source_location": "L179", "_origin": "ast", "id": "remix_app_api_utils_admin_integrationcore_safeheader", - "community": 50, + "community": 445, "norm_label": "safeheader()" }, { @@ -258369,7 +258369,7 @@ "source_location": "L184", "_origin": "ast", "id": "remix_app_api_utils_admin_integrationcore_normalizeproxyheaders", - "community": 50, + "community": 445, "norm_label": "normalizeproxyheaders()" }, { @@ -258379,7 +258379,7 @@ "source_location": "L201", "_origin": "ast", "id": "remix_app_api_utils_admin_integrationcore_redactsensitivevalue", - "community": 50, + "community": 445, "norm_label": "redactsensitivevalue()" }, { @@ -258389,7 +258389,7 @@ "source_location": "L215", "_origin": "ast", "id": "remix_app_api_utils_admin_integrationcore_vercelcreateonlyidentity", - "community": 50, + "community": 445, "norm_label": "vercelcreateonlyidentity()" }, { @@ -258399,7 +258399,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_admin_integrations", - "community": 50, + "community": 252, "norm_label": "integrations.ts" }, { @@ -258409,7 +258409,7 @@ "source_location": "L33", "_origin": "ast", "id": "remix_app_api_utils_admin_integrations_publicadminsecret", - "community": 50, + "community": 252, "norm_label": "publicadminsecret" }, { @@ -258419,7 +258419,7 @@ "source_location": "L41", "_origin": "ast", "id": "remix_app_api_utils_admin_integrations_storedadminsecret", - "community": 50, + "community": 252, "norm_label": "storedadminsecret" }, { @@ -258429,7 +258429,7 @@ "source_location": "L53", "_origin": "ast", "id": "remix_app_api_utils_admin_integrations_proxyresult", - "community": 50, + "community": 252, "norm_label": "proxyresult" }, { @@ -258439,7 +258439,7 @@ "source_location": "L59", "_origin": "ast", "id": "remix_app_api_utils_admin_integrations_opaqueid", - "community": 50, + "community": 252, "norm_label": "opaqueid()" }, { @@ -258449,7 +258449,7 @@ "source_location": "L60", "_origin": "ast", "id": "remix_app_api_utils_admin_integrations_boundedtext", - "community": 50, + "community": 252, "norm_label": "boundedtext()" }, { @@ -258459,7 +258459,7 @@ "source_location": "L62", "_origin": "ast", "id": "remix_app_api_utils_admin_integrations_vaultkey", - "community": 50, + "community": 252, "norm_label": "vaultkey()" }, { @@ -258469,7 +258469,7 @@ "source_location": "L73", "_origin": "ast", "id": "remix_app_api_utils_admin_integrations_vaultconfigured", - "community": 50, + "community": 252, "norm_label": "vaultconfigured()" }, { @@ -258479,7 +258479,7 @@ "source_location": "L76", "_origin": "ast", "id": "remix_app_api_utils_admin_integrations_revealadminsecret", - "community": 50, + "community": 252, "norm_label": "revealadminsecret()" }, { @@ -258489,7 +258489,7 @@ "source_location": "L81", "_origin": "ast", "id": "remix_app_api_utils_admin_integrations_encryptsecret", - "community": 50, + "community": 252, "norm_label": "encryptsecret()" }, { @@ -258499,7 +258499,7 @@ "source_location": "L91", "_origin": "ast", "id": "remix_app_api_utils_admin_integrations_decryptsecret", - "community": 50, + "community": 252, "norm_label": "decryptsecret()" }, { @@ -258509,7 +258509,7 @@ "source_location": "L104", "_origin": "ast", "id": "remix_app_api_utils_admin_integrations_publicsecret", - "community": 50, + "community": 252, "norm_label": "publicsecret()" }, { @@ -258519,7 +258519,7 @@ "source_location": "L112", "_origin": "ast", "id": "remix_app_api_utils_admin_integrations_readboundedjson", - "community": 50, + "community": 445, "norm_label": "readboundedjson()" }, { @@ -258529,7 +258529,7 @@ "source_location": "L147", "_origin": "ast", "id": "remix_app_api_utils_admin_integrations_redactupstreamheaders", - "community": 50, + "community": 252, "norm_label": "redactupstreamheaders()" }, { @@ -258539,7 +258539,7 @@ "source_location": "L152", "_origin": "ast", "id": "remix_app_api_utils_admin_integrations_fetchupstream", - "community": 50, + "community": 252, "norm_label": "fetchupstream()" }, { @@ -258549,7 +258549,7 @@ "source_location": "L163", "_origin": "ast", "id": "remix_app_api_utils_admin_integrations_assertvercelenvabsent", - "community": 50, + "community": 252, "norm_label": "assertvercelenvabsent()" }, { @@ -258559,7 +258559,7 @@ "source_location": "L182", "_origin": "ast", "id": "remix_app_api_utils_admin_integrations_audit", - "community": 50, + "community": 252, "norm_label": "audit()" }, { @@ -258569,7 +258569,7 @@ "source_location": "L209", "_origin": "ast", "id": "remix_app_api_utils_admin_integrations_claimcreate", - "community": 50, + "community": 252, "norm_label": "claimcreate()" }, { @@ -258579,7 +258579,7 @@ "source_location": "L228", "_origin": "ast", "id": "remix_app_api_utils_admin_integrations_releasecreate", - "community": 50, + "community": 252, "norm_label": "releasecreate()" }, { @@ -258589,7 +258589,7 @@ "source_location": "L232", "_origin": "ast", "id": "remix_app_api_utils_admin_integrations_listadminintegrations", - "community": 50, + "community": 252, "norm_label": "listadminintegrations()" }, { @@ -258599,7 +258599,7 @@ "source_location": "L260", "_origin": "ast", "id": "remix_app_api_utils_admin_integrations_createadminsecret", - "community": 50, + "community": 252, "norm_label": "createadminsecret()" }, { @@ -258609,7 +258609,7 @@ "source_location": "L281", "_origin": "ast", "id": "remix_app_api_utils_admin_integrations_deleteadminsecret", - "community": 50, + "community": 252, "norm_label": "deleteadminsecret()" }, { @@ -258619,7 +258619,7 @@ "source_location": "L289", "_origin": "ast", "id": "remix_app_api_utils_admin_integrations_saveadminendpoint", - "community": 50, + "community": 252, "norm_label": "saveadminendpoint()" }, { @@ -258629,7 +258629,7 @@ "source_location": "L315", "_origin": "ast", "id": "remix_app_api_utils_admin_integrations_deleteadminendpoint", - "community": 50, + "community": 252, "norm_label": "deleteadminendpoint()" }, { @@ -258639,7 +258639,7 @@ "source_location": "L321", "_origin": "ast", "id": "remix_app_api_utils_admin_integrations_proxyadminintegration", - "community": 50, + "community": 252, "norm_label": "proxyadminintegration()" }, { @@ -258649,7 +258649,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_ai_models_route_test", - "community": 194, + "community": 669, "norm_label": "models.route.test.ts" }, { @@ -258659,7 +258659,7 @@ "source_location": "L12", "_origin": "ast", "id": "remix_app_api_utils_ai_models_route_test_allowed", - "community": 194, + "community": 669, "norm_label": "allowed" }, { @@ -258669,7 +258669,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_api_utils_ai_models_route_test_blocked", - "community": 194, + "community": 669, "norm_label": "blocked" }, { @@ -258679,7 +258679,7 @@ "source_location": "L15", "_origin": "ast", "id": "remix_app_api_utils_ai_models_route_test_samplelist", - "community": 194, + "community": 669, "norm_label": "samplelist()" }, { @@ -258689,7 +258689,7 @@ "source_location": "L38", "_origin": "ast", "id": "remix_app_api_utils_ai_models_route_test_postrequest", - "community": 194, + "community": 669, "norm_label": "postrequest()" }, { @@ -258699,7 +258699,7 @@ "source_location": "L45", "_origin": "ast", "id": "remix_app_api_utils_ai_models_route_test_samplevaultprovider", - "community": 194, + "community": 669, "norm_label": "samplevaultprovider()" }, { @@ -258709,7 +258709,7 @@ "source_location": "L148", "_origin": "ast", "id": "remix_app_api_utils_ai_models_route_test_createadmin", - "community": 194, + "community": 669, "norm_label": "createadmin()" }, { @@ -259069,7 +259069,7 @@ "source_location": "L41", "_origin": "ast", "id": "remix_app_api_utils_ai_modelscore_aimodelproviderid", - "community": 122, + "community": 364, "norm_label": "aimodelproviderid" }, { @@ -259079,7 +259079,7 @@ "source_location": "L42", "_origin": "ast", "id": "remix_app_api_utils_ai_modelscore_ai_model_provider_ids", - "community": 122, + "community": 364, "norm_label": "ai_model_provider_ids" }, { @@ -259109,7 +259109,7 @@ "source_location": "L49", "_origin": "ast", "id": "remix_app_api_utils_ai_modelscore_ai_provider_env_hints", - "community": 122, + "community": 364, "norm_label": "ai_provider_env_hints" }, { @@ -259239,7 +259239,7 @@ "source_location": "L141", "_origin": "ast", "id": "remix_app_api_utils_ai_modelscore_aiproviderprobeoutcome", - "community": 122, + "community": 364, "norm_label": "aiproviderprobeoutcome" }, { @@ -259489,7 +259489,7 @@ "source_location": "L327", "_origin": "ast", "id": "remix_app_api_utils_ai_modelscore_composeaiworkflowmodelchoice", - "community": 114, + "community": 122, "norm_label": "composeaiworkflowmodelchoice()" }, { @@ -259759,7 +259759,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_ai_providerprobe_test", - "community": 122, + "community": 364, "norm_label": "providerprobe.test.ts" }, { @@ -259769,7 +259769,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_api_utils_ai_providerprobe_test_both", - "community": 122, + "community": 364, "norm_label": "both" }, { @@ -259779,7 +259779,7 @@ "source_location": "L17", "_origin": "ast", "id": "remix_app_api_utils_ai_providerprobe_test_start", - "community": 122, + "community": 364, "norm_label": "start" }, { @@ -259789,7 +259789,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_api_utils_ai_providerprobe_test_call", - "community": 122, + "community": 364, "norm_label": "call" }, { @@ -259799,7 +259799,7 @@ "source_location": "L20", "_origin": "ast", "id": "remix_app_api_utils_ai_providerprobe_test_respond", - "community": 122, + "community": 364, "norm_label": "respond" }, { @@ -259809,7 +259809,7 @@ "source_location": "L23", "_origin": "ast", "id": "remix_app_api_utils_ai_providerprobe_test_createharness", - "community": 122, + "community": 364, "norm_label": "createharness()" }, { @@ -259819,7 +259819,7 @@ "source_location": "L56", "_origin": "ast", "id": "remix_app_api_utils_ai_providerprobe_test_hang", - "community": 122, + "community": 364, "norm_label": "hang()" }, { @@ -259829,7 +259829,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_ai_providerprobe", - "community": 122, + "community": 364, "norm_label": "providerprobe.ts" }, { @@ -259839,7 +259839,7 @@ "source_location": "L34", "_origin": "ast", "id": "remix_app_api_utils_ai_providerprobe_aiproviderproberesult", - "community": 122, + "community": 364, "norm_label": "aiproviderproberesult" }, { @@ -259849,7 +259849,7 @@ "source_location": "L41", "_origin": "ast", "id": "remix_app_api_utils_ai_providerprobe_aiproviderprobeoptions", - "community": 122, + "community": 364, "norm_label": "aiproviderprobeoptions" }, { @@ -259859,7 +259859,7 @@ "source_location": "L43", "_origin": "ast", "id": "remix_app_api_utils_ai_providerprobe_aiproviderproberequest", - "community": 122, + "community": 364, "norm_label": "aiproviderproberequest" }, { @@ -259869,7 +259869,7 @@ "source_location": "L46", "_origin": "ast", "id": "remix_app_api_utils_ai_providerprobe_aiproviderprobefetchinit", - "community": 122, + "community": 364, "norm_label": "aiproviderprobefetchinit" }, { @@ -259879,7 +259879,7 @@ "source_location": "L47", "_origin": "ast", "id": "remix_app_api_utils_ai_providerprobe_aiproviderproberesponse", - "community": 122, + "community": 364, "norm_label": "aiproviderproberesponse" }, { @@ -259889,7 +259889,7 @@ "source_location": "L48", "_origin": "ast", "id": "remix_app_api_utils_ai_providerprobe_aiproviderprobefetch", - "community": 122, + "community": 364, "norm_label": "aiproviderprobefetch" }, { @@ -259899,7 +259899,7 @@ "source_location": "L50", "_origin": "ast", "id": "remix_app_api_utils_ai_providerprobe_aiproviderprobedependencies", - "community": 122, + "community": 364, "norm_label": "aiproviderprobedependencies" }, { @@ -259909,7 +259909,7 @@ "source_location": "L60", "_origin": "ast", "id": "remix_app_api_utils_ai_providerprobe_text", - "community": 122, + "community": 364, "norm_label": "text()" }, { @@ -259919,7 +259919,7 @@ "source_location": "L62", "_origin": "ast", "id": "remix_app_api_utils_ai_providerprobe_trimslashes", - "community": 122, + "community": 364, "norm_label": "trimslashes()" }, { @@ -259929,7 +259929,7 @@ "source_location": "L67", "_origin": "ast", "id": "remix_app_api_utils_ai_providerprobe_buildaiproviderproberequest", - "community": 122, + "community": 364, "norm_label": "buildaiproviderproberequest()" }, { @@ -259939,7 +259939,7 @@ "source_location": "L88", "_origin": "ast", "id": "remix_app_api_utils_ai_providerprobe_discardbody", - "community": 122, + "community": 364, "norm_label": "discardbody()" }, { @@ -259949,7 +259949,7 @@ "source_location": "L96", "_origin": "ast", "id": "remix_app_api_utils_ai_providerprobe_errorcode", - "community": 122, + "community": 364, "norm_label": "errorcode()" }, { @@ -259959,7 +259959,7 @@ "source_location": "L102", "_origin": "ast", "id": "remix_app_api_utils_ai_providerprobe_createaiproviderprobe", - "community": 122, + "community": 364, "norm_label": "createaiproviderprobe()" }, { @@ -259969,7 +259969,7 @@ "source_location": "L210", "_origin": "ast", "id": "remix_app_api_utils_ai_providerprobe_defaultprobe", - "community": 122, + "community": 364, "norm_label": "defaultprobe" }, { @@ -260039,7 +260039,7 @@ "source_location": "L86", "_origin": "ast", "id": "remix_app_api_utils_algorithms_algorithms_storedalgorithmsizebytes", - "community": 123, + "community": 261, "norm_label": "storedalgorithmsizebytes()" }, { @@ -260259,7 +260259,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_apps_appdata", - "community": 134, + "community": 81, "norm_label": "appdata.ts" }, { @@ -260269,7 +260269,7 @@ "source_location": "L42", "_origin": "ast", "id": "remix_app_api_utils_apps_appdata_fail", - "community": 134, + "community": 81, "norm_label": "fail" }, { @@ -260279,7 +260279,7 @@ "source_location": "L45", "_origin": "ast", "id": "remix_app_api_utils_apps_appdata_storagemutationfail", - "community": 134, + "community": 81, "norm_label": "storagemutationfail()" }, { @@ -260289,7 +260289,7 @@ "source_location": "L47", "_origin": "ast", "id": "remix_app_api_utils_apps_appdata_registeredstoragesize", - "community": 134, + "community": 261, "norm_label": "registeredstoragesize()" }, { @@ -260299,7 +260299,7 @@ "source_location": "L61", "_origin": "ast", "id": "remix_app_api_utils_apps_appdata_appdatawriteconflict", - "community": 134, + "community": 81, "norm_label": "appdatawriteconflict" }, { @@ -260309,7 +260309,7 @@ "source_location": "L62", "_origin": "ast", "id": "remix_app_api_utils_apps_appdata_appdatawriteconflict_constructor", - "community": 134, + "community": 81, "norm_label": ".constructor()" }, { @@ -260319,7 +260319,7 @@ "source_location": "L68", "_origin": "ast", "id": "remix_app_api_utils_apps_appdata_appdatavisibility", - "community": 134, + "community": 81, "norm_label": "appdatavisibility" }, { @@ -260329,7 +260329,7 @@ "source_location": "L70", "_origin": "ast", "id": "remix_app_api_utils_apps_appdata_appdataentry", - "community": 134, + "community": 81, "norm_label": "appdataentry" }, { @@ -260339,7 +260339,7 @@ "source_location": "L82", "_origin": "ast", "id": "remix_app_api_utils_apps_appdata_app_data_key_re", - "community": 134, + "community": 81, "norm_label": "app_data_key_re" }, { @@ -260349,7 +260349,7 @@ "source_location": "L84", "_origin": "ast", "id": "remix_app_api_utils_apps_appdata_sanitizeappdatakey", - "community": 134, + "community": 81, "norm_label": "sanitizeappdatakey()" }, { @@ -260359,7 +260359,7 @@ "source_location": "L90", "_origin": "ast", "id": "remix_app_api_utils_apps_appdata_entryacl", - "community": 134, + "community": 81, "norm_label": "entryacl()" }, { @@ -260369,7 +260369,7 @@ "source_location": "L92", "_origin": "ast", "id": "remix_app_api_utils_apps_appdata_toentry", - "community": 134, + "community": 81, "norm_label": "toentry()" }, { @@ -260379,7 +260379,7 @@ "source_location": "L108", "_origin": "ast", "id": "remix_app_api_utils_apps_appdata_getappdata", - "community": 134, + "community": 81, "norm_label": "getappdata()" }, { @@ -260389,7 +260389,7 @@ "source_location": "L117", "_origin": "ast", "id": "remix_app_api_utils_apps_appdata_encodekeycursor", - "community": 134, + "community": 81, "norm_label": "encodekeycursor()" }, { @@ -260399,7 +260399,7 @@ "source_location": "L118", "_origin": "ast", "id": "remix_app_api_utils_apps_appdata_decodekeycursor", - "community": 134, + "community": 81, "norm_label": "decodekeycursor()" }, { @@ -260409,7 +260409,7 @@ "source_location": "L130", "_origin": "ast", "id": "remix_app_api_utils_apps_appdata_escapere", - "community": 134, + "community": 81, "norm_label": "escapere()" }, { @@ -260419,7 +260419,7 @@ "source_location": "L131", "_origin": "ast", "id": "remix_app_api_utils_apps_appdata_buildkeyfilter", - "community": 134, + "community": 81, "norm_label": "buildkeyfilter()" }, { @@ -260429,7 +260429,7 @@ "source_location": "L144", "_origin": "ast", "id": "remix_app_api_utils_apps_appdata_listappdata", - "community": 134, + "community": 81, "norm_label": "listappdata()" }, { @@ -260439,7 +260439,7 @@ "source_location": "L183", "_origin": "ast", "id": "remix_app_api_utils_apps_appdata_setappdata", - "community": 134, + "community": 81, "norm_label": "setappdata()" }, { @@ -260449,7 +260449,7 @@ "source_location": "L415", "_origin": "ast", "id": "remix_app_api_utils_apps_appdata_deleteappdata", - "community": 134, + "community": 81, "norm_label": "deleteappdata()" }, { @@ -260459,7 +260459,7 @@ "source_location": "L496", "_origin": "ast", "id": "remix_app_api_utils_apps_appdata_sharedentryauthor", - "community": 134, + "community": 81, "norm_label": "sharedentryauthor" }, { @@ -260469,7 +260469,7 @@ "source_location": "L503", "_origin": "ast", "id": "remix_app_api_utils_apps_appdata_sharedappdataentry", - "community": 134, + "community": 81, "norm_label": "sharedappdataentry" }, { @@ -260479,7 +260479,7 @@ "source_location": "L516", "_origin": "ast", "id": "remix_app_api_utils_apps_appdata_encodecursor", - "community": 134, + "community": 81, "norm_label": "encodecursor()" }, { @@ -260489,7 +260489,7 @@ "source_location": "L519", "_origin": "ast", "id": "remix_app_api_utils_apps_appdata_decodecursor", - "community": 134, + "community": 81, "norm_label": "decodecursor()" }, { @@ -260499,7 +260499,7 @@ "source_location": "L533", "_origin": "ast", "id": "remix_app_api_utils_apps_appdata_listsharedappdata", - "community": 134, + "community": 81, "norm_label": "listsharedappdata()" }, { @@ -260839,7 +260839,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_apps_appstoragemanagement", - "community": 81, + "community": 8, "norm_label": "appstoragemanagement.ts" }, { @@ -260849,7 +260849,7 @@ "source_location": "L17", "_origin": "ast", "id": "remix_app_api_utils_apps_appstoragemanagement_fail", - "community": 81, + "community": 8, "norm_label": "fail" }, { @@ -260859,7 +260859,7 @@ "source_location": "L24", "_origin": "ast", "id": "remix_app_api_utils_apps_appstoragemanagement_asiso", - "community": 81, + "community": 8, "norm_label": "asiso()" }, { @@ -260869,7 +260869,7 @@ "source_location": "L30", "_origin": "ast", "id": "remix_app_api_utils_apps_appstoragemanagement_parseallowance", - "community": 81, + "community": 8, "norm_label": "parseallowance()" }, { @@ -260879,7 +260879,7 @@ "source_location": "L33", "_origin": "ast", "id": "remix_app_api_utils_apps_appstoragemanagement_storedallowancestate", - "community": 81, + "community": 8, "norm_label": "storedallowancestate()" }, { @@ -260889,7 +260889,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_api_utils_apps_appstoragemanagement_resolvemanagedapp", - "community": 81, + "community": 8, "norm_label": "resolvemanagedapp()" }, { @@ -260899,7 +260899,7 @@ "source_location": "L48", "_origin": "ast", "id": "remix_app_api_utils_apps_appstoragemanagement_managedappstorageuser", - "community": 81, + "community": 8, "norm_label": "managedappstorageuser" }, { @@ -260909,7 +260909,7 @@ "source_location": "L64", "_origin": "ast", "id": "remix_app_api_utils_apps_appstoragemanagement_managedappstorage", - "community": 81, + "community": 8, "norm_label": "managedappstorage" }, { @@ -260919,7 +260919,7 @@ "source_location": "L78", "_origin": "ast", "id": "remix_app_api_utils_apps_appstoragemanagement_loadusernames", - "community": 81, + "community": 8, "norm_label": "loadusernames()" }, { @@ -260929,7 +260929,7 @@ "source_location": "L91", "_origin": "ast", "id": "remix_app_api_utils_apps_appstoragemanagement_getmanagedappstorage", - "community": 81, + "community": 8, "norm_label": "getmanagedappstorage()" }, { @@ -260939,7 +260939,7 @@ "source_location": "L370", "_origin": "ast", "id": "remix_app_api_utils_apps_appstoragemanagement_setmanagedappstoragetier", - "community": 81, + "community": 8, "norm_label": "setmanagedappstoragetier()" }, { @@ -260949,7 +260949,7 @@ "source_location": "L394", "_origin": "ast", "id": "remix_app_api_utils_apps_appstoragemanagement_setmanagedappdefaultuserallowance", - "community": 81, + "community": 8, "norm_label": "setmanagedappdefaultuserallowance()" }, { @@ -260959,7 +260959,7 @@ "source_location": "L429", "_origin": "ast", "id": "remix_app_api_utils_apps_appstoragemanagement_setmanagedappuserallowances", - "community": 81, + "community": 8, "norm_label": "setmanagedappuserallowances()" }, { @@ -260989,7 +260989,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_api_utils_apps_apptokens_toembeduser", - "community": 134, + "community": 8, "norm_label": "toembeduser()" }, { @@ -261019,7 +261019,7 @@ "source_location": "L77", "_origin": "ast", "id": "remix_app_api_utils_apps_apptokens_apptokencontext", - "community": 81, + "community": 3, "norm_label": "apptokencontext" }, { @@ -261269,7 +261269,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_apps_browse", - "community": 81, + "community": 8, "norm_label": "browse.ts" }, { @@ -261279,7 +261279,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_api_utils_apps_browse_fail", - "community": 81, + "community": 8, "norm_label": "fail" }, { @@ -261289,7 +261289,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_api_utils_apps_browse_appdatasummary", - "community": 81, + "community": 8, "norm_label": "appdatasummary" }, { @@ -261319,7 +261319,7 @@ "source_location": "L98", "_origin": "ast", "id": "remix_app_api_utils_apps_browse_listappdatasummaries", - "community": 81, + "community": 8, "norm_label": "listappdatasummaries()" }, { @@ -261329,7 +261329,7 @@ "source_location": "L148", "_origin": "ast", "id": "remix_app_api_utils_apps_browse_usergrantscopes", - "community": 81, + "community": 8, "norm_label": "usergrantscopes()" }, { @@ -261339,7 +261339,7 @@ "source_location": "L172", "_origin": "ast", "id": "remix_app_api_utils_apps_browse_userapplens", - "community": 81, + "community": 8, "norm_label": "userapplens()" }, { @@ -261349,7 +261349,7 @@ "source_location": "L200", "_origin": "ast", "id": "remix_app_api_utils_apps_browse_deleteallappdata", - "community": 486, + "community": 8, "norm_label": "deleteallappdata()" }, { @@ -261729,7 +261729,7 @@ "source_location": "L60", "_origin": "ast", "id": "remix_app_api_utils_apps_namespace_appaclentry", - "community": 486, + "community": 81, "norm_label": "appaclentry()" }, { @@ -261739,7 +261739,7 @@ "source_location": "L62", "_origin": "ast", "id": "remix_app_api_utils_apps_namespace_appnamespacescope", - "community": 81, + "community": 8, "norm_label": "appnamespacescope" }, { @@ -261759,7 +261759,7 @@ "source_location": "L85", "_origin": "ast", "id": "remix_app_api_utils_apps_namespace_appnamespaceclauses", - "community": 486, + "community": 81, "norm_label": "appnamespaceclauses()" }, { @@ -261779,7 +261779,7 @@ "source_location": "L131", "_origin": "ast", "id": "remix_app_api_utils_apps_namespace_appnamespacestamp", - "community": 134, + "community": 81, "norm_label": "appnamespacestamp()" }, { @@ -261789,7 +261789,7 @@ "source_location": "L150", "_origin": "ast", "id": "remix_app_api_utils_apps_namespace_resolveappscopedacl", - "community": 486, + "community": 81, "norm_label": "resolveappscopedacl()" }, { @@ -261799,7 +261799,7 @@ "source_location": "L180", "_origin": "ast", "id": "remix_app_api_utils_apps_namespace_livesharingauthors", - "community": 486, + "community": 81, "norm_label": "livesharingauthors()" }, { @@ -261809,7 +261809,7 @@ "source_location": "L213", "_origin": "ast", "id": "remix_app_api_utils_apps_namespace_livesandboxauthors", - "community": 486, + "community": 81, "norm_label": "livesandboxauthors()" }, { @@ -261819,7 +261819,7 @@ "source_location": "L247", "_origin": "ast", "id": "remix_app_api_utils_apps_namespace_filterbyliveauthors", - "community": 486, + "community": 81, "norm_label": "filterbyliveauthors()" }, { @@ -262379,7 +262379,7 @@ "source_location": "L1569", "_origin": "ast", "id": "remix_app_api_utils_apps_namespace_refundappstorage", - "community": 486, + "community": 81, "norm_label": "refundappstorage()" }, { @@ -262409,7 +262409,7 @@ "source_location": "L1650", "_origin": "ast", "id": "remix_app_api_utils_apps_namespace_initializeappstorageaccounting", - "community": 487, + "community": 81, "norm_label": "initializeappstorageaccounting()" }, { @@ -262469,7 +262469,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_apps_profilemedia", - "community": 134, + "community": 8, "norm_label": "profilemedia.ts" }, { @@ -262479,7 +262479,7 @@ "source_location": "L4", "_origin": "ast", "id": "remix_app_api_utils_apps_profilemedia_thirdpartyprofilemediaurl", - "community": 134, + "community": 8, "norm_label": "thirdpartyprofilemediaurl()" }, { @@ -262489,7 +262489,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_apps_sandbox", - "community": 41, + "community": 8, "norm_label": "sandbox.ts" }, { @@ -262499,7 +262499,7 @@ "source_location": "L38", "_origin": "ast", "id": "remix_app_api_utils_apps_sandbox_issandboxownerid", - "community": 41, + "community": 8, "norm_label": "issandboxownerid()" }, { @@ -262509,7 +262509,7 @@ "source_location": "L46", "_origin": "ast", "id": "remix_app_api_utils_apps_sandbox_sanitizesandboxspace", - "community": 3, + "community": 8, "norm_label": "sanitizesandboxspace()" }, { @@ -262519,7 +262519,7 @@ "source_location": "L54", "_origin": "ast", "id": "remix_app_api_utils_apps_sandbox_sanitizesandboxusername", - "community": 3, + "community": 8, "norm_label": "sanitizesandboxusername()" }, { @@ -262529,7 +262529,7 @@ "source_location": "L66", "_origin": "ast", "id": "remix_app_api_utils_apps_sandbox_sandboxdisplayname", - "community": 134, + "community": 81, "norm_label": "sandboxdisplayname()" }, { @@ -262539,7 +262539,7 @@ "source_location": "L74", "_origin": "ast", "id": "remix_app_api_utils_apps_sandbox_sandboxpublicuser", - "community": 3, + "community": 8, "norm_label": "sandboxpublicuser()" }, { @@ -262549,7 +262549,7 @@ "source_location": "L114", "_origin": "ast", "id": "remix_app_api_utils_apps_sandbox_sandboxtokengrant", - "community": 41, + "community": 8, "norm_label": "sandboxtokengrant" }, { @@ -262559,7 +262559,7 @@ "source_location": "L126", "_origin": "ast", "id": "remix_app_api_utils_apps_sandbox_mintsandboxtoken", - "community": 41, + "community": 8, "norm_label": "mintsandboxtoken()" }, { @@ -263009,7 +263009,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachmentcascadecore_test", - "community": 901, + "community": 175, "norm_label": "attachmentcascadecore.test.ts" }, { @@ -263019,7 +263019,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachmentcascadecore", - "community": 901, + "community": 175, "norm_label": "attachmentcascadecore.ts" }, { @@ -263029,7 +263029,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachmentcascadecore_attachmentcascadecandidate", - "community": 901, + "community": 175, "norm_label": "attachmentcascadecandidate" }, { @@ -263039,7 +263039,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachmentcascadecore_attachmentcascadecleanuptarget", - "community": 901, + "community": 175, "norm_label": "attachmentcascadecleanuptarget" }, { @@ -263049,7 +263049,7 @@ "source_location": "L10", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachmentcascadecore_isattachmentcandidate", - "community": 901, + "community": 175, "norm_label": "isattachmentcandidate()" }, { @@ -263059,7 +263059,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachmentcascadecore_attachmentcascadecleanuptargets", - "community": 901, + "community": 175, "norm_label": "attachmentcascadecleanuptargets()" }, { @@ -263589,7 +263589,7 @@ "source_location": "L551", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachmentcore_toattachmentpublicmetadata", - "community": 16, + "community": 6, "norm_label": "toattachmentpublicmetadata()" }, { @@ -264099,7 +264099,7 @@ "source_location": "L142", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachmentstore_attachmentbindingerror", - "community": 155, + "community": 16, "norm_label": "attachmentbindingerror" }, { @@ -264109,7 +264109,7 @@ "source_location": "L143", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachmentstore_attachmentbindingerror_constructor", - "community": 155, + "community": 16, "norm_label": ".constructor()" }, { @@ -264119,7 +264119,7 @@ "source_location": "L149", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachmentstore_canonicalstoredbytes", - "community": 16, + "community": 261, "norm_label": "canonicalstoredbytes()" }, { @@ -264189,7 +264189,7 @@ "source_location": "L893", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachmentstore_annotateownedattachment", - "community": 16, + "community": 148, "norm_label": "annotateownedattachment()" }, { @@ -264209,7 +264209,7 @@ "source_location": "L979", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachmentstore_syncboundtargetattachments", - "community": 16, + "community": 358, "norm_label": "syncboundtargetattachments()" }, { @@ -264379,7 +264379,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments", - "community": 16, + "community": 148, "norm_label": "attachments.ts" }, { @@ -264389,7 +264389,7 @@ "source_location": "L63", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments_attachment_upload_purposes", - "community": 16, + "community": 148, "norm_label": "attachment_upload_purposes" }, { @@ -264399,7 +264399,7 @@ "source_location": "L64", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments_attachmentuploadpurpose", - "community": 16, + "community": 148, "norm_label": "attachmentuploadpurpose" }, { @@ -264409,7 +264409,7 @@ "source_location": "L66", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments_custom_emoji_attachment_content_types", - "community": 16, + "community": 148, "norm_label": "custom_emoji_attachment_content_types" }, { @@ -264419,7 +264419,7 @@ "source_location": "L68", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments_attachmentfail", - "community": 16, + "community": 148, "norm_label": "attachmentfail" }, { @@ -264429,7 +264429,7 @@ "source_location": "L75", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments_attachmentok", - "community": 16, + "community": 148, "norm_label": "attachmentok" }, { @@ -264439,7 +264439,7 @@ "source_location": "L76", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments_attachmentresult", - "community": 16, + "community": 148, "norm_label": "attachmentresult" }, { @@ -264449,7 +264449,7 @@ "source_location": "L77", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments_attachmentcleanupoutcome", - "community": 16, + "community": 148, "norm_label": "attachmentcleanupoutcome" }, { @@ -264459,7 +264459,7 @@ "source_location": "L79", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments_attachmentviewer", - "community": 16, + "community": 148, "norm_label": "attachmentviewer" }, { @@ -264469,7 +264469,7 @@ "source_location": "L81", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments_attachmentservicedependencies", - "community": 16, + "community": 148, "norm_label": "attachmentservicedependencies" }, { @@ -264479,7 +264479,7 @@ "source_location": "L94", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments_attachmentserviceerror", - "community": 16, + "community": 148, "norm_label": "attachmentserviceerror" }, { @@ -264489,7 +264489,7 @@ "source_location": "L97", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments_attachmentserviceerror_constructor", - "community": 16, + "community": 148, "norm_label": ".constructor()" }, { @@ -264499,7 +264499,7 @@ "source_location": "L104", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments_fail", - "community": 16, + "community": 148, "norm_label": "fail()" }, { @@ -264509,7 +264509,7 @@ "source_location": "L111", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments_normalizeid", - "community": 16, + "community": 148, "norm_label": "normalizeid()" }, { @@ -264519,7 +264519,7 @@ "source_location": "L116", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments_attachmentrequestfingerprint", - "community": 16, + "community": 148, "norm_label": "attachmentrequestfingerprint()" }, { @@ -264529,7 +264529,7 @@ "source_location": "L130", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments_attachmentuploadintent", - "community": 16, + "community": 148, "norm_label": "attachmentuploadintent()" }, { @@ -264539,7 +264539,7 @@ "source_location": "L142", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments_attachmentidforrequest", - "community": 16, + "community": 3, "norm_label": "attachmentidforrequest()" }, { @@ -264549,7 +264549,7 @@ "source_location": "L145", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments_attachmentpartplan", - "community": 16, + "community": 148, "norm_label": "attachmentpartplan()" }, { @@ -264559,7 +264559,7 @@ "source_location": "L158", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments_attachmentexpectedpartbytes", - "community": 16, + "community": 148, "norm_label": "attachmentexpectedpartbytes()" }, { @@ -264569,7 +264569,7 @@ "source_location": "L166", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments_iscanonicalsha256", - "community": 16, + "community": 148, "norm_label": "iscanonicalsha256()" }, { @@ -264579,7 +264579,7 @@ "source_location": "L172", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments_validatecompletedattachmentparts", - "community": 16, + "community": 148, "norm_label": "validatecompletedattachmentparts()" }, { @@ -264589,7 +264589,7 @@ "source_location": "L196", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments_knownfailure", - "community": 16, + "community": 148, "norm_label": "knownfailure()" }, { @@ -264599,7 +264599,7 @@ "source_location": "L210", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments_unavailable", - "community": 16, + "community": 148, "norm_label": "unavailable()" }, { @@ -264609,7 +264609,7 @@ "source_location": "L230", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments_exactpartrequest", - "community": 16, + "community": 148, "norm_label": "exactpartrequest()" }, { @@ -264619,7 +264619,7 @@ "source_location": "L255", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments_defaultdependencies", - "community": 16, + "community": 148, "norm_label": "defaultdependencies" }, { @@ -264639,7 +264639,7 @@ "source_location": "L1433", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments_service", - "community": 16, + "community": 148, "norm_label": "service" }, { @@ -264659,7 +264659,7 @@ "source_location": "L1459", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments_annotateattachment", - "community": 16, + "community": 148, "norm_label": "annotateattachment()" }, { @@ -264679,7 +264679,7 @@ "source_location": "L1553", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments_syncreadyattachmentsfortarget", - "community": 16, + "community": 148, "norm_label": "syncreadyattachmentsfortarget()" }, { @@ -264689,7 +264689,7 @@ "source_location": "L1571", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments_createreadyattachmentinserthook", - "community": 16, + "community": 6, "norm_label": "createreadyattachmentinserthook()" }, { @@ -264699,7 +264699,7 @@ "source_location": "L1577", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments_createreadyattachmentcommentinserthook", - "community": 16, + "community": 3, "norm_label": "createreadyattachmentcommentinserthook()" }, { @@ -264709,7 +264709,7 @@ "source_location": "L1580", "_origin": "ast", "id": "remix_app_api_utils_attachments_attachments_createreadyattachmentmessageinserthook", - "community": 16, + "community": 6, "norm_label": "createreadyattachmentmessageinserthook()" }, { @@ -265069,7 +265069,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_auth_accounthints", - "community": 188, + "community": 41, "norm_label": "accounthints.ts" }, { @@ -265079,7 +265079,7 @@ "source_location": "L23", "_origin": "ast", "id": "remix_app_api_utils_auth_accounthints_accounthintuser", - "community": 188, + "community": 41, "norm_label": "accounthintuser" }, { @@ -265089,7 +265089,7 @@ "source_location": "L30", "_origin": "ast", "id": "remix_app_api_utils_auth_accounthints_accounthint", - "community": 188, + "community": 41, "norm_label": "accounthint" }, { @@ -265099,7 +265099,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_api_utils_auth_accounthints_resolvedaccounthints", - "community": 188, + "community": 41, "norm_label": "resolvedaccounthints" }, { @@ -265109,7 +265109,7 @@ "source_location": "L50", "_origin": "ast", "id": "remix_app_api_utils_auth_accounthints_tohintuser", - "community": 188, + "community": 41, "norm_label": "tohintuser()" }, { @@ -265119,7 +265119,7 @@ "source_location": "L57", "_origin": "ast", "id": "remix_app_api_utils_auth_accounthints_resolveaccounthints", - "community": 188, + "community": 41, "norm_label": "resolveaccounthints()" }, { @@ -265129,7 +265129,7 @@ "source_location": "L141", "_origin": "ast", "id": "remix_app_api_utils_auth_accounthints_resolveownoriginhints", - "community": 188, + "community": 41, "norm_label": "resolveownoriginhints()" }, { @@ -265139,7 +265139,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_auth_accounthintscookie", - "community": 188, + "community": 41, "norm_label": "accounthintscookie.ts" }, { @@ -265149,7 +265149,7 @@ "source_location": "L33", "_origin": "ast", "id": "remix_app_api_utils_auth_accounthintscookie_hintscookie", - "community": 188, + "community": 41, "norm_label": "hintscookie" }, { @@ -265159,7 +265159,7 @@ "source_location": "L41", "_origin": "ast", "id": "remix_app_api_utils_auth_accounthintscookie_accounthintpointer", - "community": 188, + "community": 41, "norm_label": "accounthintpointer" }, { @@ -265169,7 +265169,7 @@ "source_location": "L49", "_origin": "ast", "id": "remix_app_api_utils_auth_accounthintscookie_wirepointer", - "community": 188, + "community": 41, "norm_label": "wirepointer" }, { @@ -265179,7 +265179,7 @@ "source_location": "L51", "_origin": "ast", "id": "remix_app_api_utils_auth_accounthintscookie_hintcookiedomainforrequest", - "community": 188, + "community": 41, "norm_label": "hintcookiedomainforrequest()" }, { @@ -265189,7 +265189,7 @@ "source_location": "L57", "_origin": "ast", "id": "remix_app_api_utils_auth_accounthintscookie_isvalidorigin", - "community": 188, + "community": 41, "norm_label": "isvalidorigin()" }, { @@ -265199,7 +265199,7 @@ "source_location": "L67", "_origin": "ast", "id": "remix_app_api_utils_auth_accounthintscookie_parseaccounthintscookie", - "community": 188, + "community": 41, "norm_label": "parseaccounthintscookie()" }, { @@ -265209,7 +265209,7 @@ "source_location": "L82", "_origin": "ast", "id": "remix_app_api_utils_auth_accounthintscookie_serializeaccounthintscookie", - "community": 188, + "community": 41, "norm_label": "serializeaccounthintscookie()" }, { @@ -265219,7 +265219,7 @@ "source_location": "L94", "_origin": "ast", "id": "remix_app_api_utils_auth_accounthintscookie_appendaccounthintpointer", - "community": 188, + "community": 41, "norm_label": "appendaccounthintpointer()" }, { @@ -265229,7 +265229,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_auth_accounthintsheaders_test", - "community": 188, + "community": 41, "norm_label": "accounthintsheaders.test.ts" }, { @@ -265239,7 +265239,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_auth_accounthintsheaders", - "community": 188, + "community": 41, "norm_label": "accounthintsheaders.ts" }, { @@ -265249,7 +265249,7 @@ "source_location": "L5", "_origin": "ast", "id": "remix_app_api_utils_auth_accounthintsheaders_privateaccounthintsheaders", - "community": 188, + "community": 41, "norm_label": "privateaccounthintsheaders()" }, { @@ -265289,7 +265289,7 @@ "source_location": "L49", "_origin": "ast", "id": "remix_app_api_utils_auth_accounts_rosteraccount", - "community": 188, + "community": 41, "norm_label": "rosteraccount" }, { @@ -265369,7 +265369,7 @@ "source_location": "L101", "_origin": "ast", "id": "remix_app_api_utils_auth_accounts_getliverosterentries", - "community": 188, + "community": 41, "norm_label": "getliverosterentries()" }, { @@ -265559,7 +265559,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_auth_apporigin_test", - "community": 45, + "community": 61, "norm_label": "apporigin.test.ts" }, { @@ -265569,7 +265569,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_api_utils_auth_apporigin_test_env_keys", - "community": 45, + "community": 61, "norm_label": "env_keys" }, { @@ -265579,7 +265579,7 @@ "source_location": "L18", "_origin": "ast", "id": "remix_app_api_utils_auth_apporigin_test_withenv", - "community": 45, + "community": 61, "norm_label": "withenv()" }, { @@ -265589,7 +265589,7 @@ "source_location": "L32", "_origin": "ast", "id": "remix_app_api_utils_auth_apporigin_test_origin", - "community": 45, + "community": 61, "norm_label": "origin()" }, { @@ -265599,7 +265599,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_auth_apporigin", - "community": 45, + "community": 61, "norm_label": "apporigin.ts" }, { @@ -265609,7 +265609,7 @@ "source_location": "L23", "_origin": "ast", "id": "remix_app_api_utils_auth_apporigin_toorigin", - "community": 45, + "community": 61, "norm_label": "toorigin()" }, { @@ -265619,7 +265619,7 @@ "source_location": "L33", "_origin": "ast", "id": "remix_app_api_utils_auth_apporigin_verceldeploymentorigin", - "community": 45, + "community": 61, "norm_label": "verceldeploymentorigin()" }, { @@ -265629,7 +265629,7 @@ "source_location": "L50", "_origin": "ast", "id": "remix_app_api_utils_auth_apporigin_resolvetrustedorigin", - "community": 45, + "community": 61, "norm_label": "resolvetrustedorigin()" }, { @@ -265839,7 +265839,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_auth_credentialpurpose", - "community": 41, + "community": 217, "norm_label": "credentialpurpose.ts" }, { @@ -265849,7 +265849,7 @@ "source_location": "L11", "_origin": "ast", "id": "remix_app_api_utils_auth_credentialpurpose_sessionpurposecanactasaccount", - "community": 41, + "community": 217, "norm_label": "sessionpurposecanactasaccount()" }, { @@ -265889,7 +265889,7 @@ "source_location": "L11", "_origin": "ast", "id": "remix_app_api_utils_auth_email_sendverificationemail", - "community": 45, + "community": 47, "norm_label": "sendverificationemail()" }, { @@ -265949,7 +265949,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_auth_emailverifications", - "community": 45, + "community": 61, "norm_label": "emailverifications.ts" }, { @@ -265959,7 +265959,7 @@ "source_location": "L10", "_origin": "ast", "id": "remix_app_api_utils_auth_emailverifications_createemailverification", - "community": 45, + "community": 47, "norm_label": "createemailverification()" }, { @@ -265969,7 +265969,7 @@ "source_location": "L27", "_origin": "ast", "id": "remix_app_api_utils_auth_emailverifications_consumeresult", - "community": 45, + "community": 61, "norm_label": "consumeresult" }, { @@ -265979,7 +265979,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_api_utils_auth_emailverifications_consumeemailverification", - "community": 45, + "community": 61, "norm_label": "consumeemailverification()" }, { @@ -265989,7 +265989,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_auth_fedcm", - "community": 188, + "community": 41, "norm_label": "fedcm.ts" }, { @@ -265999,7 +265999,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_api_utils_auth_fedcm_isfedcmfetch", - "community": 188, + "community": 41, "norm_label": "isfedcmfetch()" }, { @@ -266009,7 +266009,7 @@ "source_location": "L26", "_origin": "ast", "id": "remix_app_api_utils_auth_fedcm_fedcmaccount", - "community": 188, + "community": 41, "norm_label": "fedcmaccount" }, { @@ -266019,7 +266019,7 @@ "source_location": "L33", "_origin": "ast", "id": "remix_app_api_utils_auth_fedcm_tofedcmaccount", - "community": 188, + "community": 41, "norm_label": "tofedcmaccount()" }, { @@ -266029,7 +266029,7 @@ "source_location": "L42", "_origin": "ast", "id": "remix_app_api_utils_auth_fedcm_fedcmroster", - "community": 188, + "community": 41, "norm_label": "fedcmroster" }, { @@ -266039,7 +266039,7 @@ "source_location": "L52", "_origin": "ast", "id": "remix_app_api_utils_auth_fedcm_fedcmconfigfor", - "community": 188, + "community": 41, "norm_label": "fedcmconfigfor()" }, { @@ -266049,7 +266049,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_auth_getcurrentserviceaccount", - "community": 41, + "community": 47, "norm_label": "getcurrentserviceaccount.ts" }, { @@ -266059,7 +266059,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_api_utils_auth_getcurrentserviceaccount_serviceaccountauthresult", - "community": 41, + "community": 47, "norm_label": "serviceaccountauthresult" }, { @@ -266069,7 +266069,7 @@ "source_location": "L18", "_origin": "ast", "id": "remix_app_api_utils_auth_getcurrentserviceaccount_unauthorized", - "community": 41, + "community": 47, "norm_label": "unauthorized()" }, { @@ -266079,7 +266079,7 @@ "source_location": "L25", "_origin": "ast", "id": "remix_app_api_utils_auth_getcurrentserviceaccount_servicerequired", - "community": 41, + "community": 47, "norm_label": "servicerequired()" }, { @@ -266089,7 +266089,7 @@ "source_location": "L36", "_origin": "ast", "id": "remix_app_api_utils_auth_getcurrentserviceaccount_getcurrentserviceaccount", - "community": 41, + "community": 47, "norm_label": "getcurrentserviceaccount()" }, { @@ -266109,7 +266109,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_api_utils_auth_getcurrentuser_serviceemailverificationdueat", - "community": 41, + "community": 217, "norm_label": "serviceemailverificationdueat()" }, { @@ -266119,7 +266119,7 @@ "source_location": "L21", "_origin": "ast", "id": "remix_app_api_utils_auth_getcurrentuser_serviceaccountauthenticationallowed", - "community": 41, + "community": 217, "norm_label": "serviceaccountauthenticationallowed()" }, { @@ -266149,7 +266149,7 @@ "source_location": "L37", "_origin": "ast", "id": "remix_app_api_utils_auth_getcurrentuser_resolvesessionuser", - "community": 41, + "community": 217, "norm_label": "resolvesessionuser()" }, { @@ -266179,7 +266179,7 @@ "source_location": "L109", "_origin": "ast", "id": "remix_app_api_utils_auth_getcurrentuser_introspecttoken", - "community": 41, + "community": 3, "norm_label": "introspecttoken()" }, { @@ -266199,7 +266199,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_auth_jwt", - "community": 42, + "community": 217, "norm_label": "jwt.ts" }, { @@ -266209,7 +266209,7 @@ "source_location": "L12", "_origin": "ast", "id": "remix_app_api_utils_auth_jwt_normalizepem", - "community": 42, + "community": 217, "norm_label": "normalizepem()" }, { @@ -266219,7 +266219,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_api_utils_auth_jwt_getprivatekeypem", - "community": 42, + "community": 217, "norm_label": "getprivatekeypem()" }, { @@ -266229,7 +266229,7 @@ "source_location": "L24", "_origin": "ast", "id": "remix_app_api_utils_auth_jwt_getpublickeypem", - "community": 42, + "community": 217, "norm_label": "getpublickeypem()" }, { @@ -266239,7 +266239,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_api_utils_auth_jwt_getjwtkeyid", - "community": 42, + "community": 217, "norm_label": "getjwtkeyid()" }, { @@ -266249,7 +266249,7 @@ "source_location": "L33", "_origin": "ast", "id": "remix_app_api_utils_auth_jwt_getjwtissuer", - "community": 134, + "community": 3, "norm_label": "getjwtissuer()" }, { @@ -266259,7 +266259,7 @@ "source_location": "L35", "_origin": "ast", "id": "remix_app_api_utils_auth_jwt_hasasymmetricjwtkeys", - "community": 42, + "community": 217, "norm_label": "hasasymmetricjwtkeys()" }, { @@ -266269,7 +266269,7 @@ "source_location": "L37", "_origin": "ast", "id": "remix_app_api_utils_auth_jwt_getes256signingkey", - "community": 42, + "community": 217, "norm_label": "getes256signingkey()" }, { @@ -266279,7 +266279,7 @@ "source_location": "L45", "_origin": "ast", "id": "remix_app_api_utils_auth_jwt_getpublicjwk", - "community": 42, + "community": 217, "norm_label": "getpublicjwk()" }, { @@ -266289,7 +266289,7 @@ "source_location": "L60", "_origin": "ast", "id": "remix_app_api_utils_auth_jwt_getes256verifykey", - "community": 42, + "community": 217, "norm_label": "getes256verifykey()" }, { @@ -266299,7 +266299,7 @@ "source_location": "L76", "_origin": "ast", "id": "remix_app_api_utils_auth_jwt_getlegacysecret", - "community": 42, + "community": 217, "norm_label": "getlegacysecret()" }, { @@ -266309,7 +266309,7 @@ "source_location": "L90", "_origin": "ast", "id": "remix_app_api_utils_auth_jwt_jwtclaims", - "community": 42, + "community": 217, "norm_label": "jwtclaims" }, { @@ -266319,7 +266319,7 @@ "source_location": "L91", "_origin": "ast", "id": "remix_app_api_utils_auth_jwt_publicjwks", - "community": 42, + "community": 217, "norm_label": "publicjwks" }, { @@ -266329,7 +266329,7 @@ "source_location": "L95", "_origin": "ast", "id": "remix_app_api_utils_auth_jwt_signjwt", - "community": 42, + "community": 217, "norm_label": "signjwt()" }, { @@ -266339,7 +266339,7 @@ "source_location": "L132", "_origin": "ast", "id": "remix_app_api_utils_auth_jwt_verifyjwt", - "community": 41, + "community": 217, "norm_label": "verifyjwt()" }, { @@ -266349,7 +266349,7 @@ "source_location": "L160", "_origin": "ast", "id": "remix_app_api_utils_auth_jwt_signpurposetoken", - "community": 42, + "community": 217, "norm_label": "signpurposetoken()" }, { @@ -266359,7 +266359,7 @@ "source_location": "L181", "_origin": "ast", "id": "remix_app_api_utils_auth_jwt_verifypurposetoken", - "community": 42, + "community": 217, "norm_label": "verifypurposetoken()" }, { @@ -266369,7 +266369,7 @@ "source_location": "L208", "_origin": "ast", "id": "remix_app_api_utils_auth_jwt_getpublicjwks", - "community": 42, + "community": 217, "norm_label": "getpublicjwks()" }, { @@ -266899,7 +266899,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_auth_passwordresets", - "community": 45, + "community": 61, "norm_label": "passwordresets.ts" }, { @@ -266909,7 +266909,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_api_utils_auth_passwordresets_createpasswordreset", - "community": 45, + "community": 61, "norm_label": "createpasswordreset()" }, { @@ -266919,7 +266919,7 @@ "source_location": "L36", "_origin": "ast", "id": "remix_app_api_utils_auth_passwordresets_consumepasswordresetresult", - "community": 45, + "community": 61, "norm_label": "consumepasswordresetresult" }, { @@ -266929,7 +266929,7 @@ "source_location": "L39", "_origin": "ast", "id": "remix_app_api_utils_auth_passwordresets_consumepasswordreset", - "community": 45, + "community": 61, "norm_label": "consumepasswordreset()" }, { @@ -266939,7 +266939,7 @@ "source_location": "L48", "_origin": "ast", "id": "remix_app_api_utils_auth_passwordresets_applypasswordreset", - "community": 45, + "community": 61, "norm_label": "applypasswordreset()" }, { @@ -266949,7 +266949,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_auth_patscopes_test", - "community": 41, + "community": 217, "norm_label": "patscopes.test.ts" }, { @@ -266959,7 +266959,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_auth_patscopes", - "community": 41, + "community": 217, "norm_label": "patscopes.ts" }, { @@ -266969,7 +266969,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_api_utils_auth_patscopes_patscopedescriptor", - "community": 41, + "community": 217, "norm_label": "patscopedescriptor" }, { @@ -266979,7 +266979,7 @@ "source_location": "L17", "_origin": "ast", "id": "remix_app_api_utils_auth_patscopes_pat_scope_catalog", - "community": 41, + "community": 217, "norm_label": "pat_scope_catalog" }, { @@ -266989,7 +266989,7 @@ "source_location": "L86", "_origin": "ast", "id": "remix_app_api_utils_auth_patscopes_catalog_by_id", - "community": 41, + "community": 217, "norm_label": "catalog_by_id" }, { @@ -266999,7 +266999,7 @@ "source_location": "L88", "_origin": "ast", "id": "remix_app_api_utils_auth_patscopes_pat_scope_ids", - "community": 41, + "community": 217, "norm_label": "pat_scope_ids" }, { @@ -267009,7 +267009,7 @@ "source_location": "L98", "_origin": "ast", "id": "remix_app_api_utils_auth_patscopes_patvisibilitymode", - "community": 41, + "community": 217, "norm_label": "patvisibilitymode" }, { @@ -267019,7 +267019,7 @@ "source_location": "L100", "_origin": "ast", "id": "remix_app_api_utils_auth_patscopes_patvisibilitydescriptor", - "community": 41, + "community": 217, "norm_label": "patvisibilitydescriptor" }, { @@ -267029,7 +267029,7 @@ "source_location": "L108", "_origin": "ast", "id": "remix_app_api_utils_auth_patscopes_pat_visibility_catalog", - "community": 41, + "community": 217, "norm_label": "pat_visibility_catalog" }, { @@ -267039,7 +267039,7 @@ "source_location": "L135", "_origin": "ast", "id": "remix_app_api_utils_auth_patscopes_isknownpatvisibility", - "community": 41, + "community": 217, "norm_label": "isknownpatvisibility()" }, { @@ -267049,7 +267049,7 @@ "source_location": "L138", "_origin": "ast", "id": "remix_app_api_utils_auth_patscopes_isknownpatscope", - "community": 41, + "community": 217, "norm_label": "isknownpatscope()" }, { @@ -267059,7 +267059,7 @@ "source_location": "L143", "_origin": "ast", "id": "remix_app_api_utils_auth_patscopes_coverspath", - "community": 41, + "community": 217, "norm_label": "coverspath()" }, { @@ -267069,7 +267069,7 @@ "source_location": "L146", "_origin": "ast", "id": "remix_app_api_utils_auth_patscopes_patscopecovers", - "community": 41, + "community": 217, "norm_label": "patscopecovers()" }, { @@ -267079,7 +267079,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_auth_pattokens", - "community": 41, + "community": 217, "norm_label": "pattokens.ts" }, { @@ -267089,7 +267089,7 @@ "source_location": "L52", "_origin": "ast", "id": "remix_app_api_utils_auth_pattokens_publicpattoken", - "community": 41, + "community": 217, "norm_label": "publicpattoken" }, { @@ -267099,7 +267099,7 @@ "source_location": "L74", "_origin": "ast", "id": "remix_app_api_utils_auth_pattokens_patsessionscopes", - "community": 41, + "community": 217, "norm_label": "patsessionscopes()" }, { @@ -267109,7 +267109,7 @@ "source_location": "L79", "_origin": "ast", "id": "remix_app_api_utils_auth_pattokens_patsessionvisibility", - "community": 41, + "community": 217, "norm_label": "patsessionvisibility()" }, { @@ -267119,7 +267119,7 @@ "source_location": "L82", "_origin": "ast", "id": "remix_app_api_utils_auth_pattokens_topublicpattoken", - "community": 41, + "community": 217, "norm_label": "topublicpattoken()" }, { @@ -267129,7 +267129,7 @@ "source_location": "L113", "_origin": "ast", "id": "remix_app_api_utils_auth_pattokens_mintpatinput", - "community": 41, + "community": 217, "norm_label": "mintpatinput" }, { @@ -267139,7 +267139,7 @@ "source_location": "L126", "_origin": "ast", "id": "remix_app_api_utils_auth_pattokens_mintpatresult", - "community": 41, + "community": 217, "norm_label": "mintpatresult" }, { @@ -267149,7 +267149,7 @@ "source_location": "L132", "_origin": "ast", "id": "remix_app_api_utils_auth_pattokens_mintpattoken", - "community": 41, + "community": 217, "norm_label": "mintpattoken()" }, { @@ -267159,7 +267159,7 @@ "source_location": "L230", "_origin": "ast", "id": "remix_app_api_utils_auth_pattokens_listpattokens", - "community": 41, + "community": 217, "norm_label": "listpattokens()" }, { @@ -267169,7 +267169,7 @@ "source_location": "L236", "_origin": "ast", "id": "remix_app_api_utils_auth_pattokens_revokepatresult", - "community": 41, + "community": 217, "norm_label": "revokepatresult" }, { @@ -267179,7 +267179,7 @@ "source_location": "L241", "_origin": "ast", "id": "remix_app_api_utils_auth_pattokens_revokepattoken", - "community": 41, + "community": 217, "norm_label": "revokepattoken()" }, { @@ -267189,7 +267189,7 @@ "source_location": "L263", "_origin": "ast", "id": "remix_app_api_utils_auth_pattokens_consumepatuse", - "community": 41, + "community": 217, "norm_label": "consumepatuse()" }, { @@ -267209,7 +267209,7 @@ "source_location": "L293", "_origin": "ast", "id": "remix_app_api_utils_auth_pattokens_thingsactor", - "community": 41, + "community": 217, "norm_label": "thingsactor" }, { @@ -267219,7 +267219,7 @@ "source_location": "L295", "_origin": "ast", "id": "remix_app_api_utils_auth_pattokens_thingsactorresult", - "community": 41, + "community": 217, "norm_label": "thingsactorresult" }, { @@ -267229,7 +267229,7 @@ "source_location": "L301", "_origin": "ast", "id": "remix_app_api_utils_auth_pattokens_resolvepatsessionactor", - "community": 41, + "community": 217, "norm_label": "resolvepatsessionactor()" }, { @@ -267239,7 +267239,7 @@ "source_location": "L341", "_origin": "ast", "id": "remix_app_api_utils_auth_pattokens_livepatsessionof", - "community": 41, + "community": 217, "norm_label": "livepatsessionof()" }, { @@ -267249,7 +267249,7 @@ "source_location": "L363", "_origin": "ast", "id": "remix_app_api_utils_auth_pattokens_resolvegetbridgeactor", - "community": 41, + "community": 217, "norm_label": "resolvegetbridgeactor()" }, { @@ -267259,7 +267259,7 @@ "source_location": "L375", "_origin": "ast", "id": "remix_app_api_utils_auth_pattokens_resolvegetbridgeself", - "community": 41, + "community": 217, "norm_label": "resolvegetbridgeself()" }, { @@ -267269,7 +267269,7 @@ "source_location": "L402", "_origin": "ast", "id": "remix_app_api_utils_auth_pattokens_resolvethingsactor", - "community": 41, + "community": 3, "norm_label": "resolvethingsactor()" }, { @@ -267279,7 +267279,7 @@ "source_location": "L437", "_origin": "ast", "id": "remix_app_api_utils_auth_pattokens_patintrospection", - "community": 41, + "community": 217, "norm_label": "patintrospection" }, { @@ -267289,7 +267289,7 @@ "source_location": "L444", "_origin": "ast", "id": "remix_app_api_utils_auth_pattokens_resolvepatintrospection", - "community": 41, + "community": 217, "norm_label": "resolvepatintrospection()" }, { @@ -267299,7 +267299,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_auth_publicorigin", - "community": 188, + "community": 41, "norm_label": "publicorigin.ts" }, { @@ -267309,7 +267309,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_auth_publicorigin_firstforwardedvalue", - "community": 188, + "community": 41, "norm_label": "firstforwardedvalue()" }, { @@ -267319,7 +267319,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_api_utils_auth_publicorigin_resolvepublicorigin", - "community": 188, + "community": 41, "norm_label": "resolvepublicorigin()" }, { @@ -267349,7 +267349,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_auth_registeruser", - "community": 45, + "community": 47, "norm_label": "registeruser.ts" }, { @@ -267359,7 +267359,7 @@ "source_location": "L17", "_origin": "ast", "id": "remix_app_api_utils_auth_registeruser_registerinput", - "community": 45, + "community": 47, "norm_label": "registerinput" }, { @@ -267369,7 +267369,7 @@ "source_location": "L27", "_origin": "ast", "id": "remix_app_api_utils_auth_registeruser_registerresult", - "community": 45, + "community": 47, "norm_label": "registerresult" }, { @@ -267379,7 +267379,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_api_utils_auth_registeruser_createuseraccountinput", - "community": 45, + "community": 47, "norm_label": "createuseraccountinput" }, { @@ -267389,7 +267389,7 @@ "source_location": "L47", "_origin": "ast", "id": "remix_app_api_utils_auth_registeruser_createuseraccountresult", - "community": 45, + "community": 47, "norm_label": "createuseraccountresult" }, { @@ -267399,7 +267399,7 @@ "source_location": "L49", "_origin": "ast", "id": "remix_app_api_utils_auth_registeruser_isemail", - "community": 45, + "community": 47, "norm_label": "isemail()" }, { @@ -267409,7 +267409,7 @@ "source_location": "L55", "_origin": "ast", "id": "remix_app_api_utils_auth_registeruser_privileged_meta_keys", - "community": 45, + "community": 47, "norm_label": "privileged_meta_keys" }, { @@ -267419,7 +267419,7 @@ "source_location": "L58", "_origin": "ast", "id": "remix_app_api_utils_auth_registeruser_sanitizecreatemeta", - "community": 45, + "community": 47, "norm_label": "sanitizecreatemeta()" }, { @@ -267429,7 +267429,7 @@ "source_location": "L67", "_origin": "ast", "id": "remix_app_api_utils_auth_registeruser_createuseraccount", - "community": 45, + "community": 47, "norm_label": "createuseraccount()" }, { @@ -267439,7 +267439,7 @@ "source_location": "L202", "_origin": "ast", "id": "remix_app_api_utils_auth_registeruser_registeruser", - "community": 45, + "community": 47, "norm_label": "registeruser()" }, { @@ -267529,7 +267529,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_auth_serviceaccounts", - "community": 45, + "community": 47, "norm_label": "serviceaccounts.ts" }, { @@ -267539,7 +267539,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_api_utils_auth_serviceaccounts_provisionserviceaccountinput", - "community": 45, + "community": 47, "norm_label": "provisionserviceaccountinput" }, { @@ -267549,7 +267549,7 @@ "source_location": "L24", "_origin": "ast", "id": "remix_app_api_utils_auth_serviceaccounts_provisionserviceaccountresult", - "community": 45, + "community": 47, "norm_label": "provisionserviceaccountresult" }, { @@ -267559,7 +267559,7 @@ "source_location": "L38", "_origin": "ast", "id": "remix_app_api_utils_auth_serviceaccounts_slugifyusername", - "community": 45, + "community": 47, "norm_label": "slugifyusername()" }, { @@ -267569,7 +267569,7 @@ "source_location": "L46", "_origin": "ast", "id": "remix_app_api_utils_auth_serviceaccounts_generatedservicepassword", - "community": 45, + "community": 47, "norm_label": "generatedservicepassword()" }, { @@ -267579,7 +267579,7 @@ "source_location": "L48", "_origin": "ast", "id": "remix_app_api_utils_auth_serviceaccounts_provisionserviceaccount", - "community": 45, + "community": 47, "norm_label": "provisionserviceaccount()" }, { @@ -267589,7 +267589,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_auth_sessions", - "community": 41, + "community": 217, "norm_label": "sessions.ts" }, { @@ -267599,7 +267599,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_api_utils_auth_sessions_sessiondoc", - "community": 41, + "community": 217, "norm_label": "sessiondoc" }, { @@ -267609,7 +267609,7 @@ "source_location": "L23", "_origin": "ast", "id": "remix_app_api_utils_auth_sessions_createsessionoptions", - "community": 41, + "community": 217, "norm_label": "createsessionoptions" }, { @@ -267619,7 +267619,7 @@ "source_location": "L32", "_origin": "ast", "id": "remix_app_api_utils_auth_sessions_createsession", - "community": 8, + "community": 217, "norm_label": "createsession()" }, { @@ -267629,7 +267629,7 @@ "source_location": "L50", "_origin": "ast", "id": "remix_app_api_utils_auth_sessions_getlivesession", - "community": 41, + "community": 217, "norm_label": "getlivesession()" }, { @@ -267639,7 +267639,7 @@ "source_location": "L75", "_origin": "ast", "id": "remix_app_api_utils_auth_sessions_revokedsessionset", - "community": 41, + "community": 217, "norm_label": "revokedsessionset()" }, { @@ -267649,7 +267649,7 @@ "source_location": "L82", "_origin": "ast", "id": "remix_app_api_utils_auth_sessions_revokedsessionpipeline", - "community": 41, + "community": 217, "norm_label": "revokedsessionpipeline()" }, { @@ -267659,7 +267659,7 @@ "source_location": "L84", "_origin": "ast", "id": "remix_app_api_utils_auth_sessions_revokesession", - "community": 41, + "community": 217, "norm_label": "revokesession()" }, { @@ -267669,7 +267669,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_auth_singleusetokens", - "community": 45, + "community": 61, "norm_label": "singleusetokens.ts" }, { @@ -267679,7 +267679,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_api_utils_auth_singleusetokens_singleusetokendoc", - "community": 45, + "community": 61, "norm_label": "singleusetokendoc" }, { @@ -267689,7 +267689,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_api_utils_auth_singleusetokens_consumetokenresult", - "community": 45, + "community": 61, "norm_label": "consumetokenresult" }, { @@ -267699,7 +267699,7 @@ "source_location": "L24", "_origin": "ast", "id": "remix_app_api_utils_auth_singleusetokens_createsingleusetoken", - "community": 45, + "community": 61, "norm_label": "createsingleusetoken()" }, { @@ -267709,7 +267709,7 @@ "source_location": "L53", "_origin": "ast", "id": "remix_app_api_utils_auth_singleusetokens_consumesingleusetoken", - "community": 45, + "community": 61, "norm_label": "consumesingleusetoken()" }, { @@ -267719,7 +267719,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_auth_ssohandoff", - "community": 41, + "community": 217, "norm_label": "ssohandoff.ts" }, { @@ -267729,7 +267729,7 @@ "source_location": "L35", "_origin": "ast", "id": "remix_app_api_utils_auth_ssohandoff_ssohandofffail", - "community": 41, + "community": 217, "norm_label": "ssohandofffail" }, { @@ -267739,7 +267739,7 @@ "source_location": "L36", "_origin": "ast", "id": "remix_app_api_utils_auth_ssohandoff_fail", - "community": 41, + "community": 217, "norm_label": "fail()" }, { @@ -267749,7 +267749,7 @@ "source_location": "L38", "_origin": "ast", "id": "remix_app_api_utils_auth_ssohandoff_normalizeweborigin", - "community": 41, + "community": 217, "norm_label": "normalizeweborigin()" }, { @@ -267759,7 +267759,7 @@ "source_location": "L50", "_origin": "ast", "id": "remix_app_api_utils_auth_ssohandoff_issuessohandoffcode", - "community": 41, + "community": 217, "norm_label": "issuessohandoffcode()" }, { @@ -267769,7 +267769,7 @@ "source_location": "L69", "_origin": "ast", "id": "remix_app_api_utils_auth_ssohandoff_claimedssosession", - "community": 41, + "community": 217, "norm_label": "claimedssosession" }, { @@ -267779,7 +267779,7 @@ "source_location": "L73", "_origin": "ast", "id": "remix_app_api_utils_auth_ssohandoff_claimssohandoffcode", - "community": 41, + "community": 217, "norm_label": "claimssohandoffcode()" }, { @@ -267789,7 +267789,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_auth_temporaryuser_test", - "community": 41, + "community": 47, "norm_label": "temporaryuser.test.ts" }, { @@ -267799,7 +267799,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_auth_temporaryuser", - "community": 41, + "community": 47, "norm_label": "temporaryuser.ts" }, { @@ -267809,7 +267809,7 @@ "source_location": "L12", "_origin": "ast", "id": "remix_app_api_utils_auth_temporaryuser_buildtemporaryuseraccountinput", - "community": 41, + "community": 47, "norm_label": "buildtemporaryuseraccountinput()" }, { @@ -267819,7 +267819,7 @@ "source_location": "L34", "_origin": "ast", "id": "remix_app_api_utils_auth_temporaryuser_temporaryusersessionresult", - "community": 41, + "community": 47, "norm_label": "temporaryusersessionresult" }, { @@ -267829,7 +267829,7 @@ "source_location": "L42", "_origin": "ast", "id": "remix_app_api_utils_auth_temporaryuser_createtemporaryusersession", - "community": 41, + "community": 47, "norm_label": "createtemporaryusersession()" }, { @@ -267949,7 +267949,7 @@ "source_location": "L74", "_origin": "ast", "id": "remix_app_api_utils_auth_users_publicuser", - "community": 41, + "community": 47, "norm_label": "publicuser" }, { @@ -267959,7 +267959,7 @@ "source_location": "L132", "_origin": "ast", "id": "remix_app_api_utils_auth_users_publicprofile", - "community": 82, + "community": 47, "norm_label": "publicprofile" }, { @@ -268009,7 +268009,7 @@ "source_location": "L215", "_origin": "ast", "id": "remix_app_api_utils_auth_users_topublicuserwithstorage", - "community": 41, + "community": 47, "norm_label": "topublicuserwithstorage()" }, { @@ -268149,7 +268149,7 @@ "source_location": "L377", "_origin": "ast", "id": "remix_app_api_utils_auth_users_finduserthing", - "community": 45, + "community": 47, "norm_label": "finduserthing()" }, { @@ -268159,7 +268159,7 @@ "source_location": "L383", "_origin": "ast", "id": "remix_app_api_utils_auth_users_finduserbyusername", - "community": 45, + "community": 47, "norm_label": "finduserbyusername()" }, { @@ -268169,7 +268169,7 @@ "source_location": "L399", "_origin": "ast", "id": "remix_app_api_utils_auth_users_findusersbyusernames", - "community": 82, + "community": 47, "norm_label": "findusersbyusernames()" }, { @@ -268179,7 +268179,7 @@ "source_location": "L411", "_origin": "ast", "id": "remix_app_api_utils_auth_users_finduserbyemail", - "community": 45, + "community": 47, "norm_label": "finduserbyemail()" }, { @@ -268189,7 +268189,7 @@ "source_location": "L421", "_origin": "ast", "id": "remix_app_api_utils_auth_users_finduserbyid", - "community": 41, + "community": 47, "norm_label": "finduserbyid()" }, { @@ -268199,7 +268199,7 @@ "source_location": "L433", "_origin": "ast", "id": "remix_app_api_utils_auth_users_findusersbyids", - "community": 47, + "community": 6, "norm_label": "findusersbyids()" }, { @@ -268309,7 +268309,7 @@ "source_location": "L700", "_origin": "ast", "id": "remix_app_api_utils_auth_users_markemailverified", - "community": 45, + "community": 47, "norm_label": "markemailverified()" }, { @@ -268349,7 +268349,7 @@ "source_location": "L763", "_origin": "ast", "id": "remix_app_api_utils_auth_users_getusernotificationprefs", - "community": 82, + "community": 47, "norm_label": "getusernotificationprefs()" }, { @@ -268359,7 +268359,7 @@ "source_location": "L781", "_origin": "ast", "id": "remix_app_api_utils_auth_users_setusernotificationprefs", - "community": 45, + "community": 47, "norm_label": "setusernotificationprefs()" }, { @@ -268409,7 +268409,7 @@ "source_location": "L890", "_origin": "ast", "id": "remix_app_api_utils_auth_users_savedmongoendpoint", - "community": 47, + "community": 9, "norm_label": "savedmongoendpoint" }, { @@ -268419,7 +268419,7 @@ "source_location": "L894", "_origin": "ast", "id": "remix_app_api_utils_auth_users_normalizesavedmongoendpoints", - "community": 9, + "community": 47, "norm_label": "normalizesavedmongoendpoints()" }, { @@ -268439,7 +268439,7 @@ "source_location": "L918", "_origin": "ast", "id": "remix_app_api_utils_auth_users_addusermongoendpoint", - "community": 9, + "community": 47, "norm_label": "addusermongoendpoint()" }, { @@ -268449,7 +268449,7 @@ "source_location": "L960", "_origin": "ast", "id": "remix_app_api_utils_auth_users_removeusermongoendpoint", - "community": 9, + "community": 47, "norm_label": "removeusermongoendpoint()" }, { @@ -268459,7 +268459,7 @@ "source_location": "L987", "_origin": "ast", "id": "remix_app_api_utils_auth_users_deploymentsyncmode", - "community": 47, + "community": 33, "norm_label": "deploymentsyncmode" }, { @@ -268479,7 +268479,7 @@ "source_location": "L989", "_origin": "ast", "id": "remix_app_api_utils_auth_users_saveddeploymentlink", - "community": 47, + "community": 33, "norm_label": "saveddeploymentlink" }, { @@ -268559,7 +268559,7 @@ "source_location": "L1194", "_origin": "ast", "id": "remix_app_api_utils_auth_users_setuseractivetheme", - "community": 155, + "community": 47, "norm_label": "setuseractivetheme()" }, { @@ -268569,7 +268569,7 @@ "source_location": "L1209", "_origin": "ast", "id": "remix_app_api_utils_auth_users_clearuseractivetheme", - "community": 155, + "community": 47, "norm_label": "clearuseractivetheme()" }, { @@ -268589,7 +268589,7 @@ "source_location": "L1238", "_origin": "ast", "id": "remix_app_api_utils_auth_users_clearuseractivefeedalgorithm", - "community": 343, + "community": 47, "norm_label": "clearuseractivefeedalgorithm()" }, { @@ -268599,7 +268599,7 @@ "source_location": "L1272", "_origin": "ast", "id": "remix_app_api_utils_auth_users_pushuserrecentreaction", - "community": 47, + "community": 6, "norm_label": "pushuserrecentreaction()" }, { @@ -268659,7 +268659,7 @@ "source_location": "L1379", "_origin": "ast", "id": "remix_app_api_utils_auth_users_adminuserrowof", - "community": 49, + "community": 47, "norm_label": "adminuserrowof()" }, { @@ -268919,7 +268919,7 @@ "source_location": "L2095", "_origin": "ast", "id": "remix_app_api_utils_auth_users_updateuserprofile", - "community": 155, + "community": 257, "norm_label": "updateuserprofile" }, { @@ -269279,7 +269279,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_capabilities_requirecapability_client", - "community": 48, + "community": 210, "norm_label": "requirecapability.client.ts" }, { @@ -269289,7 +269289,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_api_utils_capabilities_requirecapability_client_capabilitymanifest", - "community": 48, + "community": 210, "norm_label": "capabilitymanifest" }, { @@ -269299,7 +269299,7 @@ "source_location": "L11", "_origin": "ast", "id": "remix_app_api_utils_capabilities_requirecapability_client_requirethingtimecapability", - "community": 48, + "community": 210, "norm_label": "requirethingtimecapability()" }, { @@ -269829,7 +269829,7 @@ "source_location": "L836", "_origin": "ast", "id": "remix_app_api_utils_chatgpt_plugin_revokemcpconnection", - "community": 41, + "community": 217, "norm_label": "revokemcpconnection()" }, { @@ -270939,7 +270939,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_automationpolicy_test", - "community": 277, + "community": 942, "norm_label": "automationpolicy.test.ts" }, { @@ -270949,7 +270949,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_automationpolicy", - "community": 277, + "community": 942, "norm_label": "automationpolicy.ts" }, { @@ -270959,7 +270959,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_automationpolicy_ci_workflow_keys", - "community": 277, + "community": 942, "norm_label": "ci_workflow_keys" }, { @@ -270969,7 +270969,7 @@ "source_location": "L12", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_automationpolicy_ciworkflowkey", - "community": 277, + "community": 942, "norm_label": "ciworkflowkey" }, { @@ -270979,7 +270979,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_automationpolicy_ciexecutionprovider", - "community": 277, + "community": 450, "norm_label": "ciexecutionprovider" }, { @@ -270989,7 +270989,7 @@ "source_location": "L15", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_automationpolicy_ciautomationdefinition", - "community": 277, + "community": 942, "norm_label": "ciautomationdefinition" }, { @@ -270999,7 +270999,7 @@ "source_location": "L23", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_automationpolicy_ciautomationpolicy", - "community": 277, + "community": 942, "norm_label": "ciautomationpolicy" }, { @@ -271009,7 +271009,7 @@ "source_location": "L30", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_automationpolicy_ci_automation_definitions", - "community": 277, + "community": 942, "norm_label": "ci_automation_definitions" }, { @@ -271019,7 +271019,7 @@ "source_location": "L92", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_automationpolicy_bykey", - "community": 277, + "community": 942, "norm_label": "bykey" }, { @@ -271029,7 +271029,7 @@ "source_location": "L94", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_automationpolicy_isciworkflowkey", - "community": 277, + "community": 942, "norm_label": "isciworkflowkey()" }, { @@ -271039,7 +271039,7 @@ "source_location": "L97", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_automationpolicy_isciexecutionprovider", - "community": 277, + "community": 942, "norm_label": "isciexecutionprovider()" }, { @@ -271049,7 +271049,7 @@ "source_location": "L106", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_automationpolicy_defaultciautomationpolicy", - "community": 277, + "community": 942, "norm_label": "defaultciautomationpolicy()" }, { @@ -271249,7 +271249,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_credentialvaultcore_test", - "community": 121, + "community": 606, "norm_label": "credentialvaultcore.test.ts" }, { @@ -271259,7 +271259,7 @@ "source_location": "L12", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_credentialvaultcore_test_now", - "community": 121, + "community": 606, "norm_label": "now" }, { @@ -271269,7 +271269,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_credentialvaultcore_test_valid", - "community": 121, + "community": 606, "norm_label": "valid" }, { @@ -271279,7 +271279,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_credentialvaultcore", - "community": 121, + "community": 606, "norm_label": "credentialvaultcore.ts" }, { @@ -271289,7 +271289,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_credentialvaultcore_lopu_credential_type", - "community": 121, + "community": 606, "norm_label": "lopu_credential_type" }, { @@ -271299,7 +271299,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_credentialvaultcore_boundedtext", - "community": 121, + "community": 606, "norm_label": "boundedtext()" }, { @@ -271309,7 +271309,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_credentialvaultcore_normalizecredentialname", - "community": 121, + "community": 606, "norm_label": "normalizecredentialname()" }, { @@ -271319,7 +271319,7 @@ "source_location": "L15", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_credentialvaultcore_normalizecredentialplatform", - "community": 121, + "community": 606, "norm_label": "normalizecredentialplatform()" }, { @@ -271339,7 +271339,7 @@ "source_location": "L29", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_credentialvaultcore_normalizecredentialorder", - "community": 121, + "community": 606, "norm_label": "normalizecredentialorder()" }, { @@ -271349,7 +271349,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_credentialvaultcore_normalizebootstrapcredentials", - "community": 121, + "community": 606, "norm_label": "normalizebootstrapcredentials()" }, { @@ -271359,7 +271359,7 @@ "source_location": "L56", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_credentialvaultcore_lopucredentialfetchrequest", - "community": 121, + "community": 606, "norm_label": "lopucredentialfetchrequest" }, { @@ -271369,7 +271369,7 @@ "source_location": "L65", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_credentialvaultcore_parselopucredentialfetchrequest", - "community": 121, + "community": 606, "norm_label": "parselopucredentialfetchrequest()" }, { @@ -271519,7 +271519,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestacklifecyclecore_test", - "community": 413, + "community": 564, "norm_label": "featurestacklifecyclecore.test.ts" }, { @@ -271529,7 +271529,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestacklifecyclecore", - "community": 413, + "community": 564, "norm_label": "featurestacklifecyclecore.ts" }, { @@ -271539,7 +271539,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestacklifecyclecore_featurestacklifecycleaction", - "community": 413, + "community": 564, "norm_label": "featurestacklifecycleaction" }, { @@ -271549,7 +271549,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestacklifecyclecore_feature_stack_user_held_statuses", - "community": 413, + "community": 564, "norm_label": "feature_stack_user_held_statuses" }, { @@ -271559,7 +271559,7 @@ "source_location": "L5", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestacklifecyclecore_active_run_statuses", - "community": 413, + "community": 564, "norm_label": "active_run_statuses" }, { @@ -271569,7 +271569,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestacklifecyclecore_active_stack_statuses", - "community": 413, + "community": 564, "norm_label": "active_stack_statuses" }, { @@ -271579,7 +271579,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestacklifecyclecore_normalized", - "community": 413, + "community": 564, "norm_label": "normalized()" }, { @@ -271589,7 +271589,7 @@ "source_location": "L10", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestacklifecyclecore_featurestackruncancancel", - "community": 413, + "community": 564, "norm_label": "featurestackruncancancel()" }, { @@ -271599,7 +271599,7 @@ "source_location": "L12", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestacklifecyclecore_featurestackcanpause", - "community": 413, + "community": 564, "norm_label": "featurestackcanpause()" }, { @@ -271609,7 +271609,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestacklifecyclecore_featurestackcanstop", - "community": 413, + "community": 564, "norm_label": "featurestackcanstop()" }, { @@ -271619,7 +271619,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestacklifecyclecore_featurestackcanrestart", - "community": 413, + "community": 564, "norm_label": "featurestackcanrestart()" }, { @@ -271629,7 +271629,7 @@ "source_location": "L18", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestacklifecyclecore_featurestacklifecyclestatus", - "community": 413, + "community": 564, "norm_label": "featurestacklifecyclestatus()" }, { @@ -271789,7 +271789,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestackstore", - "community": 386, + "community": 428, "norm_label": "featurestackstore.ts" }, { @@ -271799,7 +271799,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestackstore_repository", - "community": 386, + "community": 428, "norm_label": "repository()" }, { @@ -271809,7 +271809,7 @@ "source_location": "L12", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestackstore_savedfeaturestack", - "community": 386, + "community": 428, "norm_label": "savedfeaturestack" }, { @@ -271819,7 +271819,7 @@ "source_location": "L26", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestackstore_savedfeaturestackrun", - "community": 386, + "community": 428, "norm_label": "savedfeaturestackrun" }, { @@ -271829,7 +271829,7 @@ "source_location": "L38", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestackstore_datestring", - "community": 386, + "community": 428, "norm_label": "datestring()" }, { @@ -271839,7 +271839,7 @@ "source_location": "L43", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestackstore_validatename", - "community": 386, + "community": 428, "norm_label": "validatename()" }, { @@ -271849,7 +271849,7 @@ "source_location": "L55", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestackstore_validatesources", - "community": 386, + "community": 428, "norm_label": "validatesources()" }, { @@ -271859,7 +271859,7 @@ "source_location": "L65", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestackstore_validatetargets", - "community": 386, + "community": 428, "norm_label": "validatetargets()" }, { @@ -271869,7 +271869,7 @@ "source_location": "L74", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestackstore_listfeaturestacks", - "community": 386, + "community": 428, "norm_label": "listfeaturestacks()" }, { @@ -271879,7 +271879,7 @@ "source_location": "L142", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestackstore_savefeaturestack", - "community": 386, + "community": 428, "norm_label": "savefeaturestack()" }, { @@ -271889,7 +271889,7 @@ "source_location": "L221", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestackstore_getfeaturestack", - "community": 386, + "community": 428, "norm_label": "getfeaturestack()" }, { @@ -271899,7 +271899,7 @@ "source_location": "L228", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestackstore_markfeaturestackrun", - "community": 386, + "community": 428, "norm_label": "markfeaturestackrun()" }, { @@ -271909,7 +271909,7 @@ "source_location": "L246", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestackstore_markfeaturestacklifecyclestatus", - "community": 386, + "community": 428, "norm_label": "markfeaturestacklifecyclestatus()" }, { @@ -271919,7 +271919,7 @@ "source_location": "L269", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestackstore_workflowrunlink", - "community": 386, + "community": 428, "norm_label": "workflowrunlink" }, { @@ -271929,7 +271929,7 @@ "source_location": "L278", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestackstore_linkdispatchworkflowrun", - "community": 386, + "community": 428, "norm_label": "linkdispatchworkflowrun()" }, { @@ -271939,7 +271939,7 @@ "source_location": "L322", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestackstore_linkfeaturestackworkflowrun", - "community": 386, + "community": 485, "norm_label": "linkfeaturestackworkflowrun()" }, { @@ -271949,7 +271949,7 @@ "source_location": "L343", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestackstore_reconcilelegacyfeaturestackrun", - "community": 386, + "community": 428, "norm_label": "reconcilelegacyfeaturestackrun()" }, { @@ -271959,7 +271959,7 @@ "source_location": "L352", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestackstore_markfeaturestackrunlinkchecked", - "community": 386, + "community": 428, "norm_label": "markfeaturestackrunlinkchecked()" }, { @@ -271969,7 +271969,7 @@ "source_location": "L359", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_featurestackstore_archivefeaturestack", - "community": 386, + "community": 428, "norm_label": "archivefeaturestack()" }, { @@ -272069,7 +272069,7 @@ "source_location": "L77", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_githubclient_githubrequest", - "community": 386, + "community": 450, "norm_label": "githubrequest()" }, { @@ -272089,7 +272089,7 @@ "source_location": "L106", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_githubclient_findfeaturestackworkflowrunnear", - "community": 386, + "community": 428, "norm_label": "findfeaturestackworkflowrunnear()" }, { @@ -272099,7 +272099,7 @@ "source_location": "L136", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_githubclient_repositoryname", - "community": 386, + "community": 466, "norm_label": "repositoryname()" }, { @@ -272109,7 +272109,7 @@ "source_location": "L138", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_githubclient_cancelgithubworkflowrun", - "community": 386, + "community": 564, "norm_label": "cancelgithubworkflowrun()" }, { @@ -272259,7 +272259,7 @@ "source_location": "L841", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_githubclient_githubappconfigured", - "community": 942, + "community": 450, "norm_label": "githubappconfigured()" }, { @@ -272389,7 +272389,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_providerreadiness_test", - "community": 942, + "community": 450, "norm_label": "providerreadiness.test.ts" }, { @@ -272399,7 +272399,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_providerreadiness_test_completeenvironment", - "community": 942, + "community": 450, "norm_label": "completeenvironment" }, { @@ -272409,7 +272409,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_providerreadiness", - "community": 942, + "community": 450, "norm_label": "providerreadiness.ts" }, { @@ -272419,7 +272419,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_providerreadiness_providerenvironment", - "community": 942, + "community": 450, "norm_label": "providerenvironment" }, { @@ -272429,7 +272429,7 @@ "source_location": "L5", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_providerreadiness_vercel_provider_required_env", - "community": 942, + "community": 450, "norm_label": "vercel_provider_required_env" }, { @@ -272439,7 +272439,7 @@ "source_location": "L12", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_providerreadiness_configured", - "community": 942, + "community": 450, "norm_label": "configured()" }, { @@ -272449,7 +272449,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_providerreadiness_ciproviderreadiness", - "community": 942, + "community": 450, "norm_label": "ciproviderreadiness()" }, { @@ -272459,7 +272459,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_providerreadiness_validateciexecutionprovider", - "community": 942, + "community": 450, "norm_label": "validateciexecutionprovider()" }, { @@ -273099,7 +273099,7 @@ "source_location": "L441", "_origin": "ast", "id": "remix_app_api_utils_cicontrol_vercelrunner_vercelrunnerconfigured", - "community": 942, + "community": 450, "norm_label": "vercelrunnerconfigured()" }, { @@ -273489,7 +273489,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_components_seed", - "community": 194, + "community": 12, "norm_label": "seed.ts" }, { @@ -273499,7 +273499,7 @@ "source_location": "L30", "_origin": "ast", "id": "remix_app_api_utils_components_seed_seedcomponentsresult", - "community": 194, + "community": 12, "norm_label": "seedcomponentsresult" }, { @@ -273509,7 +273509,7 @@ "source_location": "L41", "_origin": "ast", "id": "remix_app_api_utils_components_seed_seedfail", - "community": 194, + "community": 12, "norm_label": "seedfail" }, { @@ -273519,7 +273519,7 @@ "source_location": "L43", "_origin": "ast", "id": "remix_app_api_utils_components_seed_fail", - "community": 194, + "community": 12, "norm_label": "fail()" }, { @@ -273529,7 +273529,7 @@ "source_location": "L45", "_origin": "ast", "id": "remix_app_api_utils_components_seed_genuineseededcomponent", - "community": 194, + "community": 12, "norm_label": "genuineseededcomponent()" }, { @@ -273539,7 +273539,7 @@ "source_location": "L48", "_origin": "ast", "id": "remix_app_api_utils_components_seed_seededcount", - "community": 194, + "community": 12, "norm_label": "seededcount()" }, { @@ -273549,7 +273549,7 @@ "source_location": "L53", "_origin": "ast", "id": "remix_app_api_utils_components_seed_countseededcomponents", - "community": 194, + "community": 12, "norm_label": "countseededcomponents()" }, { @@ -273559,7 +273559,7 @@ "source_location": "L58", "_origin": "ast", "id": "remix_app_api_utils_components_seed_seedcomponents", - "community": 194, + "community": 12, "norm_label": "seedcomponents()" }, { @@ -273859,7 +273859,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_crypto_passwordhasher_server", - "community": 507, + "community": 50, "norm_label": "passwordhasher.server.ts" }, { @@ -273869,7 +273869,7 @@ "source_location": "L35", "_origin": "ast", "id": "remix_app_api_utils_crypto_passwordhasher_server_hashpasswordinput", - "community": 507, + "community": 50, "norm_label": "hashpasswordinput" }, { @@ -273879,7 +273879,7 @@ "source_location": "L42", "_origin": "ast", "id": "remix_app_api_utils_crypto_passwordhasher_server_hashpasswordresult", - "community": 507, + "community": 50, "norm_label": "hashpasswordresult" }, { @@ -273889,7 +273889,7 @@ "source_location": "L60", "_origin": "ast", "id": "remix_app_api_utils_crypto_passwordhasher_server_generatepassword", - "community": 507, + "community": 50, "norm_label": "generatepassword()" }, { @@ -273899,7 +273899,7 @@ "source_location": "L70", "_origin": "ast", "id": "remix_app_api_utils_crypto_passwordhasher_server_costof", - "community": 507, + "community": 50, "norm_label": "costof()" }, { @@ -273909,7 +273909,7 @@ "source_location": "L80", "_origin": "ast", "id": "remix_app_api_utils_crypto_passwordhasher_server_buildmongoshsnippet", - "community": 507, + "community": 50, "norm_label": "buildmongoshsnippet()" }, { @@ -273919,7 +273919,7 @@ "source_location": "L133", "_origin": "ast", "id": "remix_app_api_utils_crypto_passwordhasher_server_hashpasswordforstorage", - "community": 507, + "community": 50, "norm_label": "hashpasswordforstorage()" }, { @@ -274009,7 +274009,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_deployments_linktokenpurpose_test", - "community": 41, + "community": 217, "norm_label": "linktokenpurpose.test.ts" }, { @@ -274019,7 +274019,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_deployments_remote_test", - "community": 135, + "community": 33, "norm_label": "remote.test.ts" }, { @@ -274029,7 +274029,7 @@ "source_location": "L17", "_origin": "ast", "id": "remix_app_api_utils_deployments_remote_test_accepted", - "community": 135, + "community": 33, "norm_label": "accepted()" }, { @@ -274039,7 +274039,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_api_utils_deployments_remote_test_rejected", - "community": 135, + "community": 33, "norm_label": "rejected()" }, { @@ -274049,7 +274049,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_deployments_remote", - "community": 135, + "community": 33, "norm_label": "remote.ts" }, { @@ -274059,7 +274059,7 @@ "source_location": "L45", "_origin": "ast", "id": "remix_app_api_utils_deployments_remote_remoteerrortext", - "community": 135, + "community": 33, "norm_label": "remoteerrortext()" }, { @@ -274069,7 +274069,7 @@ "source_location": "L54", "_origin": "ast", "id": "remix_app_api_utils_deployments_remote_isusableremoteidentity", - "community": 135, + "community": 33, "norm_label": "isusableremoteidentity()" }, { @@ -274079,7 +274079,7 @@ "source_location": "L57", "_origin": "ast", "id": "remix_app_api_utils_deployments_remote_islocalhostname", - "community": 135, + "community": 33, "norm_label": "islocalhostname()" }, { @@ -274089,7 +274089,7 @@ "source_location": "L76", "_origin": "ast", "id": "remix_app_api_utils_deployments_remote_isblockeddeploymenthostname", - "community": 135, + "community": 33, "norm_label": "isblockeddeploymenthostname()" }, { @@ -274099,7 +274099,7 @@ "source_location": "L102", "_origin": "ast", "id": "remix_app_api_utils_deployments_remote_ipv4blocked", - "community": 135, + "community": 33, "norm_label": "ipv4blocked()" }, { @@ -274109,7 +274109,7 @@ "source_location": "L120", "_origin": "ast", "id": "remix_app_api_utils_deployments_remote_ipv6groups", - "community": 135, + "community": 33, "norm_label": "ipv6groups()" }, { @@ -274119,7 +274119,7 @@ "source_location": "L139", "_origin": "ast", "id": "remix_app_api_utils_deployments_remote_ipv6blocked", - "community": 135, + "community": 33, "norm_label": "ipv6blocked()" }, { @@ -274129,7 +274129,7 @@ "source_location": "L156", "_origin": "ast", "id": "remix_app_api_utils_deployments_remote_isblockeddeploymentaddress", - "community": 135, + "community": 33, "norm_label": "isblockeddeploymentaddress()" }, { @@ -274139,7 +274139,7 @@ "source_location": "L164", "_origin": "ast", "id": "remix_app_api_utils_deployments_remote_resolveddeploymenthostblocked", - "community": 135, + "community": 33, "norm_label": "resolveddeploymenthostblocked()" }, { @@ -274149,7 +274149,7 @@ "source_location": "L181", "_origin": "ast", "id": "remix_app_api_utils_deployments_remote_normalizedeploymentbaseurl", - "community": 135, + "community": 33, "norm_label": "normalizedeploymentbaseurl()" }, { @@ -274159,7 +274159,7 @@ "source_location": "L207", "_origin": "ast", "id": "remix_app_api_utils_deployments_remote_remoteresponse", - "community": 135, + "community": 33, "norm_label": "remoteresponse" }, { @@ -274169,7 +274169,7 @@ "source_location": "L209", "_origin": "ast", "id": "remix_app_api_utils_deployments_remote_remotefetch", - "community": 135, + "community": 33, "norm_label": "remotefetch()" }, { @@ -274179,7 +274179,7 @@ "source_location": "L269", "_origin": "ast", "id": "remix_app_api_utils_deployments_remote_readboundedtext", - "community": 135, + "community": 33, "norm_label": "readboundedtext()" }, { @@ -274189,7 +274189,7 @@ "source_location": "L290", "_origin": "ast", "id": "remix_app_api_utils_deployments_remote_authtokenfromsetcookies", - "community": 135, + "community": 33, "norm_label": "authtokenfromsetcookies()" }, { @@ -274199,7 +274199,7 @@ "source_location": "L305", "_origin": "ast", "id": "remix_app_api_utils_deployments_remote_remotepublicuser", - "community": 135, + "community": 33, "norm_label": "remotepublicuser" }, { @@ -274209,7 +274209,7 @@ "source_location": "L314", "_origin": "ast", "id": "remix_app_api_utils_deployments_remote_remoteloginresult", - "community": 135, + "community": 33, "norm_label": "remoteloginresult" }, { @@ -274219,7 +274219,7 @@ "source_location": "L321", "_origin": "ast", "id": "remix_app_api_utils_deployments_remote_remotelogin", - "community": 135, + "community": 33, "norm_label": "remotelogin()" }, { @@ -274229,7 +274229,7 @@ "source_location": "L350", "_origin": "ast", "id": "remix_app_api_utils_deployments_remote_remoteme", - "community": 135, + "community": 33, "norm_label": "remoteme()" }, { @@ -274239,7 +274239,7 @@ "source_location": "L363", "_origin": "ast", "id": "remix_app_api_utils_deployments_remote_remotemintlinktoken", - "community": 135, + "community": 33, "norm_label": "remotemintlinktoken()" }, { @@ -274249,7 +274249,7 @@ "source_location": "L375", "_origin": "ast", "id": "remix_app_api_utils_deployments_remote_remotelogout", - "community": 135, + "community": 33, "norm_label": "remotelogout()" }, { @@ -274259,7 +274259,7 @@ "source_location": "L380", "_origin": "ast", "id": "remix_app_api_utils_deployments_remote_remotething", - "community": 135, + "community": 33, "norm_label": "remotething" }, { @@ -274269,7 +274269,7 @@ "source_location": "L393", "_origin": "ast", "id": "remix_app_api_utils_deployments_remote_remotelistthings", - "community": 135, + "community": 33, "norm_label": "remotelistthings()" }, { @@ -274279,7 +274279,7 @@ "source_location": "L412", "_origin": "ast", "id": "remix_app_api_utils_deployments_remote_remoteputthing", - "community": 135, + "community": 33, "norm_label": "remoteputthing()" }, { @@ -274289,7 +274289,7 @@ "source_location": "L429", "_origin": "ast", "id": "remix_app_api_utils_deployments_remote_remoteupdateprofile", - "community": 135, + "community": 33, "norm_label": "remoteupdateprofile()" }, { @@ -274299,7 +274299,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_deployments_sync_test", - "community": 135, + "community": 33, "norm_label": "sync.test.ts" }, { @@ -274309,7 +274309,7 @@ "source_location": "L27", "_origin": "ast", "id": "remix_app_api_utils_deployments_sync_test_link", - "community": 135, + "community": 33, "norm_label": "link()" }, { @@ -274319,7 +274319,7 @@ "source_location": "L43", "_origin": "ast", "id": "remix_app_api_utils_deployments_sync_test_rules", - "community": 135, + "community": 33, "norm_label": "rules()" }, { @@ -274329,7 +274329,7 @@ "source_location": "L46", "_origin": "ast", "id": "remix_app_api_utils_deployments_sync_test_thing", - "community": 135, + "community": 33, "norm_label": "thing()" }, { @@ -274339,7 +274339,7 @@ "source_location": "L58", "_origin": "ast", "id": "remix_app_api_utils_deployments_sync_test_op", - "community": 135, + "community": 33, "norm_label": "op()" }, { @@ -274349,7 +274349,7 @@ "source_location": "L157", "_origin": "ast", "id": "remix_app_api_utils_deployments_sync_test_never", - "community": 135, + "community": 33, "norm_label": "never()" }, { @@ -274359,7 +274359,7 @@ "source_location": "L202", "_origin": "ast", "id": "remix_app_api_utils_deployments_sync_test_remotething", - "community": 135, + "community": 33, "norm_label": "remotething()" }, { @@ -274369,7 +274369,7 @@ "source_location": "L215", "_origin": "ast", "id": "remix_app_api_utils_deployments_sync_test_pager", - "community": 135, + "community": 33, "norm_label": "pager()" }, { @@ -274379,7 +274379,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_deployments_sync", - "community": 135, + "community": 33, "norm_label": "sync.ts" }, { @@ -274389,7 +274389,7 @@ "source_location": "L63", "_origin": "ast", "id": "remix_app_api_utils_deployments_sync_syncbudgetspent", - "community": 135, + "community": 33, "norm_label": "syncbudgetspent()" }, { @@ -274399,7 +274399,7 @@ "source_location": "L69", "_origin": "ast", "id": "remix_app_api_utils_deployments_sync_syncsummary", - "community": 135, + "community": 33, "norm_label": "syncsummary" }, { @@ -274409,7 +274409,7 @@ "source_location": "L86", "_origin": "ast", "id": "remix_app_api_utils_deployments_sync_syncside", - "community": 135, + "community": 33, "norm_label": "syncside" }, { @@ -274419,7 +274419,7 @@ "source_location": "L87", "_origin": "ast", "id": "remix_app_api_utils_deployments_sync_normalizedthing", - "community": 135, + "community": 33, "norm_label": "normalizedthing" }, { @@ -274429,7 +274429,7 @@ "source_location": "L98", "_origin": "ast", "id": "remix_app_api_utils_deployments_sync_syncop", - "community": 135, + "community": 33, "norm_label": "syncop" }, { @@ -274439,7 +274439,7 @@ "source_location": "L105", "_origin": "ast", "id": "remix_app_api_utils_deployments_sync_stablestringify", - "community": 135, + "community": 33, "norm_label": "stablestringify()" }, { @@ -274449,7 +274449,7 @@ "source_location": "L114", "_origin": "ast", "id": "remix_app_api_utils_deployments_sync_contentkey", - "community": 135, + "community": 33, "norm_label": "contentkey()" }, { @@ -274459,7 +274459,7 @@ "source_location": "L123", "_origin": "ast", "id": "remix_app_api_utils_deployments_sync_normalize", - "community": 135, + "community": 33, "norm_label": "normalize()" }, { @@ -274469,7 +274469,7 @@ "source_location": "L136", "_origin": "ast", "id": "remix_app_api_utils_deployments_sync_modeforthing", - "community": 135, + "community": 33, "norm_label": "modeforthing()" }, { @@ -274479,7 +274479,7 @@ "source_location": "L145", "_origin": "ast", "id": "remix_app_api_utils_deployments_sync_modeforprofile", - "community": 135, + "community": 33, "norm_label": "modeforprofile()" }, { @@ -274489,7 +274489,7 @@ "source_location": "L150", "_origin": "ast", "id": "remix_app_api_utils_deployments_sync_collectlocalthings", - "community": 135, + "community": 33, "norm_label": "collectlocalthings()" }, { @@ -274499,7 +274499,7 @@ "source_location": "L166", "_origin": "ast", "id": "remix_app_api_utils_deployments_sync_collectremotethings", - "community": 135, + "community": 33, "norm_label": "collectremotethings()" }, { @@ -274509,7 +274509,7 @@ "source_location": "L195", "_origin": "ast", "id": "remix_app_api_utils_deployments_sync_putbodyfor", - "community": 135, + "community": 33, "norm_label": "putbodyfor()" }, { @@ -274519,7 +274519,7 @@ "source_location": "L211", "_origin": "ast", "id": "remix_app_api_utils_deployments_sync_orderops", - "community": 135, + "community": 33, "norm_label": "orderops()" }, { @@ -274529,7 +274529,7 @@ "source_location": "L244", "_origin": "ast", "id": "remix_app_api_utils_deployments_sync_rundeploymentsync", - "community": 135, + "community": 33, "norm_label": "rundeploymentsync()" }, { @@ -274779,7 +274779,7 @@ "source_location": "L149", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceauth_resolvedeviceactor", - "community": 3, + "community": 358, "norm_label": "resolvedeviceactor()" }, { @@ -274789,7 +274789,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands", - "community": 152, + "community": 358, "norm_label": "devicecommands.ts" }, { @@ -274809,7 +274809,7 @@ "source_location": "L49", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands_availabledeviceapprovalslot", - "community": 152, + "community": 358, "norm_label": "availabledeviceapprovalslot()" }, { @@ -274819,7 +274819,7 @@ "source_location": "L59", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands_devicesessionsendredactionfields", - "community": 152, + "community": 358, "norm_label": "devicesessionsendredactionfields()" }, { @@ -274829,7 +274829,7 @@ "source_location": "L75", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands_iso", - "community": 152, + "community": 358, "norm_label": "iso()" }, { @@ -274839,7 +274839,7 @@ "source_location": "L81", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands_bounded", - "community": 152, + "community": 358, "norm_label": "bounded()" }, { @@ -274849,7 +274849,7 @@ "source_location": "L83", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands_commandoutputreference", - "community": 152, + "community": 358, "norm_label": "commandoutputreference()" }, { @@ -274859,7 +274859,7 @@ "source_location": "L89", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands_publicdevicecommand", - "community": 152, + "community": 358, "norm_label": "publicdevicecommand" }, { @@ -274869,7 +274869,7 @@ "source_location": "L107", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands_commandstatus", - "community": 152, + "community": 358, "norm_label": "commandstatus()" }, { @@ -274879,7 +274879,7 @@ "source_location": "L110", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands_commandapprovalstate", - "community": 152, + "community": 358, "norm_label": "commandapprovalstate()" }, { @@ -274889,7 +274889,7 @@ "source_location": "L136", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands_createcommandinput", - "community": 152, + "community": 358, "norm_label": "createcommandinput" }, { @@ -274899,7 +274899,7 @@ "source_location": "L144", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands_preparedcommand", - "community": 152, + "community": 358, "norm_label": "preparedcommand" }, { @@ -274909,7 +274909,7 @@ "source_location": "L151", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands_preparecommand", - "community": 152, + "community": 358, "norm_label": "preparecommand()" }, { @@ -274919,7 +274919,7 @@ "source_location": "L205", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands_reconcilecommand", - "community": 152, + "community": 358, "norm_label": "reconcilecommand()" }, { @@ -274929,7 +274929,7 @@ "source_location": "L210", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands_createdevicecommand", - "community": 152, + "community": 358, "norm_label": "createdevicecommand()" }, { @@ -274939,7 +274939,7 @@ "source_location": "L419", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands_listdevicecommands", - "community": 152, + "community": 358, "norm_label": "listdevicecommands()" }, { @@ -274949,7 +274949,7 @@ "source_location": "L439", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands_leasehash", - "community": 152, + "community": 358, "norm_label": "leasehash()" }, { @@ -274959,7 +274959,7 @@ "source_location": "L441", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands_markoneexpiredleaseneedsreview", - "community": 152, + "community": 358, "norm_label": "markoneexpiredleaseneedsreview()" }, { @@ -274969,7 +274969,7 @@ "source_location": "L485", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands_markexpiredleasesneedsreview", - "community": 152, + "community": 358, "norm_label": "markexpiredleasesneedsreview()" }, { @@ -274979,7 +274979,7 @@ "source_location": "L504", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands_nodedevicecommand", - "community": 152, + "community": 358, "norm_label": "nodedevicecommand" }, { @@ -274989,7 +274989,7 @@ "source_location": "L506", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands_claimnextdevicecommand", - "community": 152, + "community": 358, "norm_label": "claimnextdevicecommand()" }, { @@ -274999,7 +274999,7 @@ "source_location": "L560", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands_heartbeatdevicecommand", - "community": 152, + "community": 358, "norm_label": "heartbeatdevicecommand()" }, { @@ -275009,7 +275009,7 @@ "source_location": "L591", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands_reportdevicecommand", - "community": 152, + "community": 358, "norm_label": "reportdevicecommand()" }, { @@ -275019,7 +275019,7 @@ "source_location": "L684", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands_publicdeviceapproval", - "community": 152, + "community": 358, "norm_label": "publicdeviceapproval" }, { @@ -275029,7 +275029,7 @@ "source_location": "L697", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands_publicapproval", - "community": 152, + "community": 358, "norm_label": "publicapproval()" }, { @@ -275039,7 +275039,7 @@ "source_location": "L710", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands_expirependingapprovalsinsession", - "community": 152, + "community": 358, "norm_label": "expirependingapprovalsinsession()" }, { @@ -275049,7 +275049,7 @@ "source_location": "L803", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands_reservependingapprovalslot", - "community": 152, + "community": 358, "norm_label": "reservependingapprovalslot()" }, { @@ -275059,7 +275059,7 @@ "source_location": "L826", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands_expirependingapprovals", - "community": 152, + "community": 358, "norm_label": "expirependingapprovals()" }, { @@ -275069,7 +275069,7 @@ "source_location": "L831", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands_requestdeviceapproval", - "community": 152, + "community": 358, "norm_label": "requestdeviceapproval()" }, { @@ -275079,7 +275079,7 @@ "source_location": "L950", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands_listdeviceapprovals", - "community": 152, + "community": 358, "norm_label": "listdeviceapprovals()" }, { @@ -275089,7 +275089,7 @@ "source_location": "L970", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands_decidedeviceapproval", - "community": 152, + "community": 358, "norm_label": "decidedeviceapproval()" }, { @@ -275099,7 +275099,7 @@ "source_location": "L1090", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecommands_listnodeapprovaldecisions", - "community": 152, + "community": 358, "norm_label": "listnodeapprovaldecisions()" }, { @@ -275109,7 +275109,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecontracts", - "community": 142, + "community": 358, "norm_label": "devicecontracts.ts" }, { @@ -275119,7 +275119,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecontracts_devicepairingpreparerequest", - "community": 142, + "community": 358, "norm_label": "devicepairingpreparerequest" }, { @@ -275129,7 +275129,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecontracts_devicepairingcompleterequest", - "community": 142, + "community": 358, "norm_label": "devicepairingcompleterequest" }, { @@ -275139,7 +275139,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecontracts_devicepairingclaimrequest", - "community": 142, + "community": 358, "norm_label": "devicepairingclaimrequest" }, { @@ -275149,7 +275149,7 @@ "source_location": "L33", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecontracts_devicepairingclaimresponse", - "community": 142, + "community": 358, "norm_label": "devicepairingclaimresponse" }, { @@ -275159,7 +275159,7 @@ "source_location": "L45", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecontracts_devicenodestaterequest", - "community": 142, + "community": 358, "norm_label": "devicenodestaterequest" }, { @@ -275169,7 +275169,7 @@ "source_location": "L51", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecontracts_devicenodestateresponse", - "community": 142, + "community": 358, "norm_label": "devicenodestateresponse" }, { @@ -275179,7 +275179,7 @@ "source_location": "L58", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecontracts_devicenodecommandrequest", - "community": 142, + "community": 358, "norm_label": "devicenodecommandrequest" }, { @@ -275189,7 +275189,7 @@ "source_location": "L82", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecontracts_devicenodecommandresponse", - "community": 142, + "community": 358, "norm_label": "devicenodecommandresponse" }, { @@ -275199,7 +275199,7 @@ "source_location": "L94", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecontracts_devicecreatecommandrequest", - "community": 142, + "community": 358, "norm_label": "devicecreatecommandrequest" }, { @@ -275219,7 +275219,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore", - "community": 138, + "community": 358, "norm_label": "devicecore.ts" }, { @@ -275239,7 +275239,7 @@ "source_location": "L63", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_devicecommandkind", - "community": 138, + "community": 358, "norm_label": "devicecommandkind" }, { @@ -275279,7 +275279,7 @@ "source_location": "L77", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_always_approval_device_commands", - "community": 152, + "community": 358, "norm_label": "always_approval_device_commands" }, { @@ -275289,7 +275289,7 @@ "source_location": "L97", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_devicecommandrequiresapproval", - "community": 152, + "community": 358, "norm_label": "devicecommandrequiresapproval()" }, { @@ -275309,7 +275309,7 @@ "source_location": "L106", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_device_command_statuses", - "community": 138, + "community": 358, "norm_label": "device_command_statuses" }, { @@ -275319,7 +275319,7 @@ "source_location": "L117", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_devicecommandstatus", - "community": 138, + "community": 358, "norm_label": "devicecommandstatus" }, { @@ -275329,7 +275329,7 @@ "source_location": "L119", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_device_command_approval_states", - "community": 138, + "community": 358, "norm_label": "device_command_approval_states" }, { @@ -275339,7 +275339,7 @@ "source_location": "L120", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_devicecommandapprovalstate", - "community": 138, + "community": 358, "norm_label": "devicecommandapprovalstate" }, { @@ -275349,7 +275349,7 @@ "source_location": "L122", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_device_approval_statuses", - "community": 138, + "community": 358, "norm_label": "device_approval_statuses" }, { @@ -275359,7 +275359,7 @@ "source_location": "L123", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_deviceapprovalstatus", - "community": 138, + "community": 358, "norm_label": "deviceapprovalstatus" }, { @@ -275369,7 +275369,7 @@ "source_location": "L125", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_device_screen_statuses", - "community": 138, + "community": 358, "norm_label": "device_screen_statuses" }, { @@ -275379,7 +275379,7 @@ "source_location": "L126", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_devicescreenstatus", - "community": 138, + "community": 358, "norm_label": "devicescreenstatus" }, { @@ -275389,7 +275389,7 @@ "source_location": "L128", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_devicefail", - "community": 152, + "community": 358, "norm_label": "devicefail" }, { @@ -275399,7 +275399,7 @@ "source_location": "L131", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_bounded", - "community": 138, + "community": 358, "norm_label": "bounded()" }, { @@ -275409,7 +275409,7 @@ "source_location": "L133", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_containsunsafeinputcontrol", - "community": 138, + "community": 358, "norm_label": "containsunsafeinputcontrol()" }, { @@ -275419,7 +275419,7 @@ "source_location": "L138", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_normalizedscalar", - "community": 138, + "community": 358, "norm_label": "normalizedscalar()" }, { @@ -275429,7 +275429,7 @@ "source_location": "L145", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_stablevalue", - "community": 138, + "community": 358, "norm_label": "stablevalue()" }, { @@ -275439,7 +275439,7 @@ "source_location": "L158", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_stabledevicejson", - "community": 138, + "community": 358, "norm_label": "stabledevicejson()" }, { @@ -275449,7 +275449,7 @@ "source_location": "L160", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_devicehash", - "community": 164, + "community": 358, "norm_label": "devicehash()" }, { @@ -275459,7 +275459,7 @@ "source_location": "L166", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_devicepayloadhash", - "community": 164, + "community": 358, "norm_label": "devicepayloadhash()" }, { @@ -275479,7 +275479,7 @@ "source_location": "L176", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_normalizedevicedescriptor", - "community": 41, + "community": 358, "norm_label": "normalizedevicedescriptor()" }, { @@ -275489,7 +275489,7 @@ "source_location": "L195", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_deviceopenapp", - "community": 138, + "community": 358, "norm_label": "deviceopenapp" }, { @@ -275499,7 +275499,7 @@ "source_location": "L197", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_deviceaudiodevice", - "community": 138, + "community": 358, "norm_label": "deviceaudiodevice" }, { @@ -275509,7 +275509,7 @@ "source_location": "L207", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_devicewifistate", - "community": 138, + "community": 358, "norm_label": "devicewifistate" }, { @@ -275519,7 +275519,7 @@ "source_location": "L208", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_devicedisplaymode", - "community": 138, + "community": 358, "norm_label": "devicedisplaymode" }, { @@ -275529,7 +275529,7 @@ "source_location": "L209", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_devicedisplay", - "community": 138, + "community": 358, "norm_label": "devicedisplay" }, { @@ -275539,7 +275539,7 @@ "source_location": "L224", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_deviceprinter", - "community": 138, + "community": 358, "norm_label": "deviceprinter" }, { @@ -275549,7 +275549,7 @@ "source_location": "L225", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_devicecamera", - "community": 138, + "community": 358, "norm_label": "devicecamera" }, { @@ -275559,7 +275559,7 @@ "source_location": "L226", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_devicebluetoothdevice", - "community": 138, + "community": 358, "norm_label": "devicebluetoothdevice" }, { @@ -275569,7 +275569,7 @@ "source_location": "L227", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_devicevpnservice", - "community": 138, + "community": 358, "norm_label": "devicevpnservice" }, { @@ -275579,7 +275579,7 @@ "source_location": "L228", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_devicebatterystate", - "community": 138, + "community": 358, "norm_label": "devicebatterystate" }, { @@ -275589,7 +275589,7 @@ "source_location": "L229", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_devicepowertimersstate", - "community": 138, + "community": 358, "norm_label": "devicepowertimersstate" }, { @@ -275599,7 +275599,7 @@ "source_location": "L230", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_deviceapplemusicstate", - "community": 138, + "community": 358, "norm_label": "deviceapplemusicstate" }, { @@ -275609,7 +275609,7 @@ "source_location": "L231", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_devicespotifystate", - "community": 138, + "community": 358, "norm_label": "devicespotifystate" }, { @@ -275619,7 +275619,7 @@ "source_location": "L232", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_devicechromeyoutubestate", - "community": 138, + "community": 358, "norm_label": "devicechromeyoutubestate" }, { @@ -275639,7 +275639,7 @@ "source_location": "L257", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_unitinterval", - "community": 138, + "community": 358, "norm_label": "unitinterval()" }, { @@ -275649,7 +275649,7 @@ "source_location": "L262", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_boundedinteger", - "community": 138, + "community": 358, "norm_label": "boundedinteger()" }, { @@ -275659,7 +275659,7 @@ "source_location": "L267", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_normalizedisplaymode", - "community": 138, + "community": 358, "norm_label": "normalizedisplaymode()" }, { @@ -275669,7 +275669,7 @@ "source_location": "L279", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_normalizenameddevicelist", - "community": 138, + "community": 358, "norm_label": "normalizenameddevicelist()" }, { @@ -275679,7 +275679,7 @@ "source_location": "L299", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_normalizedevicestate", - "community": 138, + "community": 358, "norm_label": "normalizedevicestate()" }, { @@ -275709,7 +275709,7 @@ "source_location": "L514", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_deviceconnectorcapability", - "community": 138, + "community": 358, "norm_label": "deviceconnectorcapability" }, { @@ -275719,7 +275719,7 @@ "source_location": "L516", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_device_connector_capability_set", - "community": 138, + "community": 358, "norm_label": "device_connector_capability_set" }, { @@ -275729,7 +275729,7 @@ "source_location": "L517", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_device_connector_capability_aliases", - "community": 138, + "community": 358, "norm_label": "device_connector_capability_aliases" }, { @@ -275739,7 +275739,7 @@ "source_location": "L533", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_normalizedeviceconnectorcapability", - "community": 138, + "community": 358, "norm_label": "normalizedeviceconnectorcapability()" }, { @@ -275749,7 +275749,7 @@ "source_location": "L544", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_deviceconnectorprojectreference", - "community": 138, + "community": 358, "norm_label": "deviceconnectorprojectreference" }, { @@ -275779,7 +275779,7 @@ "source_location": "L612", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_forbidden_persisted_keys", - "community": 138, + "community": 358, "norm_label": "forbidden_persisted_keys" }, { @@ -275789,7 +275789,7 @@ "source_location": "L614", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_sanitizejsonvalue", - "community": 138, + "community": 358, "norm_label": "sanitizejsonvalue()" }, { @@ -275799,7 +275799,7 @@ "source_location": "L646", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_normalizecommandinput", - "community": 138, + "community": 358, "norm_label": "normalizecommandinput()" }, { @@ -275809,7 +275809,7 @@ "source_location": "L657", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_normalizecommandkind", - "community": 152, + "community": 358, "norm_label": "normalizecommandkind()" }, { @@ -275819,7 +275819,7 @@ "source_location": "L660", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_connectorinput", - "community": 138, + "community": 358, "norm_label": "connectorinput" }, { @@ -275829,7 +275829,7 @@ "source_location": "L661", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_cursorpageinput", - "community": 138, + "community": 358, "norm_label": "cursorpageinput" }, { @@ -275839,7 +275839,7 @@ "source_location": "L663", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_devicecommandinputbykind", - "community": 138, + "community": 358, "norm_label": "devicecommandinputbykind" }, { @@ -275849,7 +275849,7 @@ "source_location": "L725", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_devicecommandenvelope", - "community": 138, + "community": 358, "norm_label": "devicecommandenvelope" }, { @@ -275859,7 +275859,7 @@ "source_location": "L729", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_hasconnectorcapability", - "community": 138, + "community": 358, "norm_label": "hasconnectorcapability()" }, { @@ -275869,7 +275869,7 @@ "source_location": "L740", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_deviceconnectorsupportscommand", - "community": 138, + "community": 358, "norm_label": "deviceconnectorsupportscommand()" }, { @@ -275879,7 +275879,7 @@ "source_location": "L768", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_device_command_capability", - "community": 138, + "community": 358, "norm_label": "device_command_capability" }, { @@ -275889,7 +275889,7 @@ "source_location": "L820", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_device_capability_aliases", - "community": 138, + "community": 358, "norm_label": "device_capability_aliases" }, { @@ -275909,7 +275909,7 @@ "source_location": "L896", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_opaqueid", - "community": 138, + "community": 358, "norm_label": "opaqueid()" }, { @@ -275919,7 +275919,7 @@ "source_location": "L901", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_opaquecursor", - "community": 138, + "community": 358, "norm_label": "opaquecursor()" }, { @@ -275929,7 +275929,7 @@ "source_location": "L906", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_commandmessagetext", - "community": 138, + "community": 358, "norm_label": "commandmessagetext()" }, { @@ -275939,7 +275939,7 @@ "source_location": "L916", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_exactkeys", - "community": 138, + "community": 358, "norm_label": "exactkeys()" }, { @@ -275949,7 +275949,7 @@ "source_location": "L918", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_optionalpage", - "community": 138, + "community": 358, "norm_label": "optionalpage()" }, { @@ -275959,7 +275959,7 @@ "source_location": "L933", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_normalizedevicecommand", - "community": 138, + "community": 358, "norm_label": "normalizedevicecommand()" }, { @@ -275969,7 +275969,7 @@ "source_location": "L1199", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_normalizerequestid", - "community": 152, + "community": 358, "norm_label": "normalizerequestid()" }, { @@ -275979,7 +275979,7 @@ "source_location": "L1204", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_transitions", - "community": 138, + "community": 358, "norm_label": "transitions" }, { @@ -276009,7 +276009,7 @@ "source_location": "L1220", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_revisiondecision", - "community": 138, + "community": 358, "norm_label": "revisiondecision" }, { @@ -276019,7 +276019,7 @@ "source_location": "L1221", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_decidedevicerevision", - "community": 164, + "community": 358, "norm_label": "decidedevicerevision()" }, { @@ -276029,7 +276029,7 @@ "source_location": "L1233", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_devicesnapshothash", - "community": 164, + "community": 358, "norm_label": "devicesnapshothash()" }, { @@ -276039,7 +276039,7 @@ "source_location": "L1236", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_deviceleasedecision", - "community": 138, + "community": 358, "norm_label": "deviceleasedecision" }, { @@ -276049,7 +276049,7 @@ "source_location": "L1237", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_decidedevicelease", - "community": 152, + "community": 358, "norm_label": "decidedevicelease()" }, { @@ -276059,7 +276059,7 @@ "source_location": "L1243", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_devicecontroleventlogicalbytes", - "community": 152, + "community": 358, "norm_label": "devicecontroleventlogicalbytes()" }, { @@ -276079,7 +276079,7 @@ "source_location": "L1260", "_origin": "ast", "id": "remix_app_api_utils_devices_devicecore_deviceeventcursor", - "community": 138, + "community": 358, "norm_label": "deviceeventcursor" }, { @@ -276109,7 +276109,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveai", - "community": 164, + "community": 358, "norm_label": "deviceliveai.ts" }, { @@ -276119,7 +276119,7 @@ "source_location": "L45", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveai_deviceliveconnectorcontext", - "community": 164, + "community": 358, "norm_label": "deviceliveconnectorcontext" }, { @@ -276129,7 +276129,7 @@ "source_location": "L54", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveai_devicelivesyncerror", - "community": 164, + "community": 358, "norm_label": "devicelivesyncerror" }, { @@ -276139,7 +276139,7 @@ "source_location": "L57", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveai_devicelivesyncerror_constructor", - "community": 164, + "community": 358, "norm_label": ".constructor()" }, { @@ -276149,7 +276149,7 @@ "source_location": "L64", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveai_stableshareid", - "community": 164, + "community": 358, "norm_label": "stableshareid()" }, { @@ -276159,7 +276159,7 @@ "source_location": "L66", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveai_safedate", - "community": 164, + "community": 358, "norm_label": "safedate()" }, { @@ -276169,7 +276169,7 @@ "source_location": "L72", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveai_livescope", - "community": 164, + "community": 358, "norm_label": "livescope()" }, { @@ -276179,7 +276179,7 @@ "source_location": "L75", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveai_visiblecontroltext", - "community": 164, + "community": 358, "norm_label": "visiblecontroltext()" }, { @@ -276189,7 +276189,7 @@ "source_location": "L77", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveai_deltaguardevent", - "community": 164, + "community": 358, "norm_label": "deltaguardevent()" }, { @@ -276199,7 +276199,7 @@ "source_location": "L84", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveai_applydeltaguardevent", - "community": 164, + "community": 358, "norm_label": "applydeltaguardevent()" }, { @@ -276209,7 +276209,7 @@ "source_location": "L93", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveai_rebuilddeltaguardtails", - "community": 164, + "community": 358, "norm_label": "rebuilddeltaguardtails()" }, { @@ -276219,7 +276219,7 @@ "source_location": "L141", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveai_livecontrolretainedbytes", - "community": 164, + "community": 358, "norm_label": "livecontrolretainedbytes()" }, { @@ -276229,7 +276229,7 @@ "source_location": "L144", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveai_prunelivecontrolevents", - "community": 164, + "community": 358, "norm_label": "prunelivecontrolevents()" }, { @@ -276239,7 +276239,7 @@ "source_location": "L175", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveai_livechatkey", - "community": 164, + "community": 358, "norm_label": "livechatkey()" }, { @@ -276249,7 +276249,7 @@ "source_location": "L178", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveai_liveconnectionkey", - "community": 164, + "community": 358, "norm_label": "liveconnectionkey()" }, { @@ -276259,7 +276259,7 @@ "source_location": "L181", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveai_livesourceprojection", - "community": 164, + "community": 358, "norm_label": "livesourceprojection()" }, { @@ -276269,7 +276269,7 @@ "source_location": "L195", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveai_preservedhistoryprogress", - "community": 164, + "community": 358, "norm_label": "preservedhistoryprogress()" }, { @@ -276279,7 +276279,7 @@ "source_location": "L217", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveai_ensureliveconnection", - "community": 164, + "community": 358, "norm_label": "ensureliveconnection()" }, { @@ -276299,7 +276299,7 @@ "source_location": "L302", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveai_upsertlivesessions", - "community": 164, + "community": 358, "norm_label": "upsertlivesessions()" }, { @@ -276309,7 +276309,7 @@ "source_location": "L382", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveai_livemessagerootkey", - "community": 164, + "community": 358, "norm_label": "livemessagerootkey()" }, { @@ -276319,7 +276319,7 @@ "source_location": "L385", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveai_reconcilelivemessages", - "community": 164, + "community": 358, "norm_label": "reconcilelivemessages()" }, { @@ -276329,7 +276329,7 @@ "source_location": "L516", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveai_recordlivetranscriptprogress", - "community": 164, + "community": 358, "norm_label": "recordlivetranscriptprogress()" }, { @@ -276339,7 +276339,7 @@ "source_location": "L569", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveai_reconcileliveactivities", - "community": 164, + "community": 358, "norm_label": "reconcileliveactivities()" }, { @@ -276349,7 +276349,7 @@ "source_location": "L672", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveai_liveeventpayload", - "community": 164, + "community": 358, "norm_label": "liveeventpayload()" }, { @@ -276359,7 +276359,7 @@ "source_location": "L693", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveai_appendliveevents", - "community": 164, + "community": 358, "norm_label": "appendliveevents()" }, { @@ -276369,7 +276369,7 @@ "source_location": "L830", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveai_redactsubmittedcommandinputs", - "community": 164, + "community": 358, "norm_label": "redactsubmittedcommandinputs()" }, { @@ -276379,7 +276379,7 @@ "source_location": "L888", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveai_syncdeviceliveai", - "community": 6, + "community": 358, "norm_label": "syncdeviceliveai()" }, { @@ -276389,7 +276389,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_test", - "community": 164, + "community": 358, "norm_label": "deviceliveaicore.test.ts" }, { @@ -276399,7 +276399,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore", - "community": 142, + "community": 358, "norm_label": "deviceliveaicore.ts" }, { @@ -276409,7 +276409,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_deviceliveproviderforconnectorkind", - "community": 3, + "community": 358, "norm_label": "deviceliveproviderforconnectorkind()" }, { @@ -276419,7 +276419,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_deviceliveexternalnamespace", - "community": 164, + "community": 358, "norm_label": "deviceliveexternalnamespace()" }, { @@ -276429,7 +276429,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_device_live_session_states", - "community": 142, + "community": 358, "norm_label": "device_live_session_states" }, { @@ -276439,7 +276439,7 @@ "source_location": "L17", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_devicelivesessionstate", - "community": 142, + "community": 358, "norm_label": "devicelivesessionstate" }, { @@ -276449,7 +276449,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_device_live_transcript_activity_types", - "community": 142, + "community": 358, "norm_label": "device_live_transcript_activity_types" }, { @@ -276459,7 +276459,7 @@ "source_location": "L20", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_devicelivetranscriptactivitytype", - "community": 142, + "community": 358, "norm_label": "devicelivetranscriptactivitytype" }, { @@ -276469,7 +276469,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_device_live_item_activity_types", - "community": 142, + "community": 358, "norm_label": "device_live_item_activity_types" }, { @@ -276479,7 +276479,7 @@ "source_location": "L23", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_deviceliveitemactivitytype", - "community": 142, + "community": 358, "norm_label": "deviceliveitemactivitytype" }, { @@ -276489,7 +276489,7 @@ "source_location": "L25", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_device_live_event_types", - "community": 142, + "community": 358, "norm_label": "device_live_event_types" }, { @@ -276499,7 +276499,7 @@ "source_location": "L38", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_deviceliveeventtype", - "community": 142, + "community": 358, "norm_label": "deviceliveeventtype" }, { @@ -276509,7 +276509,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_devicelivesessionsummary", - "community": 142, + "community": 358, "norm_label": "devicelivesessionsummary" }, { @@ -276519,7 +276519,7 @@ "source_location": "L51", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_devicelivemessageenvelope", - "community": 142, + "community": 358, "norm_label": "devicelivemessageenvelope" }, { @@ -276529,7 +276529,7 @@ "source_location": "L60", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_devicelivetranscriptmessage", - "community": 142, + "community": 358, "norm_label": "devicelivetranscriptmessage" }, { @@ -276539,7 +276539,7 @@ "source_location": "L64", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_devicelivetranscriptactivity", - "community": 142, + "community": 358, "norm_label": "devicelivetranscriptactivity" }, { @@ -276549,7 +276549,7 @@ "source_location": "L75", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_devicelivetranscriptentry", - "community": 142, + "community": 358, "norm_label": "devicelivetranscriptentry" }, { @@ -276559,7 +276559,7 @@ "source_location": "L77", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_livetranscriptrevisionhash", - "community": 164, + "community": 358, "norm_label": "livetranscriptrevisionhash()" }, { @@ -276569,7 +276569,7 @@ "source_location": "L85", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_decidelivetranscriptrevision", - "community": 164, + "community": 358, "norm_label": "decidelivetranscriptrevision()" }, { @@ -276579,7 +276579,7 @@ "source_location": "L91", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_livetranscriptactivityrevisionhash", - "community": 164, + "community": 358, "norm_label": "livetranscriptactivityrevisionhash()" }, { @@ -276589,7 +276589,7 @@ "source_location": "L100", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_decidelivetranscriptactivityrevision", - "community": 164, + "community": 358, "norm_label": "decidelivetranscriptactivityrevision()" }, { @@ -276599,7 +276599,7 @@ "source_location": "L106", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_stalelivesegmentindexes", - "community": 164, + "community": 358, "norm_label": "stalelivesegmentindexes()" }, { @@ -276609,7 +276609,7 @@ "source_location": "L112", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_splitlivemessagetext", - "community": 164, + "community": 358, "norm_label": "splitlivemessagetext()" }, { @@ -276619,7 +276619,7 @@ "source_location": "L135", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_devicelivetranscriptpage", - "community": 142, + "community": 358, "norm_label": "devicelivetranscriptpage" }, { @@ -276629,7 +276629,7 @@ "source_location": "L141", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_deviceliveeventbase", - "community": 142, + "community": 358, "norm_label": "deviceliveeventbase" }, { @@ -276639,7 +276639,7 @@ "source_location": "L149", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_devicelivesafeturn", - "community": 142, + "community": 358, "norm_label": "devicelivesafeturn" }, { @@ -276649,7 +276649,7 @@ "source_location": "L154", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_devicelivesafevisibleitem", - "community": 142, + "community": 358, "norm_label": "devicelivesafevisibleitem" }, { @@ -276659,7 +276659,7 @@ "source_location": "L160", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_devicelivesafeactivityitem", - "community": 142, + "community": 358, "norm_label": "devicelivesafeactivityitem" }, { @@ -276669,7 +276669,7 @@ "source_location": "L168", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_devicelivesafeitem", - "community": 142, + "community": 358, "norm_label": "devicelivesafeitem" }, { @@ -276679,7 +276679,7 @@ "source_location": "L170", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_deviceliveconnectorevent", - "community": 142, + "community": 358, "norm_label": "deviceliveconnectorevent" }, { @@ -276689,7 +276689,7 @@ "source_location": "L206", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_devicelivematerializedmessages", - "community": 164, + "community": 358, "norm_label": "devicelivematerializedmessages()" }, { @@ -276699,7 +276699,7 @@ "source_location": "L213", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_devicenodelivesyncrequest", - "community": 142, + "community": 358, "norm_label": "devicenodelivesyncrequest" }, { @@ -276709,7 +276709,7 @@ "source_location": "L229", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_devicenodelivesyncresponse", - "community": 142, + "community": 358, "norm_label": "devicenodelivesyncresponse" }, { @@ -276719,7 +276719,7 @@ "source_location": "L260", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_devicelivereplaydecision", - "community": 142, + "community": 358, "norm_label": "devicelivereplaydecision" }, { @@ -276729,7 +276729,7 @@ "source_location": "L267", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_decidedevicelivereplay", - "community": 164, + "community": 358, "norm_label": "decidedevicelivereplay()" }, { @@ -276739,7 +276739,7 @@ "source_location": "L287", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_exactkeys", - "community": 142, + "community": 358, "norm_label": "exactkeys()" }, { @@ -276749,7 +276749,7 @@ "source_location": "L289", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_haskeys", - "community": 142, + "community": 358, "norm_label": "haskeys()" }, { @@ -276759,7 +276759,7 @@ "source_location": "L292", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_uniquestrings", - "community": 142, + "community": 358, "norm_label": "uniquestrings()" }, { @@ -276769,7 +276769,7 @@ "source_location": "L294", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_opaque", - "community": 142, + "community": 358, "norm_label": "opaque()" }, { @@ -276779,7 +276779,7 @@ "source_location": "L305", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_hasforbiddentextcontrol", - "community": 142, + "community": 358, "norm_label": "hasforbiddentextcontrol()" }, { @@ -276789,7 +276789,7 @@ "source_location": "L321", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_devicelivedeltaguardtail", - "community": 142, + "community": 358, "norm_label": "devicelivedeltaguardtail" }, { @@ -276799,7 +276799,7 @@ "source_location": "L327", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_devicelivedeltaguardevent", - "community": 142, + "community": 358, "norm_label": "devicelivedeltaguardevent" }, { @@ -276809,7 +276809,7 @@ "source_location": "L334", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_devicelivetextcontainsinternalcontext", - "community": 142, + "community": 358, "norm_label": "devicelivetextcontainsinternalcontext()" }, { @@ -276819,7 +276819,7 @@ "source_location": "L337", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_nextdevicelivedeltaguardtail", - "community": 164, + "community": 358, "norm_label": "nextdevicelivedeltaguardtail()" }, { @@ -276829,7 +276829,7 @@ "source_location": "L342", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_normalizedevicelivedeltaguardtails", - "community": 142, + "community": 358, "norm_label": "normalizedevicelivedeltaguardtails()" }, { @@ -276839,7 +276839,7 @@ "source_location": "L370", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_advancedevicelivedeltaguardtails", - "community": 164, + "community": 358, "norm_label": "advancedevicelivedeltaguardtails()" }, { @@ -276849,7 +276849,7 @@ "source_location": "L395", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_boundedpreservedtext", - "community": 142, + "community": 358, "norm_label": "boundedpreservedtext()" }, { @@ -276859,7 +276859,7 @@ "source_location": "L402", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_boundedtext", - "community": 142, + "community": 358, "norm_label": "boundedtext()" }, { @@ -276869,7 +276869,7 @@ "source_location": "L409", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_boundeddelta", - "community": 142, + "community": 358, "norm_label": "boundeddelta()" }, { @@ -276879,7 +276879,7 @@ "source_location": "L414", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_boundedmessagetext", - "community": 142, + "community": 358, "norm_label": "boundedmessagetext()" }, { @@ -276889,7 +276889,7 @@ "source_location": "L419", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_revision", - "community": 142, + "community": 358, "norm_label": "revision()" }, { @@ -276899,7 +276899,7 @@ "source_location": "L421", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_timestamp", - "community": 142, + "community": 358, "norm_label": "timestamp()" }, { @@ -276909,7 +276909,7 @@ "source_location": "L431", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_nullableopaque", - "community": 142, + "community": 358, "norm_label": "nullableopaque()" }, { @@ -276919,7 +276919,7 @@ "source_location": "L436", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_nullablecursor", - "community": 142, + "community": 358, "norm_label": "nullablecursor()" }, { @@ -276929,7 +276929,7 @@ "source_location": "L442", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_normalizesession", - "community": 142, + "community": 358, "norm_label": "normalizesession()" }, { @@ -276939,7 +276939,7 @@ "source_location": "L460", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_normalizemessageenvelope", - "community": 142, + "community": 358, "norm_label": "normalizemessageenvelope()" }, { @@ -276949,7 +276949,7 @@ "source_location": "L476", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_normalizetranscriptmessage", - "community": 142, + "community": 358, "norm_label": "normalizetranscriptmessage()" }, { @@ -276959,7 +276959,7 @@ "source_location": "L491", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_normalizetranscriptactivity", - "community": 142, + "community": 358, "norm_label": "normalizetranscriptactivity()" }, { @@ -276969,7 +276969,7 @@ "source_location": "L510", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_normalizepage", - "community": 142, + "community": 358, "norm_label": "normalizepage()" }, { @@ -276979,7 +276979,7 @@ "source_location": "L525", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_normalizesafeturn", - "community": 142, + "community": 358, "norm_label": "normalizesafeturn()" }, { @@ -276989,7 +276989,7 @@ "source_location": "L534", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_normalizesafeitem", - "community": 142, + "community": 358, "norm_label": "normalizesafeitem()" }, { @@ -276999,7 +276999,7 @@ "source_location": "L555", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_normalizeevent", - "community": 142, + "community": 358, "norm_label": "normalizeevent()" }, { @@ -277009,7 +277009,7 @@ "source_location": "L693", "_origin": "ast", "id": "remix_app_api_utils_devices_deviceliveaicore_normalizedevicenodelivesyncrequest", - "community": 142, + "community": 358, "norm_label": "normalizedevicenodelivesyncrequest()" }, { @@ -277019,7 +277019,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_devices_devicescreens", - "community": 152, + "community": 358, "norm_label": "devicescreens.ts" }, { @@ -277029,7 +277029,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_api_utils_devices_devicescreens_home_accounting", - "community": 152, + "community": 358, "norm_label": "home_accounting" }, { @@ -277039,7 +277039,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_api_utils_devices_devicescreens_bounded", - "community": 152, + "community": 358, "norm_label": "bounded()" }, { @@ -277049,7 +277049,7 @@ "source_location": "L21", "_origin": "ast", "id": "remix_app_api_utils_devices_devicescreens_iso", - "community": 152, + "community": 358, "norm_label": "iso()" }, { @@ -277059,7 +277059,7 @@ "source_location": "L27", "_origin": "ast", "id": "remix_app_api_utils_devices_devicescreens_publicdevicescreensession", - "community": 152, + "community": 358, "norm_label": "publicdevicescreensession" }, { @@ -277069,7 +277069,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_api_utils_devices_devicescreens_publicscreen", - "community": 152, + "community": 358, "norm_label": "publicscreen()" }, { @@ -277079,7 +277079,7 @@ "source_location": "L53", "_origin": "ast", "id": "remix_app_api_utils_devices_devicescreens_listdevicescreensessions", - "community": 152, + "community": 358, "norm_label": "listdevicescreensessions()" }, { @@ -277089,7 +277089,7 @@ "source_location": "L70", "_origin": "ast", "id": "remix_app_api_utils_devices_devicescreens_startdevicescreensession", - "community": 152, + "community": 358, "norm_label": "startdevicescreensession()" }, { @@ -277099,7 +277099,7 @@ "source_location": "L139", "_origin": "ast", "id": "remix_app_api_utils_devices_devicescreens_stopdevicescreensession", - "community": 152, + "community": 358, "norm_label": "stopdevicescreensession()" }, { @@ -277109,7 +277109,7 @@ "source_location": "L185", "_origin": "ast", "id": "remix_app_api_utils_devices_devicescreens_updatedevicescreensession", - "community": 152, + "community": 358, "norm_label": "updatedevicescreensession()" }, { @@ -277159,7 +277159,7 @@ "source_location": "L74", "_origin": "ast", "id": "remix_app_api_utils_devices_devices_newdevicething", - "community": 152, + "community": 358, "norm_label": "newdevicething()" }, { @@ -277239,7 +277239,7 @@ "source_location": "L199", "_origin": "ast", "id": "remix_app_api_utils_devices_devices_devicecontroleventscopekey", - "community": 164, + "community": 358, "norm_label": "devicecontroleventscopekey()" }, { @@ -277259,7 +277259,7 @@ "source_location": "L206", "_origin": "ast", "id": "remix_app_api_utils_devices_devices_prunedevicecontroleventscope", - "community": 164, + "community": 358, "norm_label": "prunedevicecontroleventscope()" }, { @@ -277269,7 +277269,7 @@ "source_location": "L249", "_origin": "ast", "id": "remix_app_api_utils_devices_devices_appenddeviceevent", - "community": 152, + "community": 358, "norm_label": "appenddeviceevent()" }, { @@ -277359,7 +277359,7 @@ "source_location": "L596", "_origin": "ast", "id": "remix_app_api_utils_devices_devices_setdevicepermissionmode", - "community": 152, + "community": 358, "norm_label": "setdevicepermissionmode()" }, { @@ -277399,7 +277399,7 @@ "source_location": "L807", "_origin": "ast", "id": "remix_app_api_utils_devices_devices_updatedevicestate", - "community": 164, + "community": 358, "norm_label": "updatedevicestate()" }, { @@ -277519,7 +277519,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_email_events", - "community": 50, + "community": 646, "norm_label": "events.ts" }, { @@ -277529,7 +277529,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_api_utils_email_events_emaileventinput", - "community": 50, + "community": 646, "norm_label": "emaileventinput" }, { @@ -277539,7 +277539,7 @@ "source_location": "L15", "_origin": "ast", "id": "remix_app_api_utils_email_events_normalizeemail", - "community": 50, + "community": 646, "norm_label": "normalizeemail()" }, { @@ -277549,7 +277549,7 @@ "source_location": "L17", "_origin": "ast", "id": "remix_app_api_utils_email_events_recordemailevent", - "community": 50, + "community": 646, "norm_label": "recordemailevent()" }, { @@ -277559,7 +277559,7 @@ "source_location": "L32", "_origin": "ast", "id": "remix_app_api_utils_email_events_suppressemailaddress", - "community": 50, + "community": 646, "norm_label": "suppressemailaddress()" }, { @@ -277569,7 +277569,7 @@ "source_location": "L60", "_origin": "ast", "id": "remix_app_api_utils_email_events_unsubscribeemailaddress", - "community": 50, + "community": 646, "norm_label": "unsubscribeemailaddress()" }, { @@ -277619,7 +277619,7 @@ "source_location": "L21", "_origin": "ast", "id": "remix_app_api_utils_email_service_getsuppressedrecipients", - "community": 50, + "community": 646, "norm_label": "getsuppressedrecipients()" }, { @@ -278029,7 +278029,7 @@ "source_location": "L18", "_origin": "ast", "id": "remix_app_api_utils_errors_admindiagnostic_adminerrordiagnostic", - "community": 510, + "community": 328, "norm_label": "adminerrordiagnostic" }, { @@ -278389,7 +278389,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_groups_groups", - "community": 597, + "community": 6, "norm_label": "groups.ts" }, { @@ -278399,7 +278399,7 @@ "source_location": "L34", "_origin": "ast", "id": "remix_app_api_utils_groups_groups_fail", - "community": 597, + "community": 6, "norm_label": "fail" }, { @@ -278409,7 +278409,7 @@ "source_location": "L37", "_origin": "ast", "id": "remix_app_api_utils_groups_groups_publicgroup", - "community": 597, + "community": 6, "norm_label": "publicgroup" }, { @@ -278419,7 +278419,7 @@ "source_location": "L46", "_origin": "ast", "id": "remix_app_api_utils_groups_groups_sanitizename", - "community": 597, + "community": 6, "norm_label": "sanitizename()" }, { @@ -278429,7 +278429,7 @@ "source_location": "L52", "_origin": "ast", "id": "remix_app_api_utils_groups_groups_sanitizememberids", - "community": 597, + "community": 6, "norm_label": "sanitizememberids()" }, { @@ -278439,7 +278439,7 @@ "source_location": "L68", "_origin": "ast", "id": "remix_app_api_utils_groups_groups_memberidsbygroup", - "community": 597, + "community": 6, "norm_label": "memberidsbygroup()" }, { @@ -278449,7 +278449,7 @@ "source_location": "L86", "_origin": "ast", "id": "remix_app_api_utils_groups_groups_projectgroups", - "community": 597, + "community": 6, "norm_label": "projectgroups()" }, { @@ -278459,7 +278459,7 @@ "source_location": "L102", "_origin": "ast", "id": "remix_app_api_utils_groups_groups_listgroups", - "community": 3, + "community": 6, "norm_label": "listgroups()" }, { @@ -278469,7 +278469,7 @@ "source_location": "L112", "_origin": "ast", "id": "remix_app_api_utils_groups_groups_findownedgroup", - "community": 597, + "community": 6, "norm_label": "findownedgroup()" }, { @@ -278479,7 +278479,7 @@ "source_location": "L118", "_origin": "ast", "id": "remix_app_api_utils_groups_groups_memberdoc", - "community": 597, + "community": 6, "norm_label": "memberdoc()" }, { @@ -278489,7 +278489,7 @@ "source_location": "L132", "_origin": "ast", "id": "remix_app_api_utils_groups_groups_creategroup", - "community": 597, + "community": 6, "norm_label": "creategroup()" }, { @@ -278499,7 +278499,7 @@ "source_location": "L170", "_origin": "ast", "id": "remix_app_api_utils_groups_groups_updategroup", - "community": 597, + "community": 6, "norm_label": "updategroup()" }, { @@ -278509,7 +278509,7 @@ "source_location": "L208", "_origin": "ast", "id": "remix_app_api_utils_groups_groups_deletegroup", - "community": 597, + "community": 6, "norm_label": "deletegroup()" }, { @@ -278519,7 +278519,7 @@ "source_location": "L227", "_origin": "ast", "id": "remix_app_api_utils_groups_groups_audiencesources", - "community": 3, + "community": 6, "norm_label": "audiencesources()" }, { @@ -278539,7 +278539,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_api_utils_health_statustarget_basicservicehealthstatus", - "community": 334, + "community": 9, "norm_label": "basicservicehealthstatus" }, { @@ -278939,7 +278939,7 @@ "source_location": "L83", "_origin": "ast", "id": "remix_app_api_utils_lopu_accesscore_resolvelopubilling", - "community": 3, + "community": 49, "norm_label": "resolvelopubilling()" }, { @@ -279439,7 +279439,7 @@ "source_location": "L309", "_origin": "ast", "id": "remix_app_api_utils_lopu_accounting_accountuniquekey", - "community": 49, + "community": 358, "norm_label": "accountuniquekey()" }, { @@ -279459,7 +279459,7 @@ "source_location": "L311", "_origin": "ast", "id": "remix_app_api_utils_lopu_accounting_pendinguniquekey", - "community": 49, + "community": 358, "norm_label": "pendinguniquekey()" }, { @@ -279769,7 +279769,7 @@ "source_location": "L95", "_origin": "ast", "id": "remix_app_api_utils_lopu_chat_lopuchatprovidermode", - "community": 3, + "community": 49, "norm_label": "lopuchatprovidermode" }, { @@ -279819,7 +279819,7 @@ "source_location": "L113", "_origin": "ast", "id": "remix_app_api_utils_lopu_chat_haslopuchatproviderconfigured", - "community": 3, + "community": 49, "norm_label": "haslopuchatproviderconfigured()" }, { @@ -280179,7 +280179,7 @@ "source_location": "L1090", "_origin": "ast", "id": "remix_app_api_utils_lopu_chat_vaultclientoptions", - "community": 119, + "community": 69, "norm_label": "vaultclientoptions()" }, { @@ -280199,7 +280199,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_api_utils_lopu_chatevents_lopuchatprovider", - "community": 119, + "community": 49, "norm_label": "lopuchatprovider" }, { @@ -280469,7 +280469,7 @@ "source_location": "L158", "_origin": "ast", "id": "remix_app_api_utils_lopu_chatprompt_pickdemopage", - "community": 12, + "community": 46, "norm_label": "pickdemopage()" }, { @@ -281209,7 +281209,7 @@ "source_location": "L768", "_origin": "ast", "id": "remix_app_api_utils_lopu_chattools_lopuconfirmabletool", - "community": 42, + "community": 49, "norm_label": "lopuconfirmabletool" }, { @@ -281219,7 +281219,7 @@ "source_location": "L773", "_origin": "ast", "id": "remix_app_api_utils_lopu_chattools_lopuconfirmationaction", - "community": 42, + "community": 49, "norm_label": "lopuconfirmationaction" }, { @@ -281229,7 +281229,7 @@ "source_location": "L774", "_origin": "ast", "id": "remix_app_api_utils_lopu_chattools_lopuapprovedaction", - "community": 42, + "community": 49, "norm_label": "lopuapprovedaction" }, { @@ -281239,7 +281239,7 @@ "source_location": "L775", "_origin": "ast", "id": "remix_app_api_utils_lopu_chattools_lopuconfirmationgrant", - "community": 42, + "community": 49, "norm_label": "lopuconfirmationgrant" }, { @@ -281449,7 +281449,7 @@ "source_location": "L969", "_origin": "ast", "id": "remix_app_api_utils_lopu_chattools_loadserverdeps", - "community": 486, + "community": 175, "norm_label": "loadserverdeps()" }, { @@ -281649,7 +281649,7 @@ "source_location": "L1274", "_origin": "ast", "id": "remix_app_api_utils_lopu_chattools_runlistdemos", - "community": 46, + "community": 107, "norm_label": "runlistdemos()" }, { @@ -281659,7 +281659,7 @@ "source_location": "L1293", "_origin": "ast", "id": "remix_app_api_utils_lopu_chattools_rungetdemo", - "community": 107, + "community": 46, "norm_label": "rungetdemo()" }, { @@ -281799,7 +281799,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_lopu_confirmations_test", - "community": 42, + "community": 49, "norm_label": "confirmations.test.ts" }, { @@ -281809,7 +281809,7 @@ "source_location": "L11", "_origin": "ast", "id": "remix_app_api_utils_lopu_confirmations_test_action", - "community": 42, + "community": 49, "norm_label": "action" }, { @@ -281819,7 +281819,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_lopu_confirmations", - "community": 42, + "community": 49, "norm_label": "confirmations.ts" }, { @@ -281829,7 +281829,7 @@ "source_location": "L23", "_origin": "ast", "id": "remix_app_api_utils_lopu_confirmations_confirmable_tools", - "community": 42, + "community": 49, "norm_label": "confirmable_tools" }, { @@ -281839,7 +281839,7 @@ "source_location": "L25", "_origin": "ast", "id": "remix_app_api_utils_lopu_confirmations_lopuconfirmationinput", - "community": 42, + "community": 49, "norm_label": "lopuconfirmationinput" }, { @@ -281849,7 +281849,7 @@ "source_location": "L27", "_origin": "ast", "id": "remix_app_api_utils_lopu_confirmations_mintlopuconfirmation", - "community": 42, + "community": 49, "norm_label": "mintlopuconfirmation()" }, { @@ -281859,7 +281859,7 @@ "source_location": "L39", "_origin": "ast", "id": "remix_app_api_utils_lopu_confirmations_verifylopuconfirmation", - "community": 42, + "community": 49, "norm_label": "verifylopuconfirmation()" }, { @@ -281869,7 +281869,7 @@ "source_location": "L50", "_origin": "ast", "id": "remix_app_api_utils_lopu_confirmations_parselopuconfirmations", - "community": 42, + "community": 49, "norm_label": "parselopuconfirmations()" }, { @@ -281909,7 +281909,7 @@ "source_location": "L23", "_origin": "ast", "id": "remix_app_api_utils_lopu_fallbacks_pickfallbackmusing", - "community": 50, + "community": 261, "norm_label": "pickfallbackmusing()" }, { @@ -281939,7 +281939,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_lopu_musing", - "community": 114, + "community": 588, "norm_label": "musing.ts" }, { @@ -281949,7 +281949,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_api_utils_lopu_musing_lopucontext", - "community": 114, + "community": 588, "norm_label": "lopucontext" }, { @@ -281959,7 +281959,7 @@ "source_location": "L39", "_origin": "ast", "id": "remix_app_api_utils_lopu_musing_lopusource", - "community": 114, + "community": 588, "norm_label": "lopusource" }, { @@ -281969,7 +281969,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_api_utils_lopu_musing_lopumode", - "community": 114, + "community": 588, "norm_label": "lopumode" }, { @@ -281979,7 +281979,7 @@ "source_location": "L41", "_origin": "ast", "id": "remix_app_api_utils_lopu_musing_lopumusing", - "community": 114, + "community": 588, "norm_label": "lopumusing" }, { @@ -281989,7 +281989,7 @@ "source_location": "L44", "_origin": "ast", "id": "remix_app_api_utils_lopu_musing_lopustreamevent", - "community": 114, + "community": 588, "norm_label": "lopustreamevent" }, { @@ -281999,7 +281999,7 @@ "source_location": "L56", "_origin": "ast", "id": "remix_app_api_utils_lopu_musing_all_modes", - "community": 114, + "community": 588, "norm_label": "all_modes" }, { @@ -282009,7 +282009,7 @@ "source_location": "L57", "_origin": "ast", "id": "remix_app_api_utils_lopu_musing_pickmode", - "community": 114, + "community": 588, "norm_label": "pickmode()" }, { @@ -282019,7 +282019,7 @@ "source_location": "L64", "_origin": "ast", "id": "remix_app_api_utils_lopu_musing_buildcontextline", - "community": 114, + "community": 588, "norm_label": "buildcontextline()" }, { @@ -282029,7 +282029,7 @@ "source_location": "L73", "_origin": "ast", "id": "remix_app_api_utils_lopu_musing_builduserprompt", - "community": 114, + "community": 588, "norm_label": "builduserprompt()" }, { @@ -282059,7 +282059,7 @@ "source_location": "L122", "_origin": "ast", "id": "remix_app_api_utils_lopu_musing_getdefaultlopuclaudemodel", - "community": 114, + "community": 588, "norm_label": "getdefaultlopuclaudemodel()" }, { @@ -282069,7 +282069,7 @@ "source_location": "L124", "_origin": "ast", "id": "remix_app_api_utils_lopu_musing_lopumodelchoices", - "community": 114, + "community": 588, "norm_label": "lopumodelchoices" }, { @@ -282079,7 +282079,7 @@ "source_location": "L129", "_origin": "ast", "id": "remix_app_api_utils_lopu_musing_lopumodelchoicesresolverdependencies", - "community": 114, + "community": 588, "norm_label": "lopumodelchoicesresolverdependencies" }, { @@ -282099,7 +282099,7 @@ "source_location": "L146", "_origin": "ast", "id": "remix_app_api_utils_lopu_musing_getlopumodelchoices", - "community": 114, + "community": 588, "norm_label": "getlopumodelchoices" }, { @@ -282109,7 +282109,7 @@ "source_location": "L269", "_origin": "ast", "id": "remix_app_api_utils_lopu_musing_providerorder", - "community": 114, + "community": 588, "norm_label": "providerorder()" }, { @@ -282119,7 +282119,7 @@ "source_location": "L274", "_origin": "ast", "id": "remix_app_api_utils_lopu_musing_hasanykey", - "community": 114, + "community": 588, "norm_label": "hasanykey()" }, { @@ -282129,7 +282129,7 @@ "source_location": "L279", "_origin": "ast", "id": "remix_app_api_utils_lopu_musing_chunkwords", - "community": 114, + "community": 588, "norm_label": "chunkwords()" }, { @@ -282139,7 +282139,7 @@ "source_location": "L280", "_origin": "ast", "id": "remix_app_api_utils_lopu_musing_tick", - "community": 114, + "community": 588, "norm_label": "tick()" }, { @@ -282149,7 +282149,7 @@ "source_location": "L352", "_origin": "ast", "id": "remix_app_api_utils_lopu_musing_generatelopumusing", - "community": 114, + "community": 588, "norm_label": "generatelopumusing()" }, { @@ -282159,7 +282159,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_lopu_pageops_test", - "community": 107, + "community": 7, "norm_label": "pageops.test.ts" }, { @@ -282169,7 +282169,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_api_utils_lopu_pageops_test_page", - "community": 107, + "community": 7, "norm_label": "page()" }, { @@ -282179,7 +282179,7 @@ "source_location": "L24", "_origin": "ast", "id": "remix_app_api_utils_lopu_pageops_test_ids", - "community": 107, + "community": 7, "norm_label": "ids()" }, { @@ -282209,7 +282209,7 @@ "source_location": "L28", "_origin": "ast", "id": "remix_app_api_utils_lopu_pageops_pageop", - "community": 107, + "community": 7, "norm_label": "pageop" }, { @@ -282219,7 +282219,7 @@ "source_location": "L36", "_origin": "ast", "id": "remix_app_api_utils_lopu_pageops_page_op_names", - "community": 107, + "community": 7, "norm_label": "page_op_names" }, { @@ -282269,7 +282269,7 @@ "source_location": "L59", "_origin": "ast", "id": "remix_app_api_utils_lopu_pageops_isplainobject", - "community": 107, + "community": 7, "norm_label": "isplainobject()" }, { @@ -282309,7 +282309,7 @@ "source_location": "L88", "_origin": "ast", "id": "remix_app_api_utils_lopu_pageops_validatepatchtarget", - "community": 107, + "community": 7, "norm_label": "validatepatchtarget()" }, { @@ -282319,7 +282319,7 @@ "source_location": "L101", "_origin": "ast", "id": "remix_app_api_utils_lopu_pageops_idfield", - "community": 107, + "community": 7, "norm_label": "idfield()" }, { @@ -282329,7 +282329,7 @@ "source_location": "L104", "_origin": "ast", "id": "remix_app_api_utils_lopu_pageops_containerfield", - "community": 107, + "community": 7, "norm_label": "containerfield()" }, { @@ -282339,7 +282339,7 @@ "source_location": "L107", "_origin": "ast", "id": "remix_app_api_utils_lopu_pageops_validatepageops", - "community": 107, + "community": 7, "norm_label": "validatepageops()" }, { @@ -282559,7 +282559,7 @@ "source_location": "L69", "_origin": "ast", "id": "remix_app_api_utils_lopu_uservault_uservaultconfigured", - "community": 3, + "community": 427, "norm_label": "uservaultconfigured()" }, { @@ -282639,7 +282639,7 @@ "source_location": "L135", "_origin": "ast", "id": "remix_app_api_utils_lopu_uservault_listuservault", - "community": 3, + "community": 427, "norm_label": "listuservault()" }, { @@ -283009,7 +283009,7 @@ "source_location": "L259", "_origin": "ast", "id": "remix_app_api_utils_lopu_uservaultcore_safevaultmodelid", - "community": 69, + "community": 427, "norm_label": "safevaultmodelid()" }, { @@ -283159,7 +283159,7 @@ "source_location": "L106", "_origin": "ast", "id": "remix_app_api_utils_lopu_vaultproviderclient_lopuvaultproviderclientconfig", - "community": 119, + "community": 69, "norm_label": "lopuvaultproviderclientconfig" }, { @@ -283389,7 +283389,7 @@ "source_location": "L28", "_origin": "ast", "id": "remix_app_api_utils_lopu_vaultproviders_lopuvaultproviderpublic", - "community": 122, + "community": 69, "norm_label": "lopuvaultproviderpublic" }, { @@ -283819,7 +283819,7 @@ "source_location": "L109", "_origin": "ast", "id": "remix_app_api_utils_lopu_voice_createtranscriptpage", - "community": 486, + "community": 175, "norm_label": "createtranscriptpage()" }, { @@ -283979,7 +283979,7 @@ "source_location": "L83", "_origin": "ast", "id": "remix_app_api_utils_messenger_aiconnections_externalkey", - "community": 6, + "community": 358, "norm_label": "externalkey()" }, { @@ -283989,7 +283989,7 @@ "source_location": "L86", "_origin": "ast", "id": "remix_app_api_utils_messenger_aiconnections_stableshareid", - "community": 6, + "community": 358, "norm_label": "stableshareid()" }, { @@ -283999,7 +283999,7 @@ "source_location": "L88", "_origin": "ast", "id": "remix_app_api_utils_messenger_aiconnections_safedate", - "community": 6, + "community": 358, "norm_label": "safedate()" }, { @@ -284069,7 +284069,7 @@ "source_location": "L184", "_origin": "ast", "id": "remix_app_api_utils_messenger_aiconnections_sourceprojection", - "community": 6, + "community": 358, "norm_label": "sourceprojection()" }, { @@ -284079,7 +284079,7 @@ "source_location": "L195", "_origin": "ast", "id": "remix_app_api_utils_messenger_aiconnections_sourcethings", - "community": 6, + "community": 358, "norm_label": "sourcethings()" }, { @@ -284089,7 +284089,7 @@ "source_location": "L197", "_origin": "ast", "id": "remix_app_api_utils_messenger_aiconnections_sourcestorageoptions", - "community": 6, + "community": 358, "norm_label": "sourcestorageoptions()" }, { @@ -284099,7 +284099,7 @@ "source_location": "L202", "_origin": "ast", "id": "remix_app_api_utils_messenger_aiconnections_withsourcestoragetransaction", - "community": 6, + "community": 358, "norm_label": "withsourcestoragetransaction()" }, { @@ -284119,7 +284119,7 @@ "source_location": "L262", "_origin": "ast", "id": "remix_app_api_utils_messenger_aiconnections_ensuregroup", - "community": 6, + "community": 358, "norm_label": "ensuregroup()" }, { @@ -284129,7 +284129,7 @@ "source_location": "L305", "_origin": "ast", "id": "remix_app_api_utils_messenger_aiconnections_ensureconversation", - "community": 6, + "community": 358, "norm_label": "ensureconversation()" }, { @@ -284139,7 +284139,7 @@ "source_location": "L370", "_origin": "ast", "id": "remix_app_api_utils_messenger_aiconnections_upsertmessages", - "community": 6, + "community": 358, "norm_label": "upsertmessages()" }, { @@ -284179,7 +284179,7 @@ "source_location": "L551", "_origin": "ast", "id": "remix_app_api_utils_messenger_aiconnections_syncaiconnections", - "community": 6, + "community": 358, "norm_label": "syncaiconnections()" }, { @@ -284379,7 +284379,7 @@ "source_location": "L68", "_origin": "ast", "id": "remix_app_api_utils_messenger_communities_revokecommunitychannelmemberships", - "community": 123, + "community": 6, "norm_label": "revokecommunitychannelmemberships()" }, { @@ -284919,7 +284919,7 @@ "source_location": "L59", "_origin": "ast", "id": "remix_app_api_utils_messenger_follows_resolvetargetuser", - "community": 6, + "community": 47, "norm_label": "resolvetargetuser()" }, { @@ -284929,7 +284929,7 @@ "source_location": "L65", "_origin": "ast", "id": "remix_app_api_utils_messenger_follows_followstatus", - "community": 6, + "community": 47, "norm_label": "followstatus()" }, { @@ -286409,7 +286409,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_messenger_storage_test", - "community": 123, + "community": 6, "norm_label": "storage.test.ts" }, { @@ -286419,7 +286419,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_messenger_storage", - "community": 123, + "community": 6, "norm_label": "storage.ts" }, { @@ -286429,7 +286429,7 @@ "source_location": "L15", "_origin": "ast", "id": "remix_app_api_utils_messenger_storage_messengerplane", - "community": 123, + "community": 6, "norm_label": "messengerplane" }, { @@ -286439,7 +286439,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_api_utils_messenger_storage_messengermutationoptions", - "community": 123, + "community": 6, "norm_label": "messengermutationoptions" }, { @@ -286449,7 +286449,7 @@ "source_location": "L20", "_origin": "ast", "id": "remix_app_api_utils_messenger_storage_accountedoptions", - "community": 123, + "community": 6, "norm_label": "accountedoptions()" }, { @@ -286479,7 +286479,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_api_utils_messenger_storage_updatemessengerthings", - "community": 123, + "community": 6, "norm_label": "updatemessengerthings()" }, { @@ -286489,7 +286489,7 @@ "source_location": "L34", "_origin": "ast", "id": "remix_app_api_utils_messenger_storage_deletemessengerthing", - "community": 123, + "community": 6, "norm_label": "deletemessengerthing()" }, { @@ -286509,7 +286509,7 @@ "source_location": "L42", "_origin": "ast", "id": "remix_app_api_utils_messenger_storage_home_messenger_storage_options", - "community": 123, + "community": 6, "norm_label": "home_messenger_storage_options" }, { @@ -286523,150 +286523,560 @@ "norm_label": "withmessengerstoragetransaction()" }, { - "label": "socialMeta.ts", + "label": "socialCard.test.ts", "file_type": "code", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", + "source_file": "remix/app/api/utils/meta/socialCard.test.ts", "source_location": "L1", "_origin": "ast", - "id": "remix_app_api_utils_meta_socialmeta", + "id": "remix_app_api_utils_meta_socialcard_test", "community": 134, - "norm_label": "socialmeta.ts" + "norm_label": "socialcard.test.ts" }, { - "label": "SocialMetaTag", + "label": "gallery", "file_type": "code", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L19", + "source_file": "remix/app/api/utils/meta/socialCard.test.ts", + "source_location": "L18", "_origin": "ast", - "id": "remix_app_api_utils_meta_socialmeta_socialmetatag", + "id": "remix_app_api_utils_meta_socialcard_test_gallery", "community": 134, - "norm_label": "socialmetatag" + "norm_label": "gallery" }, { - "label": "SocialMeta", + "label": "titleLinesOf()", "file_type": "code", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L21", + "source_file": "remix/app/api/utils/meta/socialCard.test.ts", + "source_location": "L83", "_origin": "ast", - "id": "remix_app_api_utils_meta_socialmeta_socialmeta", + "id": "remix_app_api_utils_meta_socialcard_test_titlelinesof", "community": 134, - "norm_label": "socialmeta" + "norm_label": "titlelinesof()" }, { - "label": "cleanText()", + "label": "rectsFilled()", "file_type": "code", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L36", + "source_file": "remix/app/api/utils/meta/socialCard.test.ts", + "source_location": "L130", "_origin": "ast", - "id": "remix_app_api_utils_meta_socialmeta_cleantext", + "id": "remix_app_api_utils_meta_socialcard_test_rectsfilled", "community": 134, - "norm_label": "cleantext()" + "norm_label": "rectsfilled()" }, { - "label": "truncate()", + "label": "inkInBand()", "file_type": "code", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L41", + "source_file": "remix/app/api/utils/meta/socialCard.test.ts", + "source_location": "L221", "_origin": "ast", - "id": "remix_app_api_utils_meta_socialmeta_truncate", + "id": "remix_app_api_utils_meta_socialcard_test_inkinband", "community": 134, - "norm_label": "truncate()" + "norm_label": "inkinband()" }, { - "label": "escapeHtml()", + "label": "cardPixels()", "file_type": "code", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L48", + "source_file": "remix/app/api/utils/meta/socialCard.test.ts", + "source_location": "L234", "_origin": "ast", - "id": "remix_app_api_utils_meta_socialmeta_escapehtml", - "community": 486, - "norm_label": "escapehtml()" + "id": "remix_app_api_utils_meta_socialcard_test_cardpixels", + "community": 134, + "norm_label": "cardpixels()" }, { - "label": "absoluteMediaUrl()", + "label": "streamed()", "file_type": "code", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L59", + "source_file": "remix/app/api/utils/meta/socialCard.test.ts", + "source_location": "L413", "_origin": "ast", - "id": "remix_app_api_utils_meta_socialmeta_absolutemediaurl", + "id": "remix_app_api_utils_meta_socialcard_test_streamed", "community": 134, - "norm_label": "absolutemediaurl()" + "norm_label": "streamed()" }, { - "label": "property()", + "label": "pngOfSize()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.test.ts", + "source_location": "L447", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_test_pngofsize", + "community": 134, + "norm_label": "pngofsize()" + }, + { + "label": "socialCard.ts", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L1", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard", + "community": 134, + "norm_label": "socialcard.ts" + }, + { + "label": "SAFE_IMAGE_TYPES", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L11", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_safe_image_types", + "community": 134, + "norm_label": "safe_image_types" + }, + { + "label": "CardTheme", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L52", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_cardtheme", + "community": 134, + "norm_label": "cardtheme" + }, + { + "label": "CARD_THEMES", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L54", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_card_themes", + "community": 134, + "norm_label": "card_themes" + }, + { + "label": "escapeXml()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L105", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_escapexml", + "community": 134, + "norm_label": "escapexml()" + }, + { + "label": "glyphEm()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L125", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_glyphem", + "community": 134, + "norm_label": "glyphem()" + }, + { + "label": "socialTextWidth()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L134", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_socialtextwidth", + "community": 134, + "norm_label": "socialtextwidth()" + }, + { + "label": "cardText()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L146", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_cardtext", + "community": 134, + "norm_label": "cardtext()" + }, + { + "label": "cardInitial()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L161", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_cardinitial", + "community": 134, + "norm_label": "cardinitial()" + }, + { + "label": "badgeRenders()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L169", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_badgerenders", + "community": 134, + "norm_label": "badgerenders()" + }, + { + "label": "clampToWidth()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L174", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_clamptowidth", + "community": 134, + "norm_label": "clamptowidth()" + }, + { + "label": "wrap()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L183", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_wrap", + "community": 134, + "norm_label": "wrap()" + }, + { + "label": "plusMark()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L210", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_plusmark", + "community": 134, + "norm_label": "plusmark()" + }, + { + "label": "colourTile()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L229", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_colourtile", + "community": 134, + "norm_label": "colourtile()" + }, + { + "label": "imageTile()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L248", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_imagetile", + "community": 134, + "norm_label": "imagetile()" + }, + { + "label": "panelArt()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L255", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_panelart", + "community": 134, + "norm_label": "panelart()" + }, + { + "label": "panelCopy()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L301", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_panelcopy", + "community": 134, + "norm_label": "panelcopy()" + }, + { + "label": "mediaLayout()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L331", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_medialayout", + "community": 134, + "norm_label": "medialayout()" + }, + { + "label": "buildSocialCardSvg()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L400", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_buildsocialcardsvg", + "community": 134, + "norm_label": "buildsocialcardsvg()" + }, + { + "label": "socialCardFontFiles()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L497", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_socialcardfontfiles", + "community": 134, + "norm_label": "socialcardfontfiles()" + }, + { + "label": "socialCardRenderOptions()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L520", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_socialcardrenderoptions", + "community": 134, + "norm_label": "socialcardrenderoptions()" + }, + { + "label": "readBodyWithin()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L550", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_readbodywithin", + "community": 134, + "norm_label": "readbodywithin()" + }, + { + "label": "readUint32BE()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L577", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_readuint32be", + "community": 134, + "norm_label": "readuint32be()" + }, + { + "label": "readUint16BE()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L579", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_readuint16be", + "community": 134, + "norm_label": "readuint16be()" + }, + { + "label": "readUint16LE()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L580", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_readuint16le", + "community": 134, + "norm_label": "readuint16le()" + }, + { + "label": "readUint24LE()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L581", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_readuint24le", + "community": 134, + "norm_label": "readuint24le()" + }, + { + "label": "asciiAt()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L582", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_asciiat", + "community": 134, + "norm_label": "asciiat()" + }, + { + "label": "ImageExtent", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L585", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_imageextent", + "community": 134, + "norm_label": "imageextent" + }, + { + "label": "larger()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L586", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_larger", + "community": 134, + "norm_label": "larger()" + }, + { + "label": "AVIF_CONTAINER_BOXES", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L595", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_avif_container_boxes", + "community": 134, + "norm_label": "avif_container_boxes" + }, + { + "label": "avifExtent()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L596", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_avifextent", + "community": 134, + "norm_label": "avifextent()" + }, + { + "label": "jpegExtent()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L617", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_jpegextent", + "community": 134, + "norm_label": "jpegextent()" + }, + { + "label": "webpExtent()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L645", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_webpextent", + "community": 134, + "norm_label": "webpextent()" + }, + { + "label": "socialCardImageExtent()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L674", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_socialcardimageextent", + "community": 134, + "norm_label": "socialcardimageextent()" + }, + { + "label": "CardImage", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L690", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_cardimage", + "community": 134, + "norm_label": "cardimage" + }, + { + "label": "loadAttachmentDataUri()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L692", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_loadattachmentdatauri", + "community": 134, + "norm_label": "loadattachmentdatauri()" + }, + { + "label": "renderSocialCardPng()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L717", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcard_rendersocialcardpng", + "community": 134, + "norm_label": "rendersocialcardpng()" + }, + { + "label": "socialCardFontData.ts", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCardFontData.ts", + "source_location": "L1", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcardfontdata", + "community": 134, + "norm_label": "socialcardfontdata.ts" + }, + { + "label": "SOCIAL_CARD_FONTS", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialCardFontData.ts", + "source_location": "L22", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialcardfontdata_social_card_fonts", + "community": 134, + "norm_label": "social_card_fonts" + }, + { + "label": "socialMeta.ts", "file_type": "code", "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L64", + "source_location": "L1", "_origin": "ast", - "id": "remix_app_api_utils_meta_socialmeta_property", + "id": "remix_app_api_utils_meta_socialmeta", "community": 134, - "norm_label": "property()" + "norm_label": "socialmeta.ts" }, { - "label": "named()", + "label": "SocialMetaTag", "file_type": "code", "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L65", + "source_location": "L17", "_origin": "ast", - "id": "remix_app_api_utils_meta_socialmeta_named", + "id": "remix_app_api_utils_meta_socialmeta_socialmetatag", "community": 134, - "norm_label": "named()" + "norm_label": "socialmetatag" }, { - "label": "PageMeta", + "label": "SocialMeta", "file_type": "code", "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L67", + "source_location": "L19", "_origin": "ast", - "id": "remix_app_api_utils_meta_socialmeta_pagemeta", + "id": "remix_app_api_utils_meta_socialmeta_socialmeta", "community": 134, - "norm_label": "pagemeta" + "norm_label": "socialmeta" }, { - "label": "buildTags()", + "label": "escapeHtml()", "file_type": "code", "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L76", + "source_location": "L31", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialmeta_escapehtml", + "community": 486, + "norm_label": "escapehtml()" + }, + { + "label": "property()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialMeta.ts", + "source_location": "L34", "_origin": "ast", - "id": "remix_app_api_utils_meta_socialmeta_buildtags", + "id": "remix_app_api_utils_meta_socialmeta_property", "community": 134, - "norm_label": "buildtags()" + "norm_label": "property()" }, { - "label": "pollOptionLabels()", + "label": "named()", "file_type": "code", "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L100", + "source_location": "L35", "_origin": "ast", - "id": "remix_app_api_utils_meta_socialmeta_polloptionlabels", + "id": "remix_app_api_utils_meta_socialmeta_named", "community": 134, - "norm_label": "polloptionlabels()" + "norm_label": "named()" }, { - "label": "postMeta()", + "label": "PageMeta", "file_type": "code", "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L110", + "source_location": "L37", "_origin": "ast", - "id": "remix_app_api_utils_meta_socialmeta_postmeta", + "id": "remix_app_api_utils_meta_socialmeta_pagemeta", "community": 134, - "norm_label": "postmeta()" + "norm_label": "pagemeta" }, { - "label": "profileMeta()", + "label": "buildSocialMetaTags()", "file_type": "code", "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L161", + "source_location": "L46", "_origin": "ast", - "id": "remix_app_api_utils_meta_socialmeta_profilemeta", + "id": "remix_app_api_utils_meta_socialmeta_buildsocialmetatags", "community": 134, - "norm_label": "profilemeta()" + "norm_label": "buildsocialmetatags()" }, { "label": "resolveSocialMeta()", "file_type": "code", "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L185", + "source_location": "L77", "_origin": "ast", "id": "remix_app_api_utils_meta_socialmeta_resolvesocialmeta", "community": 134, @@ -286676,7 +287086,7 @@ "label": "renderSocialMetaHtml()", "file_type": "code", "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L207", + "source_location": "L104", "_origin": "ast", "id": "remix_app_api_utils_meta_socialmeta_rendersocialmetahtml", "community": 134, @@ -286686,12 +287096,332 @@ "label": "injectSocialMeta()", "file_type": "code", "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L214", + "source_location": "L111", "_origin": "ast", "id": "remix_app_api_utils_meta_socialmeta_injectsocialmeta", "community": 134, "norm_label": "injectsocialmeta()" }, + { + "label": "socialPreview.test.ts", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_test", + "community": 134, + "norm_label": "socialpreview.test.ts" + }, + { + "label": "socialPreview.ts", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L1", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview", + "community": 134, + "norm_label": "socialpreview.ts" + }, + { + "label": "SocialPreviewKind", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L5", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_socialpreviewkind", + "community": 134, + "norm_label": "socialpreviewkind" + }, + { + "label": "SocialPreviewVariant", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L30", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_socialpreviewvariant", + "community": 134, + "norm_label": "socialpreviewvariant" + }, + { + "label": "SocialPreviewImage", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L53", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_socialpreviewimage", + "community": 134, + "norm_label": "socialpreviewimage" + }, + { + "label": "SocialPreview", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L58", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_socialpreview", + "community": 134, + "norm_label": "socialpreview" + }, + { + "label": "staticVariantFor()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L82", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_staticvariantfor", + "community": 134, + "norm_label": "staticvariantfor()" + }, + { + "label": "cleanSocialText()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L97", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_cleansocialtext", + "community": 134, + "norm_label": "cleansocialtext()" + }, + { + "label": "truncateSocialText()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L105", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_truncatesocialtext", + "community": 134, + "norm_label": "truncatesocialtext()" + }, + { + "label": "cleanList()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L115", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_cleanlist", + "community": 134, + "norm_label": "cleanlist()" + }, + { + "label": "initialOf()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L118", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_initialof", + "community": 134, + "norm_label": "initialof()" + }, + { + "label": "normaliseSocialPreviewPath()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L120", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_normalisesocialpreviewpath", + "community": 134, + "norm_label": "normalisesocialpreviewpath()" + }, + { + "label": "socialPreviewCardUrl()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L128", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_socialpreviewcardurl", + "community": 134, + "norm_label": "socialpreviewcardurl()" + }, + { + "label": "staticSocialPreview()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L134", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_staticsocialpreview", + "community": 134, + "norm_label": "staticsocialpreview()" + }, + { + "label": "postImages()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L264", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_postimages", + "community": 134, + "norm_label": "postimages()" + }, + { + "label": "pollOptions()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L273", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_polloptions", + "community": 134, + "norm_label": "polloptions()" + }, + { + "label": "formatPrice()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L282", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_formatprice", + "community": 134, + "norm_label": "formatprice()" + }, + { + "label": "webpageCopy()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L293", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_webpagecopy", + "community": 134, + "norm_label": "webpagecopy()" + }, + { + "label": "webpageBlockCount()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L312", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_webpageblockcount", + "community": 134, + "norm_label": "webpageblockcount()" + }, + { + "label": "StructuredThingPreview", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L320", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_structuredthingpreview", + "community": 134, + "norm_label": "structuredthingpreview" + }, + { + "label": "postMediaVariant()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L348", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_postmediavariant", + "community": 134, + "norm_label": "postmediavariant()" + }, + { + "label": "humanPostKind()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L360", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_humanpostkind", + "community": 134, + "norm_label": "humanpostkind()" + }, + { + "label": "normaliseSocialMediaKind()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L385", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_normalisesocialmediakind", + "community": 134, + "norm_label": "normalisesocialmediakind()" + }, + { + "label": "socialMediaVariant()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L390", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_socialmediavariant", + "community": 134, + "norm_label": "socialmediavariant()" + }, + { + "label": "webpagePreview()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L403", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_webpagepreview", + "community": 134, + "norm_label": "webpagepreview()" + }, + { + "label": "socialPreviewFromPublicPost()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L434", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_socialpreviewfrompublicpost", + "community": 134, + "norm_label": "socialpreviewfrompublicpost()" + }, + { + "label": "publicPostPreview()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L555", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_publicpostpreview", + "community": 134, + "norm_label": "publicpostpreview()" + }, + { + "label": "postPreview()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L570", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_postpreview", + "community": 134, + "norm_label": "postpreview()" + }, + { + "label": "profilePreview()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L578", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_profilepreview", + "community": 134, + "norm_label": "profilepreview()" + }, + { + "label": "mediaPreview()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L604", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_mediapreview", + "community": 134, + "norm_label": "mediapreview()" + }, + { + "label": "thingPreview()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L634", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_thingpreview", + "community": 134, + "norm_label": "thingpreview()" + }, + { + "label": "resolveSocialPreview()", + "file_type": "code", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L663", + "_origin": "ast", + "id": "remix_app_api_utils_meta_socialpreview_resolvesocialpreview", + "community": 134, + "norm_label": "resolvesocialpreview()" + }, { "label": "ciControlRelocationCore.test.ts", "file_type": "code", @@ -287389,7 +288119,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_migrations_migrationfailure_test", - "community": 510, + "community": 328, "norm_label": "migrationfailure.test.ts" }, { @@ -287399,7 +288129,7 @@ "source_location": "L82", "_origin": "ast", "id": "remix_app_api_utils_migrations_migrationfailure_test_get", - "community": 510, + "community": 328, "norm_label": "get()" }, { @@ -287409,7 +288139,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_migrations_migrationfailure", - "community": 510, + "community": 328, "norm_label": "migrationfailure.ts" }, { @@ -287419,7 +288149,7 @@ "source_location": "L5", "_origin": "ast", "id": "remix_app_api_utils_migrations_migrationfailure_safemigrationid", - "community": 510, + "community": 328, "norm_label": "safemigrationid()" }, { @@ -287429,7 +288159,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_api_utils_migrations_migrationfailure_migrationfailure", - "community": 510, + "community": 328, "norm_label": "migrationfailure" }, { @@ -287439,7 +288169,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_api_utils_migrations_migrationfailure_withdiagnosticsource", - "community": 510, + "community": 328, "norm_label": "withdiagnosticsource()" }, { @@ -287449,7 +288179,7 @@ "source_location": "L29", "_origin": "ast", "id": "remix_app_api_utils_migrations_migrationfailure_capturemigrationfailurediagnostic", - "community": 510, + "community": 328, "norm_label": "capturemigrationfailurediagnostic()" }, { @@ -287459,7 +288189,7 @@ "source_location": "L39", "_origin": "ast", "id": "remix_app_api_utils_migrations_migrationfailure_migrationoperatorcode", - "community": 510, + "community": 328, "norm_label": "migrationoperatorcode" }, { @@ -287469,7 +288199,7 @@ "source_location": "L57", "_origin": "ast", "id": "remix_app_api_utils_migrations_migrationfailure_migrationoperatoroptions", - "community": 510, + "community": 328, "norm_label": "migrationoperatoroptions" }, { @@ -287479,7 +288209,7 @@ "source_location": "L64", "_origin": "ast", "id": "remix_app_api_utils_migrations_migrationfailure_safecount", - "community": 510, + "community": 328, "norm_label": "safecount()" }, { @@ -287489,7 +288219,7 @@ "source_location": "L66", "_origin": "ast", "id": "remix_app_api_utils_migrations_migrationfailure_operatorpresentation", - "community": 510, + "community": 328, "norm_label": "operatorpresentation()" }, { @@ -287499,7 +288229,7 @@ "source_location": "L165", "_origin": "ast", "id": "remix_app_api_utils_migrations_migrationfailure_migrationoperatorerror", - "community": 510, + "community": 328, "norm_label": "migrationoperatorerror" }, { @@ -287509,7 +288239,7 @@ "source_location": "L171", "_origin": "ast", "id": "remix_app_api_utils_migrations_migrationfailure_migrationoperatorerror_constructor", - "community": 510, + "community": 328, "norm_label": ".constructor()" }, { @@ -287519,7 +288249,7 @@ "source_location": "L186", "_origin": "ast", "id": "remix_app_api_utils_migrations_migrationfailure_migrationoperatorerror_diagnosticrevealcontext", - "community": 510, + "community": 328, "norm_label": ".diagnosticrevealcontext()" }, { @@ -287529,7 +288259,7 @@ "source_location": "L191", "_origin": "ast", "id": "remix_app_api_utils_migrations_migrationfailure_storagemutationpresentation", - "community": 510, + "community": 328, "norm_label": "storagemutationpresentation()" }, { @@ -287539,7 +288269,7 @@ "source_location": "L209", "_origin": "ast", "id": "remix_app_api_utils_migrations_migrationfailure_migrationfailureresult", - "community": 510, + "community": 328, "norm_label": "migrationfailureresult()" }, { @@ -287699,7 +288429,7 @@ "source_location": "L338", "_origin": "ast", "id": "remix_app_api_utils_migrations_migrations_interactionplan", - "community": 486, + "community": 175, "norm_label": "interactionplan()" }, { @@ -288039,7 +288769,7 @@ "source_location": "L1670", "_origin": "ast", "id": "remix_app_api_utils_migrations_migrations_legacyresidue", - "community": 507, + "community": 50, "norm_label": "legacyresidue()" }, { @@ -288199,7 +288929,7 @@ "source_location": "L2248", "_origin": "ast", "id": "remix_app_api_utils_migrations_migrations_upgradeusersubscriptionledgerenvelopes", - "community": 195, + "community": 261, "norm_label": "upgradeusersubscriptionledgerenvelopes()" }, { @@ -288369,7 +289099,7 @@ "source_location": "L3184", "_origin": "ast", "id": "remix_app_api_utils_migrations_migrations_getmigrationstatus", - "community": 194, + "community": 50, "norm_label": "getmigrationstatus()" }, { @@ -288389,7 +289119,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_migrations_relationshipkeys_test", - "community": 6, + "community": 50, "norm_label": "relationshipkeys.test.ts" }, { @@ -288399,7 +289129,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_api_utils_migrations_relationshipkeys_test_fixture", - "community": 6, + "community": 50, "norm_label": "fixture()" }, { @@ -288409,7 +289139,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_migrations_relationshipkeys", - "community": 6, + "community": 50, "norm_label": "relationshipkeys.ts" }, { @@ -288419,7 +289149,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_api_utils_migrations_relationshipkeys_repairrelationshipkeys", - "community": 6, + "community": 50, "norm_label": "repairrelationshipkeys()" }, { @@ -289919,7 +290649,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collectionnames_test", - "community": 507, + "community": 50, "norm_label": "collectionnames.test.ts" }, { @@ -289929,7 +290659,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collectionnames", - "community": 507, + "community": 50, "norm_label": "collectionnames.ts" }, { @@ -289939,7 +290669,7 @@ "source_location": "L21", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collectionnames_collections", - "community": 507, + "community": 50, "norm_label": "collections" }, { @@ -289949,7 +290679,7 @@ "source_location": "L23", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collectionnames_knowncollections", - "community": 507, + "community": 50, "norm_label": "knowncollections" }, { @@ -289959,7 +290689,7 @@ "source_location": "L25", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collectionnames_isknowncollection", - "community": 507, + "community": 50, "norm_label": "isknowncollection()" }, { @@ -289969,7 +290699,7 @@ "source_location": "L27", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collectionnames_collectionversion", - "community": 507, + "community": 50, "norm_label": "collectionversion()" }, { @@ -289979,7 +290709,7 @@ "source_location": "L35", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collectionnames_versionedcollectionname", - "community": 507, + "community": 50, "norm_label": "versionedcollectionname()" }, { @@ -289989,7 +290719,7 @@ "source_location": "L38", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collectionnames_physicalcollectionname", - "community": 507, + "community": 50, "norm_label": "physicalcollectionname()" }, { @@ -289999,7 +290729,7 @@ "source_location": "L41", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collectionnames_physicalcollectioninfo", - "community": 507, + "community": 50, "norm_label": "physicalcollectioninfo" }, { @@ -290009,7 +290739,7 @@ "source_location": "L60", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collectionnames_classifyphysicalcollections", - "community": 507, + "community": 50, "norm_label": "classifyphysicalcollections()" }, { @@ -290049,7 +290779,7 @@ "source_location": "L96", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collections_runmongotransaction", - "community": 50, + "community": 81, "norm_label": "runmongotransaction()" }, { @@ -290059,7 +290789,7 @@ "source_location": "L116", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collections_withmongotransaction", - "community": 486, + "community": 81, "norm_label": "withmongotransaction()" }, { @@ -290069,7 +290799,7 @@ "source_location": "L122", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collections_withhomemongotransaction", - "community": 152, + "community": 358, "norm_label": "withhomemongotransaction()" }, { @@ -290089,7 +290819,7 @@ "source_location": "L130", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collections_getadoptionissues", - "community": 261, + "community": 50, "norm_label": "getadoptionissues()" }, { @@ -290099,7 +290829,7 @@ "source_location": "L143", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collections_adoptversionedcollections", - "community": 507, + "community": 50, "norm_label": "adoptversionedcollections()" }, { @@ -290119,7 +290849,7 @@ "source_location": "L198", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collections_getthingtimedb", - "community": 9, + "community": 50, "norm_label": "getthingtimedb()" }, { @@ -290149,7 +290879,7 @@ "source_location": "L252", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collections_gethomecollection", - "community": 50, + "community": 646, "norm_label": "gethomecollection()" }, { @@ -290169,7 +290899,7 @@ "source_location": "L255", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collections_getsessionscollection", - "community": 41, + "community": 358, "norm_label": "getsessionscollection()" }, { @@ -290189,7 +290919,7 @@ "source_location": "L262", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collections_getthingscollection", - "community": 486, + "community": 6, "norm_label": "getthingscollection()" }, { @@ -290199,7 +290929,7 @@ "source_location": "L263", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collections_gethomethingscollection", - "community": 152, + "community": 358, "norm_label": "gethomethingscollection()" }, { @@ -290219,7 +290949,7 @@ "source_location": "L279", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collections_invalidatehomerelationshipkeys", - "community": 261, + "community": 50, "norm_label": "invalidatehomerelationshipkeys()" }, { @@ -290229,7 +290959,7 @@ "source_location": "L280", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collections_getemailverificationscollection", - "community": 50, + "community": 61, "norm_label": "getemailverificationscollection()" }, { @@ -290259,7 +290989,7 @@ "source_location": "L283", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collections_getwaitlistcollection", - "community": 50, + "community": 261, "norm_label": "getwaitlistcollection()" }, { @@ -290279,7 +291009,7 @@ "source_location": "L287", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collections_getsettingscollection", - "community": 4, + "community": 487, "norm_label": "getsettingscollection()" }, { @@ -290289,7 +291019,7 @@ "source_location": "L288", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collections_getratelimitscollection", - "community": 81, + "community": 50, "norm_label": "getratelimitscollection()" }, { @@ -290309,7 +291039,7 @@ "source_location": "L294", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collections_getadminintegrationsecretscollection", - "community": 50, + "community": 252, "norm_label": "getadminintegrationsecretscollection()" }, { @@ -290319,7 +291049,7 @@ "source_location": "L295", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collections_getadminintegrationendpointscollection", - "community": 50, + "community": 252, "norm_label": "getadminintegrationendpointscollection()" }, { @@ -290329,7 +291059,7 @@ "source_location": "L296", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collections_getadminintegrationclaimscollection", - "community": 50, + "community": 121, "norm_label": "getadminintegrationclaimscollection()" }, { @@ -290339,7 +291069,7 @@ "source_location": "L297", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collections_getadminintegrationauditcollection", - "community": 50, + "community": 252, "norm_label": "getadminintegrationauditcollection()" }, { @@ -290369,7 +291099,7 @@ "source_location": "L305", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collections_getemaileventscollection", - "community": 50, + "community": 646, "norm_label": "getemaileventscollection()" }, { @@ -290399,7 +291129,7 @@ "source_location": "L308", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collections_getemailsuppressionlistcollection", - "community": 50, + "community": 646, "norm_label": "getemailsuppressionlistcollection()" }, { @@ -290409,7 +291139,7 @@ "source_location": "L309", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collections_getemailunsubscribescollection", - "community": 50, + "community": 646, "norm_label": "getemailunsubscribescollection()" }, { @@ -290429,7 +291159,7 @@ "source_location": "L313", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collections_getpasswordresetscollection", - "community": 45, + "community": 61, "norm_label": "getpasswordresetscollection()" }, { @@ -290699,7 +291429,7 @@ "source_location": "L1398", "_origin": "ast", "id": "remix_app_api_utils_mongodb_collections_ensureindexes", - "community": 81, + "community": 50, "norm_label": "ensureindexes()" }, { @@ -290939,7 +291669,7 @@ "source_location": "L36", "_origin": "ast", "id": "remix_app_api_utils_mongodb_indexaudit_inspecthomerelationshiplookups", - "community": 164, + "community": 358, "norm_label": "inspecthomerelationshiplookups()" }, { @@ -290949,7 +291679,7 @@ "source_location": "L56", "_origin": "ast", "id": "remix_app_api_utils_mongodb_indexaudit_inspecthomelegacythingqueries", - "community": 374, + "community": 50, "norm_label": "inspecthomelegacythingqueries()" }, { @@ -291049,7 +291779,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_mongodb_indexlayoutactivation_test", - "community": 374, + "community": 50, "norm_label": "indexlayoutactivation.test.ts" }, { @@ -291059,7 +291789,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_mongodb_indexlayoutactivation", - "community": 374, + "community": 50, "norm_label": "indexlayoutactivation.ts" }, { @@ -291069,7 +291799,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_api_utils_mongodb_indexlayoutactivation_activateindexlayout", - "community": 374, + "community": 50, "norm_label": "activateindexlayout()" }, { @@ -291079,7 +291809,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_mongodb_legacythinglayout_test", - "community": 374, + "community": 50, "norm_label": "legacythinglayout.test.ts" }, { @@ -291089,7 +291819,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_api_utils_mongodb_legacythinglayout_test_fixture", - "community": 374, + "community": 50, "norm_label": "fixture()" }, { @@ -291099,7 +291829,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_mongodb_legacythinglayout", - "community": 374, + "community": 50, "norm_label": "legacythinglayout.ts" }, { @@ -291109,7 +291839,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_api_utils_mongodb_legacythinglayout_legacy_thing_index_names", - "community": 374, + "community": 50, "norm_label": "legacy_thing_index_names" }, { @@ -291119,7 +291849,7 @@ "source_location": "L15", "_origin": "ast", "id": "remix_app_api_utils_mongodb_legacythinglayout_invalidatelegacythinglayout", - "community": 374, + "community": 50, "norm_label": "invalidatelegacythinglayout()" }, { @@ -291129,7 +291859,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_api_utils_mongodb_legacythinglayout_homelegacythinglayoutready", - "community": 374, + "community": 50, "norm_label": "homelegacythinglayoutready()" }, { @@ -291149,7 +291879,7 @@ "source_location": "L26", "_origin": "ast", "id": "remix_app_api_utils_mongodb_legacythinglayout_runlegacythingindexlayout", - "community": 374, + "community": 50, "norm_label": "runlegacythingindexlayout()" }, { @@ -291159,7 +291889,7 @@ "source_location": "L67", "_origin": "ast", "id": "remix_app_api_utils_mongodb_legacythinglayout_migratelegacythingindexlayout", - "community": 374, + "community": 50, "norm_label": "migratelegacythingindexlayout()" }, { @@ -291279,7 +292009,7 @@ "source_location": "L100", "_origin": "ast", "id": "remix_app_api_utils_mongodb_querycontract_mongo_bson_value_types", - "community": 399, + "community": 698, "norm_label": "mongo_bson_value_types" }, { @@ -291289,7 +292019,7 @@ "source_location": "L121", "_origin": "ast", "id": "remix_app_api_utils_mongodb_querycontract_mongobsonvaluetype", - "community": 522, + "community": 698, "norm_label": "mongobsonvaluetype" }, { @@ -291299,7 +292029,7 @@ "source_location": "L126", "_origin": "ast", "id": "remix_app_api_utils_mongodb_querycontract_mongo_read_only_aggregation_stages", - "community": 399, + "community": 701, "norm_label": "mongo_read_only_aggregation_stages" }, { @@ -291309,7 +292039,7 @@ "source_location": "L165", "_origin": "ast", "id": "remix_app_api_utils_mongodb_querycontract_mongoreadonlyaggregationstage", - "community": 399, + "community": 701, "norm_label": "mongoreadonlyaggregationstage" }, { @@ -291379,7 +292109,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_mongodb_queryrunner", - "community": 268, + "community": 50, "norm_label": "queryrunner.ts" }, { @@ -291389,7 +292119,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_api_utils_mongodb_queryrunner_fail", - "community": 268, + "community": 50, "norm_label": "fail" }, { @@ -291399,7 +292129,7 @@ "source_location": "L18", "_origin": "ast", "id": "remix_app_api_utils_mongodb_queryrunner_baseoptions", - "community": 268, + "community": 50, "norm_label": "baseoptions()" }, { @@ -291409,7 +292139,7 @@ "source_location": "L26", "_origin": "ast", "id": "remix_app_api_utils_mongodb_queryrunner_collectvalues", - "community": 268, + "community": 50, "norm_label": "collectvalues()" }, { @@ -291419,7 +292149,7 @@ "source_location": "L66", "_origin": "ast", "id": "remix_app_api_utils_mongodb_queryrunner_boundeddistinctpipeline", - "community": 268, + "community": 50, "norm_label": "boundeddistinctpipeline()" }, { @@ -291429,7 +292159,7 @@ "source_location": "L81", "_origin": "ast", "id": "remix_app_api_utils_mongodb_queryrunner_runmongoquery", - "community": 268, + "community": 50, "norm_label": "runmongoquery()" }, { @@ -291459,7 +292189,7 @@ "source_location": "L24", "_origin": "ast", "id": "remix_app_api_utils_mongodb_querysafety_normalizedmongoquery", - "community": 268, + "community": 50, "norm_label": "normalizedmongoquery" }, { @@ -291729,7 +292459,7 @@ "source_location": "L437", "_origin": "ast", "id": "remix_app_api_utils_mongodb_querysafety_redactmongovalue", - "community": 268, + "community": 50, "norm_label": "redactmongovalue()" }, { @@ -291779,7 +292509,7 @@ "source_location": "L642", "_origin": "ast", "id": "remix_app_api_utils_mongodb_querysafety_resolvepipelinecollections", - "community": 268, + "community": 50, "norm_label": "resolvepipelinecollections()" }, { @@ -291789,7 +292519,7 @@ "source_location": "L683", "_origin": "ast", "id": "remix_app_api_utils_mongodb_querysafety_safemongoerror", - "community": 268, + "community": 50, "norm_label": "safemongoerror()" }, { @@ -291809,7 +292539,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_mongodb_relationshipindexlayout_test", - "community": 6, + "community": 50, "norm_label": "relationshipindexlayout.test.ts" }, { @@ -291819,7 +292549,7 @@ "source_location": "L38", "_origin": "ast", "id": "remix_app_api_utils_mongodb_relationshipindexlayout_test_fixture", - "community": 6, + "community": 50, "norm_label": "fixture()" }, { @@ -291829,7 +292559,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_mongodb_relationshipindexlayout", - "community": 6, + "community": 50, "norm_label": "relationshipindexlayout.ts" }, { @@ -291839,7 +292569,7 @@ "source_location": "L4", "_origin": "ast", "id": "remix_app_api_utils_mongodb_relationshipindexlayout_shared_relationship_kinds", - "community": 6, + "community": 50, "norm_label": "shared_relationship_kinds" }, { @@ -291849,7 +292579,7 @@ "source_location": "L5", "_origin": "ast", "id": "remix_app_api_utils_mongodb_relationshipindexlayout_shared_relationship_lookups", - "community": 6, + "community": 50, "norm_label": "shared_relationship_lookups" }, { @@ -291859,7 +292589,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_api_utils_mongodb_relationshipindexlayout_relationshipindexlayoutready", - "community": 6, + "community": 50, "norm_label": "relationshipindexlayoutready()" }, { @@ -291869,7 +292599,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_api_utils_mongodb_relationshipindexlayout_preparerelationshipindexlayout", - "community": 6, + "community": 50, "norm_label": "preparerelationshipindexlayout()" }, { @@ -291879,7 +292609,7 @@ "source_location": "L33", "_origin": "ast", "id": "remix_app_api_utils_mongodb_relationshipindexlayout_retirerelationshiplookupindexes", - "community": 6, + "community": 50, "norm_label": "retirerelationshiplookupindexes()" }, { @@ -291889,7 +292619,7 @@ "source_location": "L53", "_origin": "ast", "id": "remix_app_api_utils_mongodb_relationshipindexlayout_migraterelationshipindexlayout", - "community": 6, + "community": 50, "norm_label": "migraterelationshipindexlayout()" }, { @@ -291919,7 +292649,7 @@ "source_location": "L10", "_origin": "ast", "id": "remix_app_api_utils_mongodb_relationshiplookup_createrelationshiplookup", - "community": 6, + "community": 50, "norm_label": "createrelationshiplookup()" }, { @@ -291949,7 +292679,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_api_utils_mongodb_status_mongoconnectionstatus", - "community": 9, + "community": 334, "norm_label": "mongoconnectionstatus" }, { @@ -291969,7 +292699,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_mongodb_uniquekeys_test", - "community": 164, + "community": 358, "norm_label": "uniquekeys.test.ts" }, { @@ -291979,7 +292709,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_mongodb_uniquekeys", - "community": 164, + "community": 358, "norm_label": "uniquekeys.ts" }, { @@ -291989,7 +292719,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_api_utils_mongodb_uniquekeys_thinguniquekey", - "community": 6, + "community": 358, "norm_label": "thinguniquekey()" }, { @@ -291999,7 +292729,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_api_utils_mongodb_uniquekeys_thinguniquekeys", - "community": 164, + "community": 358, "norm_label": "thinguniquekeys()" }, { @@ -292009,7 +292739,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_api_utils_mongodb_uniquekeys_thinguniquekeyfilter", - "community": 164, + "community": 358, "norm_label": "thinguniquekeyfilter()" }, { @@ -292019,7 +292749,7 @@ "source_location": "L26", "_origin": "ast", "id": "remix_app_api_utils_mongodb_uniquekeys_thinguniquekeysfilter", - "community": 164, + "community": 358, "norm_label": "thinguniquekeysfilter()" }, { @@ -292029,7 +292759,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_networkprobe_test", - "community": 564, + "community": 194, "norm_label": "networkprobe.test.ts" }, { @@ -292039,7 +292769,7 @@ "source_location": "L56", "_origin": "ast", "id": "remix_app_api_utils_networkprobe_test_start", - "community": 564, + "community": 194, "norm_label": "start()" }, { @@ -292049,7 +292779,7 @@ "source_location": "L56", "_origin": "ast", "id": "remix_app_api_utils_networkprobe_test_cancel", - "community": 564, + "community": 194, "norm_label": "cancel()" }, { @@ -292059,7 +292789,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_networkprobe", - "community": 564, + "community": 194, "norm_label": "networkprobe.ts" }, { @@ -292069,7 +292799,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_api_utils_networkprobe_network_probe_packet_bytes", - "community": 564, + "community": 194, "norm_label": "network_probe_packet_bytes" }, { @@ -292079,7 +292809,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_api_utils_networkprobe_networkprobepacketbytes", - "community": 564, + "community": 194, "norm_label": "networkprobepacketbytes" }, { @@ -292089,7 +292819,7 @@ "source_location": "L12", "_origin": "ast", "id": "remix_app_api_utils_networkprobe_network_probe_upload_bytes", - "community": 564, + "community": 194, "norm_label": "network_probe_upload_bytes" }, { @@ -292099,7 +292829,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_api_utils_networkprobe_networkprobeuploadbytes", - "community": 564, + "community": 194, "norm_label": "networkprobeuploadbytes" }, { @@ -292109,7 +292839,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_api_utils_networkprobe_parsenetworkprobeuploadbytes", - "community": 564, + "community": 194, "norm_label": "parsenetworkprobeuploadbytes()" }, { @@ -292119,7 +292849,7 @@ "source_location": "L21", "_origin": "ast", "id": "remix_app_api_utils_networkprobe_common_headers", - "community": 564, + "community": 194, "norm_label": "common_headers" }, { @@ -292129,7 +292859,7 @@ "source_location": "L27", "_origin": "ast", "id": "remix_app_api_utils_networkprobe_parsenetworkprobepacketbytes", - "community": 564, + "community": 194, "norm_label": "parsenetworkprobepacketbytes()" }, { @@ -292139,7 +292869,7 @@ "source_location": "L32", "_origin": "ast", "id": "remix_app_api_utils_networkprobe_networkprobepingresponse", - "community": 564, + "community": 194, "norm_label": "networkprobepingresponse()" }, { @@ -292149,7 +292879,7 @@ "source_location": "L42", "_origin": "ast", "id": "remix_app_api_utils_networkprobe_networkprobedownloadresponse", - "community": 564, + "community": 194, "norm_label": "networkprobedownloadresponse()" }, { @@ -292159,7 +292889,7 @@ "source_location": "L57", "_origin": "ast", "id": "remix_app_api_utils_networkprobe_readexactnetworkprobeupload", - "community": 564, + "community": 194, "norm_label": "readexactnetworkprobeupload()" }, { @@ -292189,7 +292919,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_notifications_apns", - "community": 82, + "community": 45, "norm_label": "apns.ts" }, { @@ -292199,7 +292929,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_api_utils_notifications_apns_apnsconfig", - "community": 82, + "community": 45, "norm_label": "apnsconfig" }, { @@ -292209,7 +292939,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_api_utils_notifications_apns_pushenvelope", - "community": 82, + "community": 45, "norm_label": "pushenvelope" }, { @@ -292219,7 +292949,7 @@ "source_location": "L11", "_origin": "ast", "id": "remix_app_api_utils_notifications_apns_actions", - "community": 82, + "community": 45, "norm_label": "actions" }, { @@ -292229,7 +292959,7 @@ "source_location": "L25", "_origin": "ast", "id": "remix_app_api_utils_notifications_apns_base64url", - "community": 82, + "community": 45, "norm_label": "base64url()" }, { @@ -292239,7 +292969,7 @@ "source_location": "L39", "_origin": "ast", "id": "remix_app_api_utils_notifications_apns_providertoken", - "community": 82, + "community": 45, "norm_label": "providertoken()" }, { @@ -292249,7 +292979,7 @@ "source_location": "L60", "_origin": "ast", "id": "remix_app_api_utils_notifications_apns_notificationurl", - "community": 82, + "community": 45, "norm_label": "notificationurl()" }, { @@ -292259,7 +292989,7 @@ "source_location": "L73", "_origin": "ast", "id": "remix_app_api_utils_notifications_apns_buildapnspayload", - "community": 82, + "community": 45, "norm_label": "buildapnspayload()" }, { @@ -292269,7 +292999,7 @@ "source_location": "L91", "_origin": "ast", "id": "remix_app_api_utils_notifications_apns_senddevice", - "community": 82, + "community": 45, "norm_label": "senddevice()" }, { @@ -292279,7 +293009,7 @@ "source_location": "L143", "_origin": "ast", "id": "remix_app_api_utils_notifications_apns_sendnotificationpush", - "community": 82, + "community": 45, "norm_label": "sendnotificationpush()" }, { @@ -292529,7 +293259,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_notifications_mentions", - "community": 82, + "community": 47, "norm_label": "mentions.ts" }, { @@ -292539,7 +293269,7 @@ "source_location": "L35", "_origin": "ast", "id": "remix_app_api_utils_notifications_mentions_emitmentioninput", - "community": 82, + "community": 47, "norm_label": "emitmentioninput" }, { @@ -292549,7 +293279,7 @@ "source_location": "L58", "_origin": "ast", "id": "remix_app_api_utils_notifications_mentions_emitmentionnotifications", - "community": 82, + "community": 47, "norm_label": "emitmentionnotifications()" }, { @@ -292559,7 +293289,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_notifications_notificationlistoptions_test", - "community": 82, + "community": 45, "norm_label": "notificationlistoptions.test.ts" }, { @@ -292569,7 +293299,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_notifications_notifications", - "community": 82, + "community": 45, "norm_label": "notifications.ts" }, { @@ -292579,7 +293309,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_api_utils_notifications_notifications_notificationactor", - "community": 82, + "community": 47, "norm_label": "notificationactor" }, { @@ -292589,7 +293319,7 @@ "source_location": "L46", "_origin": "ast", "id": "remix_app_api_utils_notifications_notifications_emitnotificationinput", - "community": 82, + "community": 45, "norm_label": "emitnotificationinput" }, { @@ -292599,7 +293329,7 @@ "source_location": "L64", "_origin": "ast", "id": "remix_app_api_utils_notifications_notifications_publicnotification", - "community": 144, + "community": 45, "norm_label": "publicnotification" }, { @@ -292609,7 +293339,7 @@ "source_location": "L83", "_origin": "ast", "id": "remix_app_api_utils_notifications_notifications_clamppreview", - "community": 82, + "community": 45, "norm_label": "clamppreview()" }, { @@ -292619,7 +293349,7 @@ "source_location": "L93", "_origin": "ast", "id": "remix_app_api_utils_notifications_notifications_safeinternalhref", - "community": 82, + "community": 45, "norm_label": "safeinternalhref()" }, { @@ -292629,7 +293359,7 @@ "source_location": "L102", "_origin": "ast", "id": "remix_app_api_utils_notifications_notifications_notificationdoc", - "community": 82, + "community": 45, "norm_label": "notificationdoc()" }, { @@ -292639,7 +293369,7 @@ "source_location": "L131", "_origin": "ast", "id": "remix_app_api_utils_notifications_notifications_emitnotification", - "community": 82, + "community": 47, "norm_label": "emitnotification()" }, { @@ -292649,7 +293379,7 @@ "source_location": "L153", "_origin": "ast", "id": "remix_app_api_utils_notifications_notifications_bulkrecipient", - "community": 82, + "community": 45, "norm_label": "bulkrecipient" }, { @@ -292659,7 +293389,7 @@ "source_location": "L154", "_origin": "ast", "id": "remix_app_api_utils_notifications_notifications_emitnotificationsbulkoptions", - "community": 82, + "community": 45, "norm_label": "emitnotificationsbulkoptions" }, { @@ -292669,7 +293399,7 @@ "source_location": "L163", "_origin": "ast", "id": "remix_app_api_utils_notifications_notifications_withoutunreadduplicates", - "community": 82, + "community": 6, "norm_label": "withoutunreadduplicates()" }, { @@ -292679,7 +293409,7 @@ "source_location": "L189", "_origin": "ast", "id": "remix_app_api_utils_notifications_notifications_system_notification_actor", - "community": 82, + "community": 45, "norm_label": "system_notification_actor" }, { @@ -292689,7 +293419,7 @@ "source_location": "L195", "_origin": "ast", "id": "remix_app_api_utils_notifications_notifications_emitsystemnotificationinput", - "community": 82, + "community": 45, "norm_label": "emitsystemnotificationinput" }, { @@ -292699,7 +293429,7 @@ "source_location": "L206", "_origin": "ast", "id": "remix_app_api_utils_notifications_notifications_emitloginnotification", - "community": 41, + "community": 217, "norm_label": "emitloginnotification()" }, { @@ -292729,7 +293459,7 @@ "source_location": "L259", "_origin": "ast", "id": "remix_app_api_utils_notifications_notifications_loadactors", - "community": 82, + "community": 45, "norm_label": "loadactors()" }, { @@ -292739,7 +293469,7 @@ "source_location": "L298", "_origin": "ast", "id": "remix_app_api_utils_notifications_notifications_listnotificationsresult", - "community": 82, + "community": 45, "norm_label": "listnotificationsresult" }, { @@ -292749,7 +293479,7 @@ "source_location": "L314", "_origin": "ast", "id": "remix_app_api_utils_notifications_notifications_notificationlistoptions", - "community": 82, + "community": 45, "norm_label": "notificationlistoptions" }, { @@ -292759,7 +293489,7 @@ "source_location": "L321", "_origin": "ast", "id": "remix_app_api_utils_notifications_notifications_normalizednotificationlistoptions", - "community": 82, + "community": 45, "norm_label": "normalizednotificationlistoptions" }, { @@ -292769,7 +293499,7 @@ "source_location": "L331", "_origin": "ast", "id": "remix_app_api_utils_notifications_notifications_parseoptionaldate", - "community": 82, + "community": 45, "norm_label": "parseoptionaldate()" }, { @@ -292779,7 +293509,7 @@ "source_location": "L338", "_origin": "ast", "id": "remix_app_api_utils_notifications_notifications_notificationcursorfor", - "community": 82, + "community": 45, "norm_label": "notificationcursorfor()" }, { @@ -292789,7 +293519,7 @@ "source_location": "L341", "_origin": "ast", "id": "remix_app_api_utils_notifications_notifications_parsenotificationcursor", - "community": 82, + "community": 45, "norm_label": "parsenotificationcursor()" }, { @@ -292799,7 +293529,7 @@ "source_location": "L356", "_origin": "ast", "id": "remix_app_api_utils_notifications_notifications_notificationcursorclausefor", - "community": 82, + "community": 45, "norm_label": "notificationcursorclausefor()" }, { @@ -292809,7 +293539,7 @@ "source_location": "L363", "_origin": "ast", "id": "remix_app_api_utils_notifications_notifications_normalizenotificationlistoptions", - "community": 82, + "community": 45, "norm_label": "normalizenotificationlistoptions()" }, { @@ -292819,7 +293549,7 @@ "source_location": "L408", "_origin": "ast", "id": "remix_app_api_utils_notifications_notifications_listnotifications", - "community": 82, + "community": 45, "norm_label": "listnotifications()" }, { @@ -292829,7 +293559,7 @@ "source_location": "L469", "_origin": "ast", "id": "remix_app_api_utils_notifications_notifications_marknotificationsread", - "community": 82, + "community": 3, "norm_label": "marknotificationsread()" }, { @@ -292839,7 +293569,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_notifications_pushdevices_test", - "community": 82, + "community": 45, "norm_label": "pushdevices.test.ts" }, { @@ -292849,7 +293579,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_notifications_pushdevices", - "community": 82, + "community": 45, "norm_label": "pushdevices.ts" }, { @@ -292859,7 +293589,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_api_utils_notifications_pushdevices_pushplatform", - "community": 82, + "community": 45, "norm_label": "pushplatform" }, { @@ -292869,7 +293599,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_api_utils_notifications_pushdevices_pushenvironment", - "community": 82, + "community": 45, "norm_label": "pushenvironment" }, { @@ -292879,7 +293609,7 @@ "source_location": "L11", "_origin": "ast", "id": "remix_app_api_utils_notifications_pushdevices_pushdevice", - "community": 82, + "community": 45, "norm_label": "pushdevice" }, { @@ -292889,7 +293619,7 @@ "source_location": "L21", "_origin": "ast", "id": "remix_app_api_utils_notifications_pushdevices_publicpushdevice", - "community": 82, + "community": 45, "norm_label": "publicpushdevice" }, { @@ -292899,7 +293629,7 @@ "source_location": "L27", "_origin": "ast", "id": "remix_app_api_utils_notifications_pushdevices_normalizepushdeviceinput", - "community": 82, + "community": 45, "norm_label": "normalizepushdeviceinput()" }, { @@ -292909,7 +293639,7 @@ "source_location": "L49", "_origin": "ast", "id": "remix_app_api_utils_notifications_pushdevices_packtoken", - "community": 82, + "community": 45, "norm_label": "packtoken()" }, { @@ -292919,7 +293649,7 @@ "source_location": "L51", "_origin": "ast", "id": "remix_app_api_utils_notifications_pushdevices_unpacktoken", - "community": 82, + "community": 45, "norm_label": "unpacktoken()" }, { @@ -292929,7 +293659,7 @@ "source_location": "L67", "_origin": "ast", "id": "remix_app_api_utils_notifications_pushdevices_publicdevice", - "community": 82, + "community": 45, "norm_label": "publicdevice()" }, { @@ -292939,7 +293669,7 @@ "source_location": "L89", "_origin": "ast", "id": "remix_app_api_utils_notifications_pushdevices_pushdeviceupsert", - "community": 82, + "community": 45, "norm_label": "pushdeviceupsert()" }, { @@ -292949,7 +293679,7 @@ "source_location": "L115", "_origin": "ast", "id": "remix_app_api_utils_notifications_pushdevices_registerpushdevices", - "community": 82, + "community": 45, "norm_label": "registerpushdevices()" }, { @@ -292959,7 +293689,7 @@ "source_location": "L149", "_origin": "ast", "id": "remix_app_api_utils_notifications_pushdevices_listpushdevicesforuser", - "community": 82, + "community": 45, "norm_label": "listpushdevicesforuser()" }, { @@ -292979,7 +293709,7 @@ "source_location": "L197", "_origin": "ast", "id": "remix_app_api_utils_notifications_pushdevices_removepushdevicebyid", - "community": 82, + "community": 45, "norm_label": "removepushdevicebyid()" }, { @@ -292989,7 +293719,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_notifications_recordmessage_test", - "community": 82, + "community": 45, "norm_label": "recordmessage.test.ts" }, { @@ -292999,7 +293729,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_api_utils_notifications_recordmessage_test_message", - "community": 82, + "community": 45, "norm_label": "message" }, { @@ -293009,7 +293739,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_notifications_recordmessage", - "community": 82, + "community": 45, "norm_label": "recordmessage.ts" }, { @@ -293019,7 +293749,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_api_utils_notifications_recordmessage_parsenotificationmessage", - "community": 82, + "community": 45, "norm_label": "parsenotificationmessage()" }, { @@ -293029,7 +293759,7 @@ "source_location": "L24", "_origin": "ast", "id": "remix_app_api_utils_notifications_recordmessage_recordnotificationmessage", - "community": 82, + "community": 45, "norm_label": "recordnotificationmessage()" }, { @@ -293569,7 +294299,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_ratelimit_bytebudget", - "community": 81, + "community": 50, "norm_label": "bytebudget.ts" }, { @@ -293579,7 +294309,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_api_utils_ratelimit_bytebudget_bytebudgetoutcome", - "community": 81, + "community": 50, "norm_label": "bytebudgetoutcome" }, { @@ -293589,7 +294319,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_api_utils_ratelimit_bytebudget_hash", - "community": 81, + "community": 50, "norm_label": "hash()" }, { @@ -293599,7 +294329,7 @@ "source_location": "L24", "_origin": "ast", "id": "remix_app_api_utils_ratelimit_bytebudget_consumebytebudget", - "community": 81, + "community": 50, "norm_label": "consumebytebudget()" }, { @@ -293609,7 +294339,7 @@ "source_location": "L82", "_origin": "ast", "id": "remix_app_api_utils_ratelimit_bytebudget_refundbytebudget", - "community": 81, + "community": 50, "norm_label": "refundbytebudget()" }, { @@ -293809,7 +294539,7 @@ "source_location": "L123", "_origin": "ast", "id": "remix_app_api_utils_ratelimit_enforce_enforcefixedratelimit", - "community": 41, + "community": 358, "norm_label": "enforcefixedratelimit()" }, { @@ -294509,7 +295239,7 @@ "source_location": "L45", "_origin": "ast", "id": "remix_app_api_utils_settings_prconflictresolvermodelwaterfallcore_ai_workflow_base_models", - "community": 114, + "community": 6, "norm_label": "ai_workflow_base_models" }, { @@ -294549,7 +295279,7 @@ "source_location": "L112", "_origin": "ast", "id": "remix_app_api_utils_settings_prconflictresolvermodelwaterfallcore_aiworkflowmodelchoice", - "community": 114, + "community": 588, "norm_label": "aiworkflowmodelchoice" }, { @@ -294579,7 +295309,7 @@ "source_location": "L136", "_origin": "ast", "id": "remix_app_api_utils_settings_prconflictresolvermodelwaterfallcore_parseaiworkflowmodeloptionid", - "community": 114, + "community": 122, "norm_label": "parseaiworkflowmodeloptionid()" }, { @@ -294709,7 +295439,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_settings_prconflictresolvermodelwaterfallroute_test", - "community": 194, + "community": 114, "norm_label": "prconflictresolvermodelwaterfallroute.test.ts" }, { @@ -294719,7 +295449,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_api_utils_settings_prconflictresolvermodelwaterfallroute_test_postrequest", - "community": 194, + "community": 114, "norm_label": "postrequest()" }, { @@ -294729,7 +295459,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_api_utils_settings_prconflictresolvermodelwaterfallroute_test_createhandlers", - "community": 194, + "community": 114, "norm_label": "createhandlers()" }, { @@ -294739,7 +295469,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_storage_accountedthings_test", - "community": 123, + "community": 261, "norm_label": "accountedthings.test.ts" }, { @@ -294749,7 +295479,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_storage_accountedthings", - "community": 123, + "community": 261, "norm_label": "accountedthings.ts" }, { @@ -294759,7 +295489,7 @@ "source_location": "L17", "_origin": "ast", "id": "remix_app_api_utils_storage_accountedthings_accountedthingplane", - "community": 123, + "community": 261, "norm_label": "accountedthingplane" }, { @@ -294769,7 +295499,7 @@ "source_location": "L18", "_origin": "ast", "id": "remix_app_api_utils_storage_accountedthings_accountedthingmutationoptions", - "community": 123, + "community": 261, "norm_label": "accountedthingmutationoptions" }, { @@ -294779,7 +295509,7 @@ "source_location": "L24", "_origin": "ast", "id": "remix_app_api_utils_storage_accountedthings_optionswithoutaccounting", - "community": 123, + "community": 261, "norm_label": "optionswithoutaccounting()" }, { @@ -294789,7 +295519,7 @@ "source_location": "L29", "_origin": "ast", "id": "remix_app_api_utils_storage_accountedthings_accountplaneapplies", - "community": 123, + "community": 261, "norm_label": "accountplaneapplies()" }, { @@ -294799,7 +295529,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_api_utils_storage_accountedthings_runmutation", - "community": 123, + "community": 261, "norm_label": "runmutation()" }, { @@ -294809,7 +295539,7 @@ "source_location": "L37", "_origin": "ast", "id": "remix_app_api_utils_storage_accountedthings_canonicalsize", - "community": 123, + "community": 261, "norm_label": "canonicalsize()" }, { @@ -294819,7 +295549,7 @@ "source_location": "L39", "_origin": "ast", "id": "remix_app_api_utils_storage_accountedthings_stampfor", - "community": 123, + "community": 261, "norm_label": "stampfor()" }, { @@ -294829,7 +295559,7 @@ "source_location": "L45", "_origin": "ast", "id": "remix_app_api_utils_storage_accountedthings_billableonplane", - "community": 123, + "community": 261, "norm_label": "billableonplane()" }, { @@ -294839,7 +295569,7 @@ "source_location": "L47", "_origin": "ast", "id": "remix_app_api_utils_storage_accountedthings_adddelta", - "community": 123, + "community": 261, "norm_label": "adddelta()" }, { @@ -294849,7 +295579,7 @@ "source_location": "L60", "_origin": "ast", "id": "remix_app_api_utils_storage_accountedthings_applydeltas", - "community": 123, + "community": 261, "norm_label": "applydeltas()" }, { @@ -294859,7 +295589,7 @@ "source_location": "L66", "_origin": "ast", "id": "remix_app_api_utils_storage_accountedthings_insertaccountedthing", - "community": 123, + "community": 261, "norm_label": "insertaccountedthing()" }, { @@ -294869,7 +295599,7 @@ "source_location": "L76", "_origin": "ast", "id": "remix_app_api_utils_storage_accountedthings_updateaccounted", - "community": 123, + "community": 261, "norm_label": "updateaccounted()" }, { @@ -294879,7 +295609,7 @@ "source_location": "L139", "_origin": "ast", "id": "remix_app_api_utils_storage_accountedthings_updateaccountedthing", - "community": 152, + "community": 261, "norm_label": "updateaccountedthing()" }, { @@ -294889,7 +295619,7 @@ "source_location": "L142", "_origin": "ast", "id": "remix_app_api_utils_storage_accountedthings_updateaccountedthings", - "community": 123, + "community": 261, "norm_label": "updateaccountedthings()" }, { @@ -294899,7 +295629,7 @@ "source_location": "L145", "_origin": "ast", "id": "remix_app_api_utils_storage_accountedthings_deleteaccounted", - "community": 123, + "community": 261, "norm_label": "deleteaccounted()" }, { @@ -294909,7 +295639,7 @@ "source_location": "L172", "_origin": "ast", "id": "remix_app_api_utils_storage_accountedthings_deleteaccountedthing", - "community": 123, + "community": 261, "norm_label": "deleteaccountedthing()" }, { @@ -294919,7 +295649,7 @@ "source_location": "L175", "_origin": "ast", "id": "remix_app_api_utils_storage_accountedthings_deleteaccountedthings", - "community": 123, + "community": 261, "norm_label": "deleteaccountedthings()" }, { @@ -294929,7 +295659,7 @@ "source_location": "L178", "_origin": "ast", "id": "remix_app_api_utils_storage_accountedthings_stampaccountedstoragedocument", - "community": 123, + "community": 261, "norm_label": "stampaccountedstoragedocument()" }, { @@ -294939,7 +295669,7 @@ "source_location": "L180", "_origin": "ast", "id": "remix_app_api_utils_storage_accountedthings_home_accounted_storage_options", - "community": 123, + "community": 261, "norm_label": "home_accounted_storage_options" }, { @@ -294949,7 +295679,7 @@ "source_location": "L182", "_origin": "ast", "id": "remix_app_api_utils_storage_accountedthings_withaccountedthingstransaction", - "community": 123, + "community": 33, "norm_label": "withaccountedthingstransaction()" }, { @@ -294959,7 +295689,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_storage_storagecore_test", - "community": 123, + "community": 261, "norm_label": "storagecore.test.ts" }, { @@ -294969,7 +295699,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_storage_storagecore", - "community": 123, + "community": 261, "norm_label": "storagecore.ts" }, { @@ -294979,7 +295709,7 @@ "source_location": "L11", "_origin": "ast", "id": "remix_app_api_utils_storage_storagecore_invalidattachmentstorageenvelopeerror", - "community": 123, + "community": 261, "norm_label": "invalidattachmentstorageenvelopeerror" }, { @@ -294989,7 +295719,7 @@ "source_location": "L12", "_origin": "ast", "id": "remix_app_api_utils_storage_storagecore_invalidattachmentstorageenvelopeerror_constructor", - "community": 123, + "community": 261, "norm_label": ".constructor()" }, { @@ -294999,7 +295729,7 @@ "source_location": "L24", "_origin": "ast", "id": "remix_app_api_utils_storage_storagecore_thingstoragesizebytes", - "community": 123, + "community": 261, "norm_label": "thingstoragesizebytes()" }, { @@ -295009,7 +295739,7 @@ "source_location": "L53", "_origin": "ast", "id": "remix_app_api_utils_storage_storagecore_currentcontentstoragesizebytes", - "community": 123, + "community": 261, "norm_label": "currentcontentstoragesizebytes()" }, { @@ -295019,7 +295749,7 @@ "source_location": "L86", "_origin": "ast", "id": "remix_app_api_utils_storage_storagecore_user_storage_status", - "community": 123, + "community": 261, "norm_label": "user_storage_status" }, { @@ -295029,7 +295759,7 @@ "source_location": "L92", "_origin": "ast", "id": "remix_app_api_utils_storage_storagecore_userstorageledgerstatus", - "community": 123, + "community": 261, "norm_label": "userstorageledgerstatus" }, { @@ -295039,7 +295769,7 @@ "source_location": "L94", "_origin": "ast", "id": "remix_app_api_utils_storage_storagecore_userstorageusage", - "community": 123, + "community": 261, "norm_label": "userstorageusage" }, { @@ -295049,7 +295779,7 @@ "source_location": "L104", "_origin": "ast", "id": "remix_app_api_utils_storage_storagecore_control_plane_storage_thingtimes", - "community": 123, + "community": 261, "norm_label": "control_plane_storage_thingtimes" }, { @@ -295059,7 +295789,7 @@ "source_location": "L148", "_origin": "ast", "id": "remix_app_api_utils_storage_storagecore_control_plane_thingtimes", - "community": 123, + "community": 261, "norm_label": "control_plane_thingtimes" }, { @@ -295069,7 +295799,7 @@ "source_location": "L150", "_origin": "ast", "id": "remix_app_api_utils_storage_storagecore_storagesandboxstate", - "community": 123, + "community": 175, "norm_label": "storagesandboxstate" }, { @@ -295079,7 +295809,7 @@ "source_location": "L164", "_origin": "ast", "id": "remix_app_api_utils_storage_storagecore_nonsandboxstoragecandidateexpression", - "community": 123, + "community": 261, "norm_label": "nonsandboxstoragecandidateexpression" }, { @@ -295089,7 +295819,7 @@ "source_location": "L167", "_origin": "ast", "id": "remix_app_api_utils_storage_storagecore_realstoragesourceexpression", - "community": 123, + "community": 261, "norm_label": "realstoragesourceexpression" }, { @@ -295099,7 +295829,7 @@ "source_location": "L171", "_origin": "ast", "id": "remix_app_api_utils_storage_storagecore_billablestoragecandidateexpression", - "community": 123, + "community": 261, "norm_label": "billablestoragecandidateexpression" }, { @@ -295109,7 +295839,7 @@ "source_location": "L194", "_origin": "ast", "id": "remix_app_api_utils_storage_storagecore_isbillablestoragething", - "community": 123, + "community": 175, "norm_label": "isbillablestoragething()" }, { @@ -295119,7 +295849,7 @@ "source_location": "L208", "_origin": "ast", "id": "remix_app_api_utils_storage_storagecore_storageremainingbytes", - "community": 123, + "community": 8, "norm_label": "storageremainingbytes()" }, { @@ -295129,7 +295859,7 @@ "source_location": "L211", "_origin": "ast", "id": "remix_app_api_utils_storage_storagecore_storageoveragebytes", - "community": 123, + "community": 8, "norm_label": "storageoveragebytes()" }, { @@ -295139,7 +295869,7 @@ "source_location": "L214", "_origin": "ast", "id": "remix_app_api_utils_storage_storagecore_normalizedstorageusage", - "community": 195, + "community": 8, "norm_label": "normalizedstorageusage()" }, { @@ -295149,7 +295879,7 @@ "source_location": "L249", "_origin": "ast", "id": "remix_app_api_utils_storage_storagecore_storagemutationerror", - "community": 155, + "community": 16, "norm_label": "storagemutationerror" }, { @@ -295159,7 +295889,7 @@ "source_location": "L253", "_origin": "ast", "id": "remix_app_api_utils_storage_storagecore_storagemutationerror_constructor", - "community": 155, + "community": 16, "norm_label": ".constructor()" }, { @@ -295169,7 +295899,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_storage_userstorage", - "community": 195, + "community": 261, "norm_label": "userstorage.ts" }, { @@ -295179,7 +295909,7 @@ "source_location": "L24", "_origin": "ast", "id": "remix_app_api_utils_storage_userstorage_hasown", - "community": 195, + "community": 261, "norm_label": "hasown()" }, { @@ -295189,7 +295919,7 @@ "source_location": "L27", "_origin": "ast", "id": "remix_app_api_utils_storage_userstorage_userstorageallowancefromcrystal", - "community": 195, + "community": 261, "norm_label": "userstorageallowancefromcrystal()" }, { @@ -295199,7 +295929,7 @@ "source_location": "L37", "_origin": "ast", "id": "remix_app_api_utils_storage_userstorage_userstorageallowanceisvalid", - "community": 195, + "community": 261, "norm_label": "userstorageallowanceisvalid()" }, { @@ -295209,7 +295939,7 @@ "source_location": "L47", "_origin": "ast", "id": "remix_app_api_utils_storage_userstorage_userstorageallowanceexpression", - "community": 195, + "community": 261, "norm_label": "userstorageallowanceexpression" }, { @@ -295229,7 +295959,7 @@ "source_location": "L101", "_origin": "ast", "id": "remix_app_api_utils_storage_userstorage_safewholenumberexpression", - "community": 123, + "community": 261, "norm_label": "safewholenumberexpression()" }, { @@ -295239,7 +295969,7 @@ "source_location": "L116", "_origin": "ast", "id": "remix_app_api_utils_storage_userstorage_usagefromsubscriptiondoc", - "community": 195, + "community": 261, "norm_label": "usagefromsubscriptiondoc()" }, { @@ -295249,7 +295979,7 @@ "source_location": "L126", "_origin": "ast", "id": "remix_app_api_utils_storage_userstorage_unavailableuserstorageusage", - "community": 195, + "community": 261, "norm_label": "unavailableuserstorageusage()" }, { @@ -295259,7 +295989,7 @@ "source_location": "L135", "_origin": "ast", "id": "remix_app_api_utils_storage_userstorage_getuserstorageusage", - "community": 195, + "community": 261, "norm_label": "getuserstorageusage()" }, { @@ -295269,7 +295999,7 @@ "source_location": "L141", "_origin": "ast", "id": "remix_app_api_utils_storage_userstorage_getuserstorageusages", - "community": 195, + "community": 261, "norm_label": "getuserstorageusages()" }, { @@ -295279,7 +296009,7 @@ "source_location": "L164", "_origin": "ast", "id": "remix_app_api_utils_storage_userstorage_explainpositiveadmissionfailure", - "community": 195, + "community": 261, "norm_label": "explainpositiveadmissionfailure()" }, { @@ -295289,7 +296019,7 @@ "source_location": "L189", "_origin": "ast", "id": "remix_app_api_utils_storage_userstorage_reconcileuserstorageintransaction", - "community": 123, + "community": 261, "norm_label": "reconcileuserstorageintransaction()" }, { @@ -295299,7 +296029,7 @@ "source_location": "L284", "_origin": "ast", "id": "remix_app_api_utils_storage_userstorage_applyuserstoragedelta", - "community": 123, + "community": 261, "norm_label": "applyuserstoragedelta()" }, { @@ -295309,7 +296039,7 @@ "source_location": "L359", "_origin": "ast", "id": "remix_app_api_utils_storage_userstorage_markuserstorageneedsreconcile", - "community": 123, + "community": 261, "norm_label": "markuserstorageneedsreconcile()" }, { @@ -295319,7 +296049,7 @@ "source_location": "L383", "_origin": "ast", "id": "remix_app_api_utils_storage_userstorage_reconcileuserstorage", - "community": 195, + "community": 261, "norm_label": "reconcileuserstorage()" }, { @@ -295329,7 +296059,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_storage_userstoragereadiness_test", - "community": 195, + "community": 261, "norm_label": "userstoragereadiness.test.ts" }, { @@ -295339,7 +296069,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_api_utils_storage_userstoragereadiness_test_ledger", - "community": 195, + "community": 261, "norm_label": "ledger()" }, { @@ -295349,7 +296079,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_storage_userstoragereadiness", - "community": 9, + "community": 261, "norm_label": "userstoragereadiness.ts" }, { @@ -295359,7 +296089,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_api_utils_storage_userstoragereadiness_userstorageaccountingreadiness", - "community": 9, + "community": 261, "norm_label": "userstorageaccountingreadiness" }, { @@ -295369,7 +296099,7 @@ "source_location": "L17", "_origin": "ast", "id": "remix_app_api_utils_storage_userstoragereadiness_userstorageledgersareready", - "community": 9, + "community": 261, "norm_label": "userstorageledgersareready()" }, { @@ -295379,7 +296109,7 @@ "source_location": "L35", "_origin": "ast", "id": "remix_app_api_utils_storage_userstoragereadiness_readuserstorageaccountingreadiness", - "community": 9, + "community": 261, "norm_label": "readuserstorageaccountingreadiness()" }, { @@ -295389,7 +296119,7 @@ "source_location": "L61", "_origin": "ast", "id": "remix_app_api_utils_storage_userstoragereadiness_getuserstorageaccountingreadiness", - "community": 9, + "community": 261, "norm_label": "getuserstorageaccountingreadiness()" }, { @@ -295399,7 +296129,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptionidentity_test", - "community": 195, + "community": 487, "norm_label": "subscriptionidentity.test.ts" }, { @@ -295409,7 +296139,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptionidentity_test_canonicalledger", - "community": 195, + "community": 261, "norm_label": "canonicalledger()" }, { @@ -295419,7 +296149,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptionidentity", - "community": 195, + "community": 261, "norm_label": "subscriptionidentity.ts" }, { @@ -295429,7 +296159,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptionidentity_subscriptionidentitysubject", - "community": 195, + "community": 261, "norm_label": "subscriptionidentitysubject" }, { @@ -295439,7 +296169,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptionidentity_subscriptionshareid", - "community": 195, + "community": 261, "norm_label": "subscriptionshareid()" }, { @@ -295449,7 +296179,7 @@ "source_location": "L11", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptionidentity_subscriptionthingmatch", - "community": 195, + "community": 261, "norm_label": "subscriptionthingmatch()" }, { @@ -295459,7 +296189,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptionidentity_user_subscription_root_keys", - "community": 195, + "community": 261, "norm_label": "user_subscription_root_keys" }, { @@ -295469,7 +296199,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptionidentity_user_subscription_crystal_keys", - "community": 195, + "community": 261, "norm_label": "user_subscription_crystal_keys" }, { @@ -295479,7 +296209,7 @@ "source_location": "L52", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptionidentity_isplainobject", - "community": 195, + "community": 261, "norm_label": "isplainobject()" }, { @@ -295489,7 +296219,7 @@ "source_location": "L53", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptionidentity_hasonlykeys", - "community": 195, + "community": 261, "norm_label": "hasonlykeys()" }, { @@ -295499,7 +296229,7 @@ "source_location": "L54", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptionidentity_validdate", - "community": 195, + "community": 261, "norm_label": "validdate()" }, { @@ -295509,7 +296239,7 @@ "source_location": "L55", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptionidentity_validnullablequota", - "community": 195, + "community": 261, "norm_label": "validnullablequota()" }, { @@ -295519,7 +296249,7 @@ "source_location": "L58", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptionidentity_storedquotafieldsaretrusted", - "community": 195, + "community": 261, "norm_label": "storedquotafieldsaretrusted()" }, { @@ -295529,7 +296259,7 @@ "source_location": "L65", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptionidentity_storedtierquotasaretrusted", - "community": 195, + "community": 261, "norm_label": "storedtierquotasaretrusted()" }, { @@ -295539,7 +296269,7 @@ "source_location": "L67", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptionidentity_storedoverridesaretrusted", - "community": 195, + "community": 261, "norm_label": "storedoverridesaretrusted()" }, { @@ -295549,7 +296279,7 @@ "source_location": "L69", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptionidentity_tierassignmentshapeistrusted", - "community": 195, + "community": 261, "norm_label": "tierassignmentshapeistrusted()" }, { @@ -295559,7 +296289,7 @@ "source_location": "L89", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptionidentity_usersubscriptionidentityistrusted", - "community": 195, + "community": 261, "norm_label": "usersubscriptionidentityistrusted()" }, { @@ -295569,7 +296299,7 @@ "source_location": "L118", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptionidentity_usersubscriptionledgerenvelopeistrusted", - "community": 195, + "community": 261, "norm_label": "usersubscriptionledgerenvelopeistrusted()" }, { @@ -295579,7 +296309,7 @@ "source_location": "L123", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptionidentity_legacyusersubscriptionledgerenvelopecanupgrade", - "community": 195, + "community": 261, "norm_label": "legacyusersubscriptionledgerenvelopecanupgrade()" }, { @@ -295589,7 +296319,7 @@ "source_location": "L128", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptionidentity_usersubscriptionledgerenvelopeissues", - "community": 195, + "community": 261, "norm_label": "usersubscriptionledgerenvelopeissues()" }, { @@ -295599,7 +296329,7 @@ "source_location": "L174", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptionidentity_objectkeyssubsetexpression", - "community": 195, + "community": 261, "norm_label": "objectkeyssubsetexpression()" }, { @@ -295609,7 +296339,7 @@ "source_location": "L192", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptionidentity_usersubscriptionledgermongomatch", - "community": 195, + "community": 261, "norm_label": "usersubscriptionledgermongomatch()" }, { @@ -295619,7 +296349,7 @@ "source_location": "L218", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptionidentity_usersubscriptionledgermatch", - "community": 195, + "community": 261, "norm_label": "usersubscriptionledgermatch()" }, { @@ -295629,7 +296359,7 @@ "source_location": "L220", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptionidentity_legacyusersubscriptionledgermatch", - "community": 195, + "community": 261, "norm_label": "legacyusersubscriptionledgermatch()" }, { @@ -295639,7 +296369,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptions", - "community": 487, + "community": 8, "norm_label": "subscriptions.ts" }, { @@ -295649,7 +296379,7 @@ "source_location": "L32", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptions_fail", - "community": 487, + "community": 8, "norm_label": "fail" }, { @@ -295659,7 +296389,7 @@ "source_location": "L35", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptions_subscriptionsubjecttype", - "community": 487, + "community": 8, "norm_label": "subscriptionsubjecttype" }, { @@ -295669,7 +296399,7 @@ "source_location": "L41", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptions_appmatch", - "community": 487, + "community": 8, "norm_label": "appmatch()" }, { @@ -295679,7 +296409,7 @@ "source_location": "L46", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptions_hasown", - "community": 487, + "community": 8, "norm_label": "hasown()" }, { @@ -295689,7 +296419,7 @@ "source_location": "L48", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptions_safestoredbyteexpression", - "community": 487, + "community": 8, "norm_label": "safestoredbyteexpression()" }, { @@ -295699,7 +296429,7 @@ "source_location": "L63", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptions_subscriptioninfo", - "community": 487, + "community": 8, "norm_label": "subscriptioninfo" }, { @@ -295709,7 +296439,7 @@ "source_location": "L88", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptions_tiersnapshot", - "community": 487, + "community": 8, "norm_label": "tiersnapshot" }, { @@ -295719,7 +296449,7 @@ "source_location": "L90", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptions_statictiersnapshot", - "community": 487, + "community": 8, "norm_label": "statictiersnapshot()" }, { @@ -295729,7 +296459,7 @@ "source_location": "L95", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptions_initialsubscriptionsnapshot", - "community": 487, + "community": 8, "norm_label": "initialsubscriptionsnapshot()" }, { @@ -295739,7 +296469,7 @@ "source_location": "L122", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptions_snapshotfromcrystal", - "community": 487, + "community": 8, "norm_label": "snapshotfromcrystal()" }, { @@ -295749,7 +296479,7 @@ "source_location": "L141", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptions_defaultsubscription", - "community": 487, + "community": 8, "norm_label": "defaultsubscription()" }, { @@ -295759,7 +296489,7 @@ "source_location": "L170", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptions_toinfo", - "community": 487, + "community": 8, "norm_label": "toinfo()" }, { @@ -295769,7 +296499,7 @@ "source_location": "L212", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptions_toappinfo", - "community": 487, + "community": 8, "norm_label": "toappinfo()" }, { @@ -295779,7 +296509,7 @@ "source_location": "L252", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptions_getsubscription", - "community": 81, + "community": 8, "norm_label": "getsubscription()" }, { @@ -295789,7 +296519,7 @@ "source_location": "L275", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptions_getsubscriptions", - "community": 487, + "community": 47, "norm_label": "getsubscriptions()" }, { @@ -295799,7 +296529,7 @@ "source_location": "L311", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptions_setsubscriptioninput", - "community": 487, + "community": 8, "norm_label": "setsubscriptioninput" }, { @@ -295809,7 +296539,7 @@ "source_location": "L330", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptions_setsubscription", - "community": 487, + "community": 8, "norm_label": "setsubscription()" }, { @@ -295819,7 +296549,7 @@ "source_location": "L595", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptions_clearsubscription", - "community": 487, + "community": 8, "norm_label": "clearsubscription()" }, { @@ -295829,7 +296559,7 @@ "source_location": "L629", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_subscriptions_resolveappstoragebudget", - "community": 487, + "community": 8, "norm_label": "resolveappstoragebudget()" }, { @@ -295859,7 +296589,7 @@ "source_location": "L10", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalog_subscriptiontierid", - "community": 487, + "community": 8, "norm_label": "subscriptiontierid" }, { @@ -295959,7 +296689,7 @@ "source_location": "L43", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalog_subscriptiontierdescriptor", - "community": 53, + "community": 487, "norm_label": "subscriptiontierdescriptor" }, { @@ -296019,7 +296749,7 @@ "source_location": "L106", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalog_computetierdiscounts", - "community": 4, + "community": 487, "norm_label": "computetierdiscounts()" }, { @@ -296059,7 +296789,7 @@ "source_location": "L220", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalog_isknownsubscriptiontier", - "community": 487, + "community": 8, "norm_label": "isknownsubscriptiontier()" }, { @@ -296069,7 +296799,7 @@ "source_location": "L223", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalog_subscriptiontierbyid", - "community": 487, + "community": 8, "norm_label": "subscriptiontierbyid()" }, { @@ -296079,7 +296809,7 @@ "source_location": "L226", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalog_quotaoverrides", - "community": 487, + "community": 8, "norm_label": "quotaoverrides" }, { @@ -296089,7 +296819,7 @@ "source_location": "L228", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalog_required_tier_quota_fields", - "community": 195, + "community": 487, "norm_label": "required_tier_quota_fields" }, { @@ -296099,7 +296829,7 @@ "source_location": "L229", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalog_quota_override_fields", - "community": 195, + "community": 487, "norm_label": "quota_override_fields" }, { @@ -296129,7 +296859,7 @@ "source_location": "L269", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalog_sanitizetierquotas", - "community": 4, + "community": 487, "norm_label": "sanitizetierquotas()" }, { @@ -296139,7 +296869,7 @@ "source_location": "L279", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalog_resolvequotas", - "community": 487, + "community": 8, "norm_label": "resolvequotas()" }, { @@ -296179,7 +296909,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore", - "community": 4, + "community": 487, "norm_label": "tiercatalogstore.ts" }, { @@ -296189,7 +296919,7 @@ "source_location": "L34", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_tier_doc_filter", - "community": 4, + "community": 487, "norm_label": "tier_doc_filter" }, { @@ -296199,7 +296929,7 @@ "source_location": "L45", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_fail", - "community": 4, + "community": 487, "norm_label": "fail" }, { @@ -296209,7 +296939,7 @@ "source_location": "L48", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_tiermutationinput", - "community": 4, + "community": 487, "norm_label": "tiermutationinput" }, { @@ -296219,7 +296949,7 @@ "source_location": "L62", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_sanitizedtiercontent", - "community": 4, + "community": 487, "norm_label": "sanitizedtiercontent" }, { @@ -296229,7 +296959,7 @@ "source_location": "L67", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_toiso", - "community": 4, + "community": 487, "norm_label": "toiso()" }, { @@ -296239,7 +296969,7 @@ "source_location": "L72", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_sanitizetext", - "community": 4, + "community": 487, "norm_label": "sanitizetext()" }, { @@ -296249,7 +296979,7 @@ "source_location": "L83", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_sanitizebannerimageurl", - "community": 4, + "community": 487, "norm_label": "sanitizebannerimageurl()" }, { @@ -296259,7 +296989,7 @@ "source_location": "L97", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_sanitizeprices", - "community": 4, + "community": 487, "norm_label": "sanitizeprices()" }, { @@ -296269,7 +296999,7 @@ "source_location": "L118", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_sanitizediscountoverrides", - "community": 4, + "community": 487, "norm_label": "sanitizediscountoverrides()" }, { @@ -296279,7 +297009,7 @@ "source_location": "L139", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_isplainrecord", - "community": 4, + "community": 487, "norm_label": "isplainrecord()" }, { @@ -296289,7 +297019,7 @@ "source_location": "L141", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_saveddiscountsfromunknown", - "community": 4, + "community": 487, "norm_label": "saveddiscountsfromunknown()" }, { @@ -296299,7 +297029,7 @@ "source_location": "L157", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_sanitizeinclusions", - "community": 4, + "community": 487, "norm_label": "sanitizeinclusions()" }, { @@ -296309,7 +297039,7 @@ "source_location": "L184", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_sanitizetiercontent", - "community": 4, + "community": 487, "norm_label": "sanitizetiercontent()" }, { @@ -296319,7 +297049,7 @@ "source_location": "L237", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_tieridfromtitle", - "community": 4, + "community": 487, "norm_label": "tieridfromtitle()" }, { @@ -296329,7 +297059,7 @@ "source_location": "L248", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_versionshareid", - "community": 4, + "community": 487, "norm_label": "versionshareid()" }, { @@ -296339,7 +297069,7 @@ "source_location": "L250", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_descriptortoinsert", - "community": 4, + "community": 487, "norm_label": "descriptortoinsert()" }, { @@ -296349,7 +297079,7 @@ "source_location": "L285", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_descriptorfromdoc", - "community": 4, + "community": 487, "norm_label": "descriptorfromdoc()" }, { @@ -296359,7 +297089,7 @@ "source_location": "L331", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_ensurebuiltinsubscriptiontiers", - "community": 4, + "community": 487, "norm_label": "ensurebuiltinsubscriptiontiers()" }, { @@ -296369,7 +297099,7 @@ "source_location": "L365", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_listsubscriptiontierversions", - "community": 4, + "community": 487, "norm_label": "listsubscriptiontierversions()" }, { @@ -296379,7 +297109,7 @@ "source_location": "L379", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_listlivesubscriptiontiers", - "community": 4, + "community": 487, "norm_label": "listlivesubscriptiontiers()" }, { @@ -296389,7 +297119,7 @@ "source_location": "L416", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_getsubscriptiontierversion", - "community": 4, + "community": 487, "norm_label": "getsubscriptiontierversion()" }, { @@ -296399,7 +297129,7 @@ "source_location": "L430", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_getlivesubscriptiontier", - "community": 4, + "community": 487, "norm_label": "getlivesubscriptiontier()" }, { @@ -296409,7 +297139,7 @@ "source_location": "L474", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_createsubscriptiontierdraft", - "community": 4, + "community": 487, "norm_label": "createsubscriptiontierdraft()" }, { @@ -296419,7 +297149,7 @@ "source_location": "L505", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_createsubscriptiontierdraftversion", - "community": 4, + "community": 487, "norm_label": "createsubscriptiontierdraftversion()" }, { @@ -296429,7 +297159,7 @@ "source_location": "L544", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_updatesubscriptiontierdraft", - "community": 4, + "community": 487, "norm_label": "updatesubscriptiontierdraft()" }, { @@ -296439,7 +297169,7 @@ "source_location": "L594", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_publishlockkey", - "community": 4, + "community": 487, "norm_label": "publishlockkey()" }, { @@ -296449,7 +297179,7 @@ "source_location": "L596", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_acquirepublishlock", - "community": 4, + "community": 487, "norm_label": "acquirepublishlock()" }, { @@ -296459,7 +297189,7 @@ "source_location": "L627", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_renewpublishlock", - "community": 4, + "community": 487, "norm_label": "renewpublishlock()" }, { @@ -296469,7 +297199,7 @@ "source_location": "L647", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_releasepublishlock", - "community": 4, + "community": 487, "norm_label": "releasepublishlock()" }, { @@ -296479,7 +297209,7 @@ "source_location": "L665", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_promotedraftunderlock", - "community": 4, + "community": 487, "norm_label": "promotedraftunderlock()" }, { @@ -296489,7 +297219,7 @@ "source_location": "L775", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_recoverinterruptedtierpublishes", - "community": 4, + "community": 487, "norm_label": "recoverinterruptedtierpublishes()" }, { @@ -296499,7 +297229,7 @@ "source_location": "L806", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_publishsubscriptiontierdraft", - "community": 4, + "community": 487, "norm_label": "publishsubscriptiontierdraft()" }, { @@ -296509,7 +297239,7 @@ "source_location": "L839", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_archivesubscriptiontierversion", - "community": 4, + "community": 487, "norm_label": "archivesubscriptiontierversion()" }, { @@ -296519,7 +297249,7 @@ "source_location": "L881", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_tierquotasfromunknown", - "community": 4, + "community": 8, "norm_label": "tierquotasfromunknown()" }, { @@ -296529,7 +297259,7 @@ "source_location": "L886", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_tierassignmentsnapshot", - "community": 487, + "community": 8, "norm_label": "tierassignmentsnapshot()" }, { @@ -296539,7 +297269,7 @@ "source_location": "L895", "_origin": "ast", "id": "remix_app_api_utils_subscriptions_tiercatalogstore_iscompletetierquotas", - "community": 4, + "community": 8, "norm_label": "iscompletetierquotas()" }, { @@ -296599,7 +297329,7 @@ "source_location": "L58", "_origin": "ast", "id": "remix_app_api_utils_subspaces_gate_viewersubspaceroles", - "community": 33, + "community": 175, "norm_label": "viewersubspaceroles" }, { @@ -296719,7 +297449,7 @@ "source_location": "L156", "_origin": "ast", "id": "remix_app_api_utils_subspaces_gate_subspaceidofdoc", - "community": 486, + "community": 33, "norm_label": "subspaceidofdoc()" }, { @@ -296759,7 +297489,7 @@ "source_location": "L174", "_origin": "ast", "id": "remix_app_api_utils_subspaces_gate_authorflairs", - "community": 33, + "community": 175, "norm_label": "authorflairs" }, { @@ -296789,7 +297519,7 @@ "source_location": "L202", "_origin": "ast", "id": "remix_app_api_utils_subspaces_gate_loadopenreportcounts", - "community": 486, + "community": 175, "norm_label": "loadopenreportcounts()" }, { @@ -296829,7 +297559,7 @@ "source_location": "L282", "_origin": "ast", "id": "remix_app_api_utils_subspaces_gate_resolverootpost", - "community": 486, + "community": 33, "norm_label": "resolverootpost()" }, { @@ -296869,7 +297599,7 @@ "source_location": "L346", "_origin": "ast", "id": "remix_app_api_utils_subspaces_gate_subspaceembed", - "community": 33, + "community": 175, "norm_label": "subspaceembed" }, { @@ -297899,7 +298629,7 @@ "source_location": "L463", "_origin": "ast", "id": "remix_app_api_utils_subspaces_subspaces_livepostmatch", - "community": 486, + "community": 33, "norm_label": "livepostmatch()" }, { @@ -298019,7 +298749,7 @@ "source_location": "L526", "_origin": "ast", "id": "remix_app_api_utils_subspaces_subspaces_newsubspacetombstonedoc", - "community": 6, + "community": 358, "norm_label": "newsubspacetombstonedoc()" }, { @@ -298229,7 +298959,7 @@ "source_location": "L1067", "_origin": "ast", "id": "remix_app_api_utils_subspaces_subspaces_flagon", - "community": 33, + "community": 486, "norm_label": "flagon()" }, { @@ -298249,7 +298979,7 @@ "source_location": "L1114", "_origin": "ast", "id": "remix_app_api_utils_subspaces_subspaces_memberaction", - "community": 721, + "community": 144, "norm_label": "memberaction" }, { @@ -298599,7 +299329,7 @@ "source_location": "L2133", "_origin": "ast", "id": "remix_app_api_utils_subspaces_subspaces_subspacefeed", - "community": 486, + "community": 33, "norm_label": "subspacefeed()" }, { @@ -298719,7 +299449,7 @@ "source_location": "L98", "_origin": "ast", "id": "remix_app_api_utils_themes_themes_storedthemesizebytes", - "community": 123, + "community": 261, "norm_label": "storedthemesizebytes()" }, { @@ -298819,7 +299549,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_things_aclchaincore_test", - "community": 52, + "community": 175, "norm_label": "aclchaincore.test.ts" }, { @@ -298829,7 +299559,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_api_utils_things_aclchaincore_test_doc", - "community": 52, + "community": 175, "norm_label": "doc" }, { @@ -298839,7 +299569,7 @@ "source_location": "L10", "_origin": "ast", "id": "remix_app_api_utils_things_aclchaincore_test_makeworld", - "community": 52, + "community": 175, "norm_label": "makeworld()" }, { @@ -298849,7 +299579,7 @@ "source_location": "L20", "_origin": "ast", "id": "remix_app_api_utils_things_aclchaincore_test_chainworld", - "community": 52, + "community": 175, "norm_label": "chainworld()" }, { @@ -298859,7 +299589,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_things_aclchaincore", - "community": 52, + "community": 175, "norm_label": "aclchaincore.ts" }, { @@ -298869,7 +299599,7 @@ "source_location": "L11", "_origin": "ast", "id": "remix_app_api_utils_things_aclchaincore_chaindoc", - "community": 52, + "community": 175, "norm_label": "chaindoc" }, { @@ -298879,7 +299609,7 @@ "source_location": "L15", "_origin": "ast", "id": "remix_app_api_utils_things_aclchaincore_resolveinheritchain", - "community": 52, + "community": 175, "norm_label": "resolveinheritchain()" }, { @@ -298889,7 +299619,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_things_embeddedthings", - "community": 374, + "community": 50, "norm_label": "embeddedthings.ts" }, { @@ -298899,7 +299629,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_api_utils_things_embeddedthings_embeddedkindmatch", - "community": 374, + "community": 50, "norm_label": "embeddedkindmatch()" }, { @@ -298909,7 +299639,7 @@ "source_location": "L10", "_origin": "ast", "id": "remix_app_api_utils_things_embeddedthings_embeddedthinglistfilter", - "community": 374, + "community": 50, "norm_label": "embeddedthinglistfilter()" }, { @@ -298919,7 +299649,7 @@ "source_location": "L23", "_origin": "ast", "id": "remix_app_api_utils_things_embeddedthings_embeddedthingvisibility", - "community": 374, + "community": 50, "norm_label": "embeddedthingvisibility" }, { @@ -298929,7 +299659,7 @@ "source_location": "L25", "_origin": "ast", "id": "remix_app_api_utils_things_embeddedthings_embeddedthing", - "community": 374, + "community": 50, "norm_label": "embeddedthing" }, { @@ -298939,7 +299669,7 @@ "source_location": "L35", "_origin": "ast", "id": "remix_app_api_utils_things_embeddedthings_embeddedthingsummary", - "community": 374, + "community": 50, "norm_label": "embeddedthingsummary" }, { @@ -298949,7 +299679,7 @@ "source_location": "L37", "_origin": "ast", "id": "remix_app_api_utils_things_embeddedthings_embeddedthingdoc", - "community": 374, + "community": 50, "norm_label": "embeddedthingdoc" }, { @@ -298959,7 +299689,7 @@ "source_location": "L51", "_origin": "ast", "id": "remix_app_api_utils_things_embeddedthings_fail", - "community": 374, + "community": 50, "norm_label": "fail" }, { @@ -298969,7 +299699,7 @@ "source_location": "L52", "_origin": "ast", "id": "remix_app_api_utils_things_embeddedthings_success", - "community": 374, + "community": 50, "norm_label": "success" }, { @@ -298979,7 +299709,7 @@ "source_location": "L60", "_origin": "ast", "id": "remix_app_api_utils_things_embeddedthings_forbidden_keys", - "community": 374, + "community": 50, "norm_label": "forbidden_keys" }, { @@ -298989,7 +299719,7 @@ "source_location": "L70", "_origin": "ast", "id": "remix_app_api_utils_things_embeddedthings_iso", - "community": 374, + "community": 50, "norm_label": "iso()" }, { @@ -298999,7 +299729,7 @@ "source_location": "L72", "_origin": "ast", "id": "remix_app_api_utils_things_embeddedthings_toembeddedthing", - "community": 374, + "community": 50, "norm_label": "toembeddedthing()" }, { @@ -299009,7 +299739,7 @@ "source_location": "L82", "_origin": "ast", "id": "remix_app_api_utils_things_embeddedthings_toembeddedthingsummary", - "community": 374, + "community": 50, "norm_label": "toembeddedthingsummary()" }, { @@ -299019,7 +299749,7 @@ "source_location": "L87", "_origin": "ast", "id": "remix_app_api_utils_things_embeddedthings_parseid", - "community": 374, + "community": 50, "norm_label": "parseid()" }, { @@ -299029,7 +299759,7 @@ "source_location": "L93", "_origin": "ast", "id": "remix_app_api_utils_things_embeddedthings_clonejsonvalue", - "community": 374, + "community": 50, "norm_label": "clonejsonvalue()" }, { @@ -299039,7 +299769,7 @@ "source_location": "L135", "_origin": "ast", "id": "remix_app_api_utils_things_embeddedthings_parsevisibility", - "community": 374, + "community": 50, "norm_label": "parsevisibility()" }, { @@ -299049,7 +299779,7 @@ "source_location": "L140", "_origin": "ast", "id": "remix_app_api_utils_things_embeddedthings_parsename", - "community": 374, + "community": 50, "norm_label": "parsename()" }, { @@ -299059,7 +299789,7 @@ "source_location": "L147", "_origin": "ast", "id": "remix_app_api_utils_things_embeddedthings_getembeddedthing", - "community": 3, + "community": 50, "norm_label": "getembeddedthing()" }, { @@ -299069,7 +299799,7 @@ "source_location": "L160", "_origin": "ast", "id": "remix_app_api_utils_things_embeddedthings_listembeddedthings", - "community": 3, + "community": 50, "norm_label": "listembeddedthings()" }, { @@ -299079,7 +299809,7 @@ "source_location": "L172", "_origin": "ast", "id": "remix_app_api_utils_things_embeddedthings_saveembeddedthing", - "community": 374, + "community": 50, "norm_label": "saveembeddedthing()" }, { @@ -299089,7 +299819,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_things_emojisearch_test", - "community": 27, + "community": 486, "norm_label": "emojisearch.test.ts" }, { @@ -299099,7 +299829,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_things_emojisearch", - "community": 27, + "community": 486, "norm_label": "emojisearch.ts" }, { @@ -299109,7 +299839,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_api_utils_things_emojisearch_emojimetadata", - "community": 27, + "community": 486, "norm_label": "emojimetadata" }, { @@ -299119,7 +299849,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_api_utils_things_emojisearch_emojibyemoji", - "community": 27, + "community": 486, "norm_label": "emojibyemoji" }, { @@ -299129,7 +299859,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_api_utils_things_emojisearch_emojitokensforsearchterm", - "community": 27, + "community": 486, "norm_label": "emojitokensforsearchterm()" }, { @@ -299219,7 +299949,7 @@ "source_location": "L53", "_origin": "ast", "id": "remix_app_api_utils_things_feedranking_clampweight", - "community": 286, + "community": 343, "norm_label": "clampweight()" }, { @@ -299229,7 +299959,7 @@ "source_location": "L55", "_origin": "ast", "id": "remix_app_api_utils_things_feedranking_bump", - "community": 286, + "community": 343, "norm_label": "bump()" }, { @@ -299289,7 +300019,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_things_patvisibility_test", - "community": 486, + "community": 175, "norm_label": "patvisibility.test.ts" }, { @@ -299299,7 +300029,7 @@ "source_location": "L15", "_origin": "ast", "id": "remix_app_api_utils_things_patvisibility_test_user", - "community": 486, + "community": 175, "norm_label": "user" }, { @@ -299309,7 +300039,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_api_utils_things_patvisibility_test_fenced", - "community": 486, + "community": 175, "norm_label": "fenced()" }, { @@ -299319,7 +300049,7 @@ "source_location": "L20", "_origin": "ast", "id": "remix_app_api_utils_things_patvisibility_test_fixture", - "community": 486, + "community": 175, "norm_label": "fixture" }, { @@ -299329,7 +300059,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_api_utils_things_patvisibility_test_fixtures", - "community": 486, + "community": 175, "norm_label": "fixtures" }, { @@ -299339,7 +300069,7 @@ "source_location": "L35", "_origin": "ast", "id": "remix_app_api_utils_things_patvisibility_test_inherit", - "community": 486, + "community": 175, "norm_label": "inherit" }, { @@ -299349,7 +300079,7 @@ "source_location": "L109", "_origin": "ast", "id": "remix_app_api_utils_things_patvisibility_test_matches", - "community": 486, + "community": 175, "norm_label": "matches()" }, { @@ -300329,7 +301059,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_things_relatedprojection_test", - "community": 486, + "community": 175, "norm_label": "relatedprojection.test.ts" }, { @@ -300569,7 +301299,7 @@ "source_location": "L193", "_origin": "ast", "id": "remix_app_api_utils_things_search_sanitizescalar", - "community": 486, + "community": 33, "norm_label": "sanitizescalar()" }, { @@ -300579,7 +301309,7 @@ "source_location": "L215", "_origin": "ast", "id": "remix_app_api_utils_things_search_sanitizeordered", - "community": 486, + "community": 33, "norm_label": "sanitizeordered()" }, { @@ -300589,7 +301319,7 @@ "source_location": "L224", "_origin": "ast", "id": "remix_app_api_utils_things_search_buildcondition", - "community": 486, + "community": 33, "norm_label": "buildcondition()" }, { @@ -300609,7 +301339,7 @@ "source_location": "L329", "_origin": "ast", "id": "remix_app_api_utils_things_search_buildgroup", - "community": 486, + "community": 33, "norm_label": "buildgroup()" }, { @@ -300799,7 +301529,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_things_things", - "community": 486, + "community": 175, "norm_label": "things.ts" }, { @@ -300829,7 +301559,7 @@ "source_location": "L144", "_origin": "ast", "id": "remix_app_api_utils_things_things_marketplacecategory", - "community": 486, + "community": 175, "norm_label": "marketplacecategory" }, { @@ -300839,7 +301569,7 @@ "source_location": "L146", "_origin": "ast", "id": "remix_app_api_utils_things_things_marketplacelisting", - "community": 486, + "community": 175, "norm_label": "marketplacelisting" }, { @@ -300849,7 +301579,7 @@ "source_location": "L156", "_origin": "ast", "id": "remix_app_api_utils_things_things_postcommentdoc", - "community": 486, + "community": 175, "norm_label": "postcommentdoc" }, { @@ -300859,7 +301589,7 @@ "source_location": "L167", "_origin": "ast", "id": "remix_app_api_utils_things_things_subspacemodstate", - "community": 486, + "community": 175, "norm_label": "subspacemodstate" }, { @@ -300879,7 +301609,7 @@ "source_location": "L289", "_origin": "ast", "id": "remix_app_api_utils_things_things_feedauthor", - "community": 597, + "community": 6, "norm_label": "feedauthor" }, { @@ -300889,7 +301619,7 @@ "source_location": "L300", "_origin": "ast", "id": "remix_app_api_utils_things_things_publiccomment", - "community": 486, + "community": 175, "norm_label": "publiccomment" }, { @@ -300909,7 +301639,7 @@ "source_location": "L393", "_origin": "ast", "id": "remix_app_api_utils_things_things_publicpostsubspace", - "community": 486, + "community": 175, "norm_label": "publicpostsubspace" }, { @@ -300919,7 +301649,7 @@ "source_location": "L404", "_origin": "ast", "id": "remix_app_api_utils_things_things_publicpostflair", - "community": 486, + "community": 175, "norm_label": "publicpostflair" }, { @@ -300929,7 +301659,7 @@ "source_location": "L407", "_origin": "ast", "id": "remix_app_api_utils_things_things_publicauthorflair", - "community": 486, + "community": 175, "norm_label": "publicauthorflair" }, { @@ -300939,7 +301669,7 @@ "source_location": "L408", "_origin": "ast", "id": "remix_app_api_utils_things_things_publicsubspacemod", - "community": 486, + "community": 175, "norm_label": "publicsubspacemod" }, { @@ -300979,7 +301709,7 @@ "source_location": "L476", "_origin": "ast", "id": "remix_app_api_utils_things_things_generatelinkkey", - "community": 486, + "community": 175, "norm_label": "generatelinkkey()" }, { @@ -301019,7 +301749,7 @@ "source_location": "L511", "_origin": "ast", "id": "remix_app_api_utils_things_things_visibilities", - "community": 486, + "community": 175, "norm_label": "visibilities" }, { @@ -301039,7 +301769,7 @@ "source_location": "L552", "_origin": "ast", "id": "remix_app_api_utils_things_things_feature_projection", - "community": 486, + "community": 175, "norm_label": "feature_projection" }, { @@ -301049,7 +301779,7 @@ "source_location": "L565", "_origin": "ast", "id": "remix_app_api_utils_things_things_fail", - "community": 486, + "community": 33, "norm_label": "fail" }, { @@ -301059,7 +301789,7 @@ "source_location": "L568", "_origin": "ast", "id": "remix_app_api_utils_things_things_storagemutationfail", - "community": 486, + "community": 175, "norm_label": "storagemutationfail()" }, { @@ -301069,7 +301799,7 @@ "source_location": "L570", "_origin": "ast", "id": "remix_app_api_utils_things_things_storedthingsizebytes", - "community": 486, + "community": 175, "norm_label": "storedthingsizebytes()" }, { @@ -301079,7 +301809,7 @@ "source_location": "L576", "_origin": "ast", "id": "remix_app_api_utils_things_things_currentcontentsizebytes", - "community": 123, + "community": 261, "norm_label": "currentcontentsizebytes()" }, { @@ -301089,7 +301819,7 @@ "source_location": "L578", "_origin": "ast", "id": "remix_app_api_utils_things_things_appstoragescopefordoc", - "community": 123, + "community": 175, "norm_label": "appstoragescopefordoc()" }, { @@ -301099,7 +301829,7 @@ "source_location": "L594", "_origin": "ast", "id": "remix_app_api_utils_things_things_deletionstoragefencedecision", - "community": 123, + "community": 175, "norm_label": "deletionstoragefencedecision()" }, { @@ -301109,7 +301839,7 @@ "source_location": "L607", "_origin": "ast", "id": "remix_app_api_utils_things_things_uncertainuserstorageledgermatch", - "community": 123, + "community": 261, "norm_label": "uncertainuserstorageledgermatch()" }, { @@ -301119,7 +301849,7 @@ "source_location": "L612", "_origin": "ast", "id": "remix_app_api_utils_things_things_uncertainappstorageledgermatch", - "community": 123, + "community": 175, "norm_label": "uncertainappstorageledgermatch()" }, { @@ -301129,7 +301859,7 @@ "source_location": "L618", "_origin": "ast", "id": "remix_app_api_utils_things_things_uncertainappuserstorageledgermatch", - "community": 123, + "community": 175, "norm_label": "uncertainappuserstorageledgermatch()" }, { @@ -301139,7 +301869,7 @@ "source_location": "L628", "_origin": "ast", "id": "remix_app_api_utils_things_things_applydeletedstoragedeltas", - "community": 123, + "community": 175, "norm_label": "applydeletedstoragedeltas()" }, { @@ -301149,7 +301879,7 @@ "source_location": "L736", "_origin": "ast", "id": "remix_app_api_utils_things_things_isfail", - "community": 135, + "community": 33, "norm_label": "isfail()" }, { @@ -301189,7 +301919,7 @@ "source_location": "L796", "_origin": "ast", "id": "remix_app_api_utils_things_things_sanitizetokenacl", - "community": 486, + "community": 33, "norm_label": "sanitizetokenacl()" }, { @@ -301209,7 +301939,7 @@ "source_location": "L819", "_origin": "ast", "id": "remix_app_api_utils_things_things_patsandboxblocks", - "community": 486, + "community": 175, "norm_label": "patsandboxblocks()" }, { @@ -301219,7 +301949,7 @@ "source_location": "L824", "_origin": "ast", "id": "remix_app_api_utils_things_things_patsandboxfail", - "community": 486, + "community": 175, "norm_label": "patsandboxfail()" }, { @@ -301229,7 +301959,7 @@ "source_location": "L836", "_origin": "ast", "id": "remix_app_api_utils_things_things_patvisibilityof", - "community": 486, + "community": 175, "norm_label": "patvisibilityof()" }, { @@ -301239,7 +301969,7 @@ "source_location": "L849", "_origin": "ast", "id": "remix_app_api_utils_things_things_patvisibilityblocksacl", - "community": 486, + "community": 175, "norm_label": "patvisibilityblocksacl()" }, { @@ -301249,7 +301979,7 @@ "source_location": "L857", "_origin": "ast", "id": "remix_app_api_utils_things_things_patvisibilityfail", - "community": 486, + "community": 33, "norm_label": "patvisibilityfail()" }, { @@ -301259,7 +301989,7 @@ "source_location": "L877", "_origin": "ast", "id": "remix_app_api_utils_things_things_isv2", - "community": 486, + "community": 33, "norm_label": "isv2()" }, { @@ -301269,7 +301999,7 @@ "source_location": "L879", "_origin": "ast", "id": "remix_app_api_utils_things_things_thingtimeof", - "community": 486, + "community": 33, "norm_label": "thingtimeof()" }, { @@ -301289,7 +302019,7 @@ "source_location": "L887", "_origin": "ast", "id": "remix_app_api_utils_things_things_crystalof", - "community": 486, + "community": 175, "norm_label": "crystalof()" }, { @@ -301299,7 +302029,7 @@ "source_location": "L893", "_origin": "ast", "id": "remix_app_api_utils_things_things_medialayoutof", - "community": 486, + "community": 175, "norm_label": "medialayoutof()" }, { @@ -301309,7 +302039,7 @@ "source_location": "L899", "_origin": "ast", "id": "remix_app_api_utils_things_things_targetidof", - "community": 486, + "community": 33, "norm_label": "targetidof()" }, { @@ -301319,7 +302049,7 @@ "source_location": "L905", "_origin": "ast", "id": "remix_app_api_utils_things_things_folderidof", - "community": 486, + "community": 33, "norm_label": "folderidof()" }, { @@ -301369,7 +302099,7 @@ "source_location": "L940", "_origin": "ast", "id": "remix_app_api_utils_things_things_canonicaltag", - "community": 486, + "community": 175, "norm_label": "canonicaltag()" }, { @@ -301379,7 +302109,7 @@ "source_location": "L949", "_origin": "ast", "id": "remix_app_api_utils_things_things_sanitizetags", - "community": 486, + "community": 175, "norm_label": "sanitizetags()" }, { @@ -301389,7 +302119,7 @@ "source_location": "L1005", "_origin": "ast", "id": "remix_app_api_utils_things_things_sanitizeshareid", - "community": 486, + "community": 33, "norm_label": "sanitizeshareid()" }, { @@ -301399,7 +302129,7 @@ "source_location": "L1045", "_origin": "ast", "id": "remix_app_api_utils_things_things_folder_unfileable", - "community": 486, + "community": 175, "norm_label": "folder_unfileable" }, { @@ -301409,7 +302139,7 @@ "source_location": "L1053", "_origin": "ast", "id": "remix_app_api_utils_things_things_resolvefolderassignment", - "community": 486, + "community": 33, "norm_label": "resolvefolderassignment()" }, { @@ -301419,7 +302149,7 @@ "source_location": "L1081", "_origin": "ast", "id": "remix_app_api_utils_things_things_folderancestrycontains", - "community": 486, + "community": 175, "norm_label": "folderancestrycontains()" }, { @@ -301429,7 +302159,7 @@ "source_location": "L1102", "_origin": "ast", "id": "remix_app_api_utils_things_things_createthinginput", - "community": 486, + "community": 175, "norm_label": "createthinginput" }, { @@ -301439,7 +302169,7 @@ "source_location": "L1123", "_origin": "ast", "id": "remix_app_api_utils_things_things_createthingresult", - "community": 486, + "community": 175, "norm_label": "createthingresult" }, { @@ -301449,7 +302179,7 @@ "source_location": "L1129", "_origin": "ast", "id": "remix_app_api_utils_things_things_createthinghooks", - "community": 486, + "community": 175, "norm_label": "createthinghooks" }, { @@ -301459,7 +302189,7 @@ "source_location": "L1136", "_origin": "ast", "id": "remix_app_api_utils_things_things_resolveinputacl", - "community": 486, + "community": 33, "norm_label": "resolveinputacl()" }, { @@ -301469,7 +302199,7 @@ "source_location": "L1169", "_origin": "ast", "id": "remix_app_api_utils_things_things_resolvedataschemaprovenance", - "community": 486, + "community": 33, "norm_label": "resolvedataschemaprovenance()" }, { @@ -301479,7 +302209,7 @@ "source_location": "L1185", "_origin": "ast", "id": "remix_app_api_utils_things_things_creatething", - "community": 486, + "community": 175, "norm_label": "creatething()" }, { @@ -301489,7 +302219,7 @@ "source_location": "L1564", "_origin": "ast", "id": "remix_app_api_utils_things_things_emittextmentions", - "community": 486, + "community": 175, "norm_label": "emittextmentions()" }, { @@ -301499,7 +302229,7 @@ "source_location": "L1599", "_origin": "ast", "id": "remix_app_api_utils_things_things_emitcreationnotifications", - "community": 486, + "community": 175, "norm_label": "emitcreationnotifications()" }, { @@ -301509,7 +302239,7 @@ "source_location": "L1686", "_origin": "ast", "id": "remix_app_api_utils_things_things_createpostinput", - "community": 486, + "community": 175, "norm_label": "createpostinput" }, { @@ -301519,7 +302249,7 @@ "source_location": "L1707", "_origin": "ast", "id": "remix_app_api_utils_things_things_createresult", - "community": 486, + "community": 175, "norm_label": "createresult" }, { @@ -301539,7 +302269,7 @@ "source_location": "L1751", "_origin": "ast", "id": "remix_app_api_utils_things_things_tofeedauthor", - "community": 486, + "community": 175, "norm_label": "tofeedauthor()" }, { @@ -301549,7 +302279,7 @@ "source_location": "L1759", "_origin": "ast", "id": "remix_app_api_utils_things_things_resolveprofiles", - "community": 33, + "community": 6, "norm_label": "resolveprofiles()" }, { @@ -301559,7 +302289,7 @@ "source_location": "L1798", "_origin": "ast", "id": "remix_app_api_utils_things_things_commententry", - "community": 486, + "community": 175, "norm_label": "commententry" }, { @@ -301569,7 +302299,7 @@ "source_location": "L1799", "_origin": "ast", "id": "remix_app_api_utils_things_things_reactionentry", - "community": 486, + "community": 175, "norm_label": "reactionentry" }, { @@ -301579,7 +302309,7 @@ "source_location": "L1801", "_origin": "ast", "id": "remix_app_api_utils_things_things_relatedthings", - "community": 486, + "community": 175, "norm_label": "relatedthings" }, { @@ -301589,7 +302319,7 @@ "source_location": "L1832", "_origin": "ast", "id": "remix_app_api_utils_things_things_related_child_projection", - "community": 486, + "community": 175, "norm_label": "related_child_projection" }, { @@ -301599,7 +302329,7 @@ "source_location": "L1874", "_origin": "ast", "id": "remix_app_api_utils_things_things_related_legacy_projection", - "community": 486, + "community": 175, "norm_label": "related_legacy_projection" }, { @@ -301609,7 +302339,7 @@ "source_location": "L1886", "_origin": "ast", "id": "remix_app_api_utils_things_things_related_reaction_projection", - "community": 486, + "community": 175, "norm_label": "related_reaction_projection" }, { @@ -301619,7 +302349,7 @@ "source_location": "L1892", "_origin": "ast", "id": "remix_app_api_utils_things_things_visiblerelatedmoderationclause", - "community": 486, + "community": 175, "norm_label": "visiblerelatedmoderationclause()" }, { @@ -301639,7 +302369,7 @@ "source_location": "L2076", "_origin": "ast", "id": "remix_app_api_utils_things_things_resolvepostattachments", - "community": 486, + "community": 6, "norm_label": "resolvepostattachments()" }, { @@ -301649,7 +302379,7 @@ "source_location": "L2124", "_origin": "ast", "id": "remix_app_api_utils_things_things_boundattachmentpresence", - "community": 486, + "community": 175, "norm_label": "boundattachmentpresence()" }, { @@ -301669,7 +302399,7 @@ "source_location": "L2167", "_origin": "ast", "id": "remix_app_api_utils_things_things_mergedcommentsof", - "community": 486, + "community": 175, "norm_label": "mergedcommentsof()" }, { @@ -301679,7 +302409,7 @@ "source_location": "L2178", "_origin": "ast", "id": "remix_app_api_utils_things_things_layeredpostcommentcounts", - "community": 486, + "community": 175, "norm_label": "layeredpostcommentcounts()" }, { @@ -301689,7 +302419,7 @@ "source_location": "L2192", "_origin": "ast", "id": "remix_app_api_utils_things_things_mergedreactionsof", - "community": 486, + "community": 175, "norm_label": "mergedreactionsof()" }, { @@ -301699,7 +302429,7 @@ "source_location": "L2209", "_origin": "ast", "id": "remix_app_api_utils_things_things_reactioncountsof", - "community": 486, + "community": 175, "norm_label": "reactioncountsof()" }, { @@ -301709,7 +302439,7 @@ "source_location": "L2217", "_origin": "ast", "id": "remix_app_api_utils_things_things_viewerreactionsof", - "community": 486, + "community": 175, "norm_label": "viewerreactionsof()" }, { @@ -301719,7 +302449,7 @@ "source_location": "L2222", "_origin": "ast", "id": "remix_app_api_utils_things_things_livesharecountof", - "community": 486, + "community": 175, "norm_label": "livesharecountof()" }, { @@ -301729,7 +302459,7 @@ "source_location": "L2230", "_origin": "ast", "id": "remix_app_api_utils_things_things_resolvecommentrootsubspaces", - "community": 486, + "community": 33, "norm_label": "resolvecommentrootsubspaces()" }, { @@ -301739,7 +302469,7 @@ "source_location": "L2267", "_origin": "ast", "id": "remix_app_api_utils_things_things_authorflairfor", - "community": 486, + "community": 175, "norm_label": "authorflairfor()" }, { @@ -301749,7 +302479,7 @@ "source_location": "L2280", "_origin": "ast", "id": "remix_app_api_utils_things_things_postprojectionoptions", - "community": 486, + "community": 175, "norm_label": "postprojectionoptions" }, { @@ -301779,7 +302509,7 @@ "source_location": "L2594", "_origin": "ast", "id": "remix_app_api_utils_things_things_aclof", - "community": 486, + "community": 175, "norm_label": "aclof()" }, { @@ -301789,7 +302519,7 @@ "source_location": "L2596", "_origin": "ast", "id": "remix_app_api_utils_things_things_canview", - "community": 486, + "community": 52, "norm_label": "canview()" }, { @@ -301809,7 +302539,7 @@ "source_location": "L2663", "_origin": "ast", "id": "remix_app_api_utils_things_things_customengageblocks", - "community": 486, + "community": 175, "norm_label": "customengageblocks()" }, { @@ -301819,7 +302549,7 @@ "source_location": "L2673", "_origin": "ast", "id": "remix_app_api_utils_things_things_customengagefail", - "community": 486, + "community": 175, "norm_label": "customengagefail()" }, { @@ -301839,7 +302569,7 @@ "source_location": "L2721", "_origin": "ast", "id": "remix_app_api_utils_things_things_patvisibilityblocksdoc", - "community": 486, + "community": 175, "norm_label": "patvisibilityblocksdoc()" }, { @@ -301889,7 +302619,7 @@ "source_location": "L2863", "_origin": "ast", "id": "remix_app_api_utils_things_things_findthing", - "community": 486, + "community": 175, "norm_label": "findthing()" }, { @@ -301899,7 +302629,7 @@ "source_location": "L2871", "_origin": "ast", "id": "remix_app_api_utils_things_things_findviewablething", - "community": 486, + "community": 175, "norm_label": "findviewablething()" }, { @@ -301939,7 +302669,7 @@ "source_location": "L2938", "_origin": "ast", "id": "remix_app_api_utils_things_things_appcanviewlive", - "community": 486, + "community": 81, "norm_label": "appcanviewlive()" }, { @@ -301949,7 +302679,7 @@ "source_location": "L2944", "_origin": "ast", "id": "remix_app_api_utils_things_things_findviewablethingas", - "community": 486, + "community": 175, "norm_label": "findviewablethingas()" }, { @@ -301979,7 +302709,7 @@ "source_location": "L3027", "_origin": "ast", "id": "remix_app_api_utils_things_things_countcommentsof", - "community": 486, + "community": 175, "norm_label": "countcommentsof()" }, { @@ -301989,7 +302719,7 @@ "source_location": "L3048", "_origin": "ast", "id": "remix_app_api_utils_things_things_enforcereactioncaps", - "community": 486, + "community": 175, "norm_label": "enforcereactioncaps()" }, { @@ -301999,7 +302729,7 @@ "source_location": "L3076", "_origin": "ast", "id": "remix_app_api_utils_things_things_feedquery", - "community": 486, + "community": 175, "norm_label": "feedquery" }, { @@ -302009,7 +302739,7 @@ "source_location": "L3097", "_origin": "ast", "id": "remix_app_api_utils_things_things_activesubspaceidsof", - "community": 486, + "community": 175, "norm_label": "activesubspaceidsof()" }, { @@ -302069,7 +302799,7 @@ "source_location": "L3220", "_origin": "ast", "id": "remix_app_api_utils_things_things_featuresof", - "community": 486, + "community": 175, "norm_label": "featuresof()" }, { @@ -302099,7 +302829,7 @@ "source_location": "L3352", "_origin": "ast", "id": "remix_app_api_utils_things_things_listthingsquery", - "community": 486, + "community": 175, "norm_label": "listthingsquery" }, { @@ -302119,7 +302849,7 @@ "source_location": "L3475", "_origin": "ast", "id": "remix_app_api_utils_things_things_emojihex", - "community": 486, + "community": 175, "norm_label": "emojihex()" }, { @@ -302129,7 +302859,7 @@ "source_location": "L3476", "_origin": "ast", "id": "remix_app_api_utils_things_things_safeidpart", - "community": 486, + "community": 175, "norm_label": "safeidpart()" }, { @@ -302139,7 +302869,7 @@ "source_location": "L3477", "_origin": "ast", "id": "remix_app_api_utils_things_things_reactionshareid", - "community": 486, + "community": 175, "norm_label": "reactionshareid()" }, { @@ -302149,7 +302879,7 @@ "source_location": "L3480", "_origin": "ast", "id": "remix_app_api_utils_things_things_legacyreactionconversion", - "community": 486, + "community": 175, "norm_label": "legacyreactionconversion" }, { @@ -302159,7 +302889,7 @@ "source_location": "L3487", "_origin": "ast", "id": "remix_app_api_utils_things_things_legacycommentconversion", - "community": 486, + "community": 175, "norm_label": "legacycommentconversion" }, { @@ -302169,7 +302899,7 @@ "source_location": "L3494", "_origin": "ast", "id": "remix_app_api_utils_things_things_legacyinteractionconversionplan", - "community": 486, + "community": 175, "norm_label": "legacyinteractionconversionplan" }, { @@ -302179,7 +302909,7 @@ "source_location": "L3503", "_origin": "ast", "id": "remix_app_api_utils_things_things_owns", - "community": 486, + "community": 175, "norm_label": "owns()" }, { @@ -302189,7 +302919,7 @@ "source_location": "L3504", "_origin": "ast", "id": "remix_app_api_utils_things_things_isplainlegacyrecord", - "community": 486, + "community": 175, "norm_label": "isplainlegacyrecord()" }, { @@ -302199,7 +302929,7 @@ "source_location": "L3509", "_origin": "ast", "id": "remix_app_api_utils_things_things_legacydate", - "community": 486, + "community": 175, "norm_label": "legacydate()" }, { @@ -302209,7 +302939,7 @@ "source_location": "L3514", "_origin": "ast", "id": "remix_app_api_utils_things_things_malformedlegacyinteractions", - "community": 486, + "community": 175, "norm_label": "malformedlegacyinteractions()" }, { @@ -302219,7 +302949,7 @@ "source_location": "L3520", "_origin": "ast", "id": "remix_app_api_utils_things_things_validatelegacyinteractionresidue", - "community": 486, + "community": 175, "norm_label": "validatelegacyinteractionresidue()" }, { @@ -302229,7 +302959,7 @@ "source_location": "L3575", "_origin": "ast", "id": "remix_app_api_utils_things_things_legacyinteractionresidueerror", - "community": 486, + "community": 175, "norm_label": "legacyinteractionresidueerror" }, { @@ -302239,7 +302969,7 @@ "source_location": "L3576", "_origin": "ast", "id": "remix_app_api_utils_things_things_legacyinteractionresidueerror_constructor", - "community": 486, + "community": 175, "norm_label": ".constructor()" }, { @@ -302249,7 +302979,7 @@ "source_location": "L3582", "_origin": "ast", "id": "remix_app_api_utils_things_things_legacyinteractionlazyconversionissafe", - "community": 486, + "community": 175, "norm_label": "legacyinteractionlazyconversionissafe()" }, { @@ -302259,7 +302989,7 @@ "source_location": "L3585", "_origin": "ast", "id": "remix_app_api_utils_things_things_migratethinginteractions", - "community": 486, + "community": 175, "norm_label": "migratethinginteractions()" }, { @@ -302269,7 +302999,7 @@ "source_location": "L3689", "_origin": "ast", "id": "remix_app_api_utils_things_things_togglereaction", - "community": 486, + "community": 175, "norm_label": "togglereaction()" }, { @@ -302279,7 +303009,7 @@ "source_location": "L3815", "_origin": "ast", "id": "remix_app_api_utils_things_things_togglesave", - "community": 486, + "community": 175, "norm_label": "togglesave()" }, { @@ -302299,7 +303029,7 @@ "source_location": "L3854", "_origin": "ast", "id": "remix_app_api_utils_things_things_addcommentinput", - "community": 486, + "community": 175, "norm_label": "addcommentinput" }, { @@ -302309,7 +303039,7 @@ "source_location": "L3870", "_origin": "ast", "id": "remix_app_api_utils_things_things_addcommentoptions", - "community": 486, + "community": 175, "norm_label": "addcommentoptions" }, { @@ -302319,7 +303049,7 @@ "source_location": "L3876", "_origin": "ast", "id": "remix_app_api_utils_things_things_samestringset", - "community": 486, + "community": 175, "norm_label": "samestringset()" }, { @@ -302329,7 +303059,7 @@ "source_location": "L3882", "_origin": "ast", "id": "remix_app_api_utils_things_things_transactionoutcomeunknown", - "community": 486, + "community": 175, "norm_label": "transactionoutcomeunknown()" }, { @@ -302349,7 +303079,7 @@ "source_location": "L3899", "_origin": "ast", "id": "remix_app_api_utils_things_things_addcomment", - "community": 486, + "community": 175, "norm_label": "addcomment()" }, { @@ -302359,7 +303089,7 @@ "source_location": "L4072", "_origin": "ast", "id": "remix_app_api_utils_things_things_sharepost", - "community": 486, + "community": 175, "norm_label": "sharepost()" }, { @@ -302369,7 +303099,7 @@ "source_location": "L4121", "_origin": "ast", "id": "remix_app_api_utils_things_things_refunddeletednamespacedocs", - "community": 486, + "community": 175, "norm_label": "refunddeletednamespacedocs()" }, { @@ -302379,7 +303109,7 @@ "source_location": "L4138", "_origin": "ast", "id": "remix_app_api_utils_things_things_cascadeattachmentfilter", - "community": 486, + "community": 175, "norm_label": "cascadeattachmentfilter()" }, { @@ -302389,7 +303119,7 @@ "source_location": "L4157", "_origin": "ast", "id": "remix_app_api_utils_things_things_cascadenodekey", - "community": 486, + "community": 175, "norm_label": "cascadenodekey()" }, { @@ -302399,7 +303129,7 @@ "source_location": "L4162", "_origin": "ast", "id": "remix_app_api_utils_things_things_cascadelinkidsof", - "community": 486, + "community": 175, "norm_label": "cascadelinkidsof()" }, { @@ -302409,7 +303139,7 @@ "source_location": "L4167", "_origin": "ast", "id": "remix_app_api_utils_things_things_cascadeparentidsof", - "community": 486, + "community": 175, "norm_label": "cascadeparentidsof()" }, { @@ -302419,7 +303149,7 @@ "source_location": "L4189", "_origin": "ast", "id": "remix_app_api_utils_things_things_discovercascadedescendants", - "community": 486, + "community": 175, "norm_label": "discovercascadedescendants()" }, { @@ -302429,7 +303159,7 @@ "source_location": "L4232", "_origin": "ast", "id": "remix_app_api_utils_things_things_cascadedeletionbatches", - "community": 486, + "community": 175, "norm_label": "cascadedeletionbatches()" }, { @@ -302439,7 +303169,7 @@ "source_location": "L4350", "_origin": "ast", "id": "remix_app_api_utils_things_things_deletethingcandidatesinsession", - "community": 486, + "community": 175, "norm_label": "deletethingcandidatesinsession()" }, { @@ -302449,7 +303179,7 @@ "source_location": "L4369", "_origin": "ast", "id": "remix_app_api_utils_things_things_deletethingsatomically", - "community": 486, + "community": 175, "norm_label": "deletethingsatomically()" }, { @@ -302459,7 +303189,7 @@ "source_location": "L4395", "_origin": "ast", "id": "remix_app_api_utils_things_things_cascadedeletebatchresult", - "community": 486, + "community": 175, "norm_label": "cascadedeletebatchresult" }, { @@ -302469,7 +303199,7 @@ "source_location": "L4402", "_origin": "ast", "id": "remix_app_api_utils_things_things_deletecascadebatchatomically", - "community": 486, + "community": 175, "norm_label": "deletecascadebatchatomically()" }, { @@ -302479,7 +303209,7 @@ "source_location": "L4424", "_origin": "ast", "id": "remix_app_api_utils_things_things_rootdeleteresult", - "community": 486, + "community": 175, "norm_label": "rootdeleteresult" }, { @@ -302489,7 +303219,7 @@ "source_location": "L4430", "_origin": "ast", "id": "remix_app_api_utils_things_things_deletedrainedrootatomically", - "community": 486, + "community": 81, "norm_label": "deletedrainedrootatomically()" }, { @@ -302499,7 +303229,7 @@ "source_location": "L4458", "_origin": "ast", "id": "remix_app_api_utils_things_things_clearsubspacereportsfor", - "community": 486, + "community": 33, "norm_label": "clearsubspacereportsfor()" }, { @@ -302509,7 +303239,7 @@ "source_location": "L4474", "_origin": "ast", "id": "remix_app_api_utils_things_things_deletethinghooks", - "community": 486, + "community": 175, "norm_label": "deletethinghooks" }, { @@ -302519,7 +303249,7 @@ "source_location": "L4485", "_origin": "ast", "id": "remix_app_api_utils_things_things_deletething", - "community": 486, + "community": 175, "norm_label": "deletething()" }, { @@ -302529,7 +303259,7 @@ "source_location": "L4638", "_origin": "ast", "id": "remix_app_api_utils_things_things_updatethinginput", - "community": 486, + "community": 175, "norm_label": "updatethinginput" }, { @@ -302539,7 +303269,7 @@ "source_location": "L4653", "_origin": "ast", "id": "remix_app_api_utils_things_things_updatething", - "community": 486, + "community": 33, "norm_label": "updatething()" }, { @@ -302549,7 +303279,7 @@ "source_location": "L5060", "_origin": "ast", "id": "remix_app_api_utils_things_things_upsertthing", - "community": 486, + "community": 33, "norm_label": "upsertthing()" }, { @@ -302559,7 +303289,7 @@ "source_location": "L5116", "_origin": "ast", "id": "remix_app_api_utils_things_things_bulk_ops", - "community": 486, + "community": 175, "norm_label": "bulk_ops" }, { @@ -302569,7 +303299,7 @@ "source_location": "L5117", "_origin": "ast", "id": "remix_app_api_utils_things_things_bulkop", - "community": 486, + "community": 175, "norm_label": "bulkop" }, { @@ -302579,7 +303309,7 @@ "source_location": "L5119", "_origin": "ast", "id": "remix_app_api_utils_things_things_bulkthingsinput", - "community": 486, + "community": 175, "norm_label": "bulkthingsinput" }, { @@ -302589,7 +303319,7 @@ "source_location": "L5128", "_origin": "ast", "id": "remix_app_api_utils_things_things_bulkitemresult", - "community": 486, + "community": 175, "norm_label": "bulkitemresult" }, { @@ -302599,7 +303329,7 @@ "source_location": "L5143", "_origin": "ast", "id": "remix_app_api_utils_things_things_uncopyable", - "community": 486, + "community": 175, "norm_label": "uncopyable" }, { @@ -302609,7 +303339,7 @@ "source_location": "L5153", "_origin": "ast", "id": "remix_app_api_utils_things_things_collectfoldertree", - "community": 486, + "community": 33, "norm_label": "collectfoldertree()" }, { @@ -302619,7 +303349,7 @@ "source_location": "L5180", "_origin": "ast", "id": "remix_app_api_utils_things_things_bulkthings", - "community": 486, + "community": 33, "norm_label": "bulkthings()" }, { @@ -302639,7 +303369,7 @@ "source_location": "L5367", "_origin": "ast", "id": "remix_app_api_utils_things_things_activitywindowstart", - "community": 486, + "community": 175, "norm_label": "activitywindowstart()" }, { @@ -302649,7 +303379,7 @@ "source_location": "L5381", "_origin": "ast", "id": "remix_app_api_utils_things_things_activity_excluded_thingtimes", - "community": 486, + "community": 175, "norm_label": "activity_excluded_thingtimes" }, { @@ -303199,7 +303929,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_users_social", - "community": 82, + "community": 47, "norm_label": "social.ts" }, { @@ -303209,7 +303939,7 @@ "source_location": "L26", "_origin": "ast", "id": "remix_app_api_utils_users_social_fail", - "community": 82, + "community": 47, "norm_label": "fail" }, { @@ -303219,7 +303949,7 @@ "source_location": "L29", "_origin": "ast", "id": "remix_app_api_utils_users_social_friendstate", - "community": 82, + "community": 47, "norm_label": "friendstate" }, { @@ -303229,7 +303959,7 @@ "source_location": "L30", "_origin": "ast", "id": "remix_app_api_utils_users_social_friendintent", - "community": 82, + "community": 47, "norm_label": "friendintent" }, { @@ -303239,7 +303969,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_api_utils_users_social_friend_intents", - "community": 82, + "community": 47, "norm_label": "friend_intents" }, { @@ -303249,7 +303979,7 @@ "source_location": "L38", "_origin": "ast", "id": "remix_app_api_utils_users_social_friendkeyof", - "community": 82, + "community": 47, "norm_label": "friendkeyof()" }, { @@ -303259,7 +303989,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_api_utils_users_social_isduplicatekey", - "community": 82, + "community": 47, "norm_label": "isduplicatekey()" }, { @@ -303279,7 +304009,7 @@ "source_location": "L58", "_origin": "ast", "id": "remix_app_api_utils_users_social_setfollowresult", - "community": 82, + "community": 47, "norm_label": "setfollowresult" }, { @@ -303289,7 +304019,7 @@ "source_location": "L60", "_origin": "ast", "id": "remix_app_api_utils_users_social_setfollow", - "community": 82, + "community": 47, "norm_label": "setfollow()" }, { @@ -303299,7 +304029,7 @@ "source_location": "L99", "_origin": "ast", "id": "remix_app_api_utils_users_social_followeridsof", - "community": 486, + "community": 175, "norm_label": "followeridsof()" }, { @@ -303309,7 +304039,7 @@ "source_location": "L113", "_origin": "ast", "id": "remix_app_api_utils_users_social_friendactionresult", - "community": 82, + "community": 47, "norm_label": "friendactionresult" }, { @@ -303319,7 +304049,7 @@ "source_location": "L115", "_origin": "ast", "id": "remix_app_api_utils_users_social_friendstateof", - "community": 82, + "community": 47, "norm_label": "friendstateof()" }, { @@ -303329,7 +304059,7 @@ "source_location": "L121", "_origin": "ast", "id": "remix_app_api_utils_users_social_friendaction", - "community": 82, + "community": 47, "norm_label": "friendaction()" }, { @@ -303339,7 +304069,7 @@ "source_location": "L233", "_origin": "ast", "id": "remix_app_api_utils_users_social_friendidsof", - "community": 486, + "community": 175, "norm_label": "friendidsof()" }, { @@ -303349,7 +304079,7 @@ "source_location": "L255", "_origin": "ast", "id": "remix_app_api_utils_users_social_groupidsof", - "community": 486, + "community": 6, "norm_label": "groupidsof()" }, { @@ -303359,7 +304089,7 @@ "source_location": "L273", "_origin": "ast", "id": "remix_app_api_utils_users_social_relationshipsummary", - "community": 82, + "community": 47, "norm_label": "relationshipsummary" }, { @@ -303369,7 +304099,7 @@ "source_location": "L328", "_origin": "ast", "id": "remix_app_api_utils_users_social_loadpublicprofiles", - "community": 82, + "community": 47, "norm_label": "loadpublicprofiles()" }, { @@ -303379,7 +304109,7 @@ "source_location": "L382", "_origin": "ast", "id": "remix_app_api_utils_users_social_connectionstype", - "community": 82, + "community": 47, "norm_label": "connectionstype" }, { @@ -303389,7 +304119,7 @@ "source_location": "L384", "_origin": "ast", "id": "remix_app_api_utils_users_social_connectionsresult", - "community": 82, + "community": 47, "norm_label": "connectionsresult" }, { @@ -303399,7 +304129,7 @@ "source_location": "L388", "_origin": "ast", "id": "remix_app_api_utils_users_social_listconnections", - "community": 82, + "community": 47, "norm_label": "listconnections()" }, { @@ -303409,7 +304139,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_vercel_environment_test", - "community": 903, + "community": 724, "norm_label": "environment.test.ts" }, { @@ -303419,7 +304149,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_vercel_environment", - "community": 903, + "community": 724, "norm_label": "environment.ts" }, { @@ -303429,7 +304159,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_vercel_environment_deploymentstatusenvironment", - "community": 903, + "community": 724, "norm_label": "deploymentstatusenvironment" }, { @@ -303439,7 +304169,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_api_utils_vercel_environment_isvisiblevercelenvironment", - "community": 903, + "community": 724, "norm_label": "isvisiblevercelenvironment()" }, { @@ -303449,7 +304179,7 @@ "source_location": "L11", "_origin": "ast", "id": "remix_app_api_utils_vercel_environment_isvercelstatusenabled", - "community": 903, + "community": 724, "norm_label": "isvercelstatusenabled()" }, { @@ -303489,7 +304219,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_api_utils_vercel_status_verceldeploymentstatus", - "community": 7, + "community": 492, "norm_label": "verceldeploymentstatus" }, { @@ -303549,7 +304279,7 @@ "source_location": "L88", "_origin": "ast", "id": "remix_app_api_utils_vercel_status_getcachedjson", - "community": 304, + "community": 749, "norm_label": "getcachedjson()" }, { @@ -303579,7 +304309,7 @@ "source_location": "L153", "_origin": "ast", "id": "remix_app_api_utils_vercel_status_setcachedjson", - "community": 304, + "community": 749, "norm_label": "setcachedjson()" }, { @@ -303679,7 +304409,7 @@ "source_location": "L254", "_origin": "ast", "id": "remix_app_api_utils_vercel_status_getvercelapiheaders", - "community": 304, + "community": 749, "norm_label": "getvercelapiheaders()" }, { @@ -303689,7 +304419,7 @@ "source_location": "L259", "_origin": "ast", "id": "remix_app_api_utils_vercel_status_getverceldeploymentspage", - "community": 304, + "community": 749, "norm_label": "getverceldeploymentspage()" }, { @@ -303699,7 +304429,7 @@ "source_location": "L328", "_origin": "ast", "id": "remix_app_api_utils_vercel_status_getverceldeploymentspages", - "community": 304, + "community": 749, "norm_label": "getverceldeploymentspages()" }, { @@ -303729,7 +304459,7 @@ "source_location": "L399", "_origin": "ast", "id": "remix_app_api_utils_vercel_status_getvercelprojectdata", - "community": 304, + "community": 749, "norm_label": "getvercelprojectdata()" }, { @@ -303999,7 +304729,7 @@ "source_location": "L32", "_origin": "ast", "id": "remix_app_api_utils_vercel_webhookstore_test_sign", - "community": 82, + "community": 45, "norm_label": "sign()" }, { @@ -304159,7 +304889,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_waitlist_waitlist", - "community": 50, + "community": 261, "norm_label": "waitlist.ts" }, { @@ -304169,7 +304899,7 @@ "source_location": "L30", "_origin": "ast", "id": "remix_app_api_utils_waitlist_waitlist_firstheaderip", - "community": 50, + "community": 261, "norm_label": "firstheaderip()" }, { @@ -304179,7 +304909,7 @@ "source_location": "L32", "_origin": "ast", "id": "remix_app_api_utils_waitlist_waitlist_getrequestip", - "community": 50, + "community": 261, "norm_label": "getrequestip()" }, { @@ -304189,7 +304919,7 @@ "source_location": "L44", "_origin": "ast", "id": "remix_app_api_utils_waitlist_waitlist_consumejoinquota", - "community": 50, + "community": 261, "norm_label": "consumejoinquota()" }, { @@ -304199,7 +304929,7 @@ "source_location": "L71", "_origin": "ast", "id": "remix_app_api_utils_waitlist_waitlist_joinresult", - "community": 50, + "community": 261, "norm_label": "joinresult" }, { @@ -304209,7 +304939,7 @@ "source_location": "L77", "_origin": "ast", "id": "remix_app_api_utils_waitlist_waitlist_waitlistemailkey", - "community": 50, + "community": 261, "norm_label": "waitlistemailkey()" }, { @@ -304219,7 +304949,7 @@ "source_location": "L83", "_origin": "ast", "id": "remix_app_api_utils_waitlist_waitlist_joinwaitlist", - "community": 50, + "community": 261, "norm_label": "joinwaitlist()" }, { @@ -304229,7 +304959,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_watch_watchpairing", - "community": 41, + "community": 358, "norm_label": "watchpairing.ts" }, { @@ -304239,7 +304969,7 @@ "source_location": "L21", "_origin": "ast", "id": "remix_app_api_utils_watch_watchpairing_watch_capabilities", - "community": 41, + "community": 358, "norm_label": "watch_capabilities" }, { @@ -304249,7 +304979,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_api_utils_watch_watchpairing_home_accounting", - "community": 41, + "community": 358, "norm_label": "home_accounting" }, { @@ -304259,7 +304989,7 @@ "source_location": "L24", "_origin": "ast", "id": "remix_app_api_utils_watch_watchpairing_hash", - "community": 41, + "community": 358, "norm_label": "hash()" }, { @@ -304269,7 +304999,7 @@ "source_location": "L32", "_origin": "ast", "id": "remix_app_api_utils_watch_watchpairing_randomwatchcode", - "community": 41, + "community": 358, "norm_label": "randomwatchcode()" }, { @@ -304279,7 +305009,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_api_utils_watch_watchpairing_normalizeusercode", - "community": 41, + "community": 358, "norm_label": "normalizeusercode()" }, { @@ -304289,7 +305019,7 @@ "source_location": "L46", "_origin": "ast", "id": "remix_app_api_utils_watch_watchpairing_normalizepairingid", - "community": 41, + "community": 358, "norm_label": "normalizepairingid()" }, { @@ -304299,7 +305029,7 @@ "source_location": "L51", "_origin": "ast", "id": "remix_app_api_utils_watch_watchpairing_normalizedevicecode", - "community": 41, + "community": 358, "norm_label": "normalizedevicecode()" }, { @@ -304309,7 +305039,7 @@ "source_location": "L57", "_origin": "ast", "id": "remix_app_api_utils_watch_watchpairing_watchaccountprofile", - "community": 41, + "community": 358, "norm_label": "watchaccountprofile" }, { @@ -304319,7 +305049,7 @@ "source_location": "L59", "_origin": "ast", "id": "remix_app_api_utils_watch_watchpairing_watchpairingstart", - "community": 41, + "community": 358, "norm_label": "watchpairingstart" }, { @@ -304329,7 +305059,7 @@ "source_location": "L69", "_origin": "ast", "id": "remix_app_api_utils_watch_watchpairing_failure", - "community": 41, + "community": 358, "norm_label": "failure" }, { @@ -304339,7 +305069,7 @@ "source_location": "L71", "_origin": "ast", "id": "remix_app_api_utils_watch_watchpairing_startwatchpairing", - "community": 41, + "community": 358, "norm_label": "startwatchpairing()" }, { @@ -304349,7 +305079,7 @@ "source_location": "L147", "_origin": "ast", "id": "remix_app_api_utils_watch_watchpairing_offerwatchpairing", - "community": 41, + "community": 358, "norm_label": "offerwatchpairing()" }, { @@ -304359,7 +305089,7 @@ "source_location": "L173", "_origin": "ast", "id": "remix_app_api_utils_watch_watchpairing_pendingwatchpairings", - "community": 41, + "community": 358, "norm_label": "pendingwatchpairings()" }, { @@ -304369,7 +305099,7 @@ "source_location": "L200", "_origin": "ast", "id": "remix_app_api_utils_watch_watchpairing_lookupwatchpairing", - "community": 41, + "community": 358, "norm_label": "lookupwatchpairing()" }, { @@ -304379,7 +305109,7 @@ "source_location": "L227", "_origin": "ast", "id": "remix_app_api_utils_watch_watchpairing_inspectwatchpairing", - "community": 41, + "community": 358, "norm_label": "inspectwatchpairing()" }, { @@ -304389,7 +305119,7 @@ "source_location": "L255", "_origin": "ast", "id": "remix_app_api_utils_watch_watchpairing_approvewatchpairing", - "community": 41, + "community": 358, "norm_label": "approvewatchpairing()" }, { @@ -304399,7 +305129,7 @@ "source_location": "L298", "_origin": "ast", "id": "remix_app_api_utils_watch_watchpairing_claimwatchpairing", - "community": 41, + "community": 358, "norm_label": "claimwatchpairing()" }, { @@ -304409,7 +305139,7 @@ "source_location": "L413", "_origin": "ast", "id": "remix_app_api_utils_watch_watchpairing_watchdevicecontext", - "community": 41, + "community": 358, "norm_label": "watchdevicecontext" }, { @@ -304429,7 +305159,7 @@ "source_location": "L425", "_origin": "ast", "id": "remix_app_api_utils_watch_watchpairing_recordwatchsync", - "community": 82, + "community": 3, "norm_label": "recordwatchsync()" }, { @@ -304539,7 +305269,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_webpages_seed", - "community": 60, + "community": 46, "norm_label": "seed.ts" }, { @@ -304549,7 +305279,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_api_utils_webpages_seed_sitepageseed", - "community": 60, + "community": 46, "norm_label": "sitepageseed" }, { @@ -304559,7 +305289,7 @@ "source_location": "L42", "_origin": "ast", "id": "remix_app_api_utils_webpages_seed_site_page_seeds", - "community": 60, + "community": 46, "norm_label": "site_page_seeds" }, { @@ -304569,7 +305299,7 @@ "source_location": "L72", "_origin": "ast", "id": "remix_app_api_utils_webpages_seed_seedwebpagesresult", - "community": 60, + "community": 46, "norm_label": "seedwebpagesresult" }, { @@ -304579,7 +305309,7 @@ "source_location": "L83", "_origin": "ast", "id": "remix_app_api_utils_webpages_seed_seedwebpagescensus", - "community": 60, + "community": 46, "norm_label": "seedwebpagescensus" }, { @@ -304589,7 +305319,7 @@ "source_location": "L97", "_origin": "ast", "id": "remix_app_api_utils_webpages_seed_seedfail", - "community": 60, + "community": 46, "norm_label": "seedfail" }, { @@ -304599,7 +305329,7 @@ "source_location": "L99", "_origin": "ast", "id": "remix_app_api_utils_webpages_seed_fail", - "community": 60, + "community": 46, "norm_label": "fail()" }, { @@ -304609,7 +305339,7 @@ "source_location": "L101", "_origin": "ast", "id": "remix_app_api_utils_webpages_seed_seededcount", - "community": 60, + "community": 46, "norm_label": "seededcount()" }, { @@ -304619,7 +305349,7 @@ "source_location": "L107", "_origin": "ast", "id": "remix_app_api_utils_webpages_seed_seededsuitecount", - "community": 60, + "community": 46, "norm_label": "seededsuitecount()" }, { @@ -304629,7 +305359,7 @@ "source_location": "L117", "_origin": "ast", "id": "remix_app_api_utils_webpages_seed_countseededwebpages", - "community": 60, + "community": 46, "norm_label": "countseededwebpages()" }, { @@ -304639,7 +305369,7 @@ "source_location": "L141", "_origin": "ast", "id": "remix_app_api_utils_webpages_seed_seeddefinition", - "community": 60, + "community": 46, "norm_label": "seeddefinition" }, { @@ -304649,7 +305379,7 @@ "source_location": "L149", "_origin": "ast", "id": "remix_app_api_utils_webpages_seed_genuineseeded", - "community": 60, + "community": 46, "norm_label": "genuineseeded()" }, { @@ -304659,7 +305389,7 @@ "source_location": "L162", "_origin": "ast", "id": "remix_app_api_utils_webpages_seed_upsertsystemthings", - "community": 60, + "community": 46, "norm_label": "upsertsystemthings()" }, { @@ -304669,7 +305399,7 @@ "source_location": "L291", "_origin": "ast", "id": "remix_app_api_utils_webpages_seed_webpagedefinition", - "community": 60, + "community": 46, "norm_label": "webpagedefinition()" }, { @@ -304679,7 +305409,7 @@ "source_location": "L299", "_origin": "ast", "id": "remix_app_api_utils_webpages_seed_seedsitewebpages", - "community": 60, + "community": 46, "norm_label": "seedsitewebpages()" }, { @@ -304689,7 +305419,7 @@ "source_location": "L329", "_origin": "ast", "id": "remix_app_api_utils_webpages_seed_seeddemowebpages", - "community": 60, + "community": 46, "norm_label": "seeddemowebpages()" }, { @@ -304699,7 +305429,7 @@ "source_location": "L340", "_origin": "ast", "id": "remix_app_api_utils_webpages_seed_seeddemosuites", - "community": 60, + "community": 46, "norm_label": "seeddemosuites()" }, { @@ -304709,7 +305439,7 @@ "source_location": "L383", "_origin": "ast", "id": "remix_app_api_utils_webpages_seed_appcontentdefinitions", - "community": 60, + "community": 46, "norm_label": "appcontentdefinitions()" }, { @@ -304719,7 +305449,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_webpages_suites", - "community": 486, + "community": 175, "norm_label": "suites.ts" }, { @@ -304729,7 +305459,7 @@ "source_location": "L26", "_origin": "ast", "id": "remix_app_api_utils_webpages_suites_installsuiteresult", - "community": 486, + "community": 175, "norm_label": "installsuiteresult" }, { @@ -304739,7 +305469,7 @@ "source_location": "L43", "_origin": "ast", "id": "remix_app_api_utils_webpages_suites_owndoc", - "community": 486, + "community": 175, "norm_label": "owndoc" }, { @@ -304749,7 +305479,7 @@ "source_location": "L45", "_origin": "ast", "id": "remix_app_api_utils_webpages_suites_owndocsbykey", - "community": 486, + "community": 175, "norm_label": "owndocsbykey()" }, { @@ -304759,7 +305489,7 @@ "source_location": "L64", "_origin": "ast", "id": "remix_app_api_utils_webpages_suites_installsuiteforviewer", - "community": 486, + "community": 175, "norm_label": "installsuiteforviewer()" }, { @@ -304769,7 +305499,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_webpages_webpageattachments_test", - "community": 751, + "community": 358, "norm_label": "webpageattachments.test.ts" }, { @@ -304779,7 +305509,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_api_utils_webpages_webpageattachments", - "community": 751, + "community": 358, "norm_label": "webpageattachments.ts" }, { @@ -304789,7 +305519,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_api_utils_webpages_webpageattachments_collectfromstring", - "community": 751, + "community": 358, "norm_label": "collectfromstring()" }, { @@ -304799,7 +305529,7 @@ "source_location": "L32", "_origin": "ast", "id": "remix_app_api_utils_webpages_webpageattachments_collectfromrecord", - "community": 751, + "community": 358, "norm_label": "collectfromrecord()" }, { @@ -304809,7 +305539,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_api_utils_webpages_webpageattachments_extractwebpageattachmentids", - "community": 751, + "community": 358, "norm_label": "extractwebpageattachmentids()" }, { @@ -304819,7 +305549,7 @@ "source_location": "L58", "_origin": "ast", "id": "remix_app_api_utils_webpages_webpageattachments_webpageattachmentbindresult", - "community": 751, + "community": 358, "norm_label": "webpageattachmentbindresult" }, { @@ -304829,7 +305559,7 @@ "source_location": "L63", "_origin": "ast", "id": "remix_app_api_utils_webpages_webpageattachments_bindownedwebpageattachments", - "community": 751, + "community": 358, "norm_label": "bindownedwebpageattachments()" }, { @@ -304879,7 +305609,7 @@ "source_location": "L118", "_origin": "ast", "id": "remix_app_api_utils_webpages_webpages_resolveblockcomponents", - "community": 486, + "community": 46, "norm_label": "resolveblockcomponents()" }, { @@ -304919,7 +305649,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_api_submit", - "community": 9, + "community": 323, "norm_label": "submit.tsx" }, { @@ -304929,7 +305659,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_components_api_submit_submit", - "community": 9, + "community": 323, "norm_label": "submit()" }, { @@ -304939,7 +305669,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_api_test", - "community": 652, + "community": 323, "norm_label": "test.tsx" }, { @@ -304949,7 +305679,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_components_api_test_testapi", - "community": 652, + "community": 323, "norm_label": "testapi()" }, { @@ -304959,7 +305689,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_account_accounthints", - "community": 698, + "community": 58, "norm_label": "accounthints.tsx" }, { @@ -304969,7 +305699,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_components_account_accounthints_hintdisplayname", - "community": 698, + "community": 58, "norm_label": "hintdisplayname()" }, { @@ -304979,7 +305709,7 @@ "source_location": "L15", "_origin": "ast", "id": "remix_app_components_account_accounthints_hintavatar", - "community": 698, + "community": 58, "norm_label": "hintavatar()" }, { @@ -304989,7 +305719,7 @@ "source_location": "L49", "_origin": "ast", "id": "remix_app_components_account_accounthints_hintoriginslabel", - "community": 698, + "community": 58, "norm_label": "hintoriginslabel()" }, { @@ -304999,7 +305729,7 @@ "source_location": "L51", "_origin": "ast", "id": "remix_app_components_account_accounthints_accounthintrow", - "community": 698, + "community": 58, "norm_label": "accounthintrow()" }, { @@ -305009,7 +305739,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_account_accountswitcher", - "community": 53, + "community": 73, "norm_label": "accountswitcher.tsx" }, { @@ -305019,7 +305749,7 @@ "source_location": "L20", "_origin": "ast", "id": "remix_app_components_account_accountswitcher_rowavatar", - "community": 53, + "community": 73, "norm_label": "rowavatar()" }, { @@ -305029,7 +305759,7 @@ "source_location": "L58", "_origin": "ast", "id": "remix_app_components_account_accountswitcher_ownedaccount", - "community": 53, + "community": 73, "norm_label": "ownedaccount" }, { @@ -305039,7 +305769,7 @@ "source_location": "L69", "_origin": "ast", "id": "remix_app_components_account_accountswitcher_accountswitcher", - "community": 53, + "community": 73, "norm_label": "accountswitcher()" }, { @@ -305049,7 +305779,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_account_autologinpopup", - "community": 53, + "community": 58, "norm_label": "autologinpopup.tsx" }, { @@ -305059,7 +305789,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_components_account_autologinpopup_isthingtimefamilyhost", - "community": 53, + "community": 58, "norm_label": "isthingtimefamilyhost()" }, { @@ -305069,7 +305799,7 @@ "source_location": "L39", "_origin": "ast", "id": "remix_app_components_account_autologinpopup_snoozednow", - "community": 53, + "community": 58, "norm_label": "snoozednow()" }, { @@ -305079,7 +305809,7 @@ "source_location": "L48", "_origin": "ast", "id": "remix_app_components_account_autologinpopup_hidden_paths", - "community": 53, + "community": 58, "norm_label": "hidden_paths" }, { @@ -305089,7 +305819,7 @@ "source_location": "L50", "_origin": "ast", "id": "remix_app_components_account_autologinpopup_autologinpopup", - "community": 53, + "community": 58, "norm_label": "autologinpopup()" }, { @@ -305099,7 +305829,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_account_accounthintorigin_test", - "community": 698, + "community": 58, "norm_label": "accounthintorigin.test.ts" }, { @@ -305109,7 +305839,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_account_accounthintorigin", - "community": 698, + "community": 58, "norm_label": "accounthintorigin.ts" }, { @@ -305119,7 +305849,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_account_accounthintorigin_accounthintoriginpresentation", - "community": 698, + "community": 58, "norm_label": "accounthintoriginpresentation" }, { @@ -305129,7 +305859,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_components_account_accounthintorigin_hostfromorigin", - "community": 698, + "community": 58, "norm_label": "hostfromorigin()" }, { @@ -305139,7 +305869,7 @@ "source_location": "L44", "_origin": "ast", "id": "remix_app_components_account_accounthintorigin_accounthintoriginssummary", - "community": 698, + "community": 58, "norm_label": "accounthintoriginssummary()" }, { @@ -305209,7 +305939,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_account_useaccountswitcher", - "community": 53, + "community": 73, "norm_label": "useaccountswitcher.tsx" }, { @@ -305219,7 +305949,7 @@ "source_location": "L15", "_origin": "ast", "id": "remix_app_components_account_useaccountswitcher_switcheraccountuser", - "community": 53, + "community": 73, "norm_label": "switcheraccountuser" }, { @@ -305229,7 +305959,7 @@ "source_location": "L25", "_origin": "ast", "id": "remix_app_components_account_useaccountswitcher_switcheraccount", - "community": 53, + "community": 73, "norm_label": "switcheraccount" }, { @@ -305239,7 +305969,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_components_account_useaccountswitcher_useaccountswitcher", - "community": 53, + "community": 73, "norm_label": "useaccountswitcher()" }, { @@ -305249,7 +305979,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_actions_actionbuilder", - "community": 18, + "community": 492, "norm_label": "actionbuilder.tsx" }, { @@ -305259,7 +305989,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_components_actions_actionbuilder_monolabel", - "community": 18, + "community": 492, "norm_label": "monolabel" }, { @@ -305269,7 +305999,7 @@ "source_location": "L30", "_origin": "ast", "id": "remix_app_components_actions_actionbuilder_slugify", - "community": 18, + "community": 492, "norm_label": "slugify()" }, { @@ -305279,7 +306009,7 @@ "source_location": "L37", "_origin": "ast", "id": "remix_app_components_actions_actionbuilder_inputrow", - "community": 18, + "community": 492, "norm_label": "inputrow" }, { @@ -305289,7 +306019,7 @@ "source_location": "L38", "_origin": "ast", "id": "remix_app_components_actions_actionbuilder_valuerow", - "community": 18, + "community": 492, "norm_label": "valuerow" }, { @@ -305299,7 +306029,7 @@ "source_location": "L39", "_origin": "ast", "id": "remix_app_components_actions_actionbuilder_steprow", - "community": 18, + "community": 492, "norm_label": "steprow" }, { @@ -305309,7 +306039,7 @@ "source_location": "L41", "_origin": "ast", "id": "remix_app_components_actions_actionbuilder_emptystep", - "community": 18, + "community": 492, "norm_label": "emptystep()" }, { @@ -305319,7 +306049,7 @@ "source_location": "L43", "_origin": "ast", "id": "remix_app_components_actions_actionbuilder_fieldlabel", - "community": 18, + "community": 492, "norm_label": "fieldlabel()" }, { @@ -305329,7 +306059,7 @@ "source_location": "L49", "_origin": "ast", "id": "remix_app_components_actions_actionbuilder_rowinput", - "community": 18, + "community": 492, "norm_label": "rowinput" }, { @@ -305339,7 +306069,7 @@ "source_location": "L51", "_origin": "ast", "id": "remix_app_components_actions_actionbuilder_actionbuilder", - "community": 18, + "community": 492, "norm_label": "actionbuilder()" }, { @@ -305349,7 +306079,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_actions_actionchip", - "community": 18, + "community": 492, "norm_label": "actionchip.tsx" }, { @@ -305359,7 +306089,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_components_actions_actionchip_chiptone", - "community": 18, + "community": 492, "norm_label": "chiptone" }, { @@ -305369,7 +306099,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_components_actions_actionchip_chipsize", - "community": 18, + "community": 492, "norm_label": "chipsize" }, { @@ -305379,7 +306109,7 @@ "source_location": "L11", "_origin": "ast", "id": "remix_app_components_actions_actionchip_tone_dots", - "community": 18, + "community": 492, "norm_label": "tone_dots" }, { @@ -305389,7 +306119,7 @@ "source_location": "L21", "_origin": "ast", "id": "remix_app_components_actions_actionchip_size_styles", - "community": 18, + "community": 492, "norm_label": "size_styles" }, { @@ -305399,7 +306129,7 @@ "source_location": "L27", "_origin": "ast", "id": "remix_app_components_actions_actionchip_actionchip", - "community": 18, + "community": 492, "norm_label": "actionchip()" }, { @@ -305409,7 +306139,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_actions_actiondetailpage", - "community": 18, + "community": 492, "norm_label": "actiondetailpage.tsx" }, { @@ -305419,7 +306149,7 @@ "source_location": "L39", "_origin": "ast", "id": "remix_app_components_actions_actiondetailpage_monolabel", - "community": 18, + "community": 492, "norm_label": "monolabel" }, { @@ -305429,7 +306159,7 @@ "source_location": "L47", "_origin": "ast", "id": "remix_app_components_actions_actiondetailpage_runresponse", - "community": 18, + "community": 492, "norm_label": "runresponse" }, { @@ -305439,7 +306169,7 @@ "source_location": "L60", "_origin": "ast", "id": "remix_app_components_actions_actiondetailpage_runrecord", - "community": 18, + "community": 492, "norm_label": "runrecord" }, { @@ -305449,7 +306179,7 @@ "source_location": "L70", "_origin": "ast", "id": "remix_app_components_actions_actiondetailpage_section", - "community": 18, + "community": 492, "norm_label": "section()" }, { @@ -305469,7 +306199,7 @@ "source_location": "L251", "_origin": "ast", "id": "remix_app_components_actions_actiondetailpage_actiondetailpage", - "community": 18, + "community": 492, "norm_label": "actiondetailpage()" }, { @@ -305479,7 +306209,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_actions_actionrunconfirm", - "community": 7, + "community": 46, "norm_label": "actionrunconfirm.tsx" }, { @@ -305489,7 +306219,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_components_actions_actionrunconfirm_describeinputs", - "community": 7, + "community": 46, "norm_label": "describeinputs()" }, { @@ -305499,7 +306229,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_components_actions_actionrunconfirm_pending", - "community": 7, + "community": 46, "norm_label": "pending" }, { @@ -305509,7 +306239,7 @@ "source_location": "L33", "_origin": "ast", "id": "remix_app_components_actions_actionrunconfirm_useactionrunconfirm", - "community": 7, + "community": 46, "norm_label": "useactionrunconfirm()" }, { @@ -305519,7 +306249,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_actions_actionspage", - "community": 18, + "community": 492, "norm_label": "actionspage.tsx" }, { @@ -305529,7 +306259,7 @@ "source_location": "L23", "_origin": "ast", "id": "remix_app_components_actions_actionspage_monolabel", - "community": 18, + "community": 492, "norm_label": "monolabel" }, { @@ -305539,7 +306269,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_components_actions_actionspage_actionscache", - "community": 18, + "community": 492, "norm_label": "actionscache" }, { @@ -305549,7 +306279,7 @@ "source_location": "L32", "_origin": "ast", "id": "remix_app_components_actions_actionspage_cachekeyfor", - "community": 18, + "community": 492, "norm_label": "cachekeyfor()" }, { @@ -305559,7 +306289,7 @@ "source_location": "L34", "_origin": "ast", "id": "remix_app_components_actions_actionspage_opchiptone", - "community": 18, + "community": 492, "norm_label": "opchiptone()" }, { @@ -305569,7 +306299,7 @@ "source_location": "L44", "_origin": "ast", "id": "remix_app_components_actions_actionspage_actioncard", - "community": 18, + "community": 492, "norm_label": "actioncard()" }, { @@ -305579,7 +306309,7 @@ "source_location": "L132", "_origin": "ast", "id": "remix_app_components_actions_actionspage_actionspage", - "community": 18, + "community": 492, "norm_label": "actionspage()" }, { @@ -305589,7 +306319,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_actions_actioninspect_test", - "community": 18, + "community": 492, "norm_label": "actioninspect.test.ts" }, { @@ -305599,7 +306329,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_actions_actioninspect", - "community": 18, + "community": 492, "norm_label": "actioninspect.ts" }, { @@ -305609,7 +306339,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_components_actions_actioninspect_actioncrystal", - "community": 18, + "community": 492, "norm_label": "actioncrystal" }, { @@ -305619,7 +306349,7 @@ "source_location": "L27", "_origin": "ast", "id": "remix_app_components_actions_actioninspect_actionthing", - "community": 18, + "community": 492, "norm_label": "actionthing" }, { @@ -305629,7 +306359,7 @@ "source_location": "L37", "_origin": "ast", "id": "remix_app_components_actions_actioninspect_isactionthing", - "community": 18, + "community": 492, "norm_label": "isactionthing()" }, { @@ -305639,7 +306369,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_components_actions_actioninspect_actioneffectsof", - "community": 18, + "community": 492, "norm_label": "actioneffectsof()" }, { @@ -305649,7 +306379,7 @@ "source_location": "L51", "_origin": "ast", "id": "remix_app_components_actions_actioninspect_no_input_descriptors", - "community": 18, + "community": 492, "norm_label": "no_input_descriptors" }, { @@ -305659,7 +306389,7 @@ "source_location": "L52", "_origin": "ast", "id": "remix_app_components_actions_actioninspect_runinputdescriptorsof", - "community": 18, + "community": 492, "norm_label": "runinputdescriptorsof()" }, { @@ -305669,7 +306399,7 @@ "source_location": "L57", "_origin": "ast", "id": "remix_app_components_actions_actioninspect_actionlimitsof", - "community": 18, + "community": 492, "norm_label": "actionlimitsof()" }, { @@ -305679,7 +306409,7 @@ "source_location": "L70", "_origin": "ast", "id": "remix_app_components_actions_actioninspect_displayref", - "community": 18, + "community": 492, "norm_label": "displayref()" }, { @@ -305689,7 +306419,7 @@ "source_location": "L75", "_origin": "ast", "id": "remix_app_components_actions_actioninspect_describeactionstep", - "community": 18, + "community": 492, "norm_label": "describeactionstep()" }, { @@ -305699,7 +306429,7 @@ "source_location": "L105", "_origin": "ast", "id": "remix_app_components_actions_actioninspect_deriverequiredcapabilities", - "community": 18, + "community": 492, "norm_label": "deriverequiredcapabilities()" }, { @@ -305709,7 +306439,7 @@ "source_location": "L142", "_origin": "ast", "id": "remix_app_components_actions_actioninspect_coercevaluetext", - "community": 18, + "community": 492, "norm_label": "coercevaluetext()" }, { @@ -305719,7 +306449,7 @@ "source_location": "L158", "_origin": "ast", "id": "remix_app_components_actions_actioninspect_coerceinputdefault", - "community": 18, + "community": 492, "norm_label": "coerceinputdefault()" }, { @@ -305729,7 +306459,7 @@ "source_location": "L177", "_origin": "ast", "id": "remix_app_components_actions_actioninspect_selectactionbykey", - "community": 18, + "community": 492, "norm_label": "selectactionbykey()" }, { @@ -305739,7 +306469,7 @@ "source_location": "L196", "_origin": "ast", "id": "remix_app_components_actions_actioninspect_componentbindsaction", - "community": 18, + "community": 492, "norm_label": "componentbindsaction()" }, { @@ -305749,7 +306479,7 @@ "source_location": "L213", "_origin": "ast", "id": "remix_app_components_actions_actioninspect_collectschemarefs", - "community": 18, + "community": 492, "norm_label": "collectschemarefs()" }, { @@ -305759,7 +306489,7 @@ "source_location": "L224", "_origin": "ast", "id": "remix_app_components_actions_actioninspect_action_op_tones", - "community": 18, + "community": 492, "norm_label": "action_op_tones" }, { @@ -305769,7 +306499,7 @@ "source_location": "L237", "_origin": "ast", "id": "remix_app_components_actions_actioninspect_action_limit_labels", - "community": 18, + "community": 492, "norm_label": "action_limit_labels" }, { @@ -305779,7 +306509,7 @@ "source_location": "L251", "_origin": "ast", "id": "remix_app_components_actions_actioninspect_actioncannotaccess", - "community": 18, + "community": 492, "norm_label": "actioncannotaccess()" }, { @@ -305789,7 +306519,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_actions_actionrunrequest_test", - "community": 53, + "community": 70, "norm_label": "actionrunrequest.test.ts" }, { @@ -305799,7 +306529,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_actions_actionrunrequest", - "community": 53, + "community": 70, "norm_label": "actionrunrequest.ts" }, { @@ -305809,7 +306539,7 @@ "source_location": "L20", "_origin": "ast", "id": "remix_app_components_actions_actionrunrequest_actionrunargs", - "community": 53, + "community": 70, "norm_label": "actionrunargs" }, { @@ -305819,7 +306549,7 @@ "source_location": "L29", "_origin": "ast", "id": "remix_app_components_actions_actionrunrequest_buildactionrunbody", - "community": 53, + "community": 70, "norm_label": "buildactionrunbody()" }, { @@ -305829,7 +306559,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_actions_usettactionclicks_test", - "community": 7, + "community": 330, "norm_label": "usettactionclicks.test.ts" }, { @@ -305839,7 +306569,7 @@ "source_location": "L11", "_origin": "ast", "id": "remix_app_components_actions_usettactionclicks_test_unowned", - "community": 7, + "community": 330, "norm_label": "unowned()" }, { @@ -305849,7 +306579,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_actions_usettactionclicks", - "community": 7, + "community": 330, "norm_label": "usettactionclicks.tsx" }, { @@ -305859,7 +306589,7 @@ "source_location": "L24", "_origin": "ast", "id": "remix_app_components_actions_usettactionclicks_ttactionunownedhandler", - "community": 7, + "community": 330, "norm_label": "ttactionunownedhandler" }, { @@ -305869,7 +306599,7 @@ "source_location": "L33", "_origin": "ast", "id": "remix_app_components_actions_usettactionclicks_ttactionconfirmhandler", - "community": 7, + "community": 46, "norm_label": "ttactionconfirmhandler" }, { @@ -305879,7 +306609,7 @@ "source_location": "L37", "_origin": "ast", "id": "remix_app_components_actions_usettactionclicks_messageof", - "community": 7, + "community": 330, "norm_label": "messageof()" }, { @@ -305889,7 +306619,7 @@ "source_location": "L42", "_origin": "ast", "id": "remix_app_components_actions_usettactionclicks_delegatedrunoutcome", - "community": 7, + "community": 330, "norm_label": "delegatedrunoutcome" }, { @@ -305899,7 +306629,7 @@ "source_location": "L47", "_origin": "ast", "id": "remix_app_components_actions_usettactionclicks_rundelegatedaction", - "community": 7, + "community": 330, "norm_label": "rundelegatedaction()" }, { @@ -305909,7 +306639,7 @@ "source_location": "L76", "_origin": "ast", "id": "remix_app_components_actions_usettactionclicks_toastfromresult", - "community": 7, + "community": 330, "norm_label": "toastfromresult()" }, { @@ -305919,7 +306649,7 @@ "source_location": "L91", "_origin": "ast", "id": "remix_app_components_actions_usettactionclicks_usettactionclicks", - "community": 7, + "community": 53, "norm_label": "usettactionclicks()" }, { @@ -305929,7 +306659,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_admin_admindashboard", - "community": 17, + "community": 53, "norm_label": "admindashboard.tsx" }, { @@ -305939,7 +306669,7 @@ "source_location": "L57", "_origin": "ast", "id": "remix_app_components_admin_admindashboard_userrow", - "community": 17, + "community": 53, "norm_label": "userrow" }, { @@ -305949,7 +306679,7 @@ "source_location": "L92", "_origin": "ast", "id": "remix_app_components_admin_admindashboard_approw", - "community": 17, + "community": 53, "norm_label": "approw" }, { @@ -305959,7 +306689,7 @@ "source_location": "L106", "_origin": "ast", "id": "remix_app_components_admin_admindashboard_formatadmindate", - "community": 17, + "community": 53, "norm_label": "formatadmindate()" }, { @@ -305969,7 +306699,7 @@ "source_location": "L114", "_origin": "ast", "id": "remix_app_components_admin_admindashboard_chiptone", - "community": 17, + "community": 53, "norm_label": "chiptone" }, { @@ -305979,7 +306709,7 @@ "source_location": "L116", "_origin": "ast", "id": "remix_app_components_admin_admindashboard_chip_tone_styles", - "community": 17, + "community": 53, "norm_label": "chip_tone_styles" }, { @@ -305989,7 +306719,7 @@ "source_location": "L125", "_origin": "ast", "id": "remix_app_components_admin_admindashboard_chip", - "community": 17, + "community": 53, "norm_label": "chip()" }, { @@ -305999,7 +306729,7 @@ "source_location": "L159", "_origin": "ast", "id": "remix_app_components_admin_admindashboard_statusdot", - "community": 17, + "community": 53, "norm_label": "statusdot()" }, { @@ -306009,7 +306739,7 @@ "source_location": "L176", "_origin": "ast", "id": "remix_app_components_admin_admindashboard_storage_chip_tones", - "community": 17, + "community": 53, "norm_label": "storage_chip_tones" }, { @@ -306019,7 +306749,7 @@ "source_location": "L184", "_origin": "ast", "id": "remix_app_components_admin_admindashboard_admin_tab_styles", - "community": 17, + "community": 53, "norm_label": "admin_tab_styles" }, { @@ -306029,7 +306759,7 @@ "source_location": "L201", "_origin": "ast", "id": "remix_app_components_admin_admindashboard_storageusage", - "community": 17, + "community": 53, "norm_label": "storageusage()" }, { @@ -306039,7 +306769,7 @@ "source_location": "L224", "_origin": "ast", "id": "remix_app_components_admin_admindashboard_quota_fields", - "community": 17, + "community": 53, "norm_label": "quota_fields" }, { @@ -306049,7 +306779,7 @@ "source_location": "L225", "_origin": "ast", "id": "remix_app_components_admin_admindashboard_quota_query_labels", - "community": 17, + "community": 53, "norm_label": "quota_query_labels" }, { @@ -306059,7 +306789,7 @@ "source_location": "L233", "_origin": "ast", "id": "remix_app_components_admin_admindashboard_subscriptionqueryfields", - "community": 17, + "community": 53, "norm_label": "subscriptionqueryfields()" }, { @@ -306069,7 +306799,7 @@ "source_location": "L283", "_origin": "ast", "id": "remix_app_components_admin_admindashboard_user_query_fields", - "community": 17, + "community": 53, "norm_label": "user_query_fields" }, { @@ -306079,7 +306809,7 @@ "source_location": "L341", "_origin": "ast", "id": "remix_app_components_admin_admindashboard_app_query_fields", - "community": 17, + "community": 53, "norm_label": "app_query_fields" }, { @@ -306089,7 +306819,7 @@ "source_location": "L391", "_origin": "ast", "id": "remix_app_components_admin_admindashboard_userrowid", - "community": 17, + "community": 53, "norm_label": "userrowid()" }, { @@ -306099,7 +306829,7 @@ "source_location": "L392", "_origin": "ast", "id": "remix_app_components_admin_admindashboard_approwid", - "community": 17, + "community": 53, "norm_label": "approwid()" }, { @@ -306109,7 +306839,7 @@ "source_location": "L394", "_origin": "ast", "id": "remix_app_components_admin_admindashboard_tierbadge", - "community": 17, + "community": 53, "norm_label": "tierbadge()" }, { @@ -306119,7 +306849,7 @@ "source_location": "L412", "_origin": "ast", "id": "remix_app_components_admin_admindashboard_useadminrows", - "community": 17, + "community": 53, "norm_label": "useadminrows()" }, { @@ -306129,7 +306859,7 @@ "source_location": "L446", "_origin": "ast", "id": "remix_app_components_admin_admindashboard_snapshoterrornotice", - "community": 17, + "community": 53, "norm_label": "snapshoterrornotice()" }, { @@ -306149,7 +306879,7 @@ "source_location": "L552", "_origin": "ast", "id": "remix_app_components_admin_admindashboard_userstab", - "community": 17, + "community": 53, "norm_label": "userstab()" }, { @@ -306169,7 +306899,7 @@ "source_location": "L946", "_origin": "ast", "id": "remix_app_components_admin_admindashboard_admindashboard", - "community": 17, + "community": 53, "norm_label": "admindashboard()" }, { @@ -306319,7 +307049,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_admin_adminrowquerycontrols", - "community": 63, + "community": 4, "norm_label": "adminrowquerycontrols.tsx" }, { @@ -306329,7 +307059,7 @@ "source_location": "L29", "_origin": "ast", "id": "remix_app_components_admin_adminrowquerycontrols_operator_ids", - "community": 63, + "community": 4, "norm_label": "operator_ids" }, { @@ -306339,7 +307069,7 @@ "source_location": "L37", "_origin": "ast", "id": "remix_app_components_admin_adminrowquerycontrols_default_operator", - "community": 63, + "community": 4, "norm_label": "default_operator" }, { @@ -306349,7 +307079,7 @@ "source_location": "L45", "_origin": "ast", "id": "remix_app_components_admin_adminrowquerycontrols_value_type", - "community": 63, + "community": 4, "norm_label": "value_type" }, { @@ -306359,7 +307089,7 @@ "source_location": "L53", "_origin": "ast", "id": "remix_app_components_admin_adminrowquerycontrols_date_operator_labels", - "community": 63, + "community": 4, "norm_label": "date_operator_labels" }, { @@ -306369,7 +307099,7 @@ "source_location": "L64", "_origin": "ast", "id": "remix_app_components_admin_adminrowquerycontrols_accessible_operator_labels", - "community": 63, + "community": 4, "norm_label": "accessible_operator_labels" }, { @@ -306379,7 +307109,7 @@ "source_location": "L73", "_origin": "ast", "id": "remix_app_components_admin_adminrowquerycontrols_operatorsfor", - "community": 63, + "community": 4, "norm_label": "operatorsfor()" }, { @@ -306389,7 +307119,7 @@ "source_location": "L76", "_origin": "ast", "id": "remix_app_components_admin_adminrowquerycontrols_operatorlabel", - "community": 63, + "community": 4, "norm_label": "operatorlabel()" }, { @@ -306399,7 +307129,7 @@ "source_location": "L79", "_origin": "ast", "id": "remix_app_components_admin_adminrowquerycontrols_filterforfield", - "community": 63, + "community": 4, "norm_label": "filterforfield()" }, { @@ -306409,7 +307139,7 @@ "source_location": "L91", "_origin": "ast", "id": "remix_app_components_admin_adminrowquerycontrols_adminrowquerycontrolsprops", - "community": 63, + "community": 4, "norm_label": "adminrowquerycontrolsprops" }, { @@ -306419,7 +307149,7 @@ "source_location": "L101", "_origin": "ast", "id": "remix_app_components_admin_adminrowquerycontrols_adminrowquerycontrols", - "community": 63, + "community": 4, "norm_label": "adminrowquerycontrols()" }, { @@ -306429,7 +307159,7 @@ "source_location": "L382", "_origin": "ast", "id": "remix_app_components_admin_adminrowquerycontrols_useadminrowqueryoptions", - "community": 63, + "community": 4, "norm_label": "useadminrowqueryoptions" }, { @@ -306789,7 +307519,7 @@ "source_location": "L1247", "_origin": "ast", "id": "remix_app_components_admin_cicontrol_cicontroldashboard_cicontroldashboard", - "community": 53, + "community": 141, "norm_label": "cicontroldashboard()" }, { @@ -307369,7 +308099,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_admin_lopuaccountsadmin", - "community": 53, + "community": 106, "norm_label": "lopuaccountsadmin.tsx" }, { @@ -307379,7 +308109,7 @@ "source_location": "L38", "_origin": "ast", "id": "remix_app_components_admin_lopuaccountsadmin_creditentry", - "community": 53, + "community": 106, "norm_label": "creditentry" }, { @@ -307389,7 +308119,7 @@ "source_location": "L39", "_origin": "ast", "id": "remix_app_components_admin_lopuaccountsadmin_credit_entries", - "community": 53, + "community": 106, "norm_label": "credit_entries" }, { @@ -307399,7 +308129,7 @@ "source_location": "L48", "_origin": "ast", "id": "remix_app_components_admin_lopuaccountsadmin_inputsx", - "community": 53, + "community": 106, "norm_label": "inputsx" }, { @@ -307409,7 +308139,7 @@ "source_location": "L59", "_origin": "ast", "id": "remix_app_components_admin_lopuaccountsadmin_chip", - "community": 53, + "community": 106, "norm_label": "chip()" }, { @@ -307419,7 +308149,7 @@ "source_location": "L80", "_origin": "ast", "id": "remix_app_components_admin_lopuaccountsadmin_smallbutton", - "community": 53, + "community": 106, "norm_label": "smallbutton()" }, { @@ -307429,7 +308159,7 @@ "source_location": "L99", "_origin": "ast", "id": "remix_app_components_admin_lopuaccountsadmin_errormessage", - "community": 53, + "community": 106, "norm_label": "errormessage()" }, { @@ -307439,7 +308169,7 @@ "source_location": "L104", "_origin": "ast", "id": "remix_app_components_admin_lopuaccountsadmin_sameaccess", - "community": 53, + "community": 106, "norm_label": "sameaccess()" }, { @@ -307449,7 +308179,7 @@ "source_location": "L107", "_origin": "ast", "id": "remix_app_components_admin_lopuaccountsadmin_readaccesscache", - "community": 53, + "community": 106, "norm_label": "readaccesscache()" }, { @@ -307459,7 +308189,7 @@ "source_location": "L109", "_origin": "ast", "id": "remix_app_components_admin_lopuaccountsadmin_readaccountscache", - "community": 53, + "community": 106, "norm_label": "readaccountscache()" }, { @@ -307469,7 +308199,7 @@ "source_location": "L114", "_origin": "ast", "id": "remix_app_components_admin_lopuaccountsadmin_normalizerows", - "community": 53, + "community": 106, "norm_label": "normalizerows()" }, { @@ -307479,7 +308209,7 @@ "source_location": "L125", "_origin": "ast", "id": "remix_app_components_admin_lopuaccountsadmin_accesssettingseditor", - "community": 53, + "community": 106, "norm_label": "accesssettingseditor()" }, { @@ -307489,7 +308219,7 @@ "source_location": "L248", "_origin": "ast", "id": "remix_app_components_admin_lopuaccountsadmin_accountrow", - "community": 366, + "community": 106, "norm_label": "accountrow()" }, { @@ -307509,7 +308239,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_admin_lopumodelseditor", - "community": 64, + "community": 70, "norm_label": "lopumodelseditor.tsx" }, { @@ -307519,7 +308249,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_components_admin_lopumodelseditor_empty_defaults", - "community": 64, + "community": 70, "norm_label": "empty_defaults" }, { @@ -307529,7 +308259,7 @@ "source_location": "L45", "_origin": "ast", "id": "remix_app_components_admin_lopumodelseditor_chip", - "community": 64, + "community": 70, "norm_label": "chip()" }, { @@ -307539,7 +308269,7 @@ "source_location": "L66", "_origin": "ast", "id": "remix_app_components_admin_lopumodelseditor_selectsx", - "community": 64, + "community": 70, "norm_label": "selectsx" }, { @@ -307549,7 +308279,7 @@ "source_location": "L75", "_origin": "ast", "id": "remix_app_components_admin_lopumodelseditor_provider_labels", - "community": 64, + "community": 70, "norm_label": "provider_labels" }, { @@ -307559,7 +308289,7 @@ "source_location": "L80", "_origin": "ast", "id": "remix_app_components_admin_lopumodelseditor_providerlabel", - "community": 64, + "community": 70, "norm_label": "providerlabel()" }, { @@ -307569,7 +308299,7 @@ "source_location": "L83", "_origin": "ast", "id": "remix_app_components_admin_lopumodelseditor_provider_env_hints", - "community": 64, + "community": 70, "norm_label": "provider_env_hints" }, { @@ -307579,7 +308309,7 @@ "source_location": "L88", "_origin": "ast", "id": "remix_app_components_admin_lopumodelseditor_key_state_tones", - "community": 64, + "community": 70, "norm_label": "key_state_tones" }, { @@ -307589,7 +308319,7 @@ "source_location": "L95", "_origin": "ast", "id": "remix_app_components_admin_lopumodelseditor_key_state_marks", - "community": 64, + "community": 70, "norm_label": "key_state_marks" }, { @@ -307599,7 +308329,7 @@ "source_location": "L98", "_origin": "ast", "id": "remix_app_components_admin_lopumodelseditor_describeproviderkey", - "community": 64, + "community": 70, "norm_label": "describeproviderkey()" }, { @@ -307609,7 +308339,7 @@ "source_location": "L110", "_origin": "ast", "id": "remix_app_components_admin_lopumodelseditor_providerusable", - "community": 64, + "community": 70, "norm_label": "providerusable()" }, { @@ -307619,7 +308349,7 @@ "source_location": "L112", "_origin": "ast", "id": "remix_app_components_admin_lopumodelseditor_normalizedefaults", - "community": 64, + "community": 70, "norm_label": "normalizedefaults()" }, { @@ -307629,7 +308359,7 @@ "source_location": "L121", "_origin": "ast", "id": "remix_app_components_admin_lopumodelseditor_samedefaults", - "community": 64, + "community": 70, "norm_label": "samedefaults()" }, { @@ -307639,7 +308369,7 @@ "source_location": "L125", "_origin": "ast", "id": "remix_app_components_admin_lopumodelseditor_readstoreddefaults", - "community": 64, + "community": 70, "norm_label": "readstoreddefaults()" }, { @@ -307649,7 +308379,7 @@ "source_location": "L127", "_origin": "ast", "id": "remix_app_components_admin_lopumodelseditor_errormessage", - "community": 64, + "community": 70, "norm_label": "errormessage()" }, { @@ -307659,7 +308389,7 @@ "source_location": "L132", "_origin": "ast", "id": "remix_app_components_admin_lopumodelseditor_lopumodelseditor", - "community": 64, + "community": 70, "norm_label": "lopumodelseditor()" }, { @@ -307669,7 +308399,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_admin_moderationtab", - "community": 7, + "community": 53, "norm_label": "moderationtab.tsx" }, { @@ -307679,7 +308409,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_components_admin_moderationtab_moderationflagrow", - "community": 7, + "community": 53, "norm_label": "moderationflagrow" }, { @@ -307689,7 +308419,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_components_admin_moderationtab_moderationoverview", - "community": 7, + "community": 53, "norm_label": "moderationoverview" }, { @@ -307699,7 +308429,7 @@ "source_location": "L49", "_origin": "ast", "id": "remix_app_components_admin_moderationtab_eyebrow", - "community": 7, + "community": 53, "norm_label": "eyebrow" }, { @@ -307709,7 +308439,7 @@ "source_location": "L59", "_origin": "ast", "id": "remix_app_components_admin_moderationtab_statuscolor", - "community": 7, + "community": 53, "norm_label": "statuscolor()" }, { @@ -308129,7 +308859,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_admin_admindirectoryclient_test", - "community": 17, + "community": 53, "norm_label": "admindirectoryclient.test.ts" }, { @@ -308139,7 +308869,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_components_admin_admindirectoryclient_test_row", - "community": 17, + "community": 53, "norm_label": "row" }, { @@ -308149,7 +308879,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_admin_admindirectoryclient", - "community": 17, + "community": 53, "norm_label": "admindirectoryclient.ts" }, { @@ -308159,7 +308889,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_admin_admindirectoryclient_completeadminsnapshot", - "community": 17, + "community": 53, "norm_label": "completeadminsnapshot" }, { @@ -308169,7 +308899,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_components_admin_admindirectoryclient_loadcompleteadminsnapshot", - "community": 17, + "community": 53, "norm_label": "loadcompleteadminsnapshot()" }, { @@ -308179,7 +308909,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_admin_adminroutescore_test", - "community": 17, + "community": 53, "norm_label": "adminroutescore.test.ts" }, { @@ -308189,7 +308919,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_admin_adminroutescore", - "community": 17, + "community": 53, "norm_label": "adminroutescore.ts" }, { @@ -308199,7 +308929,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_admin_adminroutescore_admin_tabs", - "community": 17, + "community": 53, "norm_label": "admin_tabs" }, { @@ -308209,7 +308939,7 @@ "source_location": "L11", "_origin": "ast", "id": "remix_app_components_admin_adminroutescore_admintabslug", - "community": 17, + "community": 53, "norm_label": "admintabslug" }, { @@ -308219,7 +308949,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_components_admin_adminroutescore_admintabindex", - "community": 17, + "community": 53, "norm_label": "admintabindex()" }, { @@ -308229,7 +308959,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_components_admin_adminroutescore_admintabpath", - "community": 17, + "community": 53, "norm_label": "admintabpath()" }, { @@ -308309,7 +309039,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_components_admin_adminrowquery_adminrowfieldkind", - "community": 63, + "community": 4, "norm_label": "adminrowfieldkind" }, { @@ -308329,7 +309059,7 @@ "source_location": "L15", "_origin": "ast", "id": "remix_app_components_admin_adminrowquery_adminrowfield", - "community": 63, + "community": 4, "norm_label": "adminrowfield" }, { @@ -308339,7 +309069,7 @@ "source_location": "L26", "_origin": "ast", "id": "remix_app_components_admin_adminrowquery_adminrowsort", - "community": 63, + "community": 4, "norm_label": "adminrowsort" }, { @@ -308349,7 +309079,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_components_admin_adminrowquery_adminrowquery", - "community": 63, + "community": 4, "norm_label": "adminrowquery" }, { @@ -308639,7 +309369,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_admin_adminstorageprojection_test", - "community": 17, + "community": 53, "norm_label": "adminstorageprojection.test.ts" }, { @@ -308649,7 +309379,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_components_admin_adminstorageprojection_test_storage", - "community": 17, + "community": 53, "norm_label": "storage" }, { @@ -308659,7 +309389,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_admin_adminstorageprojection", - "community": 17, + "community": 53, "norm_label": "adminstorageprojection.ts" }, { @@ -308669,7 +309399,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_admin_adminstorageprojection_adminstorageprojection", - "community": 17, + "community": 53, "norm_label": "adminstorageprojection" }, { @@ -308679,7 +309409,7 @@ "source_location": "L11", "_origin": "ast", "id": "remix_app_components_admin_adminstorageprojection_exactbytelabel", - "community": 17, + "community": 53, "norm_label": "exactbytelabel()" }, { @@ -308689,7 +309419,7 @@ "source_location": "L17", "_origin": "ast", "id": "remix_app_components_admin_adminstorageprojection_storagestatuspresentation", - "community": 17, + "community": 53, "norm_label": "storagestatuspresentation()" }, { @@ -308699,7 +309429,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_components_admin_adminstorageprojection_storageprojectiontitle", - "community": 17, + "community": 53, "norm_label": "storageprojectiontitle()" }, { @@ -308809,7 +309539,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_apps_appsdatapage", - "community": 53, + "community": 73, "norm_label": "appsdatapage.tsx" }, { @@ -308819,7 +309549,7 @@ "source_location": "L23", "_origin": "ast", "id": "remix_app_components_apps_appsdatapage_chip_styles", - "community": 53, + "community": 73, "norm_label": "chip_styles" }, { @@ -308829,7 +309559,7 @@ "source_location": "L34", "_origin": "ast", "id": "remix_app_components_apps_appsdatapage_publicthingwire", - "community": 53, + "community": 73, "norm_label": "publicthingwire" }, { @@ -308839,7 +309569,7 @@ "source_location": "L48", "_origin": "ast", "id": "remix_app_components_apps_appsdatapage_entrycard", - "community": 53, + "community": 73, "norm_label": "entrycard()" }, { @@ -309519,7 +310249,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_attachments_attachmentdraftcleanup", - "community": 48, + "community": 70, "norm_label": "attachmentdraftcleanup.ts" }, { @@ -309529,7 +310259,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_attachments_attachmentdraftcleanup_attachmentdraftcleanup", - "community": 48, + "community": 70, "norm_label": "attachmentdraftcleanup" }, { @@ -309539,7 +310269,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_components_attachments_attachmentdraftcleanup_cleanups", - "community": 48, + "community": 70, "norm_label": "cleanups" }, { @@ -309549,7 +310279,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_components_attachments_attachmentdraftcleanup_registerattachmentdraftcleanup", - "community": 48, + "community": 70, "norm_label": "registerattachmentdraftcleanup()" }, { @@ -309559,7 +310289,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_components_attachments_attachmentdraftcleanup_flushattachmentdraftcleanups", - "community": 48, + "community": 70, "norm_label": "flushattachmentdraftcleanups()" }, { @@ -309639,7 +310369,7 @@ "source_location": "L65", "_origin": "ast", "id": "remix_app_components_attachments_attachmenttypes_attachmentcomposersnapshot", - "community": 73, + "community": 48, "norm_label": "attachmentcomposersnapshot" }, { @@ -310489,7 +311219,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_branding_branding", - "community": 591, + "community": 323, "norm_label": "branding.tsx" }, { @@ -310499,7 +311229,7 @@ "source_location": "L5", "_origin": "ast", "id": "remix_app_components_branding_branding_branding", - "community": 591, + "community": 323, "norm_label": "branding()" }, { @@ -310519,7 +311249,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_components_branding_logo_logo", - "community": 591, + "community": 323, "norm_label": "logo()" }, { @@ -310529,7 +311259,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_branding_logoold2", - "community": 24, + "community": 323, "norm_label": "logoold2.tsx" }, { @@ -310539,7 +311269,7 @@ "source_location": "L4", "_origin": "ast", "id": "remix_app_components_branding_logoold2_logoold2", - "community": 24, + "community": 323, "norm_label": "logoold2()" }, { @@ -310549,7 +311279,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_branding_logoold3", - "community": 24, + "community": 323, "norm_label": "logoold3.tsx" }, { @@ -310559,7 +311289,7 @@ "source_location": "L4", "_origin": "ast", "id": "remix_app_components_branding_logoold3_logo", - "community": 24, + "community": 323, "norm_label": "logo()" }, { @@ -310569,7 +311299,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_branding_brandingassetsdata", - "community": 432, + "community": 323, "norm_label": "brandingassetsdata.ts" }, { @@ -310579,7 +311309,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_components_branding_brandingassetsdata_brandingassetrecord", - "community": 432, + "community": 323, "norm_label": "brandingassetrecord" }, { @@ -310589,7 +311319,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_components_branding_brandingassetsdata_variantrecords", - "community": 432, + "community": 323, "norm_label": "variantrecords" }, { @@ -310599,7 +311329,7 @@ "source_location": "L23", "_origin": "ast", "id": "remix_app_components_branding_brandingassetsdata_presskitrecords", - "community": 432, + "community": 323, "norm_label": "presskitrecords" }, { @@ -310609,7 +311339,7 @@ "source_location": "L30", "_origin": "ast", "id": "remix_app_components_branding_brandingassetsdata_brandingassetrecords", - "community": 432, + "community": 323, "norm_label": "brandingassetrecords" }, { @@ -311069,7 +311799,7 @@ "source_location": "L309", "_origin": "ast", "id": "remix_app_components_builder_builderdrawer_customcsseditor", - "community": 501, + "community": 7, "norm_label": "customcsseditor()" }, { @@ -311159,7 +311889,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_builder_demodetailpage", - "community": 7, + "community": 46, "norm_label": "demodetailpage.tsx" }, { @@ -311169,7 +311899,7 @@ "source_location": "L60", "_origin": "ast", "id": "remix_app_components_builder_demodetailpage_reconciled", - "community": 7, + "community": 46, "norm_label": "reconciled" }, { @@ -311179,7 +311909,7 @@ "source_location": "L65", "_origin": "ast", "id": "remix_app_components_builder_demodetailpage_usecatalogreconcile", - "community": 7, + "community": 46, "norm_label": "usecatalogreconcile()" }, { @@ -311189,7 +311919,7 @@ "source_location": "L96", "_origin": "ast", "id": "remix_app_components_builder_demodetailpage_usehandoff", - "community": 7, + "community": 46, "norm_label": "usehandoff()" }, { @@ -311199,7 +311929,7 @@ "source_location": "L122", "_origin": "ast", "id": "remix_app_components_builder_demodetailpage_eyebrow", - "community": 7, + "community": 46, "norm_label": "eyebrow()" }, { @@ -311209,7 +311939,7 @@ "source_location": "L128", "_origin": "ast", "id": "remix_app_components_builder_demodetailpage_metarow", - "community": 7, + "community": 46, "norm_label": "metarow()" }, { @@ -311219,7 +311949,7 @@ "source_location": "L139", "_origin": "ast", "id": "remix_app_components_builder_demodetailpage_chip", - "community": 7, + "community": 46, "norm_label": "chip()" }, { @@ -311229,7 +311959,7 @@ "source_location": "L145", "_origin": "ast", "id": "remix_app_components_builder_demodetailpage_chipsx", - "community": 7, + "community": 46, "norm_label": "chipsx()" }, { @@ -311239,7 +311969,7 @@ "source_location": "L158", "_origin": "ast", "id": "remix_app_components_builder_demodetailpage_signincard", - "community": 7, + "community": 46, "norm_label": "signincard()" }, { @@ -311249,7 +311979,7 @@ "source_location": "L181", "_origin": "ast", "id": "remix_app_components_builder_demodetailpage_livepane", - "community": 7, + "community": 46, "norm_label": "livepane()" }, { @@ -311259,7 +311989,7 @@ "source_location": "L245", "_origin": "ast", "id": "remix_app_components_builder_demodetailpage_paneheading", - "community": 7, + "community": 46, "norm_label": "paneheading()" }, { @@ -311269,7 +311999,7 @@ "source_location": "L254", "_origin": "ast", "id": "remix_app_components_builder_demodetailpage_backtolibrary", - "community": 7, + "community": 46, "norm_label": "backtolibrary()" }, { @@ -311279,7 +312009,7 @@ "source_location": "L262", "_origin": "ast", "id": "remix_app_components_builder_demodetailpage_demoview", - "community": 7, + "community": 46, "norm_label": "demoview()" }, { @@ -311289,7 +312019,7 @@ "source_location": "L368", "_origin": "ast", "id": "remix_app_components_builder_demodetailpage_suiteview", - "community": 7, + "community": 46, "norm_label": "suiteview()" }, { @@ -311299,7 +312029,7 @@ "source_location": "L584", "_origin": "ast", "id": "remix_app_components_builder_demodetailpage_demodetailpage", - "community": 7, + "community": 46, "norm_label": "demodetailpage()" }, { @@ -311309,7 +312039,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_builder_demolibrarypage", - "community": 7, + "community": 46, "norm_label": "demolibrarypage.tsx" }, { @@ -311319,7 +312049,7 @@ "source_location": "L71", "_origin": "ast", "id": "remix_app_components_builder_demolibrarypage_seededstate", - "community": 7, + "community": 46, "norm_label": "seededstate" }, { @@ -311329,7 +312059,7 @@ "source_location": "L73", "_origin": "ast", "id": "remix_app_components_builder_demolibrarypage_preview", - "community": 7, + "community": 46, "norm_label": "preview" }, { @@ -311339,7 +312069,7 @@ "source_location": "L75", "_origin": "ast", "id": "remix_app_components_builder_demolibrarypage_chipsx", - "community": 7, + "community": 46, "norm_label": "chipsx()" }, { @@ -311349,7 +312079,7 @@ "source_location": "L88", "_origin": "ast", "id": "remix_app_components_builder_demolibrarypage_demoblocklist", - "community": 7, + "community": 46, "norm_label": "demoblocklist" }, { @@ -311359,7 +312089,7 @@ "source_location": "L95", "_origin": "ast", "id": "remix_app_components_builder_demolibrarypage_demothumb", - "community": 7, + "community": 46, "norm_label": "demothumb()" }, { @@ -311369,7 +312099,7 @@ "source_location": "L176", "_origin": "ast", "id": "remix_app_components_builder_demolibrarypage_cardlinksx", - "community": 7, + "community": 46, "norm_label": "cardlinksx" }, { @@ -311379,7 +312109,7 @@ "source_location": "L178", "_origin": "ast", "id": "remix_app_components_builder_demolibrarypage_democard", - "community": 7, + "community": 46, "norm_label": "democard()" }, { @@ -311389,7 +312119,7 @@ "source_location": "L237", "_origin": "ast", "id": "remix_app_components_builder_demolibrarypage_suitecard", - "community": 7, + "community": 46, "norm_label": "suitecard()" }, { @@ -311399,7 +312129,7 @@ "source_location": "L297", "_origin": "ast", "id": "remix_app_components_builder_demolibrarypage_searchplaceholderfor", - "community": 7, + "community": 46, "norm_label": "searchplaceholderfor()" }, { @@ -311409,7 +312139,7 @@ "source_location": "L304", "_origin": "ast", "id": "remix_app_components_builder_demolibrarypage_suitenounfor", - "community": 7, + "community": 46, "norm_label": "suitenounfor()" }, { @@ -311419,7 +312149,7 @@ "source_location": "L306", "_origin": "ast", "id": "remix_app_components_builder_demolibrarypage_demolibrarypage", - "community": 7, + "community": 46, "norm_label": "demolibrarypage()" }, { @@ -311429,7 +312159,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_builder_figmacontrols", - "community": 501, + "community": 7, "norm_label": "figmacontrols.tsx" }, { @@ -311439,7 +312169,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_components_builder_figmacontrols_inputstyles", - "community": 501, + "community": 7, "norm_label": "inputstyles" }, { @@ -311449,7 +312179,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_components_builder_figmacontrols_micro_label", - "community": 501, + "community": 7, "norm_label": "micro_label" }, { @@ -311459,7 +312189,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_components_builder_figmacontrols_modebutton", - "community": 501, + "community": 7, "norm_label": "modebutton()" }, { @@ -311469,7 +312199,7 @@ "source_location": "L68", "_origin": "ast", "id": "remix_app_components_builder_figmacontrols_labelledinput", - "community": 501, + "community": 7, "norm_label": "labelledinput()" }, { @@ -311479,7 +312209,7 @@ "source_location": "L89", "_origin": "ast", "id": "remix_app_components_builder_figmacontrols_sidesmode", - "community": 501, + "community": 7, "norm_label": "sidesmode" }, { @@ -311489,7 +312219,7 @@ "source_location": "L91", "_origin": "ast", "id": "remix_app_components_builder_figmacontrols_modeof", - "community": 501, + "community": 7, "norm_label": "modeof()" }, { @@ -311499,7 +312229,7 @@ "source_location": "L100", "_origin": "ast", "id": "remix_app_components_builder_figmacontrols_sidescontrol", - "community": 501, + "community": 7, "norm_label": "sidescontrol()" }, { @@ -311509,7 +312239,7 @@ "source_location": "L168", "_origin": "ast", "id": "remix_app_components_builder_figmacontrols_cornerscontrol", - "community": 501, + "community": 7, "norm_label": "cornerscontrol()" }, { @@ -311519,7 +312249,7 @@ "source_location": "L218", "_origin": "ast", "id": "remix_app_components_builder_figmacontrols_bordercontrol", - "community": 501, + "community": 7, "norm_label": "bordercontrol()" }, { @@ -311529,7 +312259,7 @@ "source_location": "L262", "_origin": "ast", "id": "remix_app_components_builder_figmacontrols_shadowcontrol", - "community": 501, + "community": 7, "norm_label": "shadowcontrol()" }, { @@ -311539,7 +312269,7 @@ "source_location": "L298", "_origin": "ast", "id": "remix_app_components_builder_figmacontrols_segmentedcontrol", - "community": 501, + "community": 7, "norm_label": "segmentedcontrol()" }, { @@ -311549,7 +312279,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_builder_inlinerichtexteditor", - "community": 349, + "community": 506, "norm_label": "inlinerichtexteditor.tsx" }, { @@ -311559,7 +312289,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_components_builder_inlinerichtexteditor_escapehtml", - "community": 349, + "community": 506, "norm_label": "escapehtml()" }, { @@ -311569,7 +312299,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_components_builder_inlinerichtexteditor_inlinerichtexteditor", - "community": 349, + "community": 506, "norm_label": "inlinerichtexteditor()" }, { @@ -311579,7 +312309,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_builder_richtextmodal", - "community": 349, + "community": 506, "norm_label": "richtextmodal.tsx" }, { @@ -311589,7 +312319,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_components_builder_richtextmodal_resizehandle", - "community": 349, + "community": 130, "norm_label": "resizehandle()" }, { @@ -311599,7 +312329,7 @@ "source_location": "L32", "_origin": "ast", "id": "remix_app_components_builder_richtextmodal_richtextmodal", - "community": 349, + "community": 506, "norm_label": "richtextmodal()" }, { @@ -311769,7 +312499,7 @@ "source_location": "L33", "_origin": "ast", "id": "remix_app_components_builder_webpageblocksrenderer_componentsbyref", - "community": 7, + "community": 46, "norm_label": "componentsbyref" }, { @@ -311779,7 +312509,7 @@ "source_location": "L36", "_origin": "ast", "id": "remix_app_components_builder_webpageblocksrenderer_buildcomponentsbyref", - "community": 7, + "community": 46, "norm_label": "buildcomponentsbyref()" }, { @@ -311949,7 +312679,7 @@ "source_location": "L731", "_origin": "ast", "id": "remix_app_components_builder_webpageblocksrenderer_useblocksource", - "community": 7, + "community": 330, "norm_label": "useblocksource()" }, { @@ -311959,7 +312689,7 @@ "source_location": "L734", "_origin": "ast", "id": "remix_app_components_builder_webpageblocksrenderer_componentblockview", - "community": 7, + "community": 330, "norm_label": "componentblockview()" }, { @@ -311969,7 +312699,7 @@ "source_location": "L879", "_origin": "ast", "id": "remix_app_components_builder_webpageblocksrenderer_webpageblocksrendererprops", - "community": 7, + "community": 46, "norm_label": "webpageblocksrendererprops" }, { @@ -311999,7 +312729,7 @@ "source_location": "L1204", "_origin": "ast", "id": "remix_app_components_builder_webpageblocksrenderer_webpageblocksrenderer", - "community": 7, + "community": 46, "norm_label": "webpageblocksrenderer()" }, { @@ -312009,7 +312739,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_builder_demodetail_test", - "community": 7, + "community": 46, "norm_label": "demodetail.test.ts" }, { @@ -312019,7 +312749,7 @@ "source_location": "L38", "_origin": "ast", "id": "remix_app_components_builder_demodetail_test_fakesuite", - "community": 7, + "community": 46, "norm_label": "fakesuite()" }, { @@ -312029,7 +312759,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_builder_demodetail", - "community": 7, + "community": 46, "norm_label": "demodetail.ts" }, { @@ -312039,7 +312769,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_components_builder_demodetail_demoentry", - "community": 7, + "community": 46, "norm_label": "demoentry" }, { @@ -312049,7 +312779,7 @@ "source_location": "L20", "_origin": "ast", "id": "remix_app_components_builder_demodetail_resolvedemoentry", - "community": 7, + "community": 46, "norm_label": "resolvedemoentry()" }, { @@ -312059,7 +312789,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_components_builder_demodetail_demodetailhref", - "community": 7, + "community": 46, "norm_label": "demodetailhref()" }, { @@ -312069,7 +312799,7 @@ "source_location": "L35", "_origin": "ast", "id": "remix_app_components_builder_demodetail_kindfilter", - "community": 7, + "community": 46, "norm_label": "kindfilter" }, { @@ -312079,7 +312809,7 @@ "source_location": "L37", "_origin": "ast", "id": "remix_app_components_builder_demodetail_kind_labels", - "community": 7, + "community": 46, "norm_label": "kind_labels" }, { @@ -312089,7 +312819,7 @@ "source_location": "L49", "_origin": "ast", "id": "remix_app_components_builder_demodetail_kind_filters", - "community": 7, + "community": 46, "norm_label": "kind_filters" }, { @@ -312099,7 +312829,7 @@ "source_location": "L51", "_origin": "ast", "id": "remix_app_components_builder_demodetail_suite_kinds", - "community": 7, + "community": 46, "norm_label": "suite_kinds" }, { @@ -312109,7 +312839,7 @@ "source_location": "L53", "_origin": "ast", "id": "remix_app_components_builder_demodetail_issuitekind", - "community": 7, + "community": 46, "norm_label": "issuitekind()" }, { @@ -312119,7 +312849,7 @@ "source_location": "L55", "_origin": "ast", "id": "remix_app_components_builder_demodetail_parsekindfilter", - "community": 7, + "community": 46, "norm_label": "parsekindfilter()" }, { @@ -312129,7 +312859,7 @@ "source_location": "L60", "_origin": "ast", "id": "remix_app_components_builder_demodetail_suiteflavour", - "community": 7, + "community": 46, "norm_label": "suiteflavour" }, { @@ -312139,7 +312869,7 @@ "source_location": "L67", "_origin": "ast", "id": "remix_app_components_builder_demodetail_suiteflavourof", - "community": 7, + "community": 46, "norm_label": "suiteflavourof()" }, { @@ -312149,7 +312879,7 @@ "source_location": "L72", "_origin": "ast", "id": "remix_app_components_builder_demodetail_suitesforkind", - "community": 7, + "community": 46, "norm_label": "suitesforkind()" }, { @@ -312159,7 +312889,7 @@ "source_location": "L79", "_origin": "ast", "id": "remix_app_components_builder_demodetail_suitekindlabel", - "community": 7, + "community": 46, "norm_label": "suitekindlabel()" }, { @@ -312169,7 +312899,7 @@ "source_location": "L88", "_origin": "ast", "id": "remix_app_components_builder_demodetail_suitecomponentsbyref", - "community": 7, + "community": 46, "norm_label": "suitecomponentsbyref()" }, { @@ -312179,7 +312909,7 @@ "source_location": "L96", "_origin": "ast", "id": "remix_app_components_builder_demodetail_suiteactionnames", - "community": 7, + "community": 46, "norm_label": "suiteactionnames()" }, { @@ -312189,7 +312919,7 @@ "source_location": "L102", "_origin": "ast", "id": "remix_app_components_builder_demodetail_suitepageview", - "community": 7, + "community": 46, "norm_label": "suitepageview" }, { @@ -312199,7 +312929,7 @@ "source_location": "L117", "_origin": "ast", "id": "remix_app_components_builder_demodetail_suitepageviews", - "community": 7, + "community": 46, "norm_label": "suitepageviews()" }, { @@ -312209,7 +312939,7 @@ "source_location": "L140", "_origin": "ast", "id": "remix_app_components_builder_demodetail_catalogpageid", - "community": 7, + "community": 46, "norm_label": "catalogpageid()" }, { @@ -312219,7 +312949,7 @@ "source_location": "L142", "_origin": "ast", "id": "remix_app_components_builder_demodetail_runtimeidentity", - "community": 7, + "community": 46, "norm_label": "runtimeidentity" }, { @@ -312229,7 +312959,7 @@ "source_location": "L144", "_origin": "ast", "id": "remix_app_components_builder_demodetail_runtimeidentityfor", - "community": 7, + "community": 46, "norm_label": "runtimeidentityfor()" }, { @@ -312239,7 +312969,7 @@ "source_location": "L147", "_origin": "ast", "id": "remix_app_components_builder_demodetail_demopageidentity", - "community": 7, + "community": 46, "norm_label": "demopageidentity()" }, { @@ -312249,7 +312979,7 @@ "source_location": "L159", "_origin": "ast", "id": "remix_app_components_builder_demodetail_templatecrystalof", - "community": 7, + "community": 46, "norm_label": "templatecrystalof()" }, { @@ -312259,7 +312989,7 @@ "source_location": "L177", "_origin": "ast", "id": "remix_app_components_builder_demodetail_seededcache", - "community": 7, + "community": 46, "norm_label": "seededcache" }, { @@ -312269,7 +312999,7 @@ "source_location": "L179", "_origin": "ast", "id": "remix_app_components_builder_demodetail_mergeseededcache", - "community": 7, + "community": 46, "norm_label": "mergeseededcache()" }, { @@ -312279,7 +313009,7 @@ "source_location": "L188", "_origin": "ast", "id": "remix_app_components_builder_demodetail_readseededcache", - "community": 7, + "community": 46, "norm_label": "readseededcache()" }, { @@ -312289,7 +313019,7 @@ "source_location": "L194", "_origin": "ast", "id": "remix_app_components_builder_demodetail_writeseededcache", - "community": 7, + "community": 46, "norm_label": "writeseededcache()" }, { @@ -312299,7 +313029,7 @@ "source_location": "L200", "_origin": "ast", "id": "remix_app_components_builder_demodetail_suitematchessearch", - "community": 7, + "community": 46, "norm_label": "suitematchessearch()" }, { @@ -312309,7 +313039,7 @@ "source_location": "L203", "_origin": "ast", "id": "remix_app_components_builder_demodetail_demomatchessearch", - "community": 7, + "community": 46, "norm_label": "demomatchessearch()" }, { @@ -312319,7 +313049,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_builder_editorjshtml_test", - "community": 349, + "community": 130, "norm_label": "editorjshtml.test.ts" }, { @@ -312329,7 +313059,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_builder_editorjshtml", - "community": 349, + "community": 130, "norm_label": "editorjshtml.ts" }, { @@ -312339,7 +313069,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_components_builder_editorjshtml_escapehtml", - "community": 349, + "community": 130, "norm_label": "escapehtml()" }, { @@ -312349,7 +313079,7 @@ "source_location": "L28", "_origin": "ast", "id": "remix_app_components_builder_editorjshtml_scrub_drop_tags", - "community": 349, + "community": 130, "norm_label": "scrub_drop_tags" }, { @@ -312359,7 +313089,7 @@ "source_location": "L30", "_origin": "ast", "id": "remix_app_components_builder_editorjshtml_scrubelement", - "community": 349, + "community": 130, "norm_label": "scrubelement()" }, { @@ -312369,7 +313099,7 @@ "source_location": "L57", "_origin": "ast", "id": "remix_app_components_builder_editorjshtml_scrubbedinnerhtml", - "community": 349, + "community": 130, "norm_label": "scrubbedinnerhtml()" }, { @@ -312379,7 +313109,7 @@ "source_location": "L63", "_origin": "ast", "id": "remix_app_components_builder_editorjshtml_scrubbedouterhtml", - "community": 349, + "community": 130, "norm_label": "scrubbedouterhtml()" }, { @@ -312389,7 +313119,7 @@ "source_location": "L70", "_origin": "ast", "id": "remix_app_components_builder_editorjshtml_listitem", - "community": 349, + "community": 130, "norm_label": "listitem" }, { @@ -312399,7 +313129,7 @@ "source_location": "L72", "_origin": "ast", "id": "remix_app_components_builder_editorjshtml_listitemstohtml", - "community": 349, + "community": 130, "norm_label": "listitemstohtml()" }, { @@ -312409,7 +313139,7 @@ "source_location": "L84", "_origin": "ast", "id": "remix_app_components_builder_editorjshtml_blocktohtml", - "community": 349, + "community": 130, "norm_label": "blocktohtml()" }, { @@ -312419,7 +313149,7 @@ "source_location": "L137", "_origin": "ast", "id": "remix_app_components_builder_editorjshtml_editorjstohtml", - "community": 349, + "community": 506, "norm_label": "editorjstohtml()" }, { @@ -312429,7 +313159,7 @@ "source_location": "L150", "_origin": "ast", "id": "remix_app_components_builder_editorjshtml_elementtoblocks", - "community": 349, + "community": 130, "norm_label": "elementtoblocks()" }, { @@ -312439,7 +313169,7 @@ "source_location": "L162", "_origin": "ast", "id": "remix_app_components_builder_editorjshtml_elementtounstyledblocks", - "community": 349, + "community": 130, "norm_label": "elementtounstyledblocks()" }, { @@ -312449,7 +313179,7 @@ "source_location": "L222", "_origin": "ast", "id": "remix_app_components_builder_editorjshtml_nodestoblocks", - "community": 349, + "community": 130, "norm_label": "nodestoblocks()" }, { @@ -312459,7 +313189,7 @@ "source_location": "L250", "_origin": "ast", "id": "remix_app_components_builder_editorjshtml_htmltoeditorjs", - "community": 349, + "community": 506, "norm_label": "htmltoeditorjs()" }, { @@ -312469,7 +313199,7 @@ "source_location": "L262", "_origin": "ast", "id": "remix_app_components_builder_editorjshtml_htmltoplaintext", - "community": 349, + "community": 506, "norm_label": "htmltoplaintext()" }, { @@ -312479,7 +313209,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_builder_figmacontrolvalues_test", - "community": 501, + "community": 7, "norm_label": "figmacontrolvalues.test.ts" }, { @@ -312489,7 +313219,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_builder_figmacontrolvalues", - "community": 501, + "community": 7, "norm_label": "figmacontrolvalues.ts" }, { @@ -312499,7 +313229,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_components_builder_figmacontrolvalues_tokenizecssvalue", - "community": 501, + "community": 7, "norm_label": "tokenizecssvalue()" }, { @@ -312509,7 +313239,7 @@ "source_location": "L12", "_origin": "ast", "id": "remix_app_components_builder_figmacontrolvalues_expandshorthand", - "community": 501, + "community": 7, "norm_label": "expandshorthand()" }, { @@ -312519,7 +313249,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_components_builder_figmacontrolvalues_collapseshorthand", - "community": 501, + "community": 7, "norm_label": "collapseshorthand()" }, { @@ -312529,7 +313259,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_components_builder_figmacontrolvalues_border_styles", - "community": 501, + "community": 7, "norm_label": "border_styles" }, { @@ -312539,7 +313269,7 @@ "source_location": "L33", "_origin": "ast", "id": "remix_app_components_builder_figmacontrolvalues_parseborder", - "community": 501, + "community": 7, "norm_label": "parseborder()" }, { @@ -312549,7 +313279,7 @@ "source_location": "L46", "_origin": "ast", "id": "remix_app_components_builder_figmacontrolvalues_parseshadow", - "community": 501, + "community": 7, "norm_label": "parseshadow()" }, { @@ -312559,7 +313289,7 @@ "source_location": "L67", "_origin": "ast", "id": "remix_app_components_builder_figmacontrolvalues_splitdeclarationsinline", - "community": 501, + "community": 7, "norm_label": "splitdeclarationsinline()" }, { @@ -312569,7 +313299,7 @@ "source_location": "L96", "_origin": "ast", "id": "remix_app_components_builder_figmacontrolvalues_splitcssdeclarations", - "community": 501, + "community": 7, "norm_label": "splitcssdeclarations()" }, { @@ -312579,7 +313309,7 @@ "source_location": "L98", "_origin": "ast", "id": "remix_app_components_builder_figmacontrolvalues_cssrecordtolines", - "community": 501, + "community": 7, "norm_label": "cssrecordtolines()" }, { @@ -312589,7 +313319,7 @@ "source_location": "L103", "_origin": "ast", "id": "remix_app_components_builder_figmacontrolvalues_csslinestorecord", - "community": 501, + "community": 7, "norm_label": "csslinestorecord()" }, { @@ -312599,7 +313329,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_builder_htmltonode", - "community": 7, + "community": 330, "norm_label": "htmltonode.ts" }, { @@ -312609,7 +313339,7 @@ "source_location": "L10", "_origin": "ast", "id": "remix_app_components_builder_htmltonode_drop_tags", - "community": 7, + "community": 330, "norm_label": "drop_tags" }, { @@ -312619,7 +313349,7 @@ "source_location": "L12", "_origin": "ast", "id": "remix_app_components_builder_htmltonode_styletexttoobject", - "community": 7, + "community": 330, "norm_label": "styletexttoobject()" }, { @@ -312629,7 +313359,7 @@ "source_location": "L26", "_origin": "ast", "id": "remix_app_components_builder_htmltonode_elementtonode", - "community": 7, + "community": 330, "norm_label": "elementtonode()" }, { @@ -312639,7 +313369,7 @@ "source_location": "L59", "_origin": "ast", "id": "remix_app_components_builder_htmltonode_htmltonode", - "community": 7, + "community": 330, "norm_label": "htmltonode()" }, { @@ -312649,7 +313379,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_builder_installsuite", - "community": 7, + "community": 46, "norm_label": "installsuite.ts" }, { @@ -312659,7 +313389,7 @@ "source_location": "L11", "_origin": "ast", "id": "remix_app_components_builder_installsuite_creatething", - "community": 7, + "community": 46, "norm_label": "creatething" }, { @@ -312669,7 +313399,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_components_builder_installsuite_installedsuite", - "community": 7, + "community": 46, "norm_label": "installedsuite" }, { @@ -312679,7 +313409,7 @@ "source_location": "L15", "_origin": "ast", "id": "remix_app_components_builder_installsuite_installsuite", - "community": 7, + "community": 46, "norm_label": "installsuite()" }, { @@ -312689,7 +313419,7 @@ "source_location": "L55", "_origin": "ast", "id": "remix_app_components_builder_installsuite_serverinstalledsuite", - "community": 7, + "community": 46, "norm_label": "serverinstalledsuite" }, { @@ -312699,7 +313429,7 @@ "source_location": "L66", "_origin": "ast", "id": "remix_app_components_builder_installsuite_installsuiteonserver", - "community": 7, + "community": 46, "norm_label": "installsuiteonserver()" }, { @@ -312709,7 +313439,7 @@ "source_location": "L81", "_origin": "ast", "id": "remix_app_components_builder_installsuite_suitekeyfromactionkey", - "community": 7, + "community": 46, "norm_label": "suitekeyfromactionkey()" }, { @@ -312719,7 +313449,7 @@ "source_location": "L91", "_origin": "ast", "id": "remix_app_components_builder_installsuite_suitekeyfrompagekey", - "community": 7, + "community": 46, "norm_label": "suitekeyfrompagekey()" }, { @@ -312729,7 +313459,7 @@ "source_location": "L94", "_origin": "ast", "id": "remix_app_components_builder_installsuite_suitekeyofpage", - "community": 7, + "community": 46, "norm_label": "suitekeyofpage()" }, { @@ -312739,7 +313469,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_builder_livecomponent", - "community": 7, + "community": 330, "norm_label": "livecomponent.tsx" }, { @@ -312749,7 +313479,7 @@ "source_location": "L41", "_origin": "ast", "id": "remix_app_components_builder_livecomponent_thingsourcebinding", - "community": 7, + "community": 330, "norm_label": "thingsourcebinding" }, { @@ -312759,7 +313489,7 @@ "source_location": "L48", "_origin": "ast", "id": "remix_app_components_builder_livecomponent_thingsourcestate", - "community": 7, + "community": 330, "norm_label": "thingsourcestate" }, { @@ -312769,7 +313499,7 @@ "source_location": "L50", "_origin": "ast", "id": "remix_app_components_builder_livecomponent_thingsourcescope", - "community": 7, + "community": 330, "norm_label": "thingsourcescope" }, { @@ -312779,7 +313509,7 @@ "source_location": "L61", "_origin": "ast", "id": "remix_app_components_builder_livecomponent_usethingsource", - "community": 7, + "community": 330, "norm_label": "usethingsource()" }, { @@ -312789,7 +313519,7 @@ "source_location": "L175", "_origin": "ast", "id": "remix_app_components_builder_livecomponent_usecomponentargvalues", - "community": 7, + "community": 330, "norm_label": "usecomponentargvalues()" }, { @@ -312799,7 +313529,7 @@ "source_location": "L196", "_origin": "ast", "id": "remix_app_components_builder_livecomponent_livetemplate", - "community": 7, + "community": 330, "norm_label": "livetemplate()" }, { @@ -312809,7 +313539,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_builder_nativesections", - "community": 7, + "community": 492, "norm_label": "nativesections.tsx" }, { @@ -312819,7 +313549,7 @@ "source_location": "L20", "_origin": "ast", "id": "remix_app_components_builder_nativesections_nativesectiondef", - "community": 7, + "community": 492, "norm_label": "nativesectiondef" }, { @@ -312829,7 +313559,7 @@ "source_location": "L27", "_origin": "ast", "id": "remix_app_components_builder_nativesections_nativepagedef", - "community": 7, + "community": 492, "norm_label": "nativepagedef" }, { @@ -312839,7 +313569,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_components_builder_nativesections_lazysection", - "community": 7, + "community": 492, "norm_label": "lazysection()" }, { @@ -312849,7 +313579,7 @@ "source_location": "L46", "_origin": "ast", "id": "remix_app_components_builder_nativesections_native_pages", - "community": 7, + "community": 492, "norm_label": "native_pages" }, { @@ -312859,7 +313589,7 @@ "source_location": "L140", "_origin": "ast", "id": "remix_app_components_builder_nativesections_sectionindex", - "community": 7, + "community": 492, "norm_label": "sectionindex" }, { @@ -312869,7 +313599,7 @@ "source_location": "L141", "_origin": "ast", "id": "remix_app_components_builder_nativesections_pageindex", - "community": 7, + "community": 492, "norm_label": "pageindex" }, { @@ -312889,7 +313619,7 @@ "source_location": "L148", "_origin": "ast", "id": "remix_app_components_builder_nativesections_getnativepage", - "community": 7, + "community": 492, "norm_label": "getnativepage()" }, { @@ -312899,7 +313629,7 @@ "source_location": "L149", "_origin": "ast", "id": "remix_app_components_builder_nativesections_getnativepagebyroute", - "community": 7, + "community": 492, "norm_label": "getnativepagebyroute()" }, { @@ -312929,7 +313659,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_builder_richhtmlstyles", - "community": 506, + "community": 7, "norm_label": "richhtmlstyles.ts" }, { @@ -312939,7 +313669,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_components_builder_richhtmlstyles_rich_html_sx", - "community": 506, + "community": 7, "norm_label": "rich_html_sx" }, { @@ -313249,7 +313979,7 @@ "source_location": "L100", "_origin": "ast", "id": "remix_app_components_builder_webpageblocks_countblocks", - "community": 107, + "community": 7, "norm_label": "countblocks()" }, { @@ -313529,7 +314259,7 @@ "source_location": "L83", "_origin": "ast", "id": "remix_app_components_builder_webpageruntime_usewebpageruntime", - "community": 7, + "community": 330, "norm_label": "usewebpageruntime()" }, { @@ -313559,7 +314289,7 @@ "source_location": "L130", "_origin": "ast", "id": "remix_app_components_builder_webpageruntime_webpageruntimeprovider", - "community": 7, + "community": 46, "norm_label": "webpageruntimeprovider()" }, { @@ -313599,7 +314329,7 @@ "source_location": "L272", "_origin": "ast", "id": "remix_app_components_builder_webpageruntime_gatherformfields", - "community": 7, + "community": 330, "norm_label": "gatherformfields()" }, { @@ -313609,7 +314339,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_buttons_attention", - "community": 591, + "community": 323, "norm_label": "attention.tsx" }, { @@ -313619,7 +314349,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_components_buttons_attention_attention", - "community": 591, + "community": 323, "norm_label": "attention()" }, { @@ -313629,7 +314359,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_buttons_hamburger", - "community": 591, + "community": 323, "norm_label": "hamburger.tsx" }, { @@ -313639,7 +314369,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_components_buttons_hamburger_hamburger", - "community": 591, + "community": 323, "norm_label": "hamburger()" }, { @@ -313679,7 +314409,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_commander_commanderv2", - "community": 323, + "community": 4, "norm_label": "commanderv2.tsx" }, { @@ -313689,7 +314419,7 @@ "source_location": "L26", "_origin": "ast", "id": "remix_app_components_commander_commanderv2_commanderv2", - "community": 323, + "community": 53, "norm_label": "commanderv2()" }, { @@ -313699,7 +314429,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_commander_commanderclickaway_test", - "community": 323, + "community": 4, "norm_label": "commanderclickaway.test.ts" }, { @@ -313709,7 +314439,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_commander_commanderclickaway", - "community": 323, + "community": 4, "norm_label": "commanderclickaway.ts" }, { @@ -313719,7 +314449,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_components_commander_commanderclickaway_commander_click_away_events", - "community": 323, + "community": 4, "norm_label": "commander_click_away_events" }, { @@ -313729,7 +314459,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_components_commander_commanderclickaway_shouldclosecommanderfortarget", - "community": 323, + "community": 4, "norm_label": "shouldclosecommanderfortarget()" }, { @@ -313739,7 +314469,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_components_commander_commanderclickaway_commanderclickawayboundary", - "community": 323, + "community": 4, "norm_label": "commanderclickawayboundary()" }, { @@ -313749,7 +314479,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_commander_commandercommands_test", - "community": 323, + "community": 4, "norm_label": "commandercommands.test.ts" }, { @@ -313759,7 +314489,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_components_commander_commandercommands_test_call", - "community": 323, + "community": 4, "norm_label": "call" }, { @@ -313769,7 +314499,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_components_commander_commandercommands_test_makecontext", - "community": 323, + "community": 4, "norm_label": "makecontext()" }, { @@ -313779,7 +314509,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_commander_commandercommands", - "community": 323, + "community": 4, "norm_label": "commandercommands.ts" }, { @@ -313789,7 +314519,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_components_commander_commandercommands_commanderlopustatus", - "community": 323, + "community": 4, "norm_label": "commanderlopustatus" }, { @@ -313799,7 +314529,7 @@ "source_location": "L15", "_origin": "ast", "id": "remix_app_components_commander_commandercommands_commandercommandcontext", - "community": 323, + "community": 4, "norm_label": "commandercommandcontext" }, { @@ -313809,7 +314539,7 @@ "source_location": "L30", "_origin": "ast", "id": "remix_app_components_commander_commandercommands_commandercommand", - "community": 323, + "community": 4, "norm_label": "commandercommand" }, { @@ -313819,7 +314549,7 @@ "source_location": "L38", "_origin": "ast", "id": "remix_app_components_commander_commandercommands_navcommand", - "community": 323, + "community": 4, "norm_label": "navcommand()" }, { @@ -313829,7 +314559,7 @@ "source_location": "L49", "_origin": "ast", "id": "remix_app_components_commander_commandercommands_commander_commands", - "community": 323, + "community": 4, "norm_label": "commander_commands" }, { @@ -313839,7 +314569,7 @@ "source_location": "L133", "_origin": "ast", "id": "remix_app_components_commander_commandercommands_parsedcommandercommand", - "community": 323, + "community": 4, "norm_label": "parsedcommandercommand" }, { @@ -313849,7 +314579,7 @@ "source_location": "L144", "_origin": "ast", "id": "remix_app_components_commander_commandercommands_parsecommandercommand", - "community": 323, + "community": 4, "norm_label": "parsecommandercommand()" }, { @@ -313859,7 +314589,7 @@ "source_location": "L158", "_origin": "ast", "id": "remix_app_components_commander_commandercommands_matchcommandercommands", - "community": 323, + "community": 4, "norm_label": "matchcommandercommands()" }, { @@ -313869,7 +314599,7 @@ "source_location": "L178", "_origin": "ast", "id": "remix_app_components_commander_commandercommands_commandercommandenterindex", - "community": 323, + "community": 4, "norm_label": "commandercommandenterindex()" }, { @@ -313879,7 +314609,7 @@ "source_location": "L194", "_origin": "ast", "id": "remix_app_components_commander_commandercommands_runcommandercommand", - "community": 323, + "community": 4, "norm_label": "runcommandercommand()" }, { @@ -313889,7 +314619,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_commander_commanderliteral_test", - "community": 323, + "community": 4, "norm_label": "commanderliteral.test.ts" }, { @@ -313899,7 +314629,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_commander_commanderliteral", - "community": 323, + "community": 4, "norm_label": "commanderliteral.ts" }, { @@ -313909,7 +314639,7 @@ "source_location": "L4", "_origin": "ast", "id": "remix_app_components_commander_commanderliteral_parsecommanderliteral", - "community": 323, + "community": 4, "norm_label": "parsecommanderliteral()" }, { @@ -313919,7 +314649,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_commander_commandersearch_test", - "community": 63, + "community": 4, "norm_label": "commandersearch.test.ts" }, { @@ -313929,7 +314659,7 @@ "source_location": "L10", "_origin": "ast", "id": "remix_app_components_commander_commandersearch_test_author", - "community": 63, + "community": 4, "norm_label": "author" }, { @@ -313939,7 +314669,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_commander_commandershortcut_test", - "community": 323, + "community": 4, "norm_label": "commandershortcut.test.ts" }, { @@ -313949,7 +314679,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_components_commander_commandershortcut_test_targetinside", - "community": 323, + "community": 4, "norm_label": "targetinside()" }, { @@ -313959,7 +314689,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_commander_commandershortcut", - "community": 323, + "community": 4, "norm_label": "commandershortcut.ts" }, { @@ -313969,7 +314699,7 @@ "source_location": "L28", "_origin": "ast", "id": "remix_app_components_commander_commandershortcut_maybeclosesttarget", - "community": 323, + "community": 4, "norm_label": "maybeclosesttarget" }, { @@ -313979,7 +314709,7 @@ "source_location": "L30", "_origin": "ast", "id": "remix_app_components_commander_commandershortcut_commanderchordevent", - "community": 323, + "community": 4, "norm_label": "commanderchordevent" }, { @@ -313989,7 +314719,7 @@ "source_location": "L44", "_origin": "ast", "id": "remix_app_components_commander_commandershortcut_iscommanderchord", - "community": 323, + "community": 4, "norm_label": "iscommanderchord()" }, { @@ -313999,7 +314729,7 @@ "source_location": "L52", "_origin": "ast", "id": "remix_app_components_commander_commandershortcut_targetownscommanderchord", - "community": 323, + "community": 4, "norm_label": "targetownscommanderchord()" }, { @@ -314009,7 +314739,7 @@ "source_location": "L58", "_origin": "ast", "id": "remix_app_components_commander_commandershortcut_shouldtogglecommanderfromkeydown", - "community": 323, + "community": 4, "norm_label": "shouldtogglecommanderfromkeydown()" }, { @@ -314019,7 +314749,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentdetailpage", - "community": 7, + "community": 330, "norm_label": "componentdetailpage.tsx" }, { @@ -314029,7 +314759,7 @@ "source_location": "L74", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentdetailpage_monolabel", - "community": 7, + "community": 330, "norm_label": "monolabel" }, { @@ -314039,7 +314769,7 @@ "source_location": "L82", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentdetailpage_fieldprops", - "community": 7, + "community": 330, "norm_label": "fieldprops" }, { @@ -314059,7 +314789,7 @@ "source_location": "L94", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentdetailpage_describearg", - "community": 7, + "community": 330, "norm_label": "describearg()" }, { @@ -314069,7 +314799,7 @@ "source_location": "L109", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentdetailpage_materializedsuites", - "community": 7, + "community": 330, "norm_label": "materializedsuites" }, { @@ -314079,7 +314809,7 @@ "source_location": "L110", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentdetailpage_materializedsuite", - "community": 7, + "community": 330, "norm_label": "materializedsuite()" }, { @@ -314089,7 +314819,7 @@ "source_location": "L117", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentdetailpage_suitebykey", - "community": 7, + "community": 330, "norm_label": "suitebykey()" }, { @@ -314099,7 +314829,7 @@ "source_location": "L118", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentdetailpage_suitekeyofcomponent", - "community": 7, + "community": 330, "norm_label": "suitekeyofcomponent()" }, { @@ -314109,7 +314839,7 @@ "source_location": "L121", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentdetailpage_slugofkey", - "community": 7, + "community": 330, "norm_label": "slugofkey()" }, { @@ -314119,7 +314849,7 @@ "source_location": "L126", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentdetailpage_catalogentriesfor", - "community": 7, + "community": 330, "norm_label": "catalogentriesfor()" }, { @@ -314129,7 +314859,7 @@ "source_location": "L134", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentdetailpage_walkblocks", - "community": 7, + "community": 330, "norm_label": "walkblocks()" }, { @@ -314139,7 +314869,7 @@ "source_location": "L145", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentdetailpage_suitesourcesfor", - "community": 7, + "community": 330, "norm_label": "suitesourcesfor()" }, { @@ -314149,7 +314879,7 @@ "source_location": "L164", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentdetailpage_resolveactionname", - "community": 7, + "community": 330, "norm_label": "resolveactionname()" }, { @@ -314159,7 +314889,7 @@ "source_location": "L179", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentdetailpage_familycachekeyfor", - "community": 7, + "community": 330, "norm_label": "familycachekeyfor()" }, { @@ -314169,7 +314899,7 @@ "source_location": "L182", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentdetailpage_trust_labels", - "community": 7, + "community": 330, "norm_label": "trust_labels" }, { @@ -314179,7 +314909,7 @@ "source_location": "L193", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentdetailpage_livepane", - "community": 7, + "community": 330, "norm_label": "livepane()" }, { @@ -314189,7 +314919,7 @@ "source_location": "L281", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentdetailpage_sourcedraft", - "community": 7, + "community": 330, "norm_label": "sourcedraft" }, { @@ -314199,7 +314929,7 @@ "source_location": "L283", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentdetailpage_draftfrom", - "community": 7, + "community": 330, "norm_label": "draftfrom()" }, { @@ -314209,7 +314939,7 @@ "source_location": "L290", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentdetailpage_sourcecontrol", - "community": 7, + "community": 330, "norm_label": "sourcecontrol()" }, { @@ -314229,7 +314959,7 @@ "source_location": "L1191", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentdetailpage_argrow", - "community": 7, + "community": 330, "norm_label": "argrow()" }, { @@ -314239,7 +314969,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentsbrowsepage", - "community": 7, + "community": 330, "norm_label": "componentsbrowsepage.tsx" }, { @@ -314249,7 +314979,7 @@ "source_location": "L69", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentsbrowsepage_cachekeyfor", - "community": 7, + "community": 330, "norm_label": "cachekeyfor()" }, { @@ -314259,7 +314989,7 @@ "source_location": "L72", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentsbrowsepage_viewmode", - "community": 7, + "community": 330, "norm_label": "viewmode" }, { @@ -314269,7 +314999,7 @@ "source_location": "L73", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentsbrowsepage_sortmode", - "community": 7, + "community": 330, "norm_label": "sortmode" }, { @@ -314279,7 +315009,7 @@ "source_location": "L74", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentsbrowsepage_scopemode", - "community": 7, + "community": 330, "norm_label": "scopemode" }, { @@ -314289,7 +315019,7 @@ "source_location": "L76", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentsbrowsepage_lib_filters", - "community": 7, + "community": 330, "norm_label": "lib_filters" }, { @@ -314299,7 +315029,7 @@ "source_location": "L77", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentsbrowsepage_libfilter", - "community": 7, + "community": 330, "norm_label": "libfilter" }, { @@ -314309,7 +315039,7 @@ "source_location": "L79", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentsbrowsepage_cachedcomponents", - "community": 7, + "community": 330, "norm_label": "cachedcomponents" }, { @@ -314319,7 +315049,7 @@ "source_location": "L91", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentsbrowsepage_pillprops", - "community": 7, + "community": 330, "norm_label": "pillprops()" }, { @@ -314329,7 +315059,7 @@ "source_location": "L104", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentsbrowsepage_monolabel", - "community": 7, + "community": 330, "norm_label": "monolabel" }, { @@ -314349,7 +315079,7 @@ "source_location": "L117", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentsbrowsepage_shapechip", - "community": 7, + "community": 330, "norm_label": "shapechip()" }, { @@ -314359,7 +315089,7 @@ "source_location": "L138", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentsbrowsepage_componentpreview", - "community": 7, + "community": 330, "norm_label": "componentpreview()" }, { @@ -314369,7 +315099,7 @@ "source_location": "L165", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentsbrowsepage_arginput", - "community": 7, + "community": 330, "norm_label": "arginput()" }, { @@ -314379,7 +315109,7 @@ "source_location": "L240", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentsbrowsepage_componentcardprops", - "community": 7, + "community": 330, "norm_label": "componentcardprops" }, { @@ -314389,7 +315119,7 @@ "source_location": "L250", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentsbrowsepage_stop", - "community": 7, + "community": 330, "norm_label": "stop()" }, { @@ -314399,7 +315129,7 @@ "source_location": "L252", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentsbrowsepage_componentcard", - "community": 7, + "community": 330, "norm_label": "componentcard" }, { @@ -314409,7 +315139,7 @@ "source_location": "L785", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentsbrowsepage_componentsbrowsepage", - "community": 7, + "community": 330, "norm_label": "componentsbrowsepage()" }, { @@ -314419,7 +315149,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentbrowsetypes_test", - "community": 7, + "community": 330, "norm_label": "componentbrowsetypes.test.ts" }, { @@ -314429,7 +315159,7 @@ "source_location": "L17", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentbrowsetypes_test_entry", - "community": 7, + "community": 330, "norm_label": "entry()" }, { @@ -314439,7 +315169,7 @@ "source_location": "L34", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentbrowsetypes_test_suites", - "community": 7, + "community": 330, "norm_label": "suites()" }, { @@ -314449,7 +315179,7 @@ "source_location": "L71", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentbrowsetypes_test_sourcesfor", - "community": 7, + "community": 330, "norm_label": "sourcesfor()" }, { @@ -314459,7 +315189,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentbrowsetypes", - "community": 7, + "community": 330, "norm_label": "componentbrowsetypes.ts" }, { @@ -314469,7 +315199,7 @@ "source_location": "L17", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentbrowsetypes_browsecomponentauthor", - "community": 7, + "community": 330, "norm_label": "browsecomponentauthor" }, { @@ -314479,7 +315209,7 @@ "source_location": "L25", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentbrowsetypes_componentdesignref", - "community": 7, + "community": 330, "norm_label": "componentdesignref" }, { @@ -314489,7 +315219,7 @@ "source_location": "L27", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentbrowsetypes_browsecomponententry", - "community": 7, + "community": 330, "norm_label": "browsecomponententry" }, { @@ -314499,7 +315229,7 @@ "source_location": "L46", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentbrowsetypes_browsecomponentsresponse", - "community": 7, + "community": 330, "norm_label": "browsecomponentsresponse" }, { @@ -314509,7 +315239,7 @@ "source_location": "L55", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentbrowsetypes_component_library_labels", - "community": 7, + "community": 330, "norm_label": "component_library_labels" }, { @@ -314519,7 +315249,7 @@ "source_location": "L70", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentbrowsetypes_componentcardsource", - "community": 7, + "community": 330, "norm_label": "componentcardsource" }, { @@ -314529,7 +315259,7 @@ "source_location": "L94", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentbrowsetypes_design_library_order", - "community": 7, + "community": 330, "norm_label": "design_library_order" }, { @@ -314539,7 +315269,7 @@ "source_location": "L95", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentbrowsetypes_designrank", - "community": 7, + "community": 330, "norm_label": "designrank()" }, { @@ -314549,7 +315279,7 @@ "source_location": "L101", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentbrowsetypes_deeplinkkeyfor", - "community": 7, + "community": 330, "norm_label": "deeplinkkeyfor()" }, { @@ -314559,7 +315289,7 @@ "source_location": "L104", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentbrowsetypes_entrytocardsource", - "community": 7, + "community": 330, "norm_label": "entrytocardsource()" }, { @@ -314569,7 +315299,7 @@ "source_location": "L137", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentbrowsetypes_isattributiontag", - "community": 7, + "community": 330, "norm_label": "isattributiontag()" }, { @@ -314579,7 +315309,7 @@ "source_location": "L142", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentbrowsetypes_collapseentriesbyfamily", - "community": 7, + "community": 330, "norm_label": "collapseentriesbyfamily()" }, { @@ -314589,7 +315319,7 @@ "source_location": "L187", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentbrowsetypes_componenttrust", - "community": 7, + "community": 330, "norm_label": "componenttrust" }, { @@ -314599,7 +315329,7 @@ "source_location": "L189", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentbrowsetypes_componenttrustfor", - "community": 7, + "community": 330, "norm_label": "componenttrustfor()" }, { @@ -314609,7 +315339,7 @@ "source_location": "L208", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentbrowsetypes_pickactivesource", - "community": 7, + "community": 330, "norm_label": "pickactivesource()" }, { @@ -314619,7 +315349,7 @@ "source_location": "L230", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentbrowsetypes_catalogentryfrom", - "community": 7, + "community": 330, "norm_label": "catalogentryfrom()" }, { @@ -314629,7 +315359,7 @@ "source_location": "L254", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentbrowsetypes_source_param_keys", - "community": 7, + "community": 330, "norm_label": "source_param_keys" }, { @@ -314639,7 +315369,7 @@ "source_location": "L255", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentbrowsetypes_sourcerefreshmode", - "community": 7, + "community": 330, "norm_label": "sourcerefreshmode" }, { @@ -314649,7 +315379,7 @@ "source_location": "L256", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentbrowsetypes_source_refresh_modes", - "community": 7, + "community": 330, "norm_label": "source_refresh_modes" }, { @@ -314659,7 +315389,7 @@ "source_location": "L261", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentbrowsetypes_issourceactionkey", - "community": 7, + "community": 330, "norm_label": "issourceactionkey()" }, { @@ -314669,7 +315399,7 @@ "source_location": "L264", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentbrowsetypes_clampsourceinterval", - "community": 7, + "community": 330, "norm_label": "clampsourceinterval()" }, { @@ -314679,7 +315409,7 @@ "source_location": "L270", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentbrowsetypes_sourceinputs", - "community": 7, + "community": 330, "norm_label": "sourceinputs" }, { @@ -314689,7 +315419,7 @@ "source_location": "L272", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentbrowsetypes_parsesourceinputsjson", - "community": 7, + "community": 330, "norm_label": "parsesourceinputsjson()" }, { @@ -314699,7 +315429,7 @@ "source_location": "L300", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentbrowsetypes_parsesourcebindingparams", - "community": 7, + "community": 330, "norm_label": "parsesourcebindingparams()" }, { @@ -314709,7 +315439,7 @@ "source_location": "L316", "_origin": "ast", "id": "remix_app_components_componentslibrary_componentbrowsetypes_sourcebindingtoparams", - "community": 7, + "community": 330, "norm_label": "sourcebindingtoparams()" }, { @@ -314719,7 +315449,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_componentslibrary_componenttemplate_test", - "community": 7, + "community": 330, "norm_label": "componenttemplate.test.ts" }, { @@ -314729,7 +315459,7 @@ "source_location": "L37", "_origin": "ast", "id": "remix_app_components_componentslibrary_componenttemplate_test_countvalues", - "community": 7, + "community": 330, "norm_label": "countvalues()" }, { @@ -314739,7 +315469,7 @@ "source_location": "L46", "_origin": "ast", "id": "remix_app_components_componentslibrary_componenttemplate_test_countchars", - "community": 7, + "community": 330, "norm_label": "countchars()" }, { @@ -314749,7 +315479,7 @@ "source_location": "L65", "_origin": "ast", "id": "remix_app_components_componentslibrary_componenttemplate_test_repeatbomb", - "community": 7, + "community": 330, "norm_label": "repeatbomb()" }, { @@ -314759,7 +315489,7 @@ "source_location": "L431", "_origin": "ast", "id": "remix_app_components_componentslibrary_componenttemplate_test_sumactioninputvalues", - "community": 7, + "community": 330, "norm_label": "sumactioninputvalues()" }, { @@ -314769,7 +315499,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_componentslibrary_componenttemplate", - "community": 7, + "community": 330, "norm_label": "componenttemplate.ts" }, { @@ -314779,7 +315509,7 @@ "source_location": "L70", "_origin": "ast", "id": "remix_app_components_componentslibrary_componenttemplate_componentargscalar", - "community": 7, + "community": 330, "norm_label": "componentargscalar" }, { @@ -314789,7 +315519,7 @@ "source_location": "L72", "_origin": "ast", "id": "remix_app_components_componentslibrary_componenttemplate_componentargspec", - "community": 7, + "community": 330, "norm_label": "componentargspec" }, { @@ -314799,7 +315529,7 @@ "source_location": "L84", "_origin": "ast", "id": "remix_app_components_componentslibrary_componenttemplate_componentargvalues", - "community": 7, + "community": 330, "norm_label": "componentargvalues" }, { @@ -314809,7 +315539,7 @@ "source_location": "L87", "_origin": "ast", "id": "remix_app_components_componentslibrary_componenttemplate_componentscope", - "community": 7, + "community": 330, "norm_label": "componentscope" }, { @@ -314819,7 +315549,7 @@ "source_location": "L89", "_origin": "ast", "id": "remix_app_components_componentslibrary_componenttemplate_isplainobject", - "community": 7, + "community": 330, "norm_label": "isplainobject()" }, { @@ -314829,7 +315559,7 @@ "source_location": "L92", "_origin": "ast", "id": "remix_app_components_componentslibrary_componenttemplate_banned_segments", - "community": 7, + "community": 330, "norm_label": "banned_segments" }, { @@ -314839,7 +315569,7 @@ "source_location": "L99", "_origin": "ast", "id": "remix_app_components_componentslibrary_componenttemplate_argvalue", - "community": 7, + "community": 330, "norm_label": "argvalue()" }, { @@ -314849,7 +315579,7 @@ "source_location": "L119", "_origin": "ast", "id": "remix_app_components_componentslibrary_componenttemplate_scalartext", - "community": 7, + "community": 330, "norm_label": "scalartext()" }, { @@ -314859,7 +315589,7 @@ "source_location": "L128", "_origin": "ast", "id": "remix_app_components_componentslibrary_componenttemplate_substitute", - "community": 7, + "community": 330, "norm_label": "substitute()" }, { @@ -314869,7 +315599,7 @@ "source_location": "L146", "_origin": "ast", "id": "remix_app_components_componentslibrary_componenttemplate_truthy", - "community": 7, + "community": 330, "norm_label": "truthy()" }, { @@ -314879,7 +315609,7 @@ "source_location": "L154", "_origin": "ast", "id": "remix_app_components_componentslibrary_componenttemplate_isnumeric", - "community": 7, + "community": 330, "norm_label": "isnumeric()" }, { @@ -314889,7 +315619,7 @@ "source_location": "L157", "_origin": "ast", "id": "remix_app_components_componentslibrary_componenttemplate_comparevalues", - "community": 7, + "community": 330, "norm_label": "comparevalues()" }, { @@ -314899,7 +315629,7 @@ "source_location": "L165", "_origin": "ast", "id": "remix_app_components_componentslibrary_componenttemplate_conditionholds", - "community": 7, + "community": 330, "norm_label": "conditionholds()" }, { @@ -314909,7 +315639,7 @@ "source_location": "L195", "_origin": "ast", "id": "remix_app_components_componentslibrary_componenttemplate_ordinals", - "community": 7, + "community": 330, "norm_label": "ordinals" }, { @@ -314919,7 +315649,7 @@ "source_location": "L196", "_origin": "ast", "id": "remix_app_components_componentslibrary_componenttemplate_ordinal", - "community": 7, + "community": 330, "norm_label": "ordinal()" }, { @@ -314929,7 +315659,7 @@ "source_location": "L201", "_origin": "ast", "id": "remix_app_components_componentslibrary_componenttemplate_formatvalue", - "community": 7, + "community": 330, "norm_label": "formatvalue()" }, { @@ -314939,7 +315669,7 @@ "source_location": "L246", "_origin": "ast", "id": "remix_app_components_componentslibrary_componenttemplate_resolvebudget", - "community": 7, + "community": 330, "norm_label": "resolvebudget" }, { @@ -314949,7 +315679,7 @@ "source_location": "L251", "_origin": "ast", "id": "remix_app_components_componentslibrary_componenttemplate_resolvescopevalue", - "community": 7, + "community": 330, "norm_label": "resolvescopevalue()" }, { @@ -314959,7 +315689,7 @@ "source_location": "L281", "_origin": "ast", "id": "remix_app_components_componentslibrary_componenttemplate_resolvenode", - "community": 7, + "community": 330, "norm_label": "resolvenode()" }, { @@ -314969,7 +315699,7 @@ "source_location": "L467", "_origin": "ast", "id": "remix_app_components_componentslibrary_componenttemplate_resolvetemplate", - "community": 7, + "community": 330, "norm_label": "resolvetemplate()" }, { @@ -314979,7 +315709,7 @@ "source_location": "L472", "_origin": "ast", "id": "remix_app_components_componentslibrary_componenttemplate_sanitizeargspecs", - "community": 7, + "community": 330, "norm_label": "sanitizeargspecs()" }, { @@ -314989,7 +315719,7 @@ "source_location": "L482", "_origin": "ast", "id": "remix_app_components_componentslibrary_componenttemplate_defaultsfromargs", - "community": 7, + "community": 106, "norm_label": "defaultsfromargs()" }, { @@ -314999,7 +315729,7 @@ "source_location": "L491", "_origin": "ast", "id": "remix_app_components_componentslibrary_componenttemplate_coerceargvalue", - "community": 7, + "community": 330, "norm_label": "coerceargvalue()" }, { @@ -315009,7 +315739,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_devkit_devkit", - "community": 287, + "community": 195, "norm_label": "devkit.tsx" }, { @@ -315019,7 +315749,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_components_devkit_devkit_spin", - "community": 287, + "community": 195, "norm_label": "spin" }, { @@ -315029,7 +315759,7 @@ "source_location": "L30", "_origin": "ast", "id": "remix_app_components_devkit_devkit_fixedposition", - "community": 287, + "community": 195, "norm_label": "fixedposition" }, { @@ -315039,7 +315769,7 @@ "source_location": "L32", "_origin": "ast", "id": "remix_app_components_devkit_devkit_clamp", - "community": 287, + "community": 195, "norm_label": "clamp()" }, { @@ -315049,7 +315779,7 @@ "source_location": "L37", "_origin": "ast", "id": "remix_app_components_devkit_devkit_readrootpixelvalue", - "community": 287, + "community": 195, "norm_label": "readrootpixelvalue()" }, { @@ -315059,7 +315789,7 @@ "source_location": "L44", "_origin": "ast", "id": "remix_app_components_devkit_devkit_getviewportsize", - "community": 287, + "community": 195, "norm_label": "getviewportsize()" }, { @@ -315069,7 +315799,7 @@ "source_location": "L49", "_origin": "ast", "id": "remix_app_components_devkit_devkit_isnativewebview", - "community": 287, + "community": 195, "norm_label": "isnativewebview()" }, { @@ -315079,7 +315809,7 @@ "source_location": "L52", "_origin": "ast", "id": "remix_app_components_devkit_devkit_empty_api_calls", - "community": 287, + "community": 195, "norm_label": "empty_api_calls" }, { @@ -315089,7 +315819,7 @@ "source_location": "L53", "_origin": "ast", "id": "remix_app_components_devkit_devkit_getemptyapicalls", - "community": 287, + "community": 195, "norm_label": "getemptyapicalls()" }, { @@ -315099,7 +315829,7 @@ "source_location": "L55", "_origin": "ast", "id": "remix_app_components_devkit_devkit_api_tone_color", - "community": 287, + "community": 195, "norm_label": "api_tone_color" }, { @@ -315109,7 +315839,7 @@ "source_location": "L62", "_origin": "ast", "id": "remix_app_components_devkit_devkit_getdevkitbottomguard", - "community": 287, + "community": 195, "norm_label": "getdevkitbottomguard()" }, { @@ -315119,7 +315849,7 @@ "source_location": "L74", "_origin": "ast", "id": "remix_app_components_devkit_devkit_getdevkitrightguard", - "community": 287, + "community": 195, "norm_label": "getdevkitrightguard()" }, { @@ -315129,7 +315859,7 @@ "source_location": "L80", "_origin": "ast", "id": "remix_app_components_devkit_devkit_clamptriggerposition", - "community": 287, + "community": 195, "norm_label": "clamptriggerposition()" }, { @@ -315139,7 +315869,7 @@ "source_location": "L89", "_origin": "ast", "id": "remix_app_components_devkit_devkit_clamppanelposition", - "community": 287, + "community": 195, "norm_label": "clamppanelposition()" }, { @@ -315149,7 +315879,7 @@ "source_location": "L94", "_origin": "ast", "id": "remix_app_components_devkit_devkit_panelpositionneartrigger", - "community": 287, + "community": 195, "norm_label": "panelpositionneartrigger()" }, { @@ -315159,7 +315889,7 @@ "source_location": "L105", "_origin": "ast", "id": "remix_app_components_devkit_devkit_readstoredtriggerposition", - "community": 287, + "community": 195, "norm_label": "readstoredtriggerposition()" }, { @@ -315169,7 +315899,7 @@ "source_location": "L119", "_origin": "ast", "id": "remix_app_components_devkit_devkit_devaction", - "community": 287, + "community": 195, "norm_label": "devaction()" }, { @@ -315179,7 +315909,7 @@ "source_location": "L137", "_origin": "ast", "id": "remix_app_components_devkit_devkit_devkit", - "community": 287, + "community": 53, "norm_label": "devkit()" }, { @@ -315359,7 +316089,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_devices_devicecard", - "community": 471, + "community": 124, "norm_label": "devicecard.tsx" }, { @@ -315369,7 +316099,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_components_devices_devicecard_statustone", - "community": 471, + "community": 124, "norm_label": "statustone" }, { @@ -315379,7 +316109,7 @@ "source_location": "L11", "_origin": "ast", "id": "remix_app_components_devices_devicecard_status_tones", - "community": 471, + "community": 124, "norm_label": "status_tones" }, { @@ -315399,7 +316129,7 @@ "source_location": "L36", "_origin": "ast", "id": "remix_app_components_devices_devicecard_resolveddevicepresence", - "community": 471, + "community": 124, "norm_label": "resolveddevicepresence()" }, { @@ -315409,7 +316139,7 @@ "source_location": "L45", "_origin": "ast", "id": "remix_app_components_devices_devicecard_formatdevicelastseen", - "community": 471, + "community": 124, "norm_label": "formatdevicelastseen()" }, { @@ -315419,7 +316149,7 @@ "source_location": "L57", "_origin": "ast", "id": "remix_app_components_devices_devicecard_presencetone", - "community": 471, + "community": 124, "norm_label": "presencetone()" }, { @@ -315429,7 +316159,7 @@ "source_location": "L63", "_origin": "ast", "id": "remix_app_components_devices_devicecard_servicetone", - "community": 471, + "community": 124, "norm_label": "servicetone()" }, { @@ -315439,7 +316169,7 @@ "source_location": "L71", "_origin": "ast", "id": "remix_app_components_devices_devicecard_devicehealthbadges", - "community": 471, + "community": 124, "norm_label": "devicehealthbadges" }, { @@ -315449,7 +316179,7 @@ "source_location": "L85", "_origin": "ast", "id": "remix_app_components_devices_devicecard_deviceplatformicon", - "community": 471, + "community": 124, "norm_label": "deviceplatformicon()" }, { @@ -315459,7 +316189,7 @@ "source_location": "L94", "_origin": "ast", "id": "remix_app_components_devices_devicecard_devicecardprops", - "community": 471, + "community": 124, "norm_label": "devicecardprops" }, { @@ -315469,7 +316199,7 @@ "source_location": "L104", "_origin": "ast", "id": "remix_app_components_devices_devicecard_devicecard", - "community": 471, + "community": 18, "norm_label": "devicecard" }, { @@ -315689,7 +316419,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_devices_devicelistrow", - "community": 471, + "community": 124, "norm_label": "devicelistrow.tsx" }, { @@ -315699,7 +316429,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_components_devices_devicelistrow_devicelistrowprops", - "community": 471, + "community": 124, "norm_label": "devicelistrowprops" }, { @@ -315709,7 +316439,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_components_devices_devicelistrow_devicelistrow", - "community": 471, + "community": 18, "norm_label": "devicelistrow" }, { @@ -315989,7 +316719,7 @@ "source_location": "L120", "_origin": "ast", "id": "remix_app_components_devices_devicesystemcontrols_devicesystemcontrols", - "community": 232, + "community": 124, "norm_label": "devicesystemcontrols" }, { @@ -316109,7 +316839,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_devices_watchdevicedetails", - "community": 471, + "community": 124, "norm_label": "watchdevicedetails.tsx" }, { @@ -316119,7 +316849,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_components_devices_watchdevicedetails_percentage", - "community": 471, + "community": 124, "norm_label": "percentage()" }, { @@ -316129,7 +316859,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_components_devices_watchdevicedetails_timestamp", - "community": 471, + "community": 124, "norm_label": "timestamp()" }, { @@ -316139,7 +316869,7 @@ "source_location": "L20", "_origin": "ast", "id": "remix_app_components_devices_watchdevicedetails_metric", - "community": 471, + "community": 124, "norm_label": "metric()" }, { @@ -316149,7 +316879,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_components_devices_watchdevicedetails_watchdevicedetails", - "community": 471, + "community": 124, "norm_label": "watchdevicedetails" }, { @@ -316749,7 +317479,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_devices_devicedrawerlayout_test", - "community": 774, + "community": 124, "norm_label": "devicedrawerlayout.test.ts" }, { @@ -316759,7 +317489,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_devices_devicedrawerlayout", - "community": 774, + "community": 124, "norm_label": "devicedrawerlayout.ts" }, { @@ -316769,7 +317499,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_components_devices_devicedrawerlayout_devicedrawerminimumwidth", - "community": 774, + "community": 124, "norm_label": "devicedrawerminimumwidth()" }, { @@ -316779,7 +317509,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_components_devices_devicedrawerlayout_devicedrawermaximumwidth", - "community": 774, + "community": 124, "norm_label": "devicedrawermaximumwidth()" }, { @@ -316789,7 +317519,7 @@ "source_location": "L23", "_origin": "ast", "id": "remix_app_components_devices_devicedrawerlayout_clampdevicedrawerwidth", - "community": 774, + "community": 124, "norm_label": "clampdevicedrawerwidth()" }, { @@ -317019,7 +317749,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_components_devices_devicetypes_deviceexecutionpermissionmode", - "community": 124, + "community": 196, "norm_label": "deviceexecutionpermissionmode" }, { @@ -317109,7 +317839,7 @@ "source_location": "L45", "_origin": "ast", "id": "remix_app_components_devices_devicetypes_devicepresencestatus", - "community": 471, + "community": 124, "norm_label": "devicepresencestatus" }, { @@ -317119,7 +317849,7 @@ "source_location": "L47", "_origin": "ast", "id": "remix_app_components_devices_devicetypes_devicepermissionkind", - "community": 232, + "community": 324, "norm_label": "devicepermissionkind" }, { @@ -317129,7 +317859,7 @@ "source_location": "L57", "_origin": "ast", "id": "remix_app_components_devices_devicetypes_devicehealtherror", - "community": 232, + "community": 324, "norm_label": "devicehealtherror" }, { @@ -317309,7 +318039,7 @@ "source_location": "L146", "_origin": "ast", "id": "remix_app_components_devices_devicetypes_deviceobservedstate", - "community": 232, + "community": 324, "norm_label": "deviceobservedstate" }, { @@ -317339,7 +318069,7 @@ "source_location": "L190", "_origin": "ast", "id": "remix_app_components_devices_devicetypes_devicesummary", - "community": 471, + "community": 124, "norm_label": "devicesummary" }, { @@ -317349,7 +318079,7 @@ "source_location": "L213", "_origin": "ast", "id": "remix_app_components_devices_devicetypes_devicesnapshot", - "community": 471, + "community": 124, "norm_label": "devicesnapshot" }, { @@ -317359,7 +318089,7 @@ "source_location": "L222", "_origin": "ast", "id": "remix_app_components_devices_devicetypes_deviceactionkind", - "community": 474, + "community": 124, "norm_label": "deviceactionkind" }, { @@ -317449,7 +318179,7 @@ "source_location": "L397", "_origin": "ast", "id": "remix_app_components_devices_devicetypes_devicedesiredreconciliation", - "community": 232, + "community": 324, "norm_label": "devicedesiredreconciliation" }, { @@ -317789,7 +318519,7 @@ "source_location": "L229", "_origin": "ast", "id": "remix_app_components_devices_usedeviceapi_toquery", - "community": 196, + "community": 287, "norm_label": "toquery()" }, { @@ -317809,7 +318539,7 @@ "source_location": "L265", "_origin": "ast", "id": "remix_app_components_devices_usedeviceapi_requestevents", - "community": 196, + "community": 287, "norm_label": "requestevents()" }, { @@ -318289,7 +319019,7 @@ "source_location": "L77", "_origin": "ast", "id": "remix_app_components_devices_uselocalthingtimenode_localactionerrormessage", - "community": 474, + "community": 287, "norm_label": "localactionerrormessage()" }, { @@ -318299,7 +319029,7 @@ "source_location": "L85", "_origin": "ast", "id": "remix_app_components_devices_uselocalthingtimenode_uselocalthingtimenode", - "community": 323, + "community": 18, "norm_label": "uselocalthingtimenode()" }, { @@ -318329,7 +319059,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_editor_editor", - "community": 652, + "community": 323, "norm_label": "editor.tsx" }, { @@ -318339,7 +319069,7 @@ "source_location": "L5", "_origin": "ast", "id": "remix_app_components_editor_editor_editor", - "community": 652, + "community": 323, "norm_label": "editor()" }, { @@ -318349,7 +319079,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_editor_editorhistorycontrols", - "community": 102, + "community": 506, "norm_label": "editorhistorycontrols.tsx" }, { @@ -318359,7 +319089,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_components_editor_editorhistorycontrols_historyaction", - "community": 102, + "community": 506, "norm_label": "historyaction" }, { @@ -318369,7 +319099,7 @@ "source_location": "L11", "_origin": "ast", "id": "remix_app_components_editor_editorhistorycontrols_editorhistoryhandle", - "community": 102, + "community": 506, "norm_label": "editorhistoryhandle" }, { @@ -318379,7 +319109,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_components_editor_editorhistorycontrols_editorhistorycontrols", - "community": 102, + "community": 506, "norm_label": "editorhistorycontrols()" }, { @@ -318419,7 +319149,7 @@ "source_location": "L101", "_origin": "ast", "id": "remix_app_components_editor_inlinestyle_inlinestyle", - "community": 130, + "community": 751, "norm_label": "inlinestyle" }, { @@ -318429,7 +319159,7 @@ "source_location": "L102", "_origin": "ast", "id": "remix_app_components_editor_inlinestyle_inlinestyle_isinline", - "community": 130, + "community": 751, "norm_label": ".isinline()" }, { @@ -318439,7 +319169,7 @@ "source_location": "L105", "_origin": "ast", "id": "remix_app_components_editor_inlinestyle_inlinestyle_title", - "community": 130, + "community": 751, "norm_label": ".title()" }, { @@ -318449,7 +319179,7 @@ "source_location": "L108", "_origin": "ast", "id": "remix_app_components_editor_inlinestyle_inlinestyle_sanitize", - "community": 130, + "community": 751, "norm_label": ".sanitize()" }, { @@ -318459,7 +319189,7 @@ "source_location": "L118", "_origin": "ast", "id": "remix_app_components_editor_inlinestyle_inlinestyle_render", - "community": 130, + "community": 751, "norm_label": ".render()" }, { @@ -318479,7 +319209,7 @@ "source_location": "L202", "_origin": "ast", "id": "remix_app_components_editor_inlinestyle_inlinestyle_checkstate", - "community": 130, + "community": 751, "norm_label": ".checkstate()" }, { @@ -318489,7 +319219,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_editor_longtexteditor", - "community": 102, + "community": 506, "norm_label": "longtexteditor.tsx" }, { @@ -318499,7 +319229,7 @@ "source_location": "L55", "_origin": "ast", "id": "remix_app_components_editor_longtexteditor_longtextvalue", - "community": 349, + "community": 506, "norm_label": "longtextvalue" }, { @@ -318509,7 +319239,7 @@ "source_location": "L57", "_origin": "ast", "id": "remix_app_components_editor_longtexteditor_longtexteditorhandle", - "community": 349, + "community": 506, "norm_label": "longtexteditorhandle" }, { @@ -318549,7 +319279,7 @@ "source_location": "L102", "_origin": "ast", "id": "remix_app_components_editor_longtexteditor_escapeinline", - "community": 102, + "community": 506, "norm_label": "escapeinline()" }, { @@ -318559,7 +319289,7 @@ "source_location": "L111", "_origin": "ast", "id": "remix_app_components_editor_longtexteditor_splittablerow", - "community": 102, + "community": 106, "norm_label": "splittablerow()" }, { @@ -318569,7 +319299,7 @@ "source_location": "L118", "_origin": "ast", "id": "remix_app_components_editor_longtexteditor_parsechunklines", - "community": 102, + "community": 106, "norm_label": "parsechunklines()" }, { @@ -318579,7 +319309,7 @@ "source_location": "L231", "_origin": "ast", "id": "remix_app_components_editor_longtexteditor_texttoblocks", - "community": 102, + "community": 506, "norm_label": "texttoblocks()" }, { @@ -318589,7 +319319,7 @@ "source_location": "L277", "_origin": "ast", "id": "remix_app_components_editor_longtexteditor_longtexteditorprops", - "community": 102, + "community": 506, "norm_label": "longtexteditorprops" }, { @@ -318599,7 +319329,7 @@ "source_location": "L293", "_origin": "ast", "id": "remix_app_components_editor_longtexteditor_sequencedlongtextvalue", - "community": 102, + "community": 506, "norm_label": "sequencedlongtextvalue" }, { @@ -318609,7 +319339,7 @@ "source_location": "L301", "_origin": "ast", "id": "remix_app_components_editor_longtexteditor_longtexteditorinnerprops", - "community": 102, + "community": 506, "norm_label": "longtexteditorinnerprops" }, { @@ -318619,7 +319349,7 @@ "source_location": "L309", "_origin": "ast", "id": "remix_app_components_editor_longtexteditor_longtexteditorinner", - "community": 102, + "community": 506, "norm_label": "longtexteditorinner" }, { @@ -318629,7 +319359,7 @@ "source_location": "L833", "_origin": "ast", "id": "remix_app_components_editor_longtexteditor_editablelongtexteditor", - "community": 102, + "community": 506, "norm_label": "editablelongtexteditor" }, { @@ -318639,7 +319369,7 @@ "source_location": "L1081", "_origin": "ast", "id": "remix_app_components_editor_longtexteditor_longtexteditor", - "community": 349, + "community": 506, "norm_label": "longtexteditor" }, { @@ -318929,7 +319659,7 @@ "source_location": "L5", "_origin": "ast", "id": "remix_app_components_editor_editordraftsnapshot_cleandraftfields", - "community": 506, + "community": 130, "norm_label": "cleandraftfields()" }, { @@ -319379,7 +320109,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_editor_editorjschangequeue_test", - "community": 102, + "community": 506, "norm_label": "editorjschangequeue.test.ts" }, { @@ -319389,7 +320119,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_components_editor_editorjschangequeue_test_deferred", - "community": 102, + "community": 506, "norm_label": "deferred()" }, { @@ -319399,7 +320129,7 @@ "source_location": "L18", "_origin": "ast", "id": "remix_app_components_editor_editorjschangequeue_test_flushmicrotasks", - "community": 102, + "community": 506, "norm_label": "flushmicrotasks()" }, { @@ -319409,7 +320139,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_editor_editorjschangequeue", - "community": 102, + "community": 506, "norm_label": "editorjschangequeue.ts" }, { @@ -319419,7 +320149,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_editor_editorjschangequeue_orderededitorjschangequeueoptions", - "community": 102, + "community": 506, "norm_label": "orderededitorjschangequeueoptions" }, { @@ -319429,7 +320159,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_components_editor_editorjschangequeue_orderededitorjschangequeue", - "community": 102, + "community": 506, "norm_label": "orderededitorjschangequeue" }, { @@ -319439,7 +320169,7 @@ "source_location": "L17", "_origin": "ast", "id": "remix_app_components_editor_editorjschangequeue_saveresult", - "community": 102, + "community": 506, "norm_label": "saveresult" }, { @@ -319449,7 +320179,7 @@ "source_location": "L25", "_origin": "ast", "id": "remix_app_components_editor_editorjschangequeue_createorderededitorjschangequeue", - "community": 102, + "community": 506, "norm_label": "createorderededitorjschangequeue()" }, { @@ -319459,7 +320189,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_editor_editorjschangereconciliation_test", - "community": 102, + "community": 506, "norm_label": "editorjschangereconciliation.test.ts" }, { @@ -319469,7 +320199,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_editor_editorjschangereconciliation", - "community": 102, + "community": 506, "norm_label": "editorjschangereconciliation.ts" }, { @@ -319479,7 +320209,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_editor_editorjschangereconciliation_editorjssourcerevision", - "community": 102, + "community": 506, "norm_label": "editorjssourcerevision" }, { @@ -319489,7 +320219,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_components_editor_editorjschangereconciliation_acknowledgelatesteditorjsecho", - "community": 102, + "community": 506, "norm_label": "acknowledgelatesteditorjsecho()" }, { @@ -319499,7 +320229,7 @@ "source_location": "L18", "_origin": "ast", "id": "remix_app_components_editor_editorjschangereconciliation_shouldaccepteditorjssnapshot", - "community": 102, + "community": 506, "norm_label": "shouldaccepteditorjssnapshot()" }, { @@ -319519,7 +320249,7 @@ "source_location": "L10", "_origin": "ast", "id": "remix_app_components_editor_editorjsinlineposition_inlinetoolbarposition", - "community": 130, + "community": 102, "norm_label": "inlinetoolbarposition()" }, { @@ -319979,7 +320709,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_editor_editorjstoolbox_test", - "community": 102, + "community": 506, "norm_label": "editorjstoolbox.test.ts" }, { @@ -319989,7 +320719,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_editor_editorjstoolbox", - "community": 102, + "community": 506, "norm_label": "editorjstoolbox.ts" }, { @@ -319999,7 +320729,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_editor_editorjstoolbox_listv2toolboxentry", - "community": 102, + "community": 506, "norm_label": "listv2toolboxentry" }, { @@ -320009,7 +320739,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_components_editor_editorjstoolbox_islistv2checklisttoolboxentry", - "community": 102, + "community": 506, "norm_label": "islistv2checklisttoolboxentry()" }, { @@ -320019,7 +320749,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_components_editor_editorjstoolbox_filterlistv2checklisttoolbox", - "community": 102, + "community": 506, "norm_label": "filterlistv2checklisttoolbox()" }, { @@ -320029,7 +320759,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_editor_editorjstouchfocus_test", - "community": 102, + "community": 506, "norm_label": "editorjstouchfocus.test.ts" }, { @@ -320039,7 +320769,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_editor_editorjstouchfocus", - "community": 102, + "community": 506, "norm_label": "editorjstouchfocus.ts" }, { @@ -320049,7 +320779,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_components_editor_editorjstouchfocus_closesteventtarget", - "community": 102, + "community": 506, "norm_label": "closesteventtarget" }, { @@ -320059,7 +320789,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_components_editor_editorjstouchfocus_geteditorjstouchfocustarget", - "community": 102, + "community": 506, "norm_label": "geteditorjstouchfocustarget()" }, { @@ -320259,7 +320989,7 @@ "source_location": "L174", "_origin": "ast", "id": "remix_app_components_editor_editorjsvalue_geteditorjsdoc", - "community": 221, + "community": 506, "norm_label": "geteditorjsdoc()" }, { @@ -320279,7 +321009,7 @@ "source_location": "L191", "_origin": "ast", "id": "remix_app_components_editor_editorjsvalue_blockstotext", - "community": 63, + "community": 506, "norm_label": "blockstotext()" }, { @@ -320409,7 +321139,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_editor_editorstylecarry", - "community": 102, + "community": 506, "norm_label": "editorstylecarry.ts" }, { @@ -320419,7 +321149,7 @@ "source_location": "L4", "_origin": "ast", "id": "remix_app_components_editor_editorstylecarry_style_carry_properties", - "community": 102, + "community": 506, "norm_label": "style_carry_properties" }, { @@ -320429,7 +321159,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_components_editor_editorstylecarry_stylecarrypreferences", - "community": 102, + "community": 506, "norm_label": "stylecarrypreferences" }, { @@ -320449,7 +321179,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_components_editor_editorstylecarry_watcheditorstylecarry", - "community": 102, + "community": 506, "norm_label": "watcheditorstylecarry()" }, { @@ -320959,7 +321689,7 @@ "source_location": "L148", "_origin": "ast", "id": "remix_app_components_editor_styletokens_hasstyletokens", - "community": 349, + "community": 130, "norm_label": "hasstyletokens()" }, { @@ -320969,7 +321699,7 @@ "source_location": "L151", "_origin": "ast", "id": "remix_app_components_editor_styletokens_inlinestyletotokens", - "community": 349, + "community": 130, "norm_label": "inlinestyletotokens()" }, { @@ -320989,7 +321719,7 @@ "source_location": "L174", "_origin": "ast", "id": "remix_app_components_editor_styletokens_sanitizeinlinestyle", - "community": 349, + "community": 130, "norm_label": "sanitizeinlinestyle()" }, { @@ -321159,7 +321889,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_emoji_userecentreactions", - "community": 53, + "community": 73, "norm_label": "userecentreactions.tsx" }, { @@ -321169,7 +321899,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_components_emoji_userecentreactions_keyfor", - "community": 53, + "community": 73, "norm_label": "keyfor()" }, { @@ -321179,7 +321909,7 @@ "source_location": "L24", "_origin": "ast", "id": "remix_app_components_emoji_userecentreactions_recentstore", - "community": 53, + "community": 73, "norm_label": "recentstore" }, { @@ -321189,7 +321919,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_components_emoji_userecentreactions_stores", - "community": 53, + "community": 73, "norm_label": "stores" }, { @@ -321199,7 +321929,7 @@ "source_location": "L33", "_origin": "ast", "id": "remix_app_components_emoji_userecentreactions_storefor", - "community": 53, + "community": 73, "norm_label": "storefor()" }, { @@ -321209,7 +321939,7 @@ "source_location": "L45", "_origin": "ast", "id": "remix_app_components_emoji_userecentreactions_publish", - "community": 53, + "community": 73, "norm_label": "publish()" }, { @@ -321219,7 +321949,7 @@ "source_location": "L51", "_origin": "ast", "id": "remix_app_components_emoji_userecentreactions_userecentreactions", - "community": 53, + "community": 73, "norm_label": "userecentreactions()" }, { @@ -321229,7 +321959,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_explore_explorepage", - "community": 53, + "community": 1, "norm_label": "explorepage.tsx" }, { @@ -321239,7 +321969,7 @@ "source_location": "L38", "_origin": "ast", "id": "remix_app_components_explore_explorepage_cachedboard", - "community": 53, + "community": 1, "norm_label": "cachedboard" }, { @@ -321249,7 +321979,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_components_explore_explorepage_cachekeyfor", - "community": 53, + "community": 1, "norm_label": "cachekeyfor()" }, { @@ -321259,7 +321989,7 @@ "source_location": "L41", "_origin": "ast", "id": "remix_app_components_explore_explorepage_cachedstrip", - "community": 53, + "community": 1, "norm_label": "cachedstrip" }, { @@ -321269,7 +321999,7 @@ "source_location": "L42", "_origin": "ast", "id": "remix_app_components_explore_explorepage_stripcachekeyfor", - "community": 53, + "community": 1, "norm_label": "stripcachekeyfor()" }, { @@ -321279,7 +322009,7 @@ "source_location": "L43", "_origin": "ast", "id": "remix_app_components_explore_explorepage_readcachedstrip", - "community": 53, + "community": 1, "norm_label": "readcachedstrip()" }, { @@ -321289,7 +322019,7 @@ "source_location": "L48", "_origin": "ast", "id": "remix_app_components_explore_explorepage_readcachedboard", - "community": 53, + "community": 1, "norm_label": "readcachedboard()" }, { @@ -321299,7 +322029,7 @@ "source_location": "L55", "_origin": "ast", "id": "remix_app_components_explore_explorepage_explorepage", - "community": 53, + "community": 1, "norm_label": "explorepage()" }, { @@ -321309,7 +322039,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_feed_advancedfilters", - "community": 63, + "community": 1, "norm_label": "advancedfilters.tsx" }, { @@ -321319,7 +322049,7 @@ "source_location": "L28", "_origin": "ast", "id": "remix_app_components_feed_advancedfilters_advancedfiltersstate", - "community": 63, + "community": 1, "norm_label": "advancedfiltersstate" }, { @@ -321329,7 +322059,7 @@ "source_location": "L41", "_origin": "ast", "id": "remix_app_components_feed_advancedfilters_empty_advanced_filters", - "community": 63, + "community": 1, "norm_label": "empty_advanced_filters" }, { @@ -321339,7 +322069,7 @@ "source_location": "L56", "_origin": "ast", "id": "remix_app_components_feed_advancedfilters_effectivesort", - "community": 63, + "community": 1, "norm_label": "effectivesort()" }, { @@ -321349,7 +322079,7 @@ "source_location": "L62", "_origin": "ast", "id": "remix_app_components_feed_advancedfilters_advancedfiltersactive", - "community": 63, + "community": 1, "norm_label": "advancedfiltersactive()" }, { @@ -321359,7 +322089,7 @@ "source_location": "L77", "_origin": "ast", "id": "remix_app_components_feed_advancedfilters_advancedsearchbody", - "community": 63, + "community": 1, "norm_label": "advancedsearchbody()" }, { @@ -321369,7 +322099,7 @@ "source_location": "L93", "_origin": "ast", "id": "remix_app_components_feed_advancedfilters_searchresponseposts", - "community": 53, + "community": 1, "norm_label": "searchresponseposts()" }, { @@ -321379,7 +322109,7 @@ "source_location": "L101", "_origin": "ast", "id": "remix_app_components_feed_advancedfilters_useadvancedfilters", - "community": 53, + "community": 1, "norm_label": "useadvancedfilters()" }, { @@ -321389,7 +322119,7 @@ "source_location": "L146", "_origin": "ast", "id": "remix_app_components_feed_advancedfilters_shortcutfield", - "community": 63, + "community": 1, "norm_label": "shortcutfield()" }, { @@ -321399,7 +322129,7 @@ "source_location": "L162", "_origin": "ast", "id": "remix_app_components_feed_advancedfilters_advancedfiltersprops", - "community": 63, + "community": 1, "norm_label": "advancedfiltersprops" }, { @@ -321409,7 +322139,7 @@ "source_location": "L174", "_origin": "ast", "id": "remix_app_components_feed_advancedfilters_advancedfilters", - "community": 63, + "community": 1, "norm_label": "advancedfilters()" }, { @@ -321419,7 +322149,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_feed_algorithmmenu", - "community": 53, + "community": 1, "norm_label": "algorithmmenu.tsx" }, { @@ -321429,7 +322159,7 @@ "source_location": "L41", "_origin": "ast", "id": "remix_app_components_feed_algorithmmenu_algorithmmenuprops", - "community": 53, + "community": 1, "norm_label": "algorithmmenuprops" }, { @@ -321439,7 +322169,7 @@ "source_location": "L49", "_origin": "ast", "id": "remix_app_components_feed_algorithmmenu_modalmode", - "community": 53, + "community": 1, "norm_label": "modalmode" }, { @@ -321449,7 +322179,7 @@ "source_location": "L53", "_origin": "ast", "id": "remix_app_components_feed_algorithmmenu_inlinemodal", - "community": 53, + "community": 1, "norm_label": "inlinemodal()" }, { @@ -321469,7 +322199,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_feed_customaudiencemodal", - "community": 1, + "community": 18, "norm_label": "customaudiencemodal.tsx" }, { @@ -321479,7 +322209,7 @@ "source_location": "L29", "_origin": "ast", "id": "remix_app_components_feed_customaudiencemodal_miniuser", - "community": 1, + "community": 18, "norm_label": "miniuser" }, { @@ -321489,7 +322219,7 @@ "source_location": "L30", "_origin": "ast", "id": "remix_app_components_feed_customaudiencemodal_minigroup", - "community": 1, + "community": 18, "norm_label": "minigroup" }, { @@ -321499,7 +322229,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_components_feed_customaudiencemodal_cap", - "community": 1, + "community": 18, "norm_label": "cap" }, { @@ -321509,7 +322239,7 @@ "source_location": "L32", "_origin": "ast", "id": "remix_app_components_feed_customaudiencemodal_baseline", - "community": 1, + "community": 18, "norm_label": "baseline" }, { @@ -321519,7 +322249,7 @@ "source_location": "L34", "_origin": "ast", "id": "remix_app_components_feed_customaudiencemodal_selected", - "community": 1, + "community": 18, "norm_label": "selected" }, { @@ -321529,7 +322259,7 @@ "source_location": "L36", "_origin": "ast", "id": "remix_app_components_feed_customaudiencemodal_cap_options", - "community": 1, + "community": 18, "norm_label": "cap_options" }, { @@ -321539,7 +322269,7 @@ "source_location": "L42", "_origin": "ast", "id": "remix_app_components_feed_customaudiencemodal_baselines", - "community": 1, + "community": 18, "norm_label": "baselines" }, { @@ -321549,7 +322279,7 @@ "source_location": "L51", "_origin": "ast", "id": "remix_app_components_feed_customaudiencemodal_capsuffix", - "community": 1, + "community": 18, "norm_label": "capsuffix()" }, { @@ -321559,7 +322289,7 @@ "source_location": "L55", "_origin": "ast", "id": "remix_app_components_feed_customaudiencemodal_parsecustomacl", - "community": 1, + "community": 18, "norm_label": "parsecustomacl()" }, { @@ -321569,7 +322299,7 @@ "source_location": "L93", "_origin": "ast", "id": "remix_app_components_feed_customaudiencemodal_composecustomacl", - "community": 1, + "community": 18, "norm_label": "composecustomacl()" }, { @@ -321579,7 +322309,7 @@ "source_location": "L105", "_origin": "ast", "id": "remix_app_components_feed_customaudiencemodal_customaudiencemodal", - "community": 1, + "community": 18, "norm_label": "customaudiencemodal()" }, { @@ -321589,7 +322319,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_feed_feed", - "community": 53, + "community": 1, "norm_label": "feed.tsx" }, { @@ -321599,7 +322329,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_components_feed_feed_empty_filters", - "community": 53, + "community": 1, "norm_label": "empty_filters" }, { @@ -321609,7 +322339,7 @@ "source_location": "L38", "_origin": "ast", "id": "remix_app_components_feed_feed_readcachedscope", - "community": 53, + "community": 1, "norm_label": "readcachedscope()" }, { @@ -321619,7 +322349,7 @@ "source_location": "L42", "_origin": "ast", "id": "remix_app_components_feed_feed_feedpage", - "community": 53, + "community": 1, "norm_label": "feedpage()" }, { @@ -321689,7 +322419,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_feed_feedshortcutshelp", - "community": 53, + "community": 1, "norm_label": "feedshortcutshelp.tsx" }, { @@ -321699,7 +322429,7 @@ "source_location": "L12", "_origin": "ast", "id": "remix_app_components_feed_feedshortcutshelp_key", - "community": 53, + "community": 1, "norm_label": "key()" }, { @@ -321709,7 +322439,7 @@ "source_location": "L33", "_origin": "ast", "id": "remix_app_components_feed_feedshortcutshelp_shortcutrow", - "community": 53, + "community": 1, "norm_label": "shortcutrow" }, { @@ -321719,7 +322449,7 @@ "source_location": "L35", "_origin": "ast", "id": "remix_app_components_feed_feedshortcutshelp_shortcuts", - "community": 53, + "community": 1, "norm_label": "shortcuts" }, { @@ -321729,7 +322459,7 @@ "source_location": "L44", "_origin": "ast", "id": "remix_app_components_feed_feedshortcutshelp_feedshortcutshelpprops", - "community": 53, + "community": 1, "norm_label": "feedshortcutshelpprops" }, { @@ -321739,7 +322469,7 @@ "source_location": "L49", "_origin": "ast", "id": "remix_app_components_feed_feedshortcutshelp_feedshortcutshelp", - "community": 53, + "community": 1, "norm_label": "feedshortcutshelp()" }, { @@ -321749,7 +322479,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_feed_memoriescard", - "community": 53, + "community": 1, "norm_label": "memoriescard.tsx" }, { @@ -321759,7 +322489,7 @@ "source_location": "L44", "_origin": "ast", "id": "remix_app_components_feed_memoriescard_cachekey", - "community": 53, + "community": 1, "norm_label": "cachekey()" }, { @@ -321769,7 +322499,7 @@ "source_location": "L51", "_origin": "ast", "id": "remix_app_components_feed_memoriescard_onthisdaycacheentry", - "community": 53, + "community": 1, "norm_label": "onthisdaycacheentry" }, { @@ -321779,7 +322509,7 @@ "source_location": "L58", "_origin": "ast", "id": "remix_app_components_feed_memoriescard_memorytile", - "community": 53, + "community": 1, "norm_label": "memorytile" }, { @@ -321789,7 +322519,7 @@ "source_location": "L68", "_origin": "ast", "id": "remix_app_components_feed_memoriescard_localday", - "community": 53, + "community": 1, "norm_label": "localday()" }, { @@ -321799,7 +322529,7 @@ "source_location": "L77", "_origin": "ast", "id": "remix_app_components_feed_memoriescard_onthisdayranges", - "community": 53, + "community": 1, "norm_label": "onthisdayranges()" }, { @@ -321809,7 +322539,7 @@ "source_location": "L100", "_origin": "ast", "id": "remix_app_components_feed_memoriescard_totiles", - "community": 53, + "community": 1, "norm_label": "totiles()" }, { @@ -321819,7 +322549,7 @@ "source_location": "L121", "_origin": "ast", "id": "remix_app_components_feed_memoriescard_cardstate", - "community": 53, + "community": 1, "norm_label": "cardstate" }, { @@ -321829,7 +322559,7 @@ "source_location": "L125", "_origin": "ast", "id": "remix_app_components_feed_memoriescard_seedstate", - "community": 53, + "community": 1, "norm_label": "seedstate()" }, { @@ -321849,7 +322579,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_feed_mentionautocomplete", - "community": 53, + "community": 1, "norm_label": "mentionautocomplete.tsx" }, { @@ -321859,7 +322589,7 @@ "source_location": "L35", "_origin": "ast", "id": "remix_app_components_feed_mentionautocomplete_mentioncandidate", - "community": 53, + "community": 1, "norm_label": "mentioncandidate" }, { @@ -321869,7 +322599,7 @@ "source_location": "L42", "_origin": "ast", "id": "remix_app_components_feed_mentionautocomplete_activemention", - "community": 53, + "community": 1, "norm_label": "activemention" }, { @@ -321879,7 +322609,7 @@ "source_location": "L57", "_origin": "ast", "id": "remix_app_components_feed_mentionautocomplete_readactivemention", - "community": 53, + "community": 1, "norm_label": "readactivemention()" }, { @@ -321889,7 +322619,7 @@ "source_location": "L72", "_origin": "ast", "id": "remix_app_components_feed_mentionautocomplete_mentionanchorrect", - "community": 53, + "community": 1, "norm_label": "mentionanchorrect()" }, { @@ -322139,7 +322869,7 @@ "source_location": "L518", "_origin": "ast", "id": "remix_app_components_feed_postcard_posttextbody", - "community": 221, + "community": 1, "norm_label": "posttextbody()" }, { @@ -322309,7 +323039,7 @@ "source_location": "L1386", "_origin": "ast", "id": "remix_app_components_feed_postcard_postcard", - "community": 53, + "community": 1, "norm_label": "postcard" }, { @@ -322439,7 +323169,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_feed_postlist", - "community": 53, + "community": 1, "norm_label": "postlist.tsx" }, { @@ -322449,7 +323179,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_components_feed_postlist_postlistprops", - "community": 53, + "community": 1, "norm_label": "postlistprops" }, { @@ -322459,7 +323189,7 @@ "source_location": "L27", "_origin": "ast", "id": "remix_app_components_feed_postlist_skeletoncard", - "community": 53, + "community": 1, "norm_label": "skeletoncard()" }, { @@ -322469,7 +323199,7 @@ "source_location": "L64", "_origin": "ast", "id": "remix_app_components_feed_postlist_postrow", - "community": 53, + "community": 1, "norm_label": "postrow" }, { @@ -322479,7 +323209,7 @@ "source_location": "L98", "_origin": "ast", "id": "remix_app_components_feed_postlist_postlist", - "community": 53, + "community": 1, "norm_label": "postlist()" }, { @@ -322559,7 +323289,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_feed_algorithmgrowth_test", - "community": 53, + "community": 1, "norm_label": "algorithmgrowth.test.ts" }, { @@ -322569,7 +323299,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_feed_algorithmgrowth", - "community": 53, + "community": 1, "norm_label": "algorithmgrowth.ts" }, { @@ -322579,7 +323309,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_components_feed_algorithmgrowth_growthstage", - "community": 53, + "community": 1, "norm_label": "growthstage" }, { @@ -322589,7 +323319,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_components_feed_algorithmgrowth_growth_stages", - "community": 53, + "community": 1, "norm_label": "growth_stages" }, { @@ -322599,7 +323329,7 @@ "source_location": "L58", "_origin": "ast", "id": "remix_app_components_feed_algorithmgrowth_clampsignals", - "community": 53, + "community": 1, "norm_label": "clampsignals()" }, { @@ -322609,7 +323339,7 @@ "source_location": "L63", "_origin": "ast", "id": "remix_app_components_feed_algorithmgrowth_growthstagefor", - "community": 53, + "community": 1, "norm_label": "growthstagefor()" }, { @@ -322619,7 +323349,7 @@ "source_location": "L73", "_origin": "ast", "id": "remix_app_components_feed_algorithmgrowth_nextgrowthstage", - "community": 53, + "community": 1, "norm_label": "nextgrowthstage()" }, { @@ -322629,7 +323359,7 @@ "source_location": "L84", "_origin": "ast", "id": "remix_app_components_feed_algorithmgrowth_crossedgrowthstage", - "community": 53, + "community": 1, "norm_label": "crossedgrowthstage()" }, { @@ -322779,7 +323509,7 @@ "source_location": "L12", "_origin": "ast", "id": "remix_app_components_feed_feedtypes_publicprofile", - "community": 1, + "community": 73, "norm_label": "publicprofile" }, { @@ -322799,7 +323529,7 @@ "source_location": "L33", "_origin": "ast", "id": "remix_app_components_feed_feedtypes_posttype", - "community": 53, + "community": 1, "norm_label": "posttype" }, { @@ -322849,7 +323579,7 @@ "source_location": "L82", "_origin": "ast", "id": "remix_app_components_feed_feedtypes_publicpost", - "community": 53, + "community": 1, "norm_label": "publicpost" }, { @@ -322899,7 +323629,7 @@ "source_location": "L159", "_origin": "ast", "id": "remix_app_components_feed_feedtypes_subspaceaccess", - "community": 1, + "community": 53, "norm_label": "subspaceaccess" }, { @@ -322909,7 +323639,7 @@ "source_location": "L160", "_origin": "ast", "id": "remix_app_components_feed_feedtypes_subspacerole", - "community": 1, + "community": 53, "norm_label": "subspacerole" }, { @@ -323059,7 +323789,7 @@ "source_location": "L286", "_origin": "ast", "id": "remix_app_components_feed_feedtypes_postchange", - "community": 53, + "community": 1, "norm_label": "postchange" }, { @@ -323079,7 +323809,7 @@ "source_location": "L296", "_origin": "ast", "id": "remix_app_components_feed_feedtypes_publicalgorithm", - "community": 53, + "community": 1, "norm_label": "publicalgorithm" }, { @@ -323109,7 +323839,7 @@ "source_location": "L322", "_origin": "ast", "id": "remix_app_components_feed_feedtypes_engagementevent", - "community": 53, + "community": 1, "norm_label": "engagementevent" }, { @@ -323129,7 +323859,7 @@ "source_location": "L330", "_origin": "ast", "id": "remix_app_components_feed_feedtypes_post_type_meta", - "community": 53, + "community": 1, "norm_label": "post_type_meta" }, { @@ -323179,7 +323909,7 @@ "source_location": "L390", "_origin": "ast", "id": "remix_app_components_feed_feedtypes_feedscopeof", - "community": 53, + "community": 1, "norm_label": "feedscopeof()" }, { @@ -323449,7 +324179,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_feed_reactionoverlay", - "community": 53, + "community": 1, "norm_label": "reactionoverlay.ts" }, { @@ -323459,7 +324189,7 @@ "source_location": "L27", "_origin": "ast", "id": "remix_app_components_feed_reactionoverlay_overlaytarget", - "community": 53, + "community": 1, "norm_label": "overlaytarget" }, { @@ -323469,7 +324199,7 @@ "source_location": "L34", "_origin": "ast", "id": "remix_app_components_feed_reactionoverlay_overlayentry", - "community": 53, + "community": 1, "norm_label": "overlayentry" }, { @@ -323479,7 +324209,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_components_feed_reactionoverlay_overlays", - "community": 53, + "community": 1, "norm_label": "overlays" }, { @@ -323499,7 +324229,7 @@ "source_location": "L57", "_origin": "ast", "id": "remix_app_components_feed_reactionoverlay_mergereactionoverlay", - "community": 53, + "community": 1, "norm_label": "mergereactionoverlay()" }, { @@ -323509,7 +324239,7 @@ "source_location": "L77", "_origin": "ast", "id": "remix_app_components_feed_reactionoverlay_mergereactionoverlays", - "community": 53, + "community": 1, "norm_label": "mergereactionoverlays()" }, { @@ -323639,7 +324369,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_feed_usefeedengagement", - "community": 53, + "community": 1, "norm_label": "usefeedengagement.ts" }, { @@ -323649,7 +324379,7 @@ "source_location": "L20", "_origin": "ast", "id": "remix_app_components_feed_usefeedengagement_usefeedengagementargs", - "community": 53, + "community": 1, "norm_label": "usefeedengagementargs" }, { @@ -323659,7 +324389,7 @@ "source_location": "L24", "_origin": "ast", "id": "remix_app_components_feed_usefeedengagement_usefeedengagementresult", - "community": 53, + "community": 1, "norm_label": "usefeedengagementresult" }, { @@ -323669,7 +324399,7 @@ "source_location": "L33", "_origin": "ast", "id": "remix_app_components_feed_usefeedengagement_usefeedengagement", - "community": 53, + "community": 1, "norm_label": "usefeedengagement()" }, { @@ -323679,7 +324409,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_feed_useviewtracking", - "community": 53, + "community": 1, "norm_label": "useviewtracking.ts" }, { @@ -323689,7 +324419,7 @@ "source_location": "L20", "_origin": "ast", "id": "remix_app_components_feed_useviewtracking_pendingview", - "community": 53, + "community": 1, "norm_label": "pendingview" }, { @@ -323699,7 +324429,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_components_feed_useviewtracking_useviewtrackingresult", - "community": 53, + "community": 1, "norm_label": "useviewtrackingresult" }, { @@ -323709,7 +324439,7 @@ "source_location": "L26", "_origin": "ast", "id": "remix_app_components_feed_useviewtracking_useviewtracking", - "community": 53, + "community": 1, "norm_label": "useviewtracking()" }, { @@ -323719,7 +324449,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_icon_icon", - "community": 323, + "community": 5, "norm_label": "icon.tsx" }, { @@ -323729,7 +324459,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_components_icon_icon_icon", - "community": 323, + "community": 5, "norm_label": "icon()" }, { @@ -323739,7 +324469,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_kinds_chakrathingrenderer", - "community": 7, + "community": 330, "norm_label": "chakrathingrenderer.tsx" }, { @@ -323749,7 +324479,7 @@ "source_location": "L72", "_origin": "ast", "id": "remix_app_components_kinds_chakrathingrenderer_allowed_components", - "community": 7, + "community": 330, "norm_label": "allowed_components" }, { @@ -323759,7 +324489,7 @@ "source_location": "L132", "_origin": "ast", "id": "remix_app_components_kinds_chakrathingrenderer_childless_components", - "community": 7, + "community": 330, "norm_label": "childless_components" }, { @@ -323769,7 +324499,7 @@ "source_location": "L135", "_origin": "ast", "id": "remix_app_components_kinds_chakrathingrenderer_blocked_props", - "community": 7, + "community": 330, "norm_label": "blocked_props" }, { @@ -323779,7 +324509,7 @@ "source_location": "L137", "_origin": "ast", "id": "remix_app_components_kinds_chakrathingrenderer_url_props", - "community": 7, + "community": 330, "norm_label": "url_props" }, { @@ -323789,7 +324519,7 @@ "source_location": "L148", "_origin": "ast", "id": "remix_app_components_kinds_chakrathingrenderer_position_props", - "community": 7, + "community": 330, "norm_label": "position_props" }, { @@ -323799,7 +324529,7 @@ "source_location": "L149", "_origin": "ast", "id": "remix_app_components_kinds_chakrathingrenderer_out_of_flow_positions", - "community": 7, + "community": 330, "norm_label": "out_of_flow_positions" }, { @@ -323809,7 +324539,7 @@ "source_location": "L153", "_origin": "ast", "id": "remix_app_components_kinds_chakrathingrenderer_scrubpositionvalue", - "community": 7, + "community": 330, "norm_label": "scrubpositionvalue()" }, { @@ -323819,7 +324549,7 @@ "source_location": "L170", "_origin": "ast", "id": "remix_app_components_kinds_chakrathingrenderer_sanitizevalue", - "community": 7, + "community": 330, "norm_label": "sanitizevalue()" }, { @@ -323829,7 +324559,7 @@ "source_location": "L194", "_origin": "ast", "id": "remix_app_components_kinds_chakrathingrenderer_sanitizeprops", - "community": 7, + "community": 330, "norm_label": "sanitizeprops()" }, { @@ -323839,7 +324569,7 @@ "source_location": "L217", "_origin": "ast", "id": "remix_app_components_kinds_chakrathingrenderer_chakrathingnode", - "community": 7, + "community": 330, "norm_label": "chakrathingnode" }, { @@ -323849,7 +324579,7 @@ "source_location": "L228", "_origin": "ast", "id": "remix_app_components_kinds_chakrathingrenderer_ischakrathingnode", - "community": 7, + "community": 330, "norm_label": "ischakrathingnode()" }, { @@ -323859,7 +324589,7 @@ "source_location": "L234", "_origin": "ast", "id": "remix_app_components_kinds_chakrathingrenderer_renderstate", - "community": 7, + "community": 330, "norm_label": "renderstate" }, { @@ -323869,7 +324599,7 @@ "source_location": "L236", "_origin": "ast", "id": "remix_app_components_kinds_chakrathingrenderer_rendernode", - "community": 7, + "community": 330, "norm_label": "rendernode()" }, { @@ -323879,7 +324609,7 @@ "source_location": "L272", "_origin": "ast", "id": "remix_app_components_kinds_chakrathingrenderer_renderchildren", - "community": 7, + "community": 330, "norm_label": "renderchildren()" }, { @@ -323889,7 +324619,7 @@ "source_location": "L282", "_origin": "ast", "id": "remix_app_components_kinds_chakrathingrenderer_chakrathingrenderer", - "community": 7, + "community": 330, "norm_label": "chakrathingrenderer()" }, { @@ -323899,7 +324629,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_kinds_htmlthingrenderer_test", - "community": 7, + "community": 330, "norm_label": "htmlthingrenderer.test.ts" }, { @@ -323909,7 +324639,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_kinds_htmlthingrenderer", - "community": 7, + "community": 330, "norm_label": "htmlthingrenderer.tsx" }, { @@ -323919,7 +324649,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_components_kinds_htmlthingrenderer_allowed_tags", - "community": 7, + "community": 330, "norm_label": "allowed_tags" }, { @@ -323929,7 +324659,7 @@ "source_location": "L92", "_origin": "ast", "id": "remix_app_components_kinds_htmlthingrenderer_allowed_props", - "community": 7, + "community": 330, "norm_label": "allowed_props" }, { @@ -323939,7 +324669,7 @@ "source_location": "L187", "_origin": "ast", "id": "remix_app_components_kinds_htmlthingrenderer_void_tags", - "community": 7, + "community": 330, "norm_label": "void_tags" }, { @@ -323949,7 +324679,7 @@ "source_location": "L192", "_origin": "ast", "id": "remix_app_components_kinds_htmlthingrenderer_sanitizestyle", - "community": 7, + "community": 330, "norm_label": "sanitizestyle()" }, { @@ -323959,7 +324689,7 @@ "source_location": "L205", "_origin": "ast", "id": "remix_app_components_kinds_htmlthingrenderer_sanitizeprops", - "community": 7, + "community": 330, "norm_label": "sanitizeprops()" }, { @@ -323969,7 +324699,7 @@ "source_location": "L244", "_origin": "ast", "id": "remix_app_components_kinds_htmlthingrenderer_field_tags", - "community": 7, + "community": 330, "norm_label": "field_tags" }, { @@ -323979,7 +324709,7 @@ "source_location": "L246", "_origin": "ast", "id": "remix_app_components_kinds_htmlthingrenderer_fieldprops", - "community": 7, + "community": 330, "norm_label": "fieldprops()" }, { @@ -323989,7 +324719,7 @@ "source_location": "L260", "_origin": "ast", "id": "remix_app_components_kinds_htmlthingrenderer_htmlthingnode", - "community": 7, + "community": 330, "norm_label": "htmlthingnode" }, { @@ -323999,7 +324729,7 @@ "source_location": "L269", "_origin": "ast", "id": "remix_app_components_kinds_htmlthingrenderer_renderstate", - "community": 7, + "community": 330, "norm_label": "renderstate" }, { @@ -324009,7 +324739,7 @@ "source_location": "L271", "_origin": "ast", "id": "remix_app_components_kinds_htmlthingrenderer_rendernode", - "community": 7, + "community": 330, "norm_label": "rendernode()" }, { @@ -324019,7 +324749,7 @@ "source_location": "L298", "_origin": "ast", "id": "remix_app_components_kinds_htmlthingrenderer_renderchildren", - "community": 7, + "community": 330, "norm_label": "renderchildren()" }, { @@ -324029,7 +324759,7 @@ "source_location": "L304", "_origin": "ast", "id": "remix_app_components_kinds_htmlthingrenderer_htmlthingrenderer", - "community": 7, + "community": 330, "norm_label": "htmlthingrenderer()" }, { @@ -324039,7 +324769,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_kinds_index", - "community": 66, + "community": 138, "norm_label": "index.ts" }, { @@ -324129,7 +324859,7 @@ "source_location": "L111", "_origin": "ast", "id": "remix_app_components_kinds_kindprimitives_coverarea", - "community": 66, + "community": 113, "norm_label": "coverarea()" }, { @@ -324239,7 +324969,7 @@ "source_location": "L302", "_origin": "ast", "id": "remix_app_components_kinds_kindprimitives_maybetimeago", - "community": 113, + "community": 66, "norm_label": "maybetimeago()" }, { @@ -324249,7 +324979,7 @@ "source_location": "L309", "_origin": "ast", "id": "remix_app_components_kinds_kindprimitives_formatprice", - "community": 66, + "community": 138, "norm_label": "formatprice()" }, { @@ -324269,7 +324999,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_kinds_kindregistry", - "community": 66, + "community": 138, "norm_label": "kindregistry.tsx" }, { @@ -324279,7 +325009,7 @@ "source_location": "L26", "_origin": "ast", "id": "remix_app_components_kinds_kindregistry_pollrenderpollcontext", - "community": 66, + "community": 138, "norm_label": "pollrenderpollcontext" }, { @@ -324289,7 +325019,7 @@ "source_location": "L41", "_origin": "ast", "id": "remix_app_components_kinds_kindregistry_kindrendercontext", - "community": 66, + "community": 138, "norm_label": "kindrendercontext" }, { @@ -324299,7 +325029,7 @@ "source_location": "L55", "_origin": "ast", "id": "remix_app_components_kinds_kindregistry_kindrenderer", - "community": 66, + "community": 138, "norm_label": "kindrenderer" }, { @@ -324309,7 +325039,7 @@ "source_location": "L70", "_origin": "ast", "id": "remix_app_components_kinds_kindregistry_registry", - "community": 66, + "community": 138, "norm_label": "registry" }, { @@ -324319,7 +325049,7 @@ "source_location": "L87", "_origin": "ast", "id": "remix_app_components_kinds_kindregistry_ensurebuiltinkinds", - "community": 66, + "community": 138, "norm_label": "ensurebuiltinkinds()" }, { @@ -324329,7 +325059,7 @@ "source_location": "L100", "_origin": "ast", "id": "remix_app_components_kinds_kindregistry_registerkindrenderer", - "community": 66, + "community": 138, "norm_label": "registerkindrenderer()" }, { @@ -324339,7 +325069,7 @@ "source_location": "L112", "_origin": "ast", "id": "remix_app_components_kinds_kindregistry_getkindrenderers", - "community": 66, + "community": 138, "norm_label": "getkindrenderers()" }, { @@ -324349,7 +325079,7 @@ "source_location": "L117", "_origin": "ast", "id": "remix_app_components_kinds_kindregistry_getkindrenderer", - "community": 66, + "community": 138, "norm_label": "getkindrenderer()" }, { @@ -324359,7 +325089,7 @@ "source_location": "L136", "_origin": "ast", "id": "remix_app_components_kinds_kindregistry_untrusted_safe_kinds", - "community": 66, + "community": 138, "norm_label": "untrusted_safe_kinds" }, { @@ -324369,7 +325099,7 @@ "source_location": "L155", "_origin": "ast", "id": "remix_app_components_kinds_kindregistry_iskindsafeforuntrusted", - "community": 66, + "community": 138, "norm_label": "iskindsafeforuntrusted()" }, { @@ -324379,7 +325109,7 @@ "source_location": "L161", "_origin": "ast", "id": "remix_app_components_kinds_kindregistry_resolutioncandidates", - "community": 66, + "community": 138, "norm_label": "resolutioncandidates()" }, { @@ -324389,7 +325119,7 @@ "source_location": "L183", "_origin": "ast", "id": "remix_app_components_kinds_kindregistry_resolvekindrender", - "community": 66, + "community": 138, "norm_label": "resolvekindrender()" }, { @@ -324399,7 +325129,7 @@ "source_location": "L200", "_origin": "ast", "id": "remix_app_components_kinds_kindregistry_resolvekindrenderer", - "community": 66, + "community": 138, "norm_label": "resolvekindrenderer()" }, { @@ -324409,7 +325139,7 @@ "source_location": "L203", "_origin": "ast", "id": "remix_app_components_kinds_kindregistry_renderthingprops", - "community": 66, + "community": 138, "norm_label": "renderthingprops" }, { @@ -324419,7 +325149,7 @@ "source_location": "L212", "_origin": "ast", "id": "remix_app_components_kinds_kindregistry_renderthing", - "community": 66, + "community": 138, "norm_label": "renderthing()" }, { @@ -324429,7 +325159,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers", - "community": 113, + "community": 330, "norm_label": "kindrenderers.tsx" }, { @@ -324439,7 +325169,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_postvalue", - "community": 113, + "community": 330, "norm_label": "postvalue" }, { @@ -324449,7 +325179,7 @@ "source_location": "L33", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_postrenderer", - "community": 113, + "community": 66, "norm_label": "postrenderer()" }, { @@ -324459,7 +325189,7 @@ "source_location": "L81", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_videovalue", - "community": 113, + "community": 330, "norm_label": "videovalue" }, { @@ -324479,7 +325209,7 @@ "source_location": "L171", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_listingvalue", - "community": 113, + "community": 330, "norm_label": "listingvalue" }, { @@ -324499,7 +325229,7 @@ "source_location": "L239", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_dashboardmetric", - "community": 113, + "community": 330, "norm_label": "dashboardmetric" }, { @@ -324509,7 +325239,7 @@ "source_location": "L246", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_dashboardvalue", - "community": 113, + "community": 330, "norm_label": "dashboardvalue" }, { @@ -324519,7 +325249,7 @@ "source_location": "L251", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_dashboardrenderer", - "community": 113, + "community": 330, "norm_label": "dashboardrenderer()" }, { @@ -324529,7 +325259,7 @@ "source_location": "L293", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_placevalue", - "community": 113, + "community": 330, "norm_label": "placevalue" }, { @@ -324539,7 +325269,7 @@ "source_location": "L301", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_placerenderer", - "community": 113, + "community": 330, "norm_label": "placerenderer()" }, { @@ -324549,7 +325279,7 @@ "source_location": "L370", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_newsclaim", - "community": 113, + "community": 330, "norm_label": "newsclaim" }, { @@ -324559,7 +325289,7 @@ "source_location": "L371", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_newsperspective", - "community": 113, + "community": 330, "norm_label": "newsperspective" }, { @@ -324569,7 +325299,7 @@ "source_location": "L373", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_newsvalue", - "community": 113, + "community": 330, "norm_label": "newsvalue" }, { @@ -324579,7 +325309,7 @@ "source_location": "L383", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_verdicttone", - "community": 113, + "community": 330, "norm_label": "verdicttone()" }, { @@ -324589,7 +325319,7 @@ "source_location": "L390", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_newsanalysisrenderer", - "community": 113, + "community": 330, "norm_label": "newsanalysisrenderer()" }, { @@ -324599,7 +325329,7 @@ "source_location": "L476", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_comparisonvalue", - "community": 113, + "community": 330, "norm_label": "comparisonvalue" }, { @@ -324609,7 +325339,7 @@ "source_location": "L482", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_comparisonrenderer", - "community": 113, + "community": 330, "norm_label": "comparisonrenderer()" }, { @@ -324619,7 +325349,7 @@ "source_location": "L566", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_chartvalue", - "community": 113, + "community": 330, "norm_label": "chartvalue" }, { @@ -324629,7 +325359,7 @@ "source_location": "L574", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_chartrenderer", - "community": 113, + "community": 330, "norm_label": "chartrenderer()" }, { @@ -324639,7 +325369,7 @@ "source_location": "L630", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_profilevalue", - "community": 113, + "community": 330, "norm_label": "profilevalue" }, { @@ -324659,7 +325389,7 @@ "source_location": "L688", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_recipevalue", - "community": 113, + "community": 330, "norm_label": "recipevalue" }, { @@ -324669,7 +325399,7 @@ "source_location": "L696", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_reciperenderer", - "community": 113, + "community": 330, "norm_label": "reciperenderer()" }, { @@ -324679,7 +325409,7 @@ "source_location": "L742", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_elementrenderer", - "community": 113, + "community": 330, "norm_label": "elementrenderer()" }, { @@ -324689,7 +325419,7 @@ "source_location": "L750", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_chakrakindrenderer", - "community": 113, + "community": 330, "norm_label": "chakrakindrenderer()" }, { @@ -324699,7 +325429,7 @@ "source_location": "L758", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_componentkindvalue", - "community": 113, + "community": 330, "norm_label": "componentkindvalue" }, { @@ -324709,7 +325439,7 @@ "source_location": "L760", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_componentkindrenderer", - "community": 7, + "community": 330, "norm_label": "componentkindrenderer()" }, { @@ -324719,7 +325449,7 @@ "source_location": "L793", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_webpagekindvalue", - "community": 113, + "community": 330, "norm_label": "webpagekindvalue" }, { @@ -324729,7 +325459,7 @@ "source_location": "L800", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_webpage_type_emoji", - "community": 113, + "community": 330, "norm_label": "webpage_type_emoji" }, { @@ -324739,7 +325469,7 @@ "source_location": "L809", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_webpagekindrenderer", - "community": 113, + "community": 330, "norm_label": "webpagekindrenderer()" }, { @@ -324749,7 +325479,7 @@ "source_location": "L834", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_actionkindvalue", - "community": 113, + "community": 330, "norm_label": "actionkindvalue" }, { @@ -324759,7 +325489,7 @@ "source_location": "L846", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_action_op_dots", - "community": 113, + "community": 330, "norm_label": "action_op_dots" }, { @@ -324769,7 +325499,7 @@ "source_location": "L855", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_actionkindrenderer", - "community": 113, + "community": 330, "norm_label": "actionkindrenderer()" }, { @@ -324779,7 +325509,7 @@ "source_location": "L897", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderers_registercorekinds", - "community": 113, + "community": 330, "norm_label": "registercorekinds()" }, { @@ -324789,7 +325519,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_kinds_kindrendererscommerce", - "community": 66, + "community": 138, "norm_label": "kindrendererscommerce.tsx" }, { @@ -324799,7 +325529,7 @@ "source_location": "L30", "_origin": "ast", "id": "remix_app_components_kinds_kindrendererscommerce_productvalue", - "community": 66, + "community": 138, "norm_label": "productvalue" }, { @@ -324809,7 +325539,7 @@ "source_location": "L42", "_origin": "ast", "id": "remix_app_components_kinds_kindrendererscommerce_productrenderer", - "community": 66, + "community": 138, "norm_label": "productrenderer()" }, { @@ -324819,7 +325549,7 @@ "source_location": "L81", "_origin": "ast", "id": "remix_app_components_kinds_kindrendererscommerce_ordervalue", - "community": 66, + "community": 138, "norm_label": "ordervalue" }, { @@ -324829,7 +325559,7 @@ "source_location": "L91", "_origin": "ast", "id": "remix_app_components_kinds_kindrendererscommerce_orderrenderer", - "community": 66, + "community": 138, "norm_label": "orderrenderer()" }, { @@ -324839,7 +325569,7 @@ "source_location": "L139", "_origin": "ast", "id": "remix_app_components_kinds_kindrendererscommerce_shipmentvalue", - "community": 66, + "community": 138, "norm_label": "shipmentvalue" }, { @@ -324849,7 +325579,7 @@ "source_location": "L141", "_origin": "ast", "id": "remix_app_components_kinds_kindrendererscommerce_shipmentrenderer", - "community": 66, + "community": 138, "norm_label": "shipmentrenderer()" }, { @@ -324859,7 +325589,7 @@ "source_location": "L159", "_origin": "ast", "id": "remix_app_components_kinds_kindrendererscommerce_couponvalue", - "community": 66, + "community": 138, "norm_label": "couponvalue" }, { @@ -324869,7 +325599,7 @@ "source_location": "L161", "_origin": "ast", "id": "remix_app_components_kinds_kindrendererscommerce_couponrenderer", - "community": 66, + "community": 138, "norm_label": "couponrenderer()" }, { @@ -324879,7 +325609,7 @@ "source_location": "L185", "_origin": "ast", "id": "remix_app_components_kinds_kindrendererscommerce_donationvalue", - "community": 66, + "community": 138, "norm_label": "donationvalue" }, { @@ -324889,7 +325619,7 @@ "source_location": "L187", "_origin": "ast", "id": "remix_app_components_kinds_kindrendererscommerce_donationrenderer", - "community": 66, + "community": 138, "norm_label": "donationrenderer()" }, { @@ -324899,7 +325629,7 @@ "source_location": "L214", "_origin": "ast", "id": "remix_app_components_kinds_kindrendererscommerce_subscriptionvalue", - "community": 66, + "community": 138, "norm_label": "subscriptionvalue" }, { @@ -324909,7 +325639,7 @@ "source_location": "L216", "_origin": "ast", "id": "remix_app_components_kinds_kindrendererscommerce_subscriptionrenderer", - "community": 66, + "community": 138, "norm_label": "subscriptionrenderer()" }, { @@ -324919,7 +325649,7 @@ "source_location": "L257", "_origin": "ast", "id": "remix_app_components_kinds_kindrendererscommerce_stockvalue", - "community": 66, + "community": 138, "norm_label": "stockvalue" }, { @@ -324929,7 +325659,7 @@ "source_location": "L259", "_origin": "ast", "id": "remix_app_components_kinds_kindrendererscommerce_stockrenderer", - "community": 66, + "community": 138, "norm_label": "stockrenderer()" }, { @@ -324939,7 +325669,7 @@ "source_location": "L291", "_origin": "ast", "id": "remix_app_components_kinds_kindrendererscommerce_budgetvalue", - "community": 66, + "community": 138, "norm_label": "budgetvalue" }, { @@ -324949,7 +325679,7 @@ "source_location": "L293", "_origin": "ast", "id": "remix_app_components_kinds_kindrendererscommerce_budgetrenderer", - "community": 66, + "community": 138, "norm_label": "budgetrenderer()" }, { @@ -324959,7 +325689,7 @@ "source_location": "L320", "_origin": "ast", "id": "remix_app_components_kinds_kindrendererscommerce_propertyvalue", - "community": 66, + "community": 138, "norm_label": "propertyvalue" }, { @@ -324969,7 +325699,7 @@ "source_location": "L322", "_origin": "ast", "id": "remix_app_components_kinds_kindrendererscommerce_propertyrenderer", - "community": 66, + "community": 138, "norm_label": "propertyrenderer()" }, { @@ -324979,7 +325709,7 @@ "source_location": "L349", "_origin": "ast", "id": "remix_app_components_kinds_kindrendererscommerce_menuvalue", - "community": 66, + "community": 138, "norm_label": "menuvalue" }, { @@ -324989,7 +325719,7 @@ "source_location": "L351", "_origin": "ast", "id": "remix_app_components_kinds_kindrendererscommerce_menurenderer", - "community": 66, + "community": 138, "norm_label": "menurenderer()" }, { @@ -324999,7 +325729,7 @@ "source_location": "L394", "_origin": "ast", "id": "remix_app_components_kinds_kindrendererscommerce_registercommercekinds", - "community": 66, + "community": 138, "norm_label": "registercommercekinds()" }, { @@ -325319,7 +326049,7 @@ "source_location": "L134", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderersmedia_podcastrenderer", - "community": 113, + "community": 66, "norm_label": "podcastrenderer()" }, { @@ -325339,7 +326069,7 @@ "source_location": "L160", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderersmedia_articlerenderer", - "community": 113, + "community": 66, "norm_label": "articlerenderer()" }, { @@ -325539,7 +326269,7 @@ "source_location": "L477", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderersmedia_inlinetext", - "community": 113, + "community": 171, "norm_label": "inlinetext()" }, { @@ -325609,7 +326339,7 @@ "source_location": "L586", "_origin": "ast", "id": "remix_app_components_kinds_kindrenderersmedia_richtextblocks", - "community": 487, + "community": 506, "norm_label": "richtextblocks()" }, { @@ -325979,7 +326709,7 @@ "source_location": "L184", "_origin": "ast", "id": "remix_app_components_kinds_kindrendererssocial_pollrenderer", - "community": 113, + "community": 66, "norm_label": "pollrenderer()" }, { @@ -326039,7 +326769,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_kinds_safeurl_test", - "community": 7, + "community": 330, "norm_label": "safeurl.test.ts" }, { @@ -326049,7 +326779,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_kinds_safeurl", - "community": 7, + "community": 330, "norm_label": "safeurl.ts" }, { @@ -326059,7 +326789,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_kinds_safeurl_safe_protocols", - "community": 7, + "community": 330, "norm_label": "safe_protocols" }, { @@ -326069,7 +326799,7 @@ "source_location": "L4", "_origin": "ast", "id": "remix_app_components_kinds_safeurl_issafeurl", - "community": 7, + "community": 330, "norm_label": "issafeurl()" }, { @@ -326099,7 +326829,7 @@ "source_location": "L46", "_origin": "ast", "id": "remix_app_components_kinds_safeurl_issafecsstext", - "community": 7, + "community": 330, "norm_label": "issafecsstext()" }, { @@ -326109,7 +326839,7 @@ "source_location": "L53", "_origin": "ast", "id": "remix_app_components_kinds_safeurl_iseventhandlerprop", - "community": 7, + "community": 330, "norm_label": "iseventhandlerprop()" }, { @@ -326119,7 +326849,7 @@ "source_location": "L60", "_origin": "ast", "id": "remix_app_components_kinds_safeurl_applynoopener", - "community": 7, + "community": 330, "norm_label": "applynoopener()" }, { @@ -326139,7 +326869,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_kinds_samplekindthings", - "community": 66, + "community": 138, "norm_label": "samplekindthings.ts" }, { @@ -326149,7 +326879,7 @@ "source_location": "L5", "_origin": "ast", "id": "remix_app_components_kinds_samplekindthings_samplekindthings", - "community": 66, + "community": 138, "norm_label": "samplekindthings" }, { @@ -326159,7 +326889,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_landing_brutalbutton", - "community": 591, + "community": 5, "norm_label": "brutalbutton.tsx" }, { @@ -326169,7 +326899,7 @@ "source_location": "L4", "_origin": "ast", "id": "remix_app_components_landing_brutalbutton_brutalvariant", - "community": 591, + "community": 5, "norm_label": "brutalvariant" }, { @@ -326179,7 +326909,7 @@ "source_location": "L10", "_origin": "ast", "id": "remix_app_components_landing_brutalbutton_brutalbutton", - "community": 591, + "community": 5, "norm_label": "brutalbutton()" }, { @@ -326229,7 +326959,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_landing_landing", - "community": 591, + "community": 5, "norm_label": "landing.tsx" }, { @@ -326239,7 +326969,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_components_landing_landing_landing", - "community": 591, + "community": 5, "norm_label": "landing()" }, { @@ -326249,7 +326979,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_landing_confetti", - "community": 591, + "community": 5, "norm_label": "confetti.ts" }, { @@ -326259,7 +326989,7 @@ "source_location": "L2", "_origin": "ast", "id": "remix_app_components_landing_confetti_burstconfetti", - "community": 591, + "community": 5, "norm_label": "burstconfetti()" }, { @@ -326269,7 +326999,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_components_landing_confetti_burstatevent", - "community": 591, + "community": 5, "norm_label": "burstatevent()" }, { @@ -326279,7 +327009,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_landing_landingsections", - "community": 591, + "community": 5, "norm_label": "landingsections.tsx" }, { @@ -326289,7 +327019,7 @@ "source_location": "L42", "_origin": "ast", "id": "remix_app_components_landing_landingsections_rainbowspan", - "community": 591, + "community": 5, "norm_label": "rainbowspan()" }, { @@ -326299,7 +327029,7 @@ "source_location": "L58", "_origin": "ast", "id": "remix_app_components_landing_landingsections_eyebrow", - "community": 591, + "community": 5, "norm_label": "eyebrow()" }, { @@ -326309,7 +327039,7 @@ "source_location": "L64", "_origin": "ast", "id": "remix_app_components_landing_landingsections_sectionh2", - "community": 591, + "community": 5, "norm_label": "sectionh2()" }, { @@ -326319,7 +327049,7 @@ "source_location": "L80", "_origin": "ast", "id": "remix_app_components_landing_landingsections_colordot", - "community": 591, + "community": 5, "norm_label": "colordot()" }, { @@ -326329,7 +327059,7 @@ "source_location": "L84", "_origin": "ast", "id": "remix_app_components_landing_landingsections_bulletrow", - "community": 591, + "community": 5, "norm_label": "bulletrow()" }, { @@ -326339,7 +327069,7 @@ "source_location": "L99", "_origin": "ast", "id": "remix_app_components_landing_landingsections_waitlistlisteners", - "community": 591, + "community": 5, "norm_label": "waitlistlisteners" }, { @@ -326349,7 +327079,7 @@ "source_location": "L100", "_origin": "ast", "id": "remix_app_components_landing_landingsections_notifywaitlist", - "community": 591, + "community": 5, "norm_label": "notifywaitlist()" }, { @@ -326359,7 +327089,7 @@ "source_location": "L102", "_origin": "ast", "id": "remix_app_components_landing_landingsections_usewaitlistjoined", - "community": 591, + "community": 5, "norm_label": "usewaitlistjoined()" }, { @@ -326369,7 +327099,7 @@ "source_location": "L137", "_origin": "ast", "id": "remix_app_components_landing_landingsections_nav_links", - "community": 591, + "community": 5, "norm_label": "nav_links" }, { @@ -326379,7 +327109,7 @@ "source_location": "L146", "_origin": "ast", "id": "remix_app_components_landing_landingsections_landingnav", - "community": 591, + "community": 5, "norm_label": "landingnav()" }, { @@ -326389,7 +327119,7 @@ "source_location": "L201", "_origin": "ast", "id": "remix_app_components_landing_landingsections_platform_chips", - "community": 591, + "community": 5, "norm_label": "platform_chips" }, { @@ -326399,7 +327129,7 @@ "source_location": "L203", "_origin": "ast", "id": "remix_app_components_landing_landingsections_hero", - "community": 591, + "community": 5, "norm_label": "hero()" }, { @@ -326409,7 +327139,7 @@ "source_location": "L333", "_origin": "ast", "id": "remix_app_components_landing_landingsections_parsesmartvalue", - "community": 591, + "community": 5, "norm_label": "parsesmartvalue()" }, { @@ -326419,7 +327149,7 @@ "source_location": "L341", "_origin": "ast", "id": "remix_app_components_landing_landingsections_demosection", - "community": 591, + "community": 5, "norm_label": "demosection()" }, { @@ -326429,7 +327159,7 @@ "source_location": "L427", "_origin": "ast", "id": "remix_app_components_landing_landingsections_use_cases", - "community": 591, + "community": 5, "norm_label": "use_cases" }, { @@ -326439,7 +327169,7 @@ "source_location": "L445", "_origin": "ast", "id": "remix_app_components_landing_landingsections_usecasessection", - "community": 591, + "community": 5, "norm_label": "usecasessection()" }, { @@ -326449,7 +327179,7 @@ "source_location": "L491", "_origin": "ast", "id": "remix_app_components_landing_landingsections_ecosystem", - "community": 591, + "community": 5, "norm_label": "ecosystem" }, { @@ -326459,7 +327189,7 @@ "source_location": "L499", "_origin": "ast", "id": "remix_app_components_landing_landingsections_ecosystemsection", - "community": 591, + "community": 5, "norm_label": "ecosystemsection()" }, { @@ -326469,7 +327199,7 @@ "source_location": "L558", "_origin": "ast", "id": "remix_app_components_landing_landingsections_codeline", - "community": 591, + "community": 5, "norm_label": "codeline()" }, { @@ -326479,7 +327209,7 @@ "source_location": "L564", "_origin": "ast", "id": "remix_app_components_landing_landingsections_developerssection", - "community": 591, + "community": 5, "norm_label": "developerssection()" }, { @@ -326489,7 +327219,7 @@ "source_location": "L791", "_origin": "ast", "id": "remix_app_components_landing_landingsections_tiers", - "community": 591, + "community": 5, "norm_label": "tiers" }, { @@ -326499,7 +327229,7 @@ "source_location": "L797", "_origin": "ast", "id": "remix_app_components_landing_landingsections_backsection", - "community": 591, + "community": 5, "norm_label": "backsection()" }, { @@ -326509,7 +327239,7 @@ "source_location": "L896", "_origin": "ast", "id": "remix_app_components_landing_landingsections_faqs", - "community": 591, + "community": 5, "norm_label": "faqs" }, { @@ -326519,7 +327249,7 @@ "source_location": "L919", "_origin": "ast", "id": "remix_app_components_landing_landingsections_faqsection", - "community": 591, + "community": 5, "norm_label": "faqsection()" }, { @@ -326529,7 +327259,7 @@ "source_location": "L961", "_origin": "ast", "id": "remix_app_components_landing_landingsections_landingfooter", - "community": 591, + "community": 5, "norm_label": "landingfooter()" }, { @@ -326539,7 +327269,7 @@ "source_location": "L1004", "_origin": "ast", "id": "remix_app_components_landing_landingsections_landingshell", - "community": 591, + "community": 5, "norm_label": "landingshell()" }, { @@ -326549,7 +327279,7 @@ "source_location": "L1023", "_origin": "ast", "id": "remix_app_components_landing_landingsections_homeherosection", - "community": 591, + "community": 5, "norm_label": "homeherosection()" }, { @@ -326559,7 +327289,7 @@ "source_location": "L1039", "_origin": "ast", "id": "remix_app_components_landing_landingsections_landing_sections", - "community": 591, + "community": 5, "norm_label": "landing_sections" }, { @@ -326609,7 +327339,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_layout_pageshell", - "community": 7, + "community": 492, "norm_label": "pageshell.tsx" }, { @@ -326619,7 +327349,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_components_layout_pageshell_pageshellwidth", - "community": 7, + "community": 492, "norm_label": "pageshellwidth" }, { @@ -326629,7 +327359,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_components_layout_pageshell_pageshell", - "community": 7, + "community": 492, "norm_label": "pageshell()" }, { @@ -326639,7 +327369,7 @@ "source_location": "L63", "_origin": "ast", "id": "remix_app_components_layout_pageshell_pageheader", - "community": 7, + "community": 492, "norm_label": "pageheader()" }, { @@ -326649,7 +327379,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_layout_topspacing", - "community": 652, + "community": 323, "norm_label": "topspacing.tsx" }, { @@ -326659,7 +327389,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_components_layout_topspacing_topspacing", - "community": 652, + "community": 323, "norm_label": "topspacing()" }, { @@ -326669,7 +327399,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_login_login", - "community": 53, + "community": 58, "norm_label": "login.tsx" }, { @@ -326679,7 +327409,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_components_login_login_inputsx", - "community": 53, + "community": 58, "norm_label": "inputsx" }, { @@ -326689,7 +327419,7 @@ "source_location": "L39", "_origin": "ast", "id": "remix_app_components_login_login_login", - "community": 53, + "community": 58, "norm_label": "login()" }, { @@ -326699,7 +327429,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_login_register", - "community": 53, + "community": 323, "norm_label": "register.tsx" }, { @@ -326709,7 +327439,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_components_login_register_inputsx", - "community": 53, + "community": 323, "norm_label": "inputsx" }, { @@ -326719,7 +327449,7 @@ "source_location": "L34", "_origin": "ast", "id": "remix_app_components_login_register_register", - "community": 53, + "community": 323, "norm_label": "register()" }, { @@ -326729,7 +327459,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_lopuactivitybadge", - "community": 701, + "community": 70, "norm_label": "lopuactivitybadge.tsx" }, { @@ -326739,7 +327469,7 @@ "source_location": "L20", "_origin": "ast", "id": "remix_app_components_lopu_lopuactivitybadge_pulse", - "community": 701, + "community": 70, "norm_label": "pulse" }, { @@ -326749,7 +327479,7 @@ "source_location": "L26", "_origin": "ast", "id": "remix_app_components_lopu_lopuactivitybadge_readstreaming", - "community": 701, + "community": 70, "norm_label": "readstreaming()" }, { @@ -326759,7 +327489,7 @@ "source_location": "L27", "_origin": "ast", "id": "remix_app_components_lopu_lopuactivitybadge_readserverstreaming", - "community": 701, + "community": 70, "norm_label": "readserverstreaming()" }, { @@ -326769,7 +327499,7 @@ "source_location": "L30", "_origin": "ast", "id": "remix_app_components_lopu_lopuactivitybadge_uselopustreamingactivity", - "community": 701, + "community": 70, "norm_label": "uselopustreamingactivity()" }, { @@ -326779,7 +327509,7 @@ "source_location": "L36", "_origin": "ast", "id": "remix_app_components_lopu_lopuactivitybadge_lopuringavatar", - "community": 366, + "community": 70, "norm_label": "lopuringavatar()" }, { @@ -326789,7 +327519,7 @@ "source_location": "L49", "_origin": "ast", "id": "remix_app_components_lopu_lopuactivitybadge_lopuactivitybadge", - "community": 701, + "community": 70, "norm_label": "lopuactivitybadge()" }, { @@ -326799,7 +327529,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_lopubalancechip", - "community": 366, + "community": 106, "norm_label": "lopubalancechip.tsx" }, { @@ -326809,7 +327539,7 @@ "source_location": "L20", "_origin": "ast", "id": "remix_app_components_lopu_lopubalancechip_lopubalancetone", - "community": 366, + "community": 106, "norm_label": "lopubalancetone" }, { @@ -326819,7 +327549,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_components_lopu_lopubalancechip_lopubalancechiplabel", - "community": 366, + "community": 106, "norm_label": "lopubalancechiplabel()" }, { @@ -326829,7 +327559,7 @@ "source_location": "L36", "_origin": "ast", "id": "remix_app_components_lopu_lopubalancechip_tone_colors", - "community": 366, + "community": 106, "norm_label": "tone_colors" }, { @@ -326839,7 +327569,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_components_lopu_lopubalancechip_lopubalancechipprops", - "community": 366, + "community": 106, "norm_label": "lopubalancechipprops" }, { @@ -326849,7 +327579,7 @@ "source_location": "L49", "_origin": "ast", "id": "remix_app_components_lopu_lopubalancechip_lopubalancechip", - "community": 366, + "community": 106, "norm_label": "lopubalancechip()" }, { @@ -326859,7 +327589,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatview", - "community": 366, + "community": 106, "norm_label": "lopuchatview.tsx" }, { @@ -326869,7 +327599,7 @@ "source_location": "L39", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatview_lopu_suggestions", - "community": 366, + "community": 106, "norm_label": "lopu_suggestions" }, { @@ -326879,7 +327609,7 @@ "source_location": "L45", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatview_lopuavatar", - "community": 366, + "community": 70, "norm_label": "lopuavatar()" }, { @@ -326889,7 +327619,7 @@ "source_location": "L55", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatview_lopuchatheader", - "community": 366, + "community": 106, "norm_label": "lopuchatheader()" }, { @@ -326899,7 +327629,7 @@ "source_location": "L75", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatview_separator", - "community": 366, + "community": 106, "norm_label": "separator()" }, { @@ -326909,7 +327639,7 @@ "source_location": "L84", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatview_lopuassistantrow", - "community": 523, + "community": 70, "norm_label": "lopuassistantrow()" }, { @@ -326919,7 +327649,7 @@ "source_location": "L137", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatview_lopuuserrow", - "community": 523, + "community": 70, "norm_label": "lopuuserrow()" }, { @@ -326929,7 +327659,7 @@ "source_location": "L158", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatview_thinking", - "community": 366, + "community": 106, "norm_label": "thinking()" }, { @@ -326939,7 +327669,7 @@ "source_location": "L167", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatview_errorline", - "community": 366, + "community": 106, "norm_label": "errorline()" }, { @@ -326949,7 +327679,7 @@ "source_location": "L177", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatview_gatebubble", - "community": 366, + "community": 106, "norm_label": "gatebubble()" }, { @@ -326959,7 +327689,7 @@ "source_location": "L243", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatview_componentsfromturn", - "community": 366, + "community": 106, "norm_label": "componentsfromturn()" }, { @@ -326979,7 +327709,7 @@ "source_location": "L339", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatview_messagebubble", - "community": 366, + "community": 106, "norm_label": "messagebubble" }, { @@ -326989,7 +327719,7 @@ "source_location": "L389", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatview_suggestionchip", - "community": 366, + "community": 106, "norm_label": "suggestionchip()" }, { @@ -326999,7 +327729,7 @@ "source_location": "L395", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatview_emptystate", - "community": 366, + "community": 106, "norm_label": "emptystate()" }, { @@ -327009,7 +327739,7 @@ "source_location": "L409", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatview_signedoutstate", - "community": 366, + "community": 106, "norm_label": "signedoutstate()" }, { @@ -327019,7 +327749,7 @@ "source_location": "L435", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatview_relativetime", - "community": 366, + "community": 106, "norm_label": "relativetime()" }, { @@ -327029,7 +327759,7 @@ "source_location": "L451", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatview_lopuchatviewvariant", - "community": 366, + "community": 106, "norm_label": "lopuchatviewvariant" }, { @@ -327039,7 +327769,7 @@ "source_location": "L453", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatview_lopuchatviewprops", - "community": 366, + "community": 106, "norm_label": "lopuchatviewprops" }, { @@ -327049,7 +327779,7 @@ "source_location": "L481", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatview_lopuchatview", - "community": 53, + "community": 106, "norm_label": "lopuchatview()" }, { @@ -327059,7 +327789,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_lopucomposer", - "community": 84, + "community": 70, "norm_label": "lopucomposer.tsx" }, { @@ -327069,7 +327799,7 @@ "source_location": "L21", "_origin": "ast", "id": "remix_app_components_lopu_lopucomposer_lopucomposerpreferences", - "community": 84, + "community": 70, "norm_label": "lopucomposerpreferences" }, { @@ -327079,7 +327809,7 @@ "source_location": "L23", "_origin": "ast", "id": "remix_app_components_lopu_lopucomposer_lopucomposerprops", - "community": 84, + "community": 70, "norm_label": "lopucomposerprops" }, { @@ -327089,7 +327819,7 @@ "source_location": "L61", "_origin": "ast", "id": "remix_app_components_lopu_lopucomposer_actionbutton", - "community": 84, + "community": 70, "norm_label": "actionbutton()" }, { @@ -327099,7 +327829,7 @@ "source_location": "L89", "_origin": "ast", "id": "remix_app_components_lopu_lopucomposer_settingsrow", - "community": 84, + "community": 70, "norm_label": "settingsrow()" }, { @@ -327109,7 +327839,7 @@ "source_location": "L105", "_origin": "ast", "id": "remix_app_components_lopu_lopucomposer_iconbutton", - "community": 84, + "community": 70, "norm_label": "iconbutton()" }, { @@ -327119,7 +327849,7 @@ "source_location": "L131", "_origin": "ast", "id": "remix_app_components_lopu_lopucomposer_lopucomposer", - "community": 84, + "community": 70, "norm_label": "lopucomposer()" }, { @@ -327129,7 +327859,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_lopucreditspanel", - "community": 366, + "community": 106, "norm_label": "lopucreditspanel.tsx" }, { @@ -327139,7 +327869,7 @@ "source_location": "L25", "_origin": "ast", "id": "remix_app_components_lopu_lopucreditspanel_ledger_labels", - "community": 366, + "community": 106, "norm_label": "ledger_labels" }, { @@ -327149,7 +327879,7 @@ "source_location": "L35", "_origin": "ast", "id": "remix_app_components_lopu_lopucreditspanel_request_status_labels", - "community": 366, + "community": 106, "norm_label": "request_status_labels" }, { @@ -327159,7 +327889,7 @@ "source_location": "L37", "_origin": "ast", "id": "remix_app_components_lopu_lopucreditspanel_surface_labels", - "community": 366, + "community": 106, "norm_label": "surface_labels" }, { @@ -327169,7 +327899,7 @@ "source_location": "L39", "_origin": "ast", "id": "remix_app_components_lopu_lopucreditspanel_inputsx", - "community": 366, + "community": 106, "norm_label": "inputsx" }, { @@ -327179,7 +327909,7 @@ "source_location": "L50", "_origin": "ast", "id": "remix_app_components_lopu_lopucreditspanel_formatwhen", - "community": 366, + "community": 106, "norm_label": "formatwhen()" }, { @@ -327189,7 +327919,7 @@ "source_location": "L56", "_origin": "ast", "id": "remix_app_components_lopu_lopucreditspanel_formattokens", - "community": 366, + "community": 106, "norm_label": "formattokens()" }, { @@ -327199,7 +327929,7 @@ "source_location": "L59", "_origin": "ast", "id": "remix_app_components_lopu_lopucreditspanel_describelopuverification", - "community": 366, + "community": 106, "norm_label": "describelopuverification()" }, { @@ -327219,7 +327949,7 @@ "source_location": "L83", "_origin": "ast", "id": "remix_app_components_lopu_lopucreditspanel_historyrow", - "community": 366, + "community": 106, "norm_label": "historyrow()" }, { @@ -327229,7 +327959,7 @@ "source_location": "L146", "_origin": "ast", "id": "remix_app_components_lopu_lopucreditspanel_lopucreditspanel", - "community": 366, + "community": 106, "norm_label": "lopucreditspanel()" }, { @@ -327239,7 +327969,7 @@ "source_location": "L330", "_origin": "ast", "id": "remix_app_components_lopu_lopucreditspanel_lopucreditssummary", - "community": 366, + "community": 106, "norm_label": "lopucreditssummary()" }, { @@ -327249,7 +327979,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_lopuhost", - "community": 64, + "community": 70, "norm_label": "lopuhost.tsx" }, { @@ -327259,7 +327989,7 @@ "source_location": "L71", "_origin": "ast", "id": "remix_app_components_lopu_lopuhost_readviewport", - "community": 64, + "community": 70, "norm_label": "readviewport()" }, { @@ -327269,7 +327999,7 @@ "source_location": "L76", "_origin": "ast", "id": "remix_app_components_lopu_lopuhost_iscontroltarget", - "community": 64, + "community": 70, "norm_label": "iscontroltarget()" }, { @@ -327279,7 +328009,7 @@ "source_location": "L80", "_origin": "ast", "id": "remix_app_components_lopu_lopuhost_launcherpulse", - "community": 64, + "community": 70, "norm_label": "launcherpulse" }, { @@ -327289,7 +328019,7 @@ "source_location": "L88", "_origin": "ast", "id": "remix_app_components_lopu_lopuhost_lopuhostboundary", - "community": 64, + "community": 70, "norm_label": "lopuhostboundary" }, { @@ -327299,7 +328029,7 @@ "source_location": "L91", "_origin": "ast", "id": "remix_app_components_lopu_lopuhost_lopuhostboundary_getderivedstatefromerror", - "community": 64, + "community": 70, "norm_label": ".getderivedstatefromerror()" }, { @@ -327309,7 +328039,7 @@ "source_location": "L95", "_origin": "ast", "id": "remix_app_components_lopu_lopuhost_lopuhostboundary_componentdidcatch", - "community": 64, + "community": 70, "norm_label": ".componentdidcatch()" }, { @@ -327319,7 +328049,7 @@ "source_location": "L99", "_origin": "ast", "id": "remix_app_components_lopu_lopuhost_lopuhostboundary_render", - "community": 64, + "community": 70, "norm_label": ".render()" }, { @@ -327329,7 +328059,7 @@ "source_location": "L119", "_origin": "ast", "id": "remix_app_components_lopu_lopuhost_headerbutton", - "community": 64, + "community": 70, "norm_label": "headerbutton()" }, { @@ -327339,7 +328069,7 @@ "source_location": "L146", "_origin": "ast", "id": "remix_app_components_lopu_lopuhost_modelchip", - "community": 64, + "community": 70, "norm_label": "modelchip()" }, { @@ -327349,7 +328079,7 @@ "source_location": "L339", "_origin": "ast", "id": "remix_app_components_lopu_lopuhost_lopusettingsrows", - "community": 64, + "community": 70, "norm_label": "lopusettingsrows()" }, { @@ -327359,7 +328089,7 @@ "source_location": "L440", "_origin": "ast", "id": "remix_app_components_lopu_lopuhost_lopuhost", - "community": 64, + "community": 70, "norm_label": "lopuhost()" }, { @@ -327369,7 +328099,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_lopulivepreview", - "community": 7, + "community": 106, "norm_label": "lopulivepreview.tsx" }, { @@ -327379,7 +328109,7 @@ "source_location": "L30", "_origin": "ast", "id": "remix_app_components_lopu_lopulivepreview_useframethrottled", - "community": 7, + "community": 106, "norm_label": "useframethrottled()" }, { @@ -327439,7 +328169,7 @@ "source_location": "L69", "_origin": "ast", "id": "remix_app_components_lopu_lopulivepreview_isrecord", - "community": 7, + "community": 106, "norm_label": "isrecord()" }, { @@ -327449,7 +328179,7 @@ "source_location": "L71", "_origin": "ast", "id": "remix_app_components_lopu_lopulivepreview_componentscope", - "community": 7, + "community": 106, "norm_label": "componentscope()" }, { @@ -327459,7 +328189,7 @@ "source_location": "L76", "_origin": "ast", "id": "remix_app_components_lopu_lopulivepreview_componentpreview", - "community": 7, + "community": 330, "norm_label": "componentpreview()" }, { @@ -327469,7 +328199,7 @@ "source_location": "L90", "_origin": "ast", "id": "remix_app_components_lopu_lopulivepreview_plausibleblocks", - "community": 7, + "community": 106, "norm_label": "plausibleblocks()" }, { @@ -327479,7 +328209,7 @@ "source_location": "L93", "_origin": "ast", "id": "remix_app_components_lopu_lopulivepreview_blocksfromops", - "community": 7, + "community": 106, "norm_label": "blocksfromops()" }, { @@ -327489,7 +328219,7 @@ "source_location": "L105", "_origin": "ast", "id": "remix_app_components_lopu_lopulivepreview_streamingpill", - "community": 7, + "community": 106, "norm_label": "streamingpill()" }, { @@ -327499,7 +328229,7 @@ "source_location": "L123", "_origin": "ast", "id": "remix_app_components_lopu_lopulivepreview_lopulivepreviewprops", - "community": 7, + "community": 106, "norm_label": "lopulivepreviewprops" }, { @@ -327509,7 +328239,7 @@ "source_location": "L131", "_origin": "ast", "id": "remix_app_components_lopu_lopulivepreview_lopulivepreview", - "community": 7, + "community": 106, "norm_label": "lopulivepreview()" }, { @@ -327519,7 +328249,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_lopulockedstate", - "community": 366, + "community": 106, "norm_label": "lopulockedstate.tsx" }, { @@ -327529,7 +328259,7 @@ "source_location": "L25", "_origin": "ast", "id": "remix_app_components_lopu_lopulockedstate_lopulockedstateprops", - "community": 366, + "community": 106, "norm_label": "lopulockedstateprops" }, { @@ -327539,7 +328269,7 @@ "source_location": "L39", "_origin": "ast", "id": "remix_app_components_lopu_lopulockedstate_lopuactionlink", - "community": 366, + "community": 106, "norm_label": "lopuactionlink()" }, { @@ -327549,7 +328279,7 @@ "source_location": "L93", "_origin": "ast", "id": "remix_app_components_lopu_lopulockedstate_lopulockedstate", - "community": 366, + "community": 106, "norm_label": "lopulockedstate()" }, { @@ -327559,7 +328289,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_lopumarkdown", - "community": 366, + "community": 106, "norm_label": "lopumarkdown.tsx" }, { @@ -327569,7 +328299,7 @@ "source_location": "L20", "_origin": "ast", "id": "remix_app_components_lopu_lopumarkdown_writeclipboard", - "community": 366, + "community": 106, "norm_label": "writeclipboard()" }, { @@ -327579,7 +328309,7 @@ "source_location": "L45", "_origin": "ast", "id": "remix_app_components_lopu_lopumarkdown_copybutton", - "community": 366, + "community": 106, "norm_label": "copybutton()" }, { @@ -327589,7 +328319,7 @@ "source_location": "L92", "_origin": "ast", "id": "remix_app_components_lopu_lopumarkdown_inlinerun", - "community": 366, + "community": 106, "norm_label": "inlinerun()" }, { @@ -327599,7 +328329,7 @@ "source_location": "L152", "_origin": "ast", "id": "remix_app_components_lopu_lopumarkdown_streamingcaret", - "community": 366, + "community": 106, "norm_label": "streamingcaret()" }, { @@ -327609,7 +328339,7 @@ "source_location": "L165", "_origin": "ast", "id": "remix_app_components_lopu_lopumarkdown_codeblock", - "community": 366, + "community": 106, "norm_label": "codeblock()" }, { @@ -327619,7 +328349,7 @@ "source_location": "L201", "_origin": "ast", "id": "remix_app_components_lopu_lopumarkdown_blockview", - "community": 366, + "community": 106, "norm_label": "blockview()" }, { @@ -327629,7 +328359,7 @@ "source_location": "L238", "_origin": "ast", "id": "remix_app_components_lopu_lopumarkdown_lopumarkdown", - "community": 366, + "community": 106, "norm_label": "lopumarkdown()" }, { @@ -327639,7 +328369,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_lopumodelpicker", - "community": 84, + "community": 70, "norm_label": "lopumodelpicker.tsx" }, { @@ -327649,7 +328379,7 @@ "source_location": "L42", "_origin": "ast", "id": "remix_app_components_lopu_lopumodelpicker_describemodelchoice", - "community": 84, + "community": 70, "norm_label": "describemodelchoice()" }, { @@ -327659,7 +328389,7 @@ "source_location": "L47", "_origin": "ast", "id": "remix_app_components_lopu_lopumodelpicker_effortfor", - "community": 84, + "community": 70, "norm_label": "effortfor()" }, { @@ -327669,7 +328399,7 @@ "source_location": "L56", "_origin": "ast", "id": "remix_app_components_lopu_lopumodelpicker_loputoggle", - "community": 84, + "community": 70, "norm_label": "loputoggle()" }, { @@ -327679,7 +328409,7 @@ "source_location": "L75", "_origin": "ast", "id": "remix_app_components_lopu_lopumodelpicker_lopusegmented", - "community": 84, + "community": 70, "norm_label": "lopusegmented()" }, { @@ -327689,7 +328419,7 @@ "source_location": "L121", "_origin": "ast", "id": "remix_app_components_lopu_lopumodelpicker_optionrow", - "community": 84, + "community": 70, "norm_label": "optionrow()" }, { @@ -327699,7 +328429,7 @@ "source_location": "L182", "_origin": "ast", "id": "remix_app_components_lopu_lopumodelpicker_lopumodelpickerprops", - "community": 84, + "community": 70, "norm_label": "lopumodelpickerprops" }, { @@ -327709,7 +328439,7 @@ "source_location": "L195", "_origin": "ast", "id": "remix_app_components_lopu_lopumodelpicker_lopumodelpicker", - "community": 84, + "community": 70, "norm_label": "lopumodelpicker()" }, { @@ -327719,7 +328449,7 @@ "source_location": "L329", "_origin": "ast", "id": "remix_app_components_lopu_lopumodelpicker_lopuproviderselectchange", - "community": 84, + "community": 70, "norm_label": "lopuproviderselectchange" }, { @@ -327729,7 +328459,7 @@ "source_location": "L331", "_origin": "ast", "id": "remix_app_components_lopu_lopumodelpicker_lopuproviderselectprops", - "community": 84, + "community": 70, "norm_label": "lopuproviderselectprops" }, { @@ -327739,7 +328469,7 @@ "source_location": "L349", "_origin": "ast", "id": "remix_app_components_lopu_lopumodelpicker_lopuproviderselect", - "community": 84, + "community": 70, "norm_label": "lopuproviderselect()" }, { @@ -327749,7 +328479,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_lopunavbutton_test", - "community": 64, + "community": 70, "norm_label": "lopunavbutton.test.ts" }, { @@ -327759,7 +328489,7 @@ "source_location": "L15", "_origin": "ast", "id": "remix_app_components_lopu_lopunavbutton_test_appdir", - "community": 64, + "community": 70, "norm_label": "appdir" }, { @@ -327769,7 +328499,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_components_lopu_lopunavbutton_test_read", - "community": 64, + "community": 70, "norm_label": "read()" }, { @@ -327779,7 +328509,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_lopunavbutton", - "community": 64, + "community": 70, "norm_label": "lopunavbutton.tsx" }, { @@ -327789,7 +328519,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_components_lopu_lopunavbutton_lopunavbutton", - "community": 64, + "community": 70, "norm_label": "lopunavbutton()" }, { @@ -327799,7 +328529,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_lopupage", - "community": 53, + "community": 70, "norm_label": "lopupage.tsx" }, { @@ -327809,7 +328539,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_components_lopu_lopupage_lopupagemode", - "community": 53, + "community": 70, "norm_label": "lopupagemode" }, { @@ -327819,7 +328549,7 @@ "source_location": "L35", "_origin": "ast", "id": "remix_app_components_lopu_lopupage_relativetime", - "community": 106, + "community": 70, "norm_label": "relativetime()" }, { @@ -327829,7 +328559,7 @@ "source_location": "L49", "_origin": "ast", "id": "remix_app_components_lopu_lopupage_readsidebaropen", - "community": 53, + "community": 70, "norm_label": "readsidebaropen()" }, { @@ -327839,7 +328569,7 @@ "source_location": "L54", "_origin": "ast", "id": "remix_app_components_lopu_lopupage_textaction", - "community": 53, + "community": 70, "norm_label": "textaction()" }, { @@ -327849,7 +328579,7 @@ "source_location": "L75", "_origin": "ast", "id": "remix_app_components_lopu_lopupage_conversationrow", - "community": 106, + "community": 70, "norm_label": "conversationrow()" }, { @@ -327859,7 +328589,7 @@ "source_location": "L210", "_origin": "ast", "id": "remix_app_components_lopu_lopupage_conversationlist", - "community": 53, + "community": 70, "norm_label": "conversationlist()" }, { @@ -327869,7 +328599,7 @@ "source_location": "L261", "_origin": "ast", "id": "remix_app_components_lopu_lopupage_modeswitch", - "community": 53, + "community": 70, "norm_label": "modeswitch()" }, { @@ -327879,7 +328609,7 @@ "source_location": "L297", "_origin": "ast", "id": "remix_app_components_lopu_lopupage_headericonbutton", - "community": 53, + "community": 70, "norm_label": "headericonbutton()" }, { @@ -327889,7 +328619,7 @@ "source_location": "L325", "_origin": "ast", "id": "remix_app_components_lopu_lopupage_quietstate", - "community": 53, + "community": 70, "norm_label": "quietstate()" }, { @@ -327899,7 +328629,7 @@ "source_location": "L366", "_origin": "ast", "id": "remix_app_components_lopu_lopupage_conversationssheet", - "community": 53, + "community": 70, "norm_label": "conversationssheet()" }, { @@ -327909,7 +328639,7 @@ "source_location": "L418", "_origin": "ast", "id": "remix_app_components_lopu_lopupage_lopupage", - "community": 53, + "community": 70, "norm_label": "lopupage()" }, { @@ -327919,7 +328649,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_lopupositionselect", - "community": 51, + "community": 323, "norm_label": "lopupositionselect.tsx" }, { @@ -327929,7 +328659,7 @@ "source_location": "L10", "_origin": "ast", "id": "remix_app_components_lopu_lopupositionselect_lopupositionselect", - "community": 51, + "community": 323, "norm_label": "lopupositionselect()" }, { @@ -328049,7 +328779,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicechat", - "community": 53, + "community": 70, "norm_label": "lopuvoicechat.tsx" }, { @@ -328059,7 +328789,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicechat_lopuvoicechat", - "community": 53, + "community": 70, "norm_label": "lopuvoicechat()" }, { @@ -328069,7 +328799,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicecontrols", - "community": 523, + "community": 70, "norm_label": "lopuvoicecontrols.tsx" }, { @@ -328079,7 +328809,7 @@ "source_location": "L48", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicecontrols_window", - "community": 523, + "community": 70, "norm_label": "window" }, { @@ -328089,7 +328819,7 @@ "source_location": "L54", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicecontrols_lopuvoicephase", - "community": 64, + "community": 70, "norm_label": "lopuvoicephase" }, { @@ -328099,7 +328829,7 @@ "source_location": "L56", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicecontrols_lopuvoiceitem", - "community": 523, + "community": 70, "norm_label": "lopuvoiceitem" }, { @@ -328109,7 +328839,7 @@ "source_location": "L68", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicecontrols_lopuvoiceevent", - "community": 523, + "community": 70, "norm_label": "lopuvoiceevent" }, { @@ -328119,7 +328849,7 @@ "source_location": "L75", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicecontrols_uselopuvoiceoptions", - "community": 523, + "community": 70, "norm_label": "uselopuvoiceoptions" }, { @@ -328129,7 +328859,7 @@ "source_location": "L91", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicecontrols_uselopuvoice", - "community": 53, + "community": 70, "norm_label": "uselopuvoice" }, { @@ -328139,7 +328869,7 @@ "source_location": "L119", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicecontrols_newid", - "community": 523, + "community": 70, "norm_label": "newid()" }, { @@ -328149,7 +328879,7 @@ "source_location": "L121", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicecontrols_speechlang", - "community": 523, + "community": 70, "norm_label": "speechlang()" }, { @@ -328159,7 +328889,7 @@ "source_location": "L123", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicecontrols_webrecognitionctor", - "community": 523, + "community": 70, "norm_label": "webrecognitionctor()" }, { @@ -328169,7 +328899,7 @@ "source_location": "L127", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicecontrols_speakable", - "community": 523, + "community": 70, "norm_label": "speakable()" }, { @@ -328179,7 +328909,7 @@ "source_location": "L630", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicecontrols_ring", - "community": 523, + "community": 70, "norm_label": "ring" }, { @@ -328189,7 +328919,7 @@ "source_location": "L636", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicecontrols_breathe", - "community": 523, + "community": 70, "norm_label": "breathe" }, { @@ -328199,7 +328929,7 @@ "source_location": "L642", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicecontrols_spin", - "community": 523, + "community": 70, "norm_label": "spin" }, { @@ -328209,7 +328939,7 @@ "source_location": "L646", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicecontrols_lopuvoicephaselabel", - "community": 523, + "community": 70, "norm_label": "lopuvoicephaselabel()" }, { @@ -328219,7 +328949,7 @@ "source_location": "L655", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicecontrols_lopumicbutton", - "community": 523, + "community": 70, "norm_label": "lopumicbutton()" }, { @@ -328229,7 +328959,7 @@ "source_location": "L728", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicecontrols_deckiconbutton", - "community": 523, + "community": 70, "norm_label": "deckiconbutton()" }, { @@ -328239,7 +328969,7 @@ "source_location": "L758", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicecontrols_popoverrow", - "community": 523, + "community": 70, "norm_label": "popoverrow()" }, { @@ -328249,7 +328979,7 @@ "source_location": "L774", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicecontrols_lopuvoiceprovidervalue", - "community": 523, + "community": 70, "norm_label": "lopuvoiceprovidervalue" }, { @@ -328259,7 +328989,7 @@ "source_location": "L781", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicecontrols_lopuvoicesettingspopover", - "community": 84, + "community": 70, "norm_label": "lopuvoicesettingspopover()" }, { @@ -328269,7 +328999,7 @@ "source_location": "L901", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicecontrols_lopuvoicetranscript", - "community": 523, + "community": 70, "norm_label": "lopuvoicetranscript()" }, { @@ -328279,7 +329009,7 @@ "source_location": "L962", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicecontrols_lopuvoicedeck", - "community": 523, + "community": 70, "norm_label": "lopuvoicedeck()" }, { @@ -328289,7 +329019,7 @@ "source_location": "L1061", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicecontrols_lopuvoicesurfaceprops", - "community": 523, + "community": 70, "norm_label": "lopuvoicesurfaceprops" }, { @@ -328299,7 +329029,7 @@ "source_location": "L1073", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicecontrols_lopuvoicesurface", - "community": 53, + "community": 70, "norm_label": "lopuvoicesurface()" }, { @@ -328419,7 +329149,7 @@ "source_location": "L38", "_origin": "ast", "id": "remix_app_components_lopu_lopubuildbridge_ispageblocklike", - "community": 7, + "community": 106, "norm_label": "ispageblocklike()" }, { @@ -328429,7 +329159,7 @@ "source_location": "L44", "_origin": "ast", "id": "remix_app_components_lopu_lopubuildbridge_applypageops", - "community": 70, + "community": 7, "norm_label": "applypageops()" }, { @@ -328599,7 +329329,7 @@ "source_location": "L182", "_origin": "ast", "id": "remix_app_components_lopu_lopubuildbridge_subscribewebpagedrafts", - "community": 7, + "community": 70, "norm_label": "subscribewebpagedrafts()" }, { @@ -328709,7 +329439,7 @@ "source_location": "L261", "_origin": "ast", "id": "remix_app_components_lopu_lopubuildbridge_partialkey", - "community": 70, + "community": 7, "norm_label": "partialkey()" }, { @@ -328719,7 +329449,7 @@ "source_location": "L263", "_origin": "ast", "id": "remix_app_components_lopu_lopubuildbridge_isregistered", - "community": 70, + "community": 7, "norm_label": "isregistered()" }, { @@ -328729,7 +329459,7 @@ "source_location": "L269", "_origin": "ast", "id": "remix_app_components_lopu_lopubuildbridge_applylopupatchevent", - "community": 70, + "community": 7, "norm_label": "applylopupatchevent()" }, { @@ -328759,7 +329489,7 @@ "source_location": "L311", "_origin": "ast", "id": "remix_app_components_lopu_lopubuildbridge_applylopupartialpageops", - "community": 70, + "community": 7, "norm_label": "applylopupartialpageops()" }, { @@ -328769,7 +329499,7 @@ "source_location": "L340", "_origin": "ast", "id": "remix_app_components_lopu_lopubuildbridge_discardlopupartialpageops", - "community": 70, + "community": 7, "norm_label": "discardlopupartialpageops()" }, { @@ -328959,7 +329689,7 @@ "source_location": "L548", "_origin": "ast", "id": "remix_app_components_lopu_lopubuildbridge_discardlopupartialcomponent", - "community": 70, + "community": 7, "norm_label": "discardlopupartialcomponent()" }, { @@ -329089,7 +329819,7 @@ "source_location": "L77", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatstore_lopuchatdefaults", - "community": 84, + "community": 70, "norm_label": "lopuchatdefaults" }, { @@ -329099,7 +329829,7 @@ "source_location": "L81", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatstore_lopuchatsettings", - "community": 84, + "community": 70, "norm_label": "lopuchatsettings" }, { @@ -329339,7 +330069,7 @@ "source_location": "L235", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatstore_subscribelopustore", - "community": 701, + "community": 70, "norm_label": "subscribelopustore()" }, { @@ -329349,7 +330079,7 @@ "source_location": "L242", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatstore_getlopustoresnapshot", - "community": 701, + "community": 70, "norm_label": "getlopustoresnapshot()" }, { @@ -329359,7 +330089,7 @@ "source_location": "L243", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatstore_getlopustoreserversnapshot", - "community": 701, + "community": 70, "norm_label": "getlopustoreserversnapshot()" }, { @@ -329449,7 +330179,7 @@ "source_location": "L299", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatstore_uuid", - "community": 48, + "community": 210, "norm_label": "uuid()" }, { @@ -329799,7 +330529,7 @@ "source_location": "L776", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatstore_discardtoolpaint", - "community": 70, + "community": 7, "norm_label": "discardtoolpaint()" }, { @@ -329939,7 +330669,7 @@ "source_location": "L1144", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatstore_selectlopustreaming", - "community": 701, + "community": 70, "norm_label": "selectlopustreaming()" }, { @@ -329989,7 +330719,7 @@ "source_location": "L1164", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatstore_selectlopuprovidernames", - "community": 64, + "community": 70, "norm_label": "selectlopuprovidernames()" }, { @@ -330009,7 +330739,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatstream_test", - "community": 569, + "community": 70, "norm_label": "lopuchatstream.test.ts" }, { @@ -330019,7 +330749,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatstream_test_encoder", - "community": 71, + "community": 181, "norm_label": "encoder" }, { @@ -330029,7 +330759,7 @@ "source_location": "L12", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatstream_test_chunkedresponse", - "community": 569, + "community": 70, "norm_label": "chunkedresponse()" }, { @@ -330039,7 +330769,7 @@ "source_location": "L61", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatstream_test_pull", - "community": 569, + "community": 70, "norm_label": "pull()" }, { @@ -330049,7 +330779,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatstream", - "community": 569, + "community": 70, "norm_label": "lopuchatstream.ts" }, { @@ -330059,7 +330789,7 @@ "source_location": "L12", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatstream_lopureplycontext", - "community": 569, + "community": 70, "norm_label": "lopureplycontext" }, { @@ -330069,7 +330799,7 @@ "source_location": "L28", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatstream_lopureplyconfirmation", - "community": 569, + "community": 70, "norm_label": "lopureplyconfirmation" }, { @@ -330079,7 +330809,7 @@ "source_location": "L30", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatstream_lopureplybody", - "community": 569, + "community": 70, "norm_label": "lopureplybody" }, { @@ -330089,7 +330819,7 @@ "source_location": "L49", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatstream_lopustreamerror", - "community": 569, + "community": 70, "norm_label": "lopustreamerror" }, { @@ -330099,7 +330829,7 @@ "source_location": "L60", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatstream_lopustreamerror_constructor", - "community": 569, + "community": 70, "norm_label": ".constructor()" }, { @@ -330109,7 +330839,7 @@ "source_location": "L75", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatstream_postlopureply", - "community": 287, + "community": 70, "norm_label": "postlopureply()" }, { @@ -330119,7 +330849,7 @@ "source_location": "L112", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatstream_errorfromresponse", - "community": 569, + "community": 70, "norm_label": "errorfromresponse()" }, { @@ -330129,7 +330859,7 @@ "source_location": "L135", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatstream_readndjson", - "community": 569, + "community": 70, "norm_label": "readndjson()" }, { @@ -330139,7 +330869,7 @@ "source_location": "L192", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatstream_aborterror", - "community": 569, + "community": 70, "norm_label": "aborterror()" }, { @@ -330149,7 +330879,7 @@ "source_location": "L202", "_origin": "ast", "id": "remix_app_components_lopu_lopuchatstream_isaborterror", - "community": 569, + "community": 70, "norm_label": "isaborterror()" }, { @@ -330209,7 +330939,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_lopuposition_test", - "community": 51, + "community": 323, "norm_label": "lopuposition.test.ts" }, { @@ -330219,7 +330949,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_lopuposition", - "community": 51, + "community": 323, "norm_label": "lopuposition.ts" }, { @@ -330229,7 +330959,7 @@ "source_location": "L11", "_origin": "ast", "id": "remix_app_components_lopu_lopuposition_lopu_positions", - "community": 51, + "community": 323, "norm_label": "lopu_positions" }, { @@ -330239,7 +330969,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_components_lopu_lopuposition_lopuposition", - "community": 51, + "community": 323, "norm_label": "lopuposition" }, { @@ -330249,7 +330979,7 @@ "source_location": "L17", "_origin": "ast", "id": "remix_app_components_lopu_lopuposition_lopu_position_labels", - "community": 51, + "community": 323, "norm_label": "lopu_position_labels" }, { @@ -330259,7 +330989,7 @@ "source_location": "L28", "_origin": "ast", "id": "remix_app_components_lopu_lopuposition_islopuposition", - "community": 51, + "community": 323, "norm_label": "islopuposition()" }, { @@ -330269,7 +330999,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_components_lopu_lopuposition_normalizelopuposition", - "community": 51, + "community": 323, "norm_label": "normalizelopuposition()" }, { @@ -330279,7 +331009,7 @@ "source_location": "L33", "_origin": "ast", "id": "remix_app_components_lopu_lopuposition_readlopupositioncache", - "community": 51, + "community": 323, "norm_label": "readlopupositioncache()" }, { @@ -330289,7 +331019,7 @@ "source_location": "L35", "_origin": "ast", "id": "remix_app_components_lopu_lopuposition_writelopupositioncache", - "community": 51, + "community": 323, "norm_label": "writelopupositioncache()" }, { @@ -330299,7 +331029,7 @@ "source_location": "L41", "_origin": "ast", "id": "remix_app_components_lopu_lopuposition_lopucontainerstyle", - "community": 51, + "community": 323, "norm_label": "lopucontainerstyle" }, { @@ -330309,7 +331039,7 @@ "source_location": "L70", "_origin": "ast", "id": "remix_app_components_lopu_lopuposition_loputoastplacement", - "community": 51, + "community": 323, "norm_label": "loputoastplacement()" }, { @@ -330319,7 +331049,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_test", - "community": 84, + "community": 70, "norm_label": "lopuprovidercore.test.ts" }, { @@ -330329,7 +331059,7 @@ "source_location": "L28", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_test_model", - "community": 84, + "community": 70, "norm_label": "model()" }, { @@ -330339,7 +331069,7 @@ "source_location": "L41", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_test_models", - "community": 84, + "community": 70, "norm_label": "models" }, { @@ -330349,7 +331079,7 @@ "source_location": "L42", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_test_vault", - "community": 84, + "community": 70, "norm_label": "vault" }, { @@ -330359,7 +331089,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore", - "community": 84, + "community": 70, "norm_label": "lopuprovidercore.ts" }, { @@ -330369,7 +331099,7 @@ "source_location": "L12", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_aimodelpublic", - "community": 84, + "community": 70, "norm_label": "aimodelpublic" }, { @@ -330379,7 +331109,7 @@ "source_location": "L29", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_lopuproviderkeyinfo", - "community": 84, + "community": 70, "norm_label": "lopuproviderkeyinfo" }, { @@ -330389,7 +331119,7 @@ "source_location": "L32", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_lopurealtimemodel", - "community": 84, + "community": 70, "norm_label": "lopurealtimemodel" }, { @@ -330399,7 +331129,7 @@ "source_location": "L37", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_lopuvaultprovider", - "community": 84, + "community": 70, "norm_label": "lopuvaultprovider" }, { @@ -330409,7 +331139,7 @@ "source_location": "L49", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_lopuvaultinfo", - "community": 84, + "community": 70, "norm_label": "lopuvaultinfo" }, { @@ -330419,7 +331149,7 @@ "source_location": "L51", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_textornull", - "community": 84, + "community": 70, "norm_label": "textornull()" }, { @@ -330429,7 +331159,7 @@ "source_location": "L57", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_normalizerealtimemodels", - "community": 84, + "community": 70, "norm_label": "normalizerealtimemodels()" }, { @@ -330439,7 +331169,7 @@ "source_location": "L69", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_normalizelopuvaultprovider", - "community": 84, + "community": 70, "norm_label": "normalizelopuvaultprovider()" }, { @@ -330449,7 +331179,7 @@ "source_location": "L86", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_normalizelopuvaultproviders", - "community": 84, + "community": 70, "norm_label": "normalizelopuvaultproviders()" }, { @@ -330479,7 +331209,7 @@ "source_location": "L99", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_provider_family_labels", - "community": 84, + "community": 70, "norm_label": "provider_family_labels" }, { @@ -330489,7 +331219,7 @@ "source_location": "L100", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_provider_key_labels", - "community": 84, + "community": 70, "norm_label": "provider_key_labels" }, { @@ -330499,7 +331229,7 @@ "source_location": "L101", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_vault_kind_labels", - "community": 84, + "community": 70, "norm_label": "vault_kind_labels" }, { @@ -330509,7 +331239,7 @@ "source_location": "L116", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_providerfamilylabel", - "community": 84, + "community": 70, "norm_label": "providerfamilylabel()" }, { @@ -330519,7 +331249,7 @@ "source_location": "L118", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_providerkeylabel", - "community": 84, + "community": 70, "norm_label": "providerkeylabel()" }, { @@ -330529,7 +331259,7 @@ "source_location": "L119", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_vaultkindlabel", - "community": 84, + "community": 70, "norm_label": "vaultkindlabel()" }, { @@ -330539,7 +331269,7 @@ "source_location": "L122", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_modelunavailablereason", - "community": 84, + "community": 70, "norm_label": "modelunavailablereason()" }, { @@ -330549,7 +331279,7 @@ "source_location": "L130", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_lopuproviderkeystate", - "community": 64, + "community": 70, "norm_label": "lopuproviderkeystate" }, { @@ -330559,7 +331289,7 @@ "source_location": "L133", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_providerkeystate", - "community": 84, + "community": 70, "norm_label": "providerkeystate()" }, { @@ -330569,7 +331299,7 @@ "source_location": "L140", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_provider_key_state_labels", - "community": 84, + "community": 70, "norm_label": "provider_key_state_labels" }, { @@ -330579,7 +331309,7 @@ "source_location": "L148", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_describecheckedat", - "community": 64, + "community": 70, "norm_label": "describecheckedat()" }, { @@ -330589,7 +331319,7 @@ "source_location": "L164", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_vaultproviderunavailablereason", - "community": 84, + "community": 70, "norm_label": "vaultproviderunavailablereason()" }, { @@ -330599,7 +331329,7 @@ "source_location": "L170", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_vaultprovidersupportsdirectvoice", - "community": 84, + "community": 70, "norm_label": "vaultprovidersupportsdirectvoice()" }, { @@ -330609,7 +331339,7 @@ "source_location": "L181", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_directvoiceunavailablereason", - "community": 84, + "community": 70, "norm_label": "directvoiceunavailablereason()" }, { @@ -330619,7 +331349,7 @@ "source_location": "L190", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_resolvedirectvoicemodel", - "community": 84, + "community": 70, "norm_label": "resolvedirectvoicemodel()" }, { @@ -330629,7 +331359,7 @@ "source_location": "L196", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_vaultproviderhint", - "community": 84, + "community": 70, "norm_label": "vaultproviderhint()" }, { @@ -330639,7 +331369,7 @@ "source_location": "L203", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_lopuproviderchoice", - "community": 84, + "community": 70, "norm_label": "lopuproviderchoice" }, { @@ -330649,7 +331379,7 @@ "source_location": "L205", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_lopuproviderchoicekey", - "community": 84, + "community": 70, "norm_label": "lopuproviderchoicekey()" }, { @@ -330659,7 +331389,7 @@ "source_location": "L211", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_parselopuproviderchoicekey", - "community": 84, + "community": 70, "norm_label": "parselopuproviderchoicekey()" }, { @@ -330669,7 +331399,7 @@ "source_location": "L227", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_lopuprovideroption", - "community": 84, + "community": 70, "norm_label": "lopuprovideroption" }, { @@ -330679,7 +331409,7 @@ "source_location": "L242", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_lopuprovidergroup", - "community": 84, + "community": 70, "norm_label": "lopuprovidergroup" }, { @@ -330689,7 +331419,7 @@ "source_location": "L244", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_family_order", - "community": 84, + "community": 70, "norm_label": "family_order" }, { @@ -330699,7 +331429,7 @@ "source_location": "L252", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_buildlopuprovidergroups", - "community": 84, + "community": 70, "norm_label": "buildlopuprovidergroups()" }, { @@ -330709,7 +331439,7 @@ "source_location": "L303", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_findlopuprovideroption", - "community": 84, + "community": 70, "norm_label": "findlopuprovideroption()" }, { @@ -330719,7 +331449,7 @@ "source_location": "L310", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_effort_labels", - "community": 84, + "community": 70, "norm_label": "effort_labels" }, { @@ -330729,7 +331459,7 @@ "source_location": "L311", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_effortlabel", - "community": 84, + "community": 70, "norm_label": "effortlabel()" }, { @@ -330739,7 +331469,7 @@ "source_location": "L318", "_origin": "ast", "id": "remix_app_components_lopu_lopuprovidercore_describelopuchoice", - "community": 84, + "community": 70, "norm_label": "describelopuchoice()" }, { @@ -330749,7 +331479,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_loputheme", - "community": 366, + "community": 106, "norm_label": "loputheme.ts" }, { @@ -330759,7 +331489,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_components_lopu_loputheme_lopu_ui", - "community": 366, + "community": 106, "norm_label": "lopu_ui" }, { @@ -330769,7 +331499,7 @@ "source_location": "L95", "_origin": "ast", "id": "remix_app_components_lopu_loputheme_lopueyebrowsx", - "community": 366, + "community": 106, "norm_label": "lopueyebrowsx" }, { @@ -330779,7 +331509,7 @@ "source_location": "L106", "_origin": "ast", "id": "remix_app_components_lopu_loputheme_lopufocusringsx", - "community": 366, + "community": 106, "norm_label": "lopufocusringsx" }, { @@ -330789,7 +331519,7 @@ "source_location": "L112", "_origin": "ast", "id": "remix_app_components_lopu_loputheme_lopureducedmotionsx", - "community": 366, + "community": 106, "norm_label": "lopureducedmotionsx" }, { @@ -330799,7 +331529,7 @@ "source_location": "L115", "_origin": "ast", "id": "remix_app_components_lopu_loputheme_lopurainbowtextsx", - "community": 366, + "community": 106, "norm_label": "lopurainbowtextsx" }, { @@ -330809,7 +331539,7 @@ "source_location": "L127", "_origin": "ast", "id": "remix_app_components_lopu_loputheme_lopuchipsx", - "community": 366, + "community": 106, "norm_label": "lopuchipsx" }, { @@ -330819,7 +331549,7 @@ "source_location": "L158", "_origin": "ast", "id": "remix_app_components_lopu_loputheme_lopupopoversx", - "community": 366, + "community": 106, "norm_label": "lopupopoversx" }, { @@ -330829,7 +331559,7 @@ "source_location": "L168", "_origin": "ast", "id": "remix_app_components_lopu_loputheme_lopurainbowring", - "community": 366, + "community": 70, "norm_label": "lopurainbowring()" }, { @@ -330839,7 +331569,7 @@ "source_location": "L180", "_origin": "ast", "id": "remix_app_components_lopu_loputheme_lopuiconbuttonsx", - "community": 64, + "community": 70, "norm_label": "lopuiconbuttonsx" }, { @@ -330939,7 +331669,7 @@ "source_location": "L42", "_origin": "ast", "id": "remix_app_components_lopu_loputurncore_lopubilling", - "community": 115, + "community": 106, "norm_label": "lopubilling" }, { @@ -330969,7 +331699,7 @@ "source_location": "L50", "_origin": "ast", "id": "remix_app_components_lopu_loputurncore_microsornull", - "community": 115, + "community": 106, "norm_label": "microsornull()" }, { @@ -331009,7 +331739,7 @@ "source_location": "L77", "_origin": "ast", "id": "remix_app_components_lopu_loputurncore_loputurngate", - "community": 115, + "community": 106, "norm_label": "loputurngate" }, { @@ -331039,7 +331769,7 @@ "source_location": "L94", "_origin": "ast", "id": "remix_app_components_lopu_loputurncore_lopuchatevent", - "community": 569, + "community": 70, "norm_label": "lopuchatevent" }, { @@ -331059,7 +331789,7 @@ "source_location": "L142", "_origin": "ast", "id": "remix_app_components_lopu_loputurncore_islopuchatevent", - "community": 569, + "community": 106, "norm_label": "islopuchatevent()" }, { @@ -331189,7 +331919,7 @@ "source_location": "L268", "_origin": "ast", "id": "remix_app_components_lopu_loputurncore_appendtext", - "community": 106, + "community": 171, "norm_label": "appendtext()" }, { @@ -331279,7 +332009,7 @@ "source_location": "L522", "_origin": "ast", "id": "remix_app_components_lopu_loputurncore_isloputurnactive", - "community": 701, + "community": 70, "norm_label": "isloputurnactive()" }, { @@ -331359,7 +332089,7 @@ "source_location": "L599", "_origin": "ast", "id": "remix_app_components_lopu_loputurncore_live_preview_tools", - "community": 7, + "community": 106, "norm_label": "live_preview_tools" }, { @@ -331439,7 +332169,7 @@ "source_location": "L706", "_origin": "ast", "id": "remix_app_components_lopu_loputurncore_lopuinline", - "community": 366, + "community": 106, "norm_label": "lopuinline" }, { @@ -331449,7 +332179,7 @@ "source_location": "L713", "_origin": "ast", "id": "remix_app_components_lopu_loputurncore_lopumdblock", - "community": 366, + "community": 106, "norm_label": "lopumdblock" }, { @@ -331479,7 +332209,7 @@ "source_location": "L758", "_origin": "ast", "id": "remix_app_components_lopu_loputurncore_describelopucodeblock", - "community": 366, + "community": 106, "norm_label": "describelopucodeblock()" }, { @@ -331629,7 +332359,7 @@ "source_location": "L1036", "_origin": "ast", "id": "remix_app_components_lopu_loputurncore_microstocredits", - "community": 115, + "community": 106, "norm_label": "microstocredits()" }, { @@ -331639,7 +332369,7 @@ "source_location": "L1037", "_origin": "ast", "id": "remix_app_components_lopu_loputurncore_creditstomicros", - "community": 115, + "community": 106, "norm_label": "creditstomicros()" }, { @@ -331649,7 +332379,7 @@ "source_location": "L1044", "_origin": "ast", "id": "remix_app_components_lopu_loputurncore_formatcredits", - "community": 366, + "community": 106, "norm_label": "formatcredits()" }, { @@ -331659,7 +332389,7 @@ "source_location": "L1059", "_origin": "ast", "id": "remix_app_components_lopu_loputurncore_formatturncredits", - "community": 366, + "community": 106, "norm_label": "formatturncredits()" }, { @@ -331739,7 +332469,7 @@ "source_location": "L1140", "_origin": "ast", "id": "remix_app_components_lopu_loputurncore_lopuplaintext", - "community": 106, + "community": 70, "norm_label": "lopuplaintext()" }, { @@ -331849,7 +332579,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicerealtime", - "community": 523, + "community": 52, "norm_label": "lopuvoicerealtime.ts" }, { @@ -331859,7 +332589,7 @@ "source_location": "L12", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicerealtime_lopuvoicerealtimesessiondescriptor", - "community": 523, + "community": 52, "norm_label": "lopuvoicerealtimesessiondescriptor" }, { @@ -331869,7 +332599,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicerealtime_lopuvoicerealtimecallbacks", - "community": 523, + "community": 52, "norm_label": "lopuvoicerealtimecallbacks" }, { @@ -331879,7 +332609,7 @@ "source_location": "L32", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicerealtime_browsersupportslopurealtime", - "community": 523, + "community": 52, "norm_label": "browsersupportslopurealtime()" }, { @@ -331889,7 +332619,7 @@ "source_location": "L39", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicerealtime_pcm16", - "community": 523, + "community": 52, "norm_label": "pcm16()" }, { @@ -331899,7 +332629,7 @@ "source_location": "L48", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicerealtime_float32", - "community": 523, + "community": 52, "norm_label": "float32()" }, { @@ -331909,7 +332639,7 @@ "source_location": "L55", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicerealtime_lopuvoicerealtime", - "community": 523, + "community": 52, "norm_label": "lopuvoicerealtime" }, { @@ -331919,7 +332649,7 @@ "source_location": "L66", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicerealtime_lopuvoicerealtime_constructor", - "community": 523, + "community": 52, "norm_label": ".constructor()" }, { @@ -331939,7 +332669,7 @@ "source_location": "L117", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicerealtime_lopuvoicerealtime_handlemessage", - "community": 523, + "community": 52, "norm_label": ".handlemessage()" }, { @@ -331949,7 +332679,7 @@ "source_location": "L147", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicerealtime_lopuvoicerealtime_play", - "community": 523, + "community": 52, "norm_label": ".play()" }, { @@ -331959,7 +332689,7 @@ "source_location": "L161", "_origin": "ast", "id": "remix_app_components_lopu_lopuvoicerealtime_lopuvoicerealtime_stop", - "community": 523, + "community": 52, "norm_label": ".stop()" }, { @@ -331969,7 +332699,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_notificationhistory_client", - "community": 48, + "community": 210, "norm_label": "notificationhistory.client.ts" }, { @@ -331979,7 +332709,7 @@ "source_location": "L4", "_origin": "ast", "id": "remix_app_components_lopu_notificationhistory_client_notification_history_requirements", - "community": 48, + "community": 210, "norm_label": "notification_history_requirements" }, { @@ -331989,7 +332719,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_components_lopu_notificationhistory_client_historymessage", - "community": 48, + "community": 210, "norm_label": "historymessage" }, { @@ -331999,7 +332729,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_components_lopu_notificationhistory_client_bound", - "community": 48, + "community": 210, "norm_label": "bound()" }, { @@ -332009,7 +332739,7 @@ "source_location": "L17", "_origin": "ast", "id": "remix_app_components_lopu_notificationhistory_client_savelopuhistory", - "community": 48, + "community": 210, "norm_label": "savelopuhistory()" }, { @@ -332019,7 +332749,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_notificationhistory_test", - "community": 48, + "community": 210, "norm_label": "notificationhistory.test.ts" }, { @@ -332139,7 +332869,7 @@ "source_location": "L236", "_origin": "ast", "id": "remix_app_components_lopu_uselopu_usedismisslopu", - "community": 287, + "community": 53, "norm_label": "usedismisslopu()" }, { @@ -332159,7 +332889,7 @@ "source_location": "L246", "_origin": "ast", "id": "remix_app_components_lopu_uselopu_uselopustream", - "community": 287, + "community": 53, "norm_label": "uselopustream()" }, { @@ -332169,7 +332899,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_test", - "community": 115, + "community": 106, "norm_label": "uselopuaccount.test.ts" }, { @@ -332179,7 +332909,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_test_account_wire", - "community": 115, + "community": 106, "norm_label": "account_wire" }, { @@ -332189,7 +332919,7 @@ "source_location": "L58", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_test_viewer", - "community": 115, + "community": 106, "norm_label": "viewer" }, { @@ -332199,7 +332929,7 @@ "source_location": "L212", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_test_fakeclient", - "community": 115, + "community": 106, "norm_label": "fakeclient()" }, { @@ -332209,7 +332939,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount", - "community": 115, + "community": 106, "norm_label": "uselopuaccount.ts" }, { @@ -332219,7 +332949,7 @@ "source_location": "L30", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_lopuaccountmonth", - "community": 115, + "community": 106, "norm_label": "lopuaccountmonth" }, { @@ -332229,7 +332959,7 @@ "source_location": "L32", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_lopuaccountlifetime", - "community": 115, + "community": 106, "norm_label": "lopuaccountlifetime" }, { @@ -332239,7 +332969,7 @@ "source_location": "L34", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_lopupendingrequest", - "community": 115, + "community": 106, "norm_label": "lopupendingrequest" }, { @@ -332249,7 +332979,7 @@ "source_location": "L36", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_lopuaccount", - "community": 366, + "community": 106, "norm_label": "lopuaccount" }, { @@ -332259,7 +332989,7 @@ "source_location": "L51", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_lopuledgerentrykind", - "community": 115, + "community": 106, "norm_label": "lopuledgerentrykind" }, { @@ -332269,7 +332999,7 @@ "source_location": "L53", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_lopu_ledger_entry_kinds", - "community": 115, + "community": 106, "norm_label": "lopu_ledger_entry_kinds" }, { @@ -332279,7 +333009,7 @@ "source_location": "L55", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_lopuledgerentry", - "community": 366, + "community": 106, "norm_label": "lopuledgerentry" }, { @@ -332289,7 +333019,7 @@ "source_location": "L67", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_lopuusagerow", - "community": 366, + "community": 106, "norm_label": "lopuusagerow" }, { @@ -332299,7 +333029,7 @@ "source_location": "L89", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_lopuhistoryitem", - "community": 366, + "community": 106, "norm_label": "lopuhistoryitem" }, { @@ -332309,7 +333039,7 @@ "source_location": "L91", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_lopuhistorypage", - "community": 115, + "community": 106, "norm_label": "lopuhistorypage" }, { @@ -332319,7 +333049,7 @@ "source_location": "L95", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_record", - "community": 115, + "community": 106, "norm_label": "record()" }, { @@ -332329,7 +333059,7 @@ "source_location": "L97", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_numberor", - "community": 115, + "community": 106, "norm_label": "numberor()" }, { @@ -332339,7 +333069,7 @@ "source_location": "L99", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_stringornull", - "community": 115, + "community": 106, "norm_label": "stringornull()" }, { @@ -332349,7 +333079,7 @@ "source_location": "L101", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_isoornull", - "community": 115, + "community": 106, "norm_label": "isoornull()" }, { @@ -332359,7 +333089,7 @@ "source_location": "L108", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_normalizemonth", - "community": 115, + "community": 106, "norm_label": "normalizemonth()" }, { @@ -332369,7 +333099,7 @@ "source_location": "L113", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_normalizelifetime", - "community": 115, + "community": 106, "norm_label": "normalizelifetime()" }, { @@ -332379,7 +333109,7 @@ "source_location": "L124", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_normalizelopupendingrequest", - "community": 115, + "community": 106, "norm_label": "normalizelopupendingrequest()" }, { @@ -332389,7 +333119,7 @@ "source_location": "L141", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_normalizelopuaccount", - "community": 115, + "community": 106, "norm_label": "normalizelopuaccount()" }, { @@ -332399,7 +333129,7 @@ "source_location": "L164", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_normalizelopuledgerentry", - "community": 115, + "community": 106, "norm_label": "normalizelopuledgerentry()" }, { @@ -332409,7 +333139,7 @@ "source_location": "L185", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_normalizelopuusagerow", - "community": 115, + "community": 106, "norm_label": "normalizelopuusagerow()" }, { @@ -332419,7 +333149,7 @@ "source_location": "L215", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_timeof", - "community": 115, + "community": 106, "norm_label": "timeof()" }, { @@ -332429,7 +333159,7 @@ "source_location": "L225", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_mergelopuhistory", - "community": 115, + "community": 106, "norm_label": "mergelopuhistory()" }, { @@ -332439,7 +333169,7 @@ "source_location": "L238", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_normalizelopuhistorypage", - "community": 115, + "community": 106, "norm_label": "normalizelopuhistorypage()" }, { @@ -332449,7 +333179,7 @@ "source_location": "L247", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_lopuadminaccountrow", - "community": 115, + "community": 106, "norm_label": "lopuadminaccountrow" }, { @@ -332459,7 +333189,7 @@ "source_location": "L259", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_lopuadminrowfromdirectory", - "community": 115, + "community": 106, "norm_label": "lopuadminrowfromdirectory()" }, { @@ -332469,7 +333199,7 @@ "source_location": "L274", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_normalizelopuadminaccountrow", - "community": 115, + "community": 106, "norm_label": "normalizelopuadminaccountrow()" }, { @@ -332479,7 +333209,7 @@ "source_location": "L297", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_lopuaccesssettings", - "community": 115, + "community": 106, "norm_label": "lopuaccesssettings" }, { @@ -332489,7 +333219,7 @@ "source_location": "L299", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_lopu_access_defaults", - "community": 115, + "community": 106, "norm_label": "lopu_access_defaults" }, { @@ -332499,7 +333229,7 @@ "source_location": "L302", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_normalizelopuaccesssettings", - "community": 53, + "community": 106, "norm_label": "normalizelopuaccesssettings()" }, { @@ -332509,7 +333239,7 @@ "source_location": "L318", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_lopuaccessviewer", - "community": 115, + "community": 106, "norm_label": "lopuaccessviewer" }, { @@ -332519,7 +333249,7 @@ "source_location": "L331", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_lopulockreason", - "community": 115, + "community": 106, "norm_label": "lopulockreason" }, { @@ -332529,7 +333259,7 @@ "source_location": "L333", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_lopuaccess", - "community": 115, + "community": 106, "norm_label": "lopuaccess" }, { @@ -332539,7 +333269,7 @@ "source_location": "L350", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_open_access", - "community": 115, + "community": 106, "norm_label": "open_access" }, { @@ -332549,7 +333279,7 @@ "source_location": "L369", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_selectlopuaccess", - "community": 115, + "community": 106, "norm_label": "selectlopuaccess()" }, { @@ -332559,7 +333289,7 @@ "source_location": "L402", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_lopuaccountcachekey", - "community": 115, + "community": 106, "norm_label": "lopuaccountcachekey()" }, { @@ -332569,7 +333299,7 @@ "source_location": "L409", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_accountcache", - "community": 115, + "community": 106, "norm_label": "accountcache" }, { @@ -332579,7 +333309,7 @@ "source_location": "L411", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_lopuaccountapiclient", - "community": 115, + "community": 106, "norm_label": "lopuaccountapiclient" }, { @@ -332589,7 +333319,7 @@ "source_location": "L417", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_lopuaccountstate", - "community": 115, + "community": 106, "norm_label": "lopuaccountstate" }, { @@ -332599,7 +333329,7 @@ "source_location": "L439", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_createinitialstate", - "community": 115, + "community": 106, "norm_label": "createinitialstate()" }, { @@ -332609,7 +333339,7 @@ "source_location": "L451", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_server_snapshot", - "community": 115, + "community": 106, "norm_label": "server_snapshot" }, { @@ -332619,7 +333349,7 @@ "source_location": "L452", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_state", - "community": 115, + "community": 106, "norm_label": "state" }, { @@ -332629,7 +333359,7 @@ "source_location": "L453", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_listeners", - "community": 115, + "community": 106, "norm_label": "listeners" }, { @@ -332639,7 +333369,7 @@ "source_location": "L459", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_emit", - "community": 115, + "community": 106, "norm_label": "emit()" }, { @@ -332649,7 +333379,7 @@ "source_location": "L470", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_scheduleemit", - "community": 115, + "community": 106, "norm_label": "scheduleemit()" }, { @@ -332659,7 +333389,7 @@ "source_location": "L481", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_setstate", - "community": 115, + "community": 106, "norm_label": "setstate()" }, { @@ -332669,7 +333399,7 @@ "source_location": "L486", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_subscribelopuaccount", - "community": 115, + "community": 106, "norm_label": "subscribelopuaccount()" }, { @@ -332679,7 +333409,7 @@ "source_location": "L493", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_getlopuaccountsnapshot", - "community": 115, + "community": 106, "norm_label": "getlopuaccountsnapshot()" }, { @@ -332689,7 +333419,7 @@ "source_location": "L494", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_getlopuaccountserversnapshot", - "community": 115, + "community": 106, "norm_label": "getlopuaccountserversnapshot()" }, { @@ -332699,7 +333429,7 @@ "source_location": "L497", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_bindlopuaccountapi", - "community": 115, + "community": 106, "norm_label": "bindlopuaccountapi()" }, { @@ -332709,7 +333439,7 @@ "source_location": "L501", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_errortext", - "community": 115, + "community": 106, "norm_label": "errortext()" }, { @@ -332719,7 +333449,7 @@ "source_location": "L508", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_errorstatus", - "community": 115, + "community": 106, "norm_label": "errorstatus()" }, { @@ -332729,7 +333459,7 @@ "source_location": "L514", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_readlopuaccesshint", - "community": 115, + "community": 106, "norm_label": "readlopuaccesshint()" }, { @@ -332739,7 +333469,7 @@ "source_location": "L519", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_writecache", - "community": 115, + "community": 106, "norm_label": "writecache()" }, { @@ -332749,7 +333479,7 @@ "source_location": "L531", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_hydratelopuaccount", - "community": 115, + "community": 106, "norm_label": "hydratelopuaccount()" }, { @@ -332759,7 +333489,7 @@ "source_location": "L548", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_refreshlopuaccount", - "community": 115, + "community": 106, "norm_label": "refreshlopuaccount()" }, { @@ -332769,7 +333499,7 @@ "source_location": "L583", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_applyloputurnbilling", - "community": 115, + "community": 106, "norm_label": "applyloputurnbilling()" }, { @@ -332779,7 +333509,7 @@ "source_location": "L621", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_notelopugate", - "community": 115, + "community": 106, "norm_label": "notelopugate()" }, { @@ -332789,7 +333519,7 @@ "source_location": "L635", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_topuprequestresult", - "community": 115, + "community": 106, "norm_label": "topuprequestresult" }, { @@ -332799,7 +333529,7 @@ "source_location": "L638", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_requestloputopup", - "community": 115, + "community": 106, "norm_label": "requestloputopup()" }, { @@ -332809,7 +333539,7 @@ "source_location": "L663", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_loadlopuaccounthistory", - "community": 115, + "community": 106, "norm_label": "loadlopuaccounthistory()" }, { @@ -332819,7 +333549,7 @@ "source_location": "L675", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_resetlopuaccountfortests", - "community": 115, + "community": 106, "norm_label": "resetlopuaccountfortests()" }, { @@ -332829,7 +333559,7 @@ "source_location": "L686", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_uselopuaccountoptions", - "community": 115, + "community": 106, "norm_label": "uselopuaccountoptions" }, { @@ -332839,7 +333569,7 @@ "source_location": "L693", "_origin": "ast", "id": "remix_app_components_lopu_uselopuaccount_uselopuaccount", - "community": 115, + "community": 106, "norm_label": "uselopuaccount" }, { @@ -332869,7 +333599,7 @@ "source_location": "L65", "_origin": "ast", "id": "remix_app_components_lopu_uselopuchat_lopucontextprovider", - "community": 70, + "community": 106, "norm_label": "lopucontextprovider" }, { @@ -332899,7 +333629,7 @@ "source_location": "L86", "_origin": "ast", "id": "remix_app_components_lopu_uselopuchat_uselopucontextprovider", - "community": 323, + "community": 70, "norm_label": "uselopucontextprovider()" }, { @@ -332959,7 +333689,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_uselopuposition", - "community": 51, + "community": 323, "norm_label": "uselopuposition.tsx" }, { @@ -332969,7 +333699,7 @@ "source_location": "L12", "_origin": "ast", "id": "remix_app_components_lopu_uselopuposition_uselopuposition", - "community": 51, + "community": 323, "norm_label": "uselopuposition()" }, { @@ -332979,7 +333709,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_components_lopu_uselopuposition_lopupositionsync", - "community": 51, + "community": 323, "norm_label": "lopupositionsync()" }, { @@ -332989,7 +333719,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_test", - "community": 64, + "community": 70, "norm_label": "uselopusettings.test.ts" }, { @@ -332999,7 +333729,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_test_desktop", - "community": 64, + "community": 70, "norm_label": "desktop" }, { @@ -333009,7 +333739,7 @@ "source_location": "L41", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_test_phone", - "community": 64, + "community": 70, "norm_label": "phone" }, { @@ -333019,7 +333749,7 @@ "source_location": "L217", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_test_length", - "community": 64, + "community": 70, "norm_label": "length()" }, { @@ -333029,7 +333759,7 @@ "source_location": "L272", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_test_catalogpayload", - "community": 64, + "community": 70, "norm_label": "catalogpayload" }, { @@ -333039,7 +333769,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings", - "community": 64, + "community": 70, "norm_label": "uselopusettings.ts" }, { @@ -333049,7 +333779,7 @@ "source_location": "L21", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_lopudock", - "community": 64, + "community": 70, "norm_label": "lopudock" }, { @@ -333059,7 +333789,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_lopuspeed", - "community": 64, + "community": 70, "norm_label": "lopuspeed" }, { @@ -333069,7 +333799,7 @@ "source_location": "L24", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_lopusettings", - "community": 64, + "community": 70, "norm_label": "lopusettings" }, { @@ -333079,7 +333809,7 @@ "source_location": "L65", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_lopu_settings_defaults", - "community": 64, + "community": 70, "norm_label": "lopu_settings_defaults" }, { @@ -333089,7 +333819,7 @@ "source_location": "L82", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_lopu_docks", - "community": 64, + "community": 70, "norm_label": "lopu_docks" }, { @@ -333099,7 +333829,7 @@ "source_location": "L86", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_normalizelopudock", - "community": 64, + "community": 70, "norm_label": "normalizelopudock()" }, { @@ -333109,7 +333839,7 @@ "source_location": "L90", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_normalizelopuspeed", - "community": 64, + "community": 70, "norm_label": "normalizelopuspeed()" }, { @@ -333119,7 +333849,7 @@ "source_location": "L94", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_boolor", - "community": 64, + "community": 70, "norm_label": "boolor()" }, { @@ -333129,7 +333859,7 @@ "source_location": "L98", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_idornull", - "community": 64, + "community": 70, "norm_label": "idornull()" }, { @@ -333139,7 +333869,7 @@ "source_location": "L109", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_normalizelopusettings", - "community": 64, + "community": 70, "norm_label": "normalizelopusettings()" }, { @@ -333149,7 +333879,7 @@ "source_location": "L130", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_lopumodelchoice", - "community": 64, + "community": 70, "norm_label": "lopumodelchoice" }, { @@ -333159,7 +333889,7 @@ "source_location": "L140", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_lopuviewport", - "community": 64, + "community": 70, "norm_label": "lopuviewport" }, { @@ -333169,7 +333899,7 @@ "source_location": "L145", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_lopupoint", - "community": 64, + "community": 70, "norm_label": "lopupoint" }, { @@ -333179,7 +333909,7 @@ "source_location": "L150", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_lopuwindowgeometry", - "community": 64, + "community": 70, "norm_label": "lopuwindowgeometry" }, { @@ -333189,7 +333919,7 @@ "source_location": "L168", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_lopu_window_default_size", - "community": 64, + "community": 70, "norm_label": "lopu_window_default_size" }, { @@ -333199,7 +333929,7 @@ "source_location": "L169", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_lopu_window_min_size", - "community": 64, + "community": 70, "norm_label": "lopu_window_min_size" }, { @@ -333209,7 +333939,7 @@ "source_location": "L176", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_finite", - "community": 64, + "community": 70, "norm_label": "finite()" }, { @@ -333219,7 +333949,7 @@ "source_location": "L181", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_clampnumber", - "community": 64, + "community": 70, "norm_label": "clampnumber()" }, { @@ -333229,7 +333959,7 @@ "source_location": "L185", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_safeviewport", - "community": 64, + "community": 70, "norm_label": "safeviewport()" }, { @@ -333239,7 +333969,7 @@ "source_location": "L191", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_defaultlopulauncherposition", - "community": 64, + "community": 70, "norm_label": "defaultlopulauncherposition()" }, { @@ -333249,7 +333979,7 @@ "source_location": "L204", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_clamplopulauncherposition", - "community": 64, + "community": 70, "norm_label": "clamplopulauncherposition()" }, { @@ -333259,7 +333989,7 @@ "source_location": "L217", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_clamplopuwindowsize", - "community": 64, + "community": 70, "norm_label": "clamplopuwindowsize()" }, { @@ -333269,7 +333999,7 @@ "source_location": "L230", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_clamplopuwindowgeometry", - "community": 64, + "community": 70, "norm_label": "clamplopuwindowgeometry()" }, { @@ -333279,7 +334009,7 @@ "source_location": "L243", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_defaultlopuwindowgeometry", - "community": 64, + "community": 70, "norm_label": "defaultlopuwindowgeometry()" }, { @@ -333289,7 +334019,7 @@ "source_location": "L261", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_resolvelopuwindowgeometry", - "community": 64, + "community": 70, "norm_label": "resolvelopuwindowgeometry()" }, { @@ -333299,7 +334029,7 @@ "source_location": "L285", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_dockedlopuwindowgeometry", - "community": 64, + "community": 70, "norm_label": "dockedlopuwindowgeometry()" }, { @@ -333309,7 +334039,7 @@ "source_location": "L302", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_readlopulauncherposition", - "community": 64, + "community": 70, "norm_label": "readlopulauncherposition()" }, { @@ -333319,7 +334049,7 @@ "source_location": "L309", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_writelopulauncherposition", - "community": 64, + "community": 70, "norm_label": "writelopulauncherposition()" }, { @@ -333329,7 +334059,7 @@ "source_location": "L313", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_readlopuwindowgeometry", - "community": 64, + "community": 70, "norm_label": "readlopuwindowgeometry()" }, { @@ -333339,7 +334069,7 @@ "source_location": "L328", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_writelopuwindowgeometry", - "community": 64, + "community": 70, "norm_label": "writelopuwindowgeometry()" }, { @@ -333349,7 +334079,7 @@ "source_location": "L491", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_uselopusettings", - "community": 64, + "community": 70, "norm_label": "uselopusettings" }, { @@ -333359,7 +334089,7 @@ "source_location": "L498", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_lopucatalogmodel", - "community": 64, + "community": 70, "norm_label": "lopucatalogmodel" }, { @@ -333369,7 +334099,7 @@ "source_location": "L514", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_lopucatalogprovider", - "community": 64, + "community": 70, "norm_label": "lopucatalogprovider" }, { @@ -333379,7 +334109,7 @@ "source_location": "L521", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_lopucatalogdefaults", - "community": 64, + "community": 70, "norm_label": "lopucatalogdefaults" }, { @@ -333389,7 +334119,7 @@ "source_location": "L527", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_lopucatalog", - "community": 64, + "community": 70, "norm_label": "lopucatalog" }, { @@ -333399,7 +334129,7 @@ "source_location": "L541", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_empty_lopu_catalog", - "community": 64, + "community": 70, "norm_label": "empty_lopu_catalog" }, { @@ -333409,7 +334139,7 @@ "source_location": "L547", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_stringlist", - "community": 64, + "community": 70, "norm_label": "stringlist()" }, { @@ -333419,7 +334149,7 @@ "source_location": "L551", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_normalizelopucatalogmodel", - "community": 64, + "community": 70, "norm_label": "normalizelopucatalogmodel()" }, { @@ -333429,7 +334159,7 @@ "source_location": "L575", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_normalizelopucatalogprovider", - "community": 64, + "community": 70, "norm_label": "normalizelopucatalogprovider()" }, { @@ -333439,7 +334169,7 @@ "source_location": "L585", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_normalizelopucatalog", - "community": 64, + "community": 70, "norm_label": "normalizelopucatalog()" }, { @@ -333449,7 +334179,7 @@ "source_location": "L608", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_preferredlopueffort", - "community": 64, + "community": 70, "norm_label": "preferredlopueffort()" }, { @@ -333459,7 +334189,7 @@ "source_location": "L621", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_findlopucatalogmodel", - "community": 64, + "community": 70, "norm_label": "findlopucatalogmodel()" }, { @@ -333469,7 +334199,7 @@ "source_location": "L630", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_resolvelopumodelchoice", - "community": 64, + "community": 70, "norm_label": "resolvelopumodelchoice()" }, { @@ -333479,7 +334209,7 @@ "source_location": "L644", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_effort_labels", - "community": 64, + "community": 70, "norm_label": "effort_labels" }, { @@ -333489,7 +334219,7 @@ "source_location": "L655", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_describelopueffort", - "community": 64, + "community": 70, "norm_label": "describelopueffort()" }, { @@ -333499,7 +334229,7 @@ "source_location": "L663", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_describelopumodelchoice", - "community": 64, + "community": 70, "norm_label": "describelopumodelchoice()" }, { @@ -333509,7 +334239,7 @@ "source_location": "L679", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_readlopucatalogcache", - "community": 64, + "community": 70, "norm_label": "readlopucatalogcache()" }, { @@ -333519,7 +334249,7 @@ "source_location": "L686", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_uselopumodelcatalog", - "community": 64, + "community": 70, "norm_label": "uselopumodelcatalog()" }, { @@ -333529,7 +334259,7 @@ "source_location": "L738", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_islopuhosthiddenonpath", - "community": 64, + "community": 70, "norm_label": "islopuhosthiddenonpath()" }, { @@ -333539,7 +334269,7 @@ "source_location": "L745", "_origin": "ast", "id": "remix_app_components_lopu_uselopusettings_islopuvoicepath", - "community": 64, + "community": 70, "norm_label": "islopuvoicepath()" }, { @@ -333909,7 +334639,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_messenger_agentliveactivity", - "community": 212, + "community": 73, "norm_label": "agentliveactivity.tsx" }, { @@ -333919,7 +334649,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_components_messenger_agentliveactivity_agentliveactivity", - "community": 212, + "community": 73, "norm_label": "agentliveactivity()" }, { @@ -335049,7 +335779,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_messenger_livesessionread_test", - "community": 212, + "community": 358, "norm_label": "livesessionread.test.ts" }, { @@ -335059,7 +335789,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_components_messenger_livesessionread_test_source", - "community": 212, + "community": 358, "norm_label": "source()" }, { @@ -335799,7 +336529,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_mongodb_bsonvalueeditor", - "community": 556, + "community": 698, "norm_label": "bsonvalueeditor.tsx" }, { @@ -335809,7 +336539,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_components_mongodb_bsonvalueeditor_props", - "community": 556, + "community": 698, "norm_label": "props" }, { @@ -335819,7 +336549,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_components_mongodb_bsonvalueeditor_inputstyles", - "community": 556, + "community": 698, "norm_label": "inputstyles" }, { @@ -335829,7 +336559,7 @@ "source_location": "L20", "_origin": "ast", "id": "remix_app_components_mongodb_bsonvalueeditor_placeholderfor", - "community": 556, + "community": 698, "norm_label": "placeholderfor()" }, { @@ -335839,7 +336569,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_components_mongodb_bsonvalueeditor_isliteraltype", - "community": 556, + "community": 698, "norm_label": "isliteraltype()" }, { @@ -335849,7 +336579,7 @@ "source_location": "L33", "_origin": "ast", "id": "remix_app_components_mongodb_bsonvalueeditor_bsonvalueeditorcomponent", - "community": 556, + "community": 698, "norm_label": "bsonvalueeditorcomponent()" }, { @@ -335859,7 +336589,7 @@ "source_location": "L206", "_origin": "ast", "id": "remix_app_components_mongodb_bsonvalueeditor_bsonvalueeditor", - "community": 399, + "community": 701, "norm_label": "bsonvalueeditor" }, { @@ -336129,7 +336859,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_mongodb_pipelinebuilder", - "community": 399, + "community": 701, "norm_label": "pipelinebuilder.tsx" }, { @@ -336139,7 +336869,7 @@ "source_location": "L11", "_origin": "ast", "id": "remix_app_components_mongodb_pipelinebuilder_props", - "community": 399, + "community": 701, "norm_label": "props" }, { @@ -336149,7 +336879,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_components_mongodb_pipelinebuilder_inputstyles", - "community": 399, + "community": 701, "norm_label": "inputstyles" }, { @@ -336159,7 +336889,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_components_mongodb_pipelinebuilder_pipelinebuildercomponent", - "community": 399, + "community": 701, "norm_label": "pipelinebuildercomponent()" }, { @@ -336169,7 +336899,7 @@ "source_location": "L127", "_origin": "ast", "id": "remix_app_components_mongodb_pipelinebuilder_pipelinebuilder", - "community": 399, + "community": 701, "norm_label": "pipelinebuilder" }, { @@ -336309,7 +337039,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_mongodb_mongodbstatussections", - "community": 7, + "community": 492, "norm_label": "mongodbstatussections.tsx" }, { @@ -336319,7 +337049,7 @@ "source_location": "L24", "_origin": "ast", "id": "remix_app_components_mongodb_mongodbstatussections_statuslisteners", - "community": 7, + "community": 492, "norm_label": "statuslisteners" }, { @@ -336329,7 +337059,7 @@ "source_location": "L26", "_origin": "ast", "id": "remix_app_components_mongodb_mongodbstatussections_notifystatus", - "community": 7, + "community": 492, "norm_label": "notifystatus()" }, { @@ -336339,7 +337069,7 @@ "source_location": "L28", "_origin": "ast", "id": "remix_app_components_mongodb_mongodbstatussections_fetchstatus", - "community": 7, + "community": 492, "norm_label": "fetchstatus()" }, { @@ -336349,7 +337079,7 @@ "source_location": "L51", "_origin": "ast", "id": "remix_app_components_mongodb_mongodbstatussections_fallback_status", - "community": 7, + "community": 492, "norm_label": "fallback_status" }, { @@ -336359,7 +337089,7 @@ "source_location": "L63", "_origin": "ast", "id": "remix_app_components_mongodb_mongodbstatussections_usemongostatusdata", - "community": 7, + "community": 492, "norm_label": "usemongostatusdata()" }, { @@ -336369,7 +337099,7 @@ "source_location": "L96", "_origin": "ast", "id": "remix_app_components_mongodb_mongodbstatussections_row", - "community": 7, + "community": 492, "norm_label": "row()" }, { @@ -336379,7 +337109,7 @@ "source_location": "L126", "_origin": "ast", "id": "remix_app_components_mongodb_mongodbstatussections_mongostatusheadersection", - "community": 7, + "community": 492, "norm_label": "mongostatusheadersection()" }, { @@ -336389,7 +337119,7 @@ "source_location": "L183", "_origin": "ast", "id": "remix_app_components_mongodb_mongodbstatussections_mongostatusconnectionsection", - "community": 7, + "community": 492, "norm_label": "mongostatusconnectionsection()" }, { @@ -336399,7 +337129,7 @@ "source_location": "L217", "_origin": "ast", "id": "remix_app_components_mongodb_mongodbstatussections_mongostatusendpointsection", - "community": 7, + "community": 492, "norm_label": "mongostatusendpointsection()" }, { @@ -336409,7 +337139,7 @@ "source_location": "L225", "_origin": "ast", "id": "remix_app_components_mongodb_mongodbstatussections_mongodb_status_sections", - "community": 7, + "community": 492, "norm_label": "mongodb_status_sections" }, { @@ -336439,7 +337169,7 @@ "source_location": "L10", "_origin": "ast", "id": "remix_app_components_mongodb_querybuilderstate_bsonvaluenode", - "community": 556, + "community": 698, "norm_label": "bsonvaluenode" }, { @@ -336499,7 +337229,7 @@ "source_location": "L41", "_origin": "ast", "id": "remix_app_components_mongodb_querybuilderstate_pipelinestage", - "community": 399, + "community": 701, "norm_label": "pipelinestage" }, { @@ -336789,7 +337519,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_nativebridge_nativebridgehost", - "community": 523, + "community": 70, "norm_label": "nativebridgehost.tsx" }, { @@ -336799,7 +337529,7 @@ "source_location": "L10", "_origin": "ast", "id": "remix_app_components_nativebridge_nativebridgehost_nativebridgehost", - "community": 523, + "community": 70, "norm_label": "nativebridgehost()" }, { @@ -336919,7 +337649,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_nav_drawer_editordrawersection", - "community": 323, + "community": 5, "norm_label": "editordrawersection.tsx" }, { @@ -336929,7 +337659,7 @@ "source_location": "L20", "_origin": "ast", "id": "remix_app_components_nav_drawer_editordrawersection_livewindow", - "community": 323, + "community": 5, "norm_label": "livewindow" }, { @@ -336939,7 +337669,7 @@ "source_location": "L28", "_origin": "ast", "id": "remix_app_components_nav_drawer_editordrawersection_rowstyles", - "community": 323, + "community": 5, "norm_label": "rowstyles" }, { @@ -336949,7 +337679,7 @@ "source_location": "L44", "_origin": "ast", "id": "remix_app_components_nav_drawer_editordrawersection_rowa11y", - "community": 323, + "community": 5, "norm_label": "rowa11y()" }, { @@ -336959,7 +337689,7 @@ "source_location": "L57", "_origin": "ast", "id": "remix_app_components_nav_drawer_editordrawersection_rowactionstyles", - "community": 323, + "community": 5, "norm_label": "rowactionstyles" }, { @@ -336969,7 +337699,7 @@ "source_location": "L76", "_origin": "ast", "id": "remix_app_components_nav_drawer_editordrawersection_sectionlabel", - "community": 323, + "community": 5, "norm_label": "sectionlabel()" }, { @@ -336979,7 +337709,7 @@ "source_location": "L92", "_origin": "ast", "id": "remix_app_components_nav_drawer_editordrawersection_editordrawersection", - "community": 323, + "community": 5, "norm_label": "editordrawersection()" }, { @@ -336989,7 +337719,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_nav_drawer_electronupdatemanager", - "community": 388, + "community": 323, "norm_label": "electronupdatemanager.tsx" }, { @@ -336999,7 +337729,7 @@ "source_location": "L12", "_origin": "ast", "id": "remix_app_components_nav_drawer_electronupdatemanager_releasesearchtext", - "community": 388, + "community": 323, "norm_label": "releasesearchtext()" }, { @@ -337009,7 +337739,7 @@ "source_location": "L18", "_origin": "ast", "id": "remix_app_components_nav_drawer_electronupdatemanager_releaselabel", - "community": 388, + "community": 323, "norm_label": "releaselabel()" }, { @@ -337019,7 +337749,7 @@ "source_location": "L20", "_origin": "ast", "id": "remix_app_components_nav_drawer_electronupdatemanager_cachelabel", - "community": 388, + "community": 323, "norm_label": "cachelabel()" }, { @@ -337419,7 +338149,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_components_nav_nav_useunicorngallop", - "community": 323, + "community": 4, "norm_label": "useunicorngallop()" }, { @@ -337429,7 +338159,7 @@ "source_location": "L50", "_origin": "ast", "id": "remix_app_components_nav_nav_navaccountlink", - "community": 53, + "community": 323, "norm_label": "navaccountlink()" }, { @@ -337459,7 +338189,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_nav_notificationsbell", - "community": 53, + "community": 73, "norm_label": "notificationsbell.tsx" }, { @@ -337479,7 +338209,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_nav_reactivenav", - "community": 591, + "community": 323, "norm_label": "reactivenav.tsx" }, { @@ -337489,7 +338219,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_components_nav_reactivenav_reactivenav", - "community": 591, + "community": 323, "norm_label": "reactivenav()" }, { @@ -337499,7 +338229,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_nav_reactiverightnav", - "community": 591, + "community": 323, "norm_label": "reactiverightnav.tsx" }, { @@ -337509,7 +338239,7 @@ "source_location": "L4", "_origin": "ast", "id": "remix_app_components_nav_reactiverightnav_reactiverightnav", - "community": 591, + "community": 323, "norm_label": "reactiverightnav()" }, { @@ -337599,7 +338329,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_notifications_notificationspage", - "community": 53, + "community": 144, "norm_label": "notificationspage.tsx" }, { @@ -337609,7 +338339,7 @@ "source_location": "L46", "_origin": "ast", "id": "remix_app_components_notifications_notificationspage_inputstyles", - "community": 53, + "community": 144, "norm_label": "inputstyles" }, { @@ -337619,7 +338349,7 @@ "source_location": "L52", "_origin": "ast", "id": "remix_app_components_notifications_notificationspage_historypage", - "community": 53, + "community": 144, "norm_label": "historypage" }, { @@ -337629,7 +338359,7 @@ "source_location": "L61", "_origin": "ast", "id": "remix_app_components_notifications_notificationspage_empty_page", - "community": 53, + "community": 144, "norm_label": "empty_page" }, { @@ -337639,7 +338369,7 @@ "source_location": "L63", "_origin": "ast", "id": "remix_app_components_notifications_notificationspage_readcachedpage", - "community": 53, + "community": 144, "norm_label": "readcachedpage()" }, { @@ -337649,7 +338379,7 @@ "source_location": "L69", "_origin": "ast", "id": "remix_app_components_notifications_notificationspage_topage", - "community": 53, + "community": 144, "norm_label": "topage()" }, { @@ -337659,7 +338389,7 @@ "source_location": "L78", "_origin": "ast", "id": "remix_app_components_notifications_notificationspage_dedupebyid", - "community": 53, + "community": 144, "norm_label": "dedupebyid()" }, { @@ -337669,7 +338399,7 @@ "source_location": "L83", "_origin": "ast", "id": "remix_app_components_notifications_notificationspage_fieldlabel", - "community": 53, + "community": 144, "norm_label": "fieldlabel()" }, { @@ -337679,7 +338409,7 @@ "source_location": "L89", "_origin": "ast", "id": "remix_app_components_notifications_notificationspage_chip", - "community": 53, + "community": 144, "norm_label": "chip()" }, { @@ -337689,7 +338419,7 @@ "source_location": "L95", "_origin": "ast", "id": "remix_app_components_notifications_notificationspage_notificationspage", - "community": 53, + "community": 144, "norm_label": "notificationspage()" }, { @@ -337699,7 +338429,7 @@ "source_location": "L484", "_origin": "ast", "id": "remix_app_components_notifications_notificationspage_notificationshistorypath", - "community": 53, + "community": 144, "norm_label": "notificationshistorypath()" }, { @@ -337749,7 +338479,7 @@ "source_location": "L38", "_origin": "ast", "id": "remix_app_components_notifications_notificationcore_notification_type_meta", - "community": 53, + "community": 144, "norm_label": "notification_type_meta" }, { @@ -337879,7 +338609,7 @@ "source_location": "L199", "_origin": "ast", "id": "remix_app_components_notifications_notificationcore_notificationfilterstoparams", - "community": 53, + "community": 144, "norm_label": "notificationfilterstoparams()" }, { @@ -337889,7 +338619,7 @@ "source_location": "L210", "_origin": "ast", "id": "remix_app_components_notifications_notificationcore_hasactivenotificationfilters", - "community": 53, + "community": 144, "norm_label": "hasactivenotificationfilters()" }, { @@ -337949,7 +338679,7 @@ "source_location": "L253", "_origin": "ast", "id": "remix_app_components_notifications_notificationcore_notificationhistorycachekey", - "community": 53, + "community": 144, "norm_label": "notificationhistorycachekey()" }, { @@ -337959,7 +338689,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_oauth_authorizepage", - "community": 496, + "community": 58, "norm_label": "authorizepage.tsx" }, { @@ -337969,7 +338699,7 @@ "source_location": "L30", "_origin": "ast", "id": "remix_app_components_oauth_authorizepage_embedapp", - "community": 496, + "community": 58, "norm_label": "embedapp" }, { @@ -337979,7 +338709,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_components_oauth_authorizepage_embeduser", - "community": 496, + "community": 58, "norm_label": "embeduser" }, { @@ -337989,7 +338719,7 @@ "source_location": "L38", "_origin": "ast", "id": "remix_app_components_oauth_authorizepage_scopedescriptor", - "community": 496, + "community": 58, "norm_label": "scopedescriptor" }, { @@ -337999,7 +338729,7 @@ "source_location": "L48", "_origin": "ast", "id": "remix_app_components_oauth_authorizepage_pickerthing", - "community": 496, + "community": 58, "norm_label": "pickerthing" }, { @@ -338009,7 +338739,7 @@ "source_location": "L55", "_origin": "ast", "id": "remix_app_components_oauth_authorizepage_scope_emoji", - "community": 496, + "community": 58, "norm_label": "scope_emoji" }, { @@ -338019,7 +338749,7 @@ "source_location": "L69", "_origin": "ast", "id": "remix_app_components_oauth_authorizepage_sandbox_user", - "community": 496, + "community": 58, "norm_label": "sandbox_user" }, { @@ -338029,7 +338759,7 @@ "source_location": "L71", "_origin": "ast", "id": "remix_app_components_oauth_authorizepage_sandbox_things", - "community": 496, + "community": 58, "norm_label": "sandbox_things" }, { @@ -338039,7 +338769,7 @@ "source_location": "L80", "_origin": "ast", "id": "remix_app_components_oauth_authorizepage_fetchjson", - "community": 496, + "community": 58, "norm_label": "fetchjson()" }, { @@ -338049,7 +338779,7 @@ "source_location": "L96", "_origin": "ast", "id": "remix_app_components_oauth_authorizepage_coverspath", - "community": 496, + "community": 58, "norm_label": "coverspath()" }, { @@ -338059,7 +338789,7 @@ "source_location": "L98", "_origin": "ast", "id": "remix_app_components_oauth_authorizepage_anycovers", - "community": 496, + "community": 58, "norm_label": "anycovers()" }, { @@ -338069,7 +338799,7 @@ "source_location": "L101", "_origin": "ast", "id": "remix_app_components_oauth_authorizepage_parsescopelist", - "community": 496, + "community": 58, "norm_label": "parsescopelist()" }, { @@ -338079,7 +338809,7 @@ "source_location": "L110", "_origin": "ast", "id": "remix_app_components_oauth_authorizepage_cardsx", - "community": 496, + "community": 58, "norm_label": "cardsx" }, { @@ -338089,7 +338819,7 @@ "source_location": "L122", "_origin": "ast", "id": "remix_app_components_oauth_authorizepage_kicker", - "community": 496, + "community": 58, "norm_label": "kicker()" }, { @@ -338099,7 +338829,7 @@ "source_location": "L135", "_origin": "ast", "id": "remix_app_components_oauth_authorizepage_sandboxchip", - "community": 496, + "community": 58, "norm_label": "sandboxchip()" }, { @@ -338109,7 +338839,7 @@ "source_location": "L152", "_origin": "ast", "id": "remix_app_components_oauth_authorizepage_scoperowprops", - "community": 496, + "community": 58, "norm_label": "scoperowprops" }, { @@ -338119,7 +338849,7 @@ "source_location": "L159", "_origin": "ast", "id": "remix_app_components_oauth_authorizepage_scoperow", - "community": 496, + "community": 58, "norm_label": "scoperow()" }, { @@ -338129,7 +338859,7 @@ "source_location": "L193", "_origin": "ast", "id": "remix_app_components_oauth_authorizepage_authorizepage", - "community": 496, + "community": 58, "norm_label": "authorizepage()" }, { @@ -338169,7 +338899,7 @@ "source_location": "L51", "_origin": "ast", "id": "remix_app_components_ode_odesections_ode_sections", - "community": 323, + "community": 492, "norm_label": "ode_sections" }, { @@ -338379,7 +339109,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_profile_activityheatmap", - "community": 53, + "community": 73, "norm_label": "activityheatmap.tsx" }, { @@ -338389,7 +339119,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_components_profile_activityheatmap_activitydata", - "community": 53, + "community": 73, "norm_label": "activitydata" }, { @@ -338399,7 +339129,7 @@ "source_location": "L20", "_origin": "ast", "id": "remix_app_components_profile_activityheatmap_activitycacheentry", - "community": 53, + "community": 73, "norm_label": "activitycacheentry" }, { @@ -338409,7 +339139,7 @@ "source_location": "L38", "_origin": "ast", "id": "remix_app_components_profile_activityheatmap_level_fills", - "community": 53, + "community": 73, "norm_label": "level_fills" }, { @@ -338419,7 +339149,7 @@ "source_location": "L46", "_origin": "ast", "id": "remix_app_components_profile_activityheatmap_levelof", - "community": 53, + "community": 73, "norm_label": "levelof()" }, { @@ -338429,7 +339159,7 @@ "source_location": "L52", "_origin": "ast", "id": "remix_app_components_profile_activityheatmap_utcmidnight", - "community": 53, + "community": 73, "norm_label": "utcmidnight()" }, { @@ -338439,7 +339169,7 @@ "source_location": "L54", "_origin": "ast", "id": "remix_app_components_profile_activityheatmap_daykeyof", - "community": 53, + "community": 73, "norm_label": "daykeyof()" }, { @@ -338449,7 +339179,7 @@ "source_location": "L56", "_origin": "ast", "id": "remix_app_components_profile_activityheatmap_tooltip_date", - "community": 53, + "community": 73, "norm_label": "tooltip_date" }, { @@ -338459,7 +339189,7 @@ "source_location": "L57", "_origin": "ast", "id": "remix_app_components_profile_activityheatmap_month_label", - "community": 53, + "community": 73, "norm_label": "month_label" }, { @@ -338469,7 +339199,7 @@ "source_location": "L59", "_origin": "ast", "id": "remix_app_components_profile_activityheatmap_readcached", - "community": 53, + "community": 73, "norm_label": "readcached()" }, { @@ -338479,7 +339209,7 @@ "source_location": "L66", "_origin": "ast", "id": "remix_app_components_profile_activityheatmap_cell", - "community": 53, + "community": 73, "norm_label": "cell" }, { @@ -338489,7 +339219,7 @@ "source_location": "L67", "_origin": "ast", "id": "remix_app_components_profile_activityheatmap_monthmark", - "community": 53, + "community": 73, "norm_label": "monthmark" }, { @@ -338499,7 +339229,7 @@ "source_location": "L71", "_origin": "ast", "id": "remix_app_components_profile_activityheatmap_buildgrid", - "community": 53, + "community": 73, "norm_label": "buildgrid()" }, { @@ -338509,7 +339239,7 @@ "source_location": "L102", "_origin": "ast", "id": "remix_app_components_profile_activityheatmap_activityheatmapprops", - "community": 53, + "community": 73, "norm_label": "activityheatmapprops" }, { @@ -338639,7 +339369,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_profile_profilepage", - "community": 53, + "community": 1, "norm_label": "profilepage.tsx" }, { @@ -338649,7 +339379,7 @@ "source_location": "L37", "_origin": "ast", "id": "remix_app_components_profile_profilepage_profilepageprops", - "community": 53, + "community": 1, "norm_label": "profilepageprops" }, { @@ -338659,7 +339389,7 @@ "source_location": "L41", "_origin": "ast", "id": "remix_app_components_profile_profilepage_remoteprofilestate", - "community": 53, + "community": 1, "norm_label": "remoteprofilestate" }, { @@ -338669,7 +339399,7 @@ "source_location": "L51", "_origin": "ast", "id": "remix_app_components_profile_profilepage_formatjoined", - "community": 53, + "community": 1, "norm_label": "formatjoined()" }, { @@ -338689,7 +339419,7 @@ "source_location": "L82", "_origin": "ast", "id": "remix_app_components_profile_profilepage_profileavatarcircle", - "community": 53, + "community": 1, "norm_label": "profileavatarcircle()" }, { @@ -338699,7 +339429,7 @@ "source_location": "L105", "_origin": "ast", "id": "remix_app_components_profile_profilepage_eyebrow", - "community": 53, + "community": 1, "norm_label": "eyebrow()" }, { @@ -338719,7 +339449,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_profile_relationshipcontrols", - "community": 53, + "community": 73, "norm_label": "relationshipcontrols.tsx" }, { @@ -338729,7 +339459,7 @@ "source_location": "L26", "_origin": "ast", "id": "remix_app_components_profile_relationshipcontrols_friendstate", - "community": 53, + "community": 73, "norm_label": "friendstate" }, { @@ -338739,7 +339469,7 @@ "source_location": "L28", "_origin": "ast", "id": "remix_app_components_profile_relationshipcontrols_summary", - "community": 53, + "community": 73, "norm_label": "summary" }, { @@ -338749,7 +339479,7 @@ "source_location": "L38", "_origin": "ast", "id": "remix_app_components_profile_relationshipcontrols_cachekey", - "community": 53, + "community": 73, "norm_label": "cachekey()" }, { @@ -338759,7 +339489,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_components_profile_relationshipcontrols_relationshipcontrolsprops", - "community": 53, + "community": 73, "norm_label": "relationshipcontrolsprops" }, { @@ -338919,7 +339649,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_profile_themetryoncore_test", - "community": 330, + "community": 1, "norm_label": "themetryoncore.test.ts" }, { @@ -338929,7 +339659,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_components_profile_themetryoncore_test_owner_theme", - "community": 330, + "community": 1, "norm_label": "owner_theme" }, { @@ -338939,7 +339669,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_components_profile_themetryoncore_test_ownlook", - "community": 330, + "community": 1, "norm_label": "ownlook" }, { @@ -338949,7 +339679,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_components_profile_themetryoncore_test_borrowed", - "community": 330, + "community": 1, "norm_label": "borrowed()" }, { @@ -338969,7 +339699,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_profile_themetryoncore", - "community": 330, + "community": 1, "norm_label": "themetryoncore.ts" }, { @@ -338979,7 +339709,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_components_profile_themetryoncore_worntheme", - "community": 330, + "community": 1, "norm_label": "worntheme" }, { @@ -338989,7 +339719,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_components_profile_themetryoncore_tryonthemesettings", - "community": 330, + "community": 1, "norm_label": "tryonthemesettings" }, { @@ -338999,7 +339729,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_components_profile_themetryoncore_tryonrun", - "community": 330, + "community": 1, "norm_label": "tryonrun" }, { @@ -339009,7 +339739,7 @@ "source_location": "L37", "_origin": "ast", "id": "remix_app_components_profile_themetryoncore_default_theme_settings", - "community": 330, + "community": 1, "norm_label": "default_theme_settings" }, { @@ -339019,7 +339749,7 @@ "source_location": "L39", "_origin": "ast", "id": "remix_app_components_profile_themetryoncore_assettings", - "community": 330, + "community": 1, "norm_label": "assettings()" }, { @@ -339029,7 +339759,7 @@ "source_location": "L48", "_origin": "ast", "id": "remix_app_components_profile_themetryoncore_asrun", - "community": 330, + "community": 1, "norm_label": "asrun()" }, { @@ -339039,7 +339769,7 @@ "source_location": "L60", "_origin": "ast", "id": "remix_app_components_profile_themetryoncore_opentryonrun", - "community": 330, + "community": 1, "norm_label": "opentryonrun()" }, { @@ -339049,7 +339779,7 @@ "source_location": "L72", "_origin": "ast", "id": "remix_app_components_profile_themetryoncore_iswearingtryon", - "community": 330, + "community": 1, "norm_label": "iswearingtryon()" }, { @@ -339059,7 +339789,7 @@ "source_location": "L92", "_origin": "ast", "id": "remix_app_components_profile_themetryoncore_nexttryonrun", - "community": 330, + "community": 1, "norm_label": "nexttryonrun()" }, { @@ -339069,7 +339799,7 @@ "source_location": "L106", "_origin": "ast", "id": "remix_app_components_profile_themetryoncore_restoredthemesettings", - "community": 330, + "community": 1, "norm_label": "restoredthemesettings()" }, { @@ -339079,7 +339809,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_quickswitcher_quickswitcher", - "community": 63, + "community": 73, "norm_label": "quickswitcher.tsx" }, { @@ -339089,7 +339819,7 @@ "source_location": "L49", "_origin": "ast", "id": "remix_app_components_quickswitcher_quickswitcher_togglequickswitcher", - "community": 63, + "community": 73, "norm_label": "togglequickswitcher()" }, { @@ -339099,7 +339829,7 @@ "source_location": "L61", "_origin": "ast", "id": "remix_app_components_quickswitcher_quickswitcher_peoplesearchresponse", - "community": 63, + "community": 73, "norm_label": "peoplesearchresponse" }, { @@ -339109,7 +339839,7 @@ "source_location": "L62", "_origin": "ast", "id": "remix_app_components_quickswitcher_quickswitcher_thingssearchresponse", - "community": 63, + "community": 73, "norm_label": "thingssearchresponse" }, { @@ -339119,7 +339849,7 @@ "source_location": "L64", "_origin": "ast", "id": "remix_app_components_quickswitcher_quickswitcher_personrow", - "community": 63, + "community": 73, "norm_label": "personrow()" }, { @@ -339129,7 +339859,7 @@ "source_location": "L73", "_origin": "ast", "id": "remix_app_components_quickswitcher_quickswitcher_thingrow", - "community": 63, + "community": 73, "norm_label": "thingrow()" }, { @@ -339139,7 +339869,7 @@ "source_location": "L82", "_origin": "ast", "id": "remix_app_components_quickswitcher_quickswitcher_rowglyph", - "community": 63, + "community": 73, "norm_label": "rowglyph()" }, { @@ -339159,7 +339889,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_quickswitcher_quickswitchercore", - "community": 63, + "community": 73, "norm_label": "quickswitchercore.ts" }, { @@ -339169,7 +339899,7 @@ "source_location": "L11", "_origin": "ast", "id": "remix_app_components_quickswitcher_quickswitchercore_quickrow", - "community": 63, + "community": 73, "norm_label": "quickrow" }, { @@ -339179,7 +339909,7 @@ "source_location": "L21", "_origin": "ast", "id": "remix_app_components_quickswitcher_quickswitchercore_quicksection", - "community": 63, + "community": 73, "norm_label": "quicksection" }, { @@ -339189,7 +339919,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_components_quickswitcher_quickswitchercore_quick_pages", - "community": 63, + "community": 73, "norm_label": "quick_pages" }, { @@ -339199,7 +339929,7 @@ "source_location": "L50", "_origin": "ast", "id": "remix_app_components_quickswitcher_quickswitchercore_quickrecent", - "community": 63, + "community": 73, "norm_label": "quickrecent" }, { @@ -339209,7 +339939,7 @@ "source_location": "L51", "_origin": "ast", "id": "remix_app_components_quickswitcher_quickswitchercore_recentscacheshape", - "community": 63, + "community": 73, "norm_label": "recentscacheshape" }, { @@ -339219,7 +339949,7 @@ "source_location": "L54", "_origin": "ast", "id": "remix_app_components_quickswitcher_quickswitchercore_quickrecentskey", - "community": 63, + "community": 73, "norm_label": "quickrecentskey()" }, { @@ -339229,7 +339959,7 @@ "source_location": "L57", "_origin": "ast", "id": "remix_app_components_quickswitcher_quickswitchercore_readquickrecents", - "community": 63, + "community": 73, "norm_label": "readquickrecents()" }, { @@ -339239,7 +339969,7 @@ "source_location": "L63", "_origin": "ast", "id": "remix_app_components_quickswitcher_quickswitchercore_pushquickrecent", - "community": 63, + "community": 73, "norm_label": "pushquickrecent()" }, { @@ -339249,7 +339979,7 @@ "source_location": "L77", "_origin": "ast", "id": "remix_app_components_quickswitcher_quickswitchercore_quickthingtitle", - "community": 63, + "community": 73, "norm_label": "quickthingtitle()" }, { @@ -339259,7 +339989,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_rainbow_rainbow", - "community": 63, + "community": 323, "norm_label": "rainbow.tsx" }, { @@ -339269,7 +339999,7 @@ "source_location": "L10", "_origin": "ast", "id": "remix_app_components_rainbow_rainbow_rainbow", - "community": 63, + "community": 323, "norm_label": "rainbow()" }, { @@ -339279,7 +340009,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_safety_safe", - "community": 323, + "community": 506, "norm_label": "safe.tsx" }, { @@ -339289,7 +340019,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_components_safety_safe_safe", - "community": 323, + "community": 506, "norm_label": "safe()" }, { @@ -339299,7 +340029,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_saved_savedpage", - "community": 53, + "community": 1, "norm_label": "savedpage.tsx" }, { @@ -339309,7 +340039,7 @@ "source_location": "L30", "_origin": "ast", "id": "remix_app_components_saved_savedpage_cachedlibrary", - "community": 53, + "community": 1, "norm_label": "cachedlibrary" }, { @@ -339319,7 +340049,7 @@ "source_location": "L32", "_origin": "ast", "id": "remix_app_components_saved_savedpage_cachekeyfor", - "community": 53, + "community": 1, "norm_label": "cachekeyfor()" }, { @@ -339329,7 +340059,7 @@ "source_location": "L34", "_origin": "ast", "id": "remix_app_components_saved_savedpage_readcachedlibrary", - "community": 53, + "community": 1, "norm_label": "readcachedlibrary()" }, { @@ -339339,7 +340069,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_components_saved_savedpage_savedpage", - "community": 53, + "community": 1, "norm_label": "savedpage()" }, { @@ -339349,7 +340079,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_schemas_migrationspanel", - "community": 287, + "community": 53, "norm_label": "migrationspanel.tsx" }, { @@ -339359,7 +340089,7 @@ "source_location": "L12", "_origin": "ast", "id": "remix_app_components_schemas_migrationspanel_collectioncensus", - "community": 287, + "community": 53, "norm_label": "collectioncensus" }, { @@ -339369,7 +340099,7 @@ "source_location": "L21", "_origin": "ast", "id": "remix_app_components_schemas_migrationspanel_collectiongeneration", - "community": 287, + "community": 53, "norm_label": "collectiongeneration" }, { @@ -339379,7 +340109,7 @@ "source_location": "L35", "_origin": "ast", "id": "remix_app_components_schemas_migrationspanel_migration", - "community": 287, + "community": 53, "norm_label": "migration" }, { @@ -339389,7 +340119,7 @@ "source_location": "L46", "_origin": "ast", "id": "remix_app_components_schemas_migrationspanel_migrationreport", - "community": 287, + "community": 53, "norm_label": "migrationreport" }, { @@ -339399,7 +340129,7 @@ "source_location": "L55", "_origin": "ast", "id": "remix_app_components_schemas_migrationspanel_migrationsstatus", - "community": 287, + "community": 53, "norm_label": "migrationsstatus" }, { @@ -339409,7 +340139,7 @@ "source_location": "L62", "_origin": "ast", "id": "remix_app_components_schemas_migrationspanel_versionssummary", - "community": 287, + "community": 53, "norm_label": "versionssummary()" }, { @@ -339419,7 +340149,7 @@ "source_location": "L67", "_origin": "ast", "id": "remix_app_components_schemas_migrationspanel_reportsummary", - "community": 287, + "community": 53, "norm_label": "reportsummary()" }, { @@ -339929,7 +340659,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_schemas_schemaspage", - "community": 12, + "community": 226, "norm_label": "schemaspage.tsx" }, { @@ -339939,7 +340669,7 @@ "source_location": "L33", "_origin": "ast", "id": "remix_app_components_schemas_schemaspage_schemasection", - "community": 12, + "community": 226, "norm_label": "schemasection" }, { @@ -339949,7 +340679,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_components_schemas_schemaspage_sections", - "community": 12, + "community": 226, "norm_label": "sections" }, { @@ -339959,7 +340689,7 @@ "source_location": "L63", "_origin": "ast", "id": "remix_app_components_schemas_schemaspage_schemaanchor", - "community": 12, + "community": 226, "norm_label": "schemaanchor()" }, { @@ -339969,7 +340699,7 @@ "source_location": "L65", "_origin": "ast", "id": "remix_app_components_schemas_schemaspage_fieldconstraints", - "community": 12, + "community": 226, "norm_label": "fieldconstraints()" }, { @@ -339979,7 +340709,7 @@ "source_location": "L89", "_origin": "ast", "id": "remix_app_components_schemas_schemaspage_flattendocfields", - "community": 12, + "community": 226, "norm_label": "flattendocfields()" }, { @@ -339999,7 +340729,7 @@ "source_location": "L136", "_origin": "ast", "id": "remix_app_components_schemas_schemaspage_schemacard", - "community": 12, + "community": 226, "norm_label": "schemacard()" }, { @@ -340009,7 +340739,7 @@ "source_location": "L253", "_origin": "ast", "id": "remix_app_components_schemas_schemaspage_schemaspage", - "community": 12, + "community": 226, "norm_label": "schemaspage()" }, { @@ -340019,7 +340749,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_schemas_migrationuicore_test", - "community": 287, + "community": 53, "norm_label": "migrationuicore.test.ts" }, { @@ -340029,7 +340759,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_components_schemas_migrationuicore_test_issues", - "community": 287, + "community": 53, "norm_label": "issues" }, { @@ -340039,7 +340769,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_schemas_migrationuicore", - "community": 287, + "community": 53, "norm_label": "migrationuicore.ts" }, { @@ -340049,7 +340779,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_schemas_migrationuicore_migrationpendingstatus", - "community": 287, + "community": 53, "norm_label": "migrationpendingstatus" }, { @@ -340059,7 +340789,7 @@ "source_location": "L11", "_origin": "ast", "id": "remix_app_components_schemas_migrationuicore_actionableadoptionissues", - "community": 287, + "community": 53, "norm_label": "actionableadoptionissues()" }, { @@ -340069,7 +340799,7 @@ "source_location": "L21", "_origin": "ast", "id": "remix_app_components_schemas_migrationuicore_formatgenerationbytes", - "community": 287, + "community": 53, "norm_label": "formatgenerationbytes()" }, { @@ -340079,7 +340809,7 @@ "source_location": "L37", "_origin": "ast", "id": "remix_app_components_schemas_migrationuicore_generationindexratio", - "community": 287, + "community": 53, "norm_label": "generationindexratio()" }, { @@ -340359,7 +341089,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_search_searchpage", - "community": 63, + "community": 4, "norm_label": "searchpage.tsx" }, { @@ -340369,7 +341099,7 @@ "source_location": "L65", "_origin": "ast", "id": "remix_app_components_search_searchpage_cachekeyfor", - "community": 63, + "community": 4, "norm_label": "cachekeyfor()" }, { @@ -340379,7 +341109,7 @@ "source_location": "L69", "_origin": "ast", "id": "remix_app_components_search_searchpage_rowfromschemafield", - "community": 63, + "community": 4, "norm_label": "rowfromschemafield()" }, { @@ -340389,7 +341119,7 @@ "source_location": "L97", "_origin": "ast", "id": "remix_app_components_search_searchpage_kind_option_labels", - "community": 63, + "community": 4, "norm_label": "kind_option_labels" }, { @@ -340399,7 +341129,7 @@ "source_location": "L111", "_origin": "ast", "id": "remix_app_components_search_searchpage_builtinsearchsources", - "community": 63, + "community": 4, "norm_label": "builtinsearchsources()" }, { @@ -340409,7 +341139,7 @@ "source_location": "L118", "_origin": "ast", "id": "remix_app_components_search_searchpage_cachedsearch", - "community": 63, + "community": 4, "norm_label": "cachedsearch" }, { @@ -340419,7 +341149,7 @@ "source_location": "L137", "_origin": "ast", "id": "remix_app_components_search_searchpage_personcard", - "community": 53, + "community": 73, "norm_label": "personcard()" }, { @@ -340429,7 +341159,7 @@ "source_location": "L186", "_origin": "ast", "id": "remix_app_components_search_searchpage_richtextpreview", - "community": 63, + "community": 4, "norm_label": "richtextpreview()" }, { @@ -340439,7 +341169,7 @@ "source_location": "L193", "_origin": "ast", "id": "remix_app_components_search_searchpage_previewvalue", - "community": 63, + "community": 4, "norm_label": "previewvalue()" }, { @@ -340449,7 +341179,7 @@ "source_location": "L205", "_origin": "ast", "id": "remix_app_components_search_searchpage_rankedmatchscore", - "community": 63, + "community": 4, "norm_label": "rankedmatchscore()" }, { @@ -340459,7 +341189,7 @@ "source_location": "L226", "_origin": "ast", "id": "remix_app_components_search_searchpage_crystalpreview", - "community": 63, + "community": 4, "norm_label": "crystalpreview()" }, { @@ -340469,7 +341199,7 @@ "source_location": "L268", "_origin": "ast", "id": "remix_app_components_search_searchpage_thingresultcard", - "community": 63, + "community": 4, "norm_label": "thingresultcard" }, { @@ -340479,7 +341209,7 @@ "source_location": "L350", "_origin": "ast", "id": "remix_app_components_search_searchpage_standardthingresult", - "community": 63, + "community": 4, "norm_label": "standardthingresult" }, { @@ -340499,7 +341229,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_search_commandersearch", - "community": 63, + "community": 4, "norm_label": "commandersearch.ts" }, { @@ -340509,7 +341239,7 @@ "source_location": "L4", "_origin": "ast", "id": "remix_app_components_search_commandersearch_commandersearchresult", - "community": 63, + "community": 4, "norm_label": "commandersearchresult" }, { @@ -340519,7 +341249,7 @@ "source_location": "L18", "_origin": "ast", "id": "remix_app_components_search_commandersearch_firstreadable", - "community": 63, + "community": 4, "norm_label": "firstreadable()" }, { @@ -340529,7 +341259,7 @@ "source_location": "L26", "_origin": "ast", "id": "remix_app_components_search_commandersearch_primarykind", - "community": 63, + "community": 4, "norm_label": "primarykind()" }, { @@ -340539,7 +341269,7 @@ "source_location": "L28", "_origin": "ast", "id": "remix_app_components_search_commandersearch_thingdetailpath", - "community": 63, + "community": 4, "norm_label": "thingdetailpath()" }, { @@ -340549,7 +341279,7 @@ "source_location": "L34", "_origin": "ast", "id": "remix_app_components_search_commandersearch_commanderentersuggestionindex", - "community": 63, + "community": 4, "norm_label": "commanderentersuggestionindex()" }, { @@ -340559,7 +341289,7 @@ "source_location": "L45", "_origin": "ast", "id": "remix_app_components_search_commandersearch_commandersearchresults", - "community": 63, + "community": 4, "norm_label": "commandersearchresults()" }, { @@ -340569,7 +341299,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_search_searchbuilder", - "community": 63, + "community": 4, "norm_label": "searchbuilder.tsx" }, { @@ -340579,7 +341309,7 @@ "source_location": "L15", "_origin": "ast", "id": "remix_app_components_search_searchbuilder_operators", - "community": 63, + "community": 4, "norm_label": "operators" }, { @@ -340589,7 +341319,7 @@ "source_location": "L36", "_origin": "ast", "id": "remix_app_components_search_searchbuilder_datatypes", - "community": 63, + "community": 4, "norm_label": "datatypes" }, { @@ -340599,7 +341329,7 @@ "source_location": "L38", "_origin": "ast", "id": "remix_app_components_search_searchbuilder_root_field_suggestions", - "community": 63, + "community": 4, "norm_label": "root_field_suggestions" }, { @@ -340609,7 +341339,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_components_search_searchbuilder_opkind", - "community": 63, + "community": 4, "norm_label": "opkind()" }, { @@ -340619,7 +341349,7 @@ "source_location": "L42", "_origin": "ast", "id": "remix_app_components_search_searchbuilder_rowid", - "community": 63, + "community": 4, "norm_label": "rowid()" }, { @@ -340629,7 +341359,7 @@ "source_location": "L45", "_origin": "ast", "id": "remix_app_components_search_searchbuilder_newrow", - "community": 63, + "community": 4, "norm_label": "newrow()" }, { @@ -340639,7 +341369,7 @@ "source_location": "L62", "_origin": "ast", "id": "remix_app_components_search_searchbuilder_text_only_ops", - "community": 63, + "community": 4, "norm_label": "text_only_ops" }, { @@ -340649,7 +341379,7 @@ "source_location": "L67", "_origin": "ast", "id": "remix_app_components_search_searchbuilder_coercevalue", - "community": 63, + "community": 4, "norm_label": "coercevalue()" }, { @@ -340659,7 +341389,7 @@ "source_location": "L80", "_origin": "ast", "id": "remix_app_components_search_searchbuilder_apicondition", - "community": 63, + "community": 4, "norm_label": "apicondition" }, { @@ -340669,7 +341399,7 @@ "source_location": "L84", "_origin": "ast", "id": "remix_app_components_search_searchbuilder_invalidnumberfield", - "community": 63, + "community": 4, "norm_label": "invalidnumberfield()" }, { @@ -340679,7 +341409,7 @@ "source_location": "L107", "_origin": "ast", "id": "remix_app_components_search_searchbuilder_compilerows", - "community": 63, + "community": 4, "norm_label": "compilerows()" }, { @@ -340689,7 +341419,7 @@ "source_location": "L152", "_origin": "ast", "id": "remix_app_components_search_searchbuilder_conditionrowseditorprops", - "community": 63, + "community": 4, "norm_label": "conditionrowseditorprops" }, { @@ -340699,7 +341429,7 @@ "source_location": "L168", "_origin": "ast", "id": "remix_app_components_search_searchbuilder_conditionrowseditor", - "community": 63, + "community": 4, "norm_label": "conditionrowseditor()" }, { @@ -340709,7 +341439,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_search_searchtypes", - "community": 63, + "community": 4, "norm_label": "searchtypes.ts" }, { @@ -340719,7 +341449,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_components_search_searchtypes_searchauthor", - "community": 63, + "community": 4, "norm_label": "searchauthor" }, { @@ -340729,7 +341459,7 @@ "source_location": "L15", "_origin": "ast", "id": "remix_app_components_search_searchtypes_searchthing", - "community": 63, + "community": 4, "norm_label": "searchthing" }, { @@ -340739,7 +341469,7 @@ "source_location": "L30", "_origin": "ast", "id": "remix_app_components_search_searchtypes_searchpost", - "community": 63, + "community": 4, "norm_label": "searchpost" }, { @@ -340749,7 +341479,7 @@ "source_location": "L33", "_origin": "ast", "id": "remix_app_components_search_searchtypes_searchperson", - "community": 63, + "community": 4, "norm_label": "searchperson" }, { @@ -340759,7 +341489,7 @@ "source_location": "L42", "_origin": "ast", "id": "remix_app_components_search_searchtypes_searchresponse", - "community": 63, + "community": 4, "norm_label": "searchresponse" }, { @@ -340769,7 +341499,7 @@ "source_location": "L55", "_origin": "ast", "id": "remix_app_components_search_searchtypes_rowvaluetype", - "community": 63, + "community": 4, "norm_label": "rowvaluetype" }, { @@ -340779,7 +341509,7 @@ "source_location": "L59", "_origin": "ast", "id": "remix_app_components_search_searchtypes_conditionrow", - "community": 63, + "community": 4, "norm_label": "conditionrow" }, { @@ -340789,7 +341519,7 @@ "source_location": "L78", "_origin": "ast", "id": "remix_app_components_search_searchtypes_schemasource", - "community": 63, + "community": 4, "norm_label": "schemasource" }, { @@ -340799,7 +341529,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_settings_algorithmmanager", - "community": 53, + "community": 1, "norm_label": "algorithmmanager.tsx" }, { @@ -340809,7 +341539,7 @@ "source_location": "L15", "_origin": "ast", "id": "remix_app_components_settings_algorithmmanager_trainedlabel", - "community": 53, + "community": 1, "norm_label": "trainedlabel()" }, { @@ -340819,7 +341549,7 @@ "source_location": "L20", "_origin": "ast", "id": "remix_app_components_settings_algorithmmanager_interestlabel", - "community": 53, + "community": 1, "norm_label": "interestlabel()" }, { @@ -340829,7 +341559,7 @@ "source_location": "L27", "_origin": "ast", "id": "remix_app_components_settings_algorithmmanager_interestchip", - "community": 53, + "community": 1, "norm_label": "interestchip()" }, { @@ -340839,7 +341569,7 @@ "source_location": "L49", "_origin": "ast", "id": "remix_app_components_settings_algorithmmanager_activebadge", - "community": 53, + "community": 1, "norm_label": "activebadge()" }, { @@ -340959,7 +341689,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_settings_notificationsettings", - "community": 53, + "community": 73, "norm_label": "notificationsettings.tsx" }, { @@ -340969,7 +341699,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_components_settings_notificationsettings_prefrow", - "community": 53, + "community": 73, "norm_label": "prefrow" }, { @@ -340979,7 +341709,7 @@ "source_location": "L27", "_origin": "ast", "id": "remix_app_components_settings_notificationsettings_pref_rows", - "community": 53, + "community": 73, "norm_label": "pref_rows" }, { @@ -340989,7 +341719,7 @@ "source_location": "L44", "_origin": "ast", "id": "remix_app_components_settings_notificationsettings_channel", - "community": 53, + "community": 73, "norm_label": "channel" }, { @@ -340999,7 +341729,7 @@ "source_location": "L46", "_origin": "ast", "id": "remix_app_components_settings_notificationsettings_switchcell", - "community": 53, + "community": 73, "norm_label": "switchcell()" }, { @@ -341009,7 +341739,7 @@ "source_location": "L63", "_origin": "ast", "id": "remix_app_components_settings_notificationsettings_rowshell", - "community": 53, + "community": 73, "norm_label": "rowshell()" }, { @@ -341029,7 +341759,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_settings_passkeysmanager", - "community": 53, + "community": 58, "norm_label": "passkeysmanager.tsx" }, { @@ -341039,7 +341769,7 @@ "source_location": "L18", "_origin": "ast", "id": "remix_app_components_settings_passkeysmanager_cachekeyforuser", - "community": 53, + "community": 58, "norm_label": "cachekeyforuser()" }, { @@ -341049,7 +341779,7 @@ "source_location": "L20", "_origin": "ast", "id": "remix_app_components_settings_passkeysmanager_inputsx", - "community": 53, + "community": 58, "norm_label": "inputsx" }, { @@ -341059,7 +341789,7 @@ "source_location": "L27", "_origin": "ast", "id": "remix_app_components_settings_passkeysmanager_compactdate", - "community": 53, + "community": 58, "norm_label": "compactdate()" }, { @@ -341069,7 +341799,7 @@ "source_location": "L34", "_origin": "ast", "id": "remix_app_components_settings_passkeysmanager_linkedapplabel", - "community": 53, + "community": 58, "norm_label": "linkedapplabel()" }, { @@ -341079,7 +341809,7 @@ "source_location": "L46", "_origin": "ast", "id": "remix_app_components_settings_passkeysmanager_passkeyrow", - "community": 53, + "community": 58, "norm_label": "passkeyrow()" }, { @@ -341099,7 +341829,7 @@ "source_location": "L251", "_origin": "ast", "id": "remix_app_components_settings_passkeysmanager_accountpasskeysmanager", - "community": 53, + "community": 58, "norm_label": "accountpasskeysmanager()" }, { @@ -341779,7 +342509,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_skeleton_rainbowskeleton", - "community": 591, + "community": 323, "norm_label": "rainbowskeleton.tsx" }, { @@ -341789,7 +342519,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_components_skeleton_rainbowskeleton_rainbowskeleton", - "community": 591, + "community": 323, "norm_label": "rainbowskeleton()" }, { @@ -342049,7 +342779,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_status_statussections", - "community": 7, + "community": 492, "norm_label": "statussections.tsx" }, { @@ -342059,7 +342789,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_components_status_statussections_value", - "community": 7, + "community": 492, "norm_label": "value()" }, { @@ -342069,7 +342799,7 @@ "source_location": "L25", "_origin": "ast", "id": "remix_app_components_status_statussections_statuslisteners", - "community": 7, + "community": 492, "norm_label": "statuslisteners" }, { @@ -342079,7 +342809,7 @@ "source_location": "L27", "_origin": "ast", "id": "remix_app_components_status_statussections_notifystatus", - "community": 7, + "community": 492, "norm_label": "notifystatus()" }, { @@ -342089,7 +342819,7 @@ "source_location": "L29", "_origin": "ast", "id": "remix_app_components_status_statussections_fetchstatus", - "community": 7, + "community": 492, "norm_label": "fetchstatus()" }, { @@ -342099,7 +342829,7 @@ "source_location": "L47", "_origin": "ast", "id": "remix_app_components_status_statussections_usevercelstatusdata", - "community": 7, + "community": 492, "norm_label": "usevercelstatusdata()" }, { @@ -342109,7 +342839,7 @@ "source_location": "L77", "_origin": "ast", "id": "remix_app_components_status_statussections_statusrow", - "community": 7, + "community": 492, "norm_label": "statusrow()" }, { @@ -342119,7 +342849,7 @@ "source_location": "L102", "_origin": "ast", "id": "remix_app_components_status_statussections_statusheadersection", - "community": 7, + "community": 492, "norm_label": "statusheadersection()" }, { @@ -342129,7 +342859,7 @@ "source_location": "L118", "_origin": "ast", "id": "remix_app_components_status_statussections_statusstatesection", - "community": 7, + "community": 492, "norm_label": "statusstatesection()" }, { @@ -342139,7 +342869,7 @@ "source_location": "L148", "_origin": "ast", "id": "remix_app_components_status_statussections_statusreadoutsection", - "community": 7, + "community": 492, "norm_label": "statusreadoutsection()" }, { @@ -342149,7 +342879,7 @@ "source_location": "L240", "_origin": "ast", "id": "remix_app_components_status_statussections_statusrechecksection", - "community": 7, + "community": 492, "norm_label": "statusrechecksection()" }, { @@ -342289,7 +343019,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_subspaces_moderationmodals", - "community": 1, + "community": 53, "norm_label": "moderationmodals.tsx" }, { @@ -342299,7 +343029,7 @@ "source_location": "L56", "_origin": "ast", "id": "remix_app_components_subspaces_moderationmodals_control_sx", - "community": 1, + "community": 53, "norm_label": "control_sx" }, { @@ -342309,7 +343039,7 @@ "source_location": "L59", "_origin": "ast", "id": "remix_app_components_subspaces_moderationmodals_moderationsubspace", - "community": 1, + "community": 53, "norm_label": "moderationsubspace" }, { @@ -342319,7 +343049,7 @@ "source_location": "L60", "_origin": "ast", "id": "remix_app_components_subspaces_moderationmodals_apiclient", - "community": 1, + "community": 53, "norm_label": "apiclient" }, { @@ -342329,7 +343059,7 @@ "source_location": "L65", "_origin": "ast", "id": "remix_app_components_subspaces_moderationmodals_cache", - "community": 1, + "community": 53, "norm_label": "cache" }, { @@ -342339,7 +343069,7 @@ "source_location": "L67", "_origin": "ast", "id": "remix_app_components_subspaces_moderationmodals_asmoderationsubspace", - "community": 1, + "community": 53, "norm_label": "asmoderationsubspace()" }, { @@ -342349,7 +343079,7 @@ "source_location": "L77", "_origin": "ast", "id": "remix_app_components_subspaces_moderationmodals_loadmoderationsubspace", - "community": 1, + "community": 53, "norm_label": "loadmoderationsubspace()" }, { @@ -342359,7 +343089,7 @@ "source_location": "L93", "_origin": "ast", "id": "remix_app_components_subspaces_moderationmodals_forgetmoderationsubspace", - "community": 1, + "community": 53, "norm_label": "forgetmoderationsubspace()" }, { @@ -342369,7 +343099,7 @@ "source_location": "L103", "_origin": "ast", "id": "remix_app_components_subspaces_moderationmodals_removemodal", - "community": 1, + "community": 53, "norm_label": "removemodal()" }, { @@ -342379,7 +343109,7 @@ "source_location": "L328", "_origin": "ast", "id": "remix_app_components_subspaces_moderationmodals_baninput", - "community": 1, + "community": 53, "norm_label": "baninput" }, { @@ -342389,7 +343119,7 @@ "source_location": "L330", "_origin": "ast", "id": "remix_app_components_subspaces_moderationmodals_banmodal", - "community": 1, + "community": 53, "norm_label": "banmodal()" }, { @@ -342399,7 +343129,7 @@ "source_location": "L445", "_origin": "ast", "id": "remix_app_components_subspaces_moderationmodals_reportchoice", - "community": 1, + "community": 53, "norm_label": "reportchoice" }, { @@ -342409,7 +343139,7 @@ "source_location": "L448", "_origin": "ast", "id": "remix_app_components_subspaces_moderationmodals_reportmodal", - "community": 1, + "community": 53, "norm_label": "reportmodal()" }, { @@ -342879,7 +343609,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_subspaces_moderationmodalscore_test", - "community": 1, + "community": 53, "norm_label": "moderationmodalscore.test.ts" }, { @@ -342889,7 +343619,7 @@ "source_location": "L11", "_origin": "ast", "id": "remix_app_components_subspaces_moderationmodalscore_test_detail", - "community": 1, + "community": 53, "norm_label": "detail" }, { @@ -342899,7 +343629,7 @@ "source_location": "L21", "_origin": "ast", "id": "remix_app_components_subspaces_moderationmodalscore_test_extras", - "community": 1, + "community": 53, "norm_label": "extras" }, { @@ -342909,7 +343639,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_subspaces_moderationmodalscore", - "community": 1, + "community": 53, "norm_label": "moderationmodalscore.ts" }, { @@ -342919,7 +343649,7 @@ "source_location": "L12", "_origin": "ast", "id": "remix_app_components_subspaces_moderationmodalscore_rulevalue", - "community": 1, + "community": 53, "norm_label": "rulevalue()" }, { @@ -342929,7 +343659,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_components_subspaces_moderationmodalscore_reasonvalue", - "community": 1, + "community": 53, "norm_label": "reasonvalue()" }, { @@ -342939,7 +343669,7 @@ "source_location": "L15", "_origin": "ast", "id": "remix_app_components_subspaces_moderationmodalscore_removedetail", - "community": 1, + "community": 53, "norm_label": "removedetail" }, { @@ -342949,7 +343679,7 @@ "source_location": "L17", "_origin": "ast", "id": "remix_app_components_subspaces_moderationmodalscore_removechoice", - "community": 1, + "community": 53, "norm_label": "removechoice" }, { @@ -342959,7 +343689,7 @@ "source_location": "L42", "_origin": "ast", "id": "remix_app_components_subspaces_moderationmodalscore_pickhead", - "community": 1, + "community": 53, "norm_label": "pickhead()" }, { @@ -342969,7 +343699,7 @@ "source_location": "L60", "_origin": "ast", "id": "remix_app_components_subspaces_moderationmodalscore_notemaxfor", - "community": 1, + "community": 53, "norm_label": "notemaxfor()" }, { @@ -342979,7 +343709,7 @@ "source_location": "L66", "_origin": "ast", "id": "remix_app_components_subspaces_moderationmodalscore_buildremovechoice", - "community": 1, + "community": 53, "norm_label": "buildremovechoice()" }, { @@ -343009,7 +343739,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_components_subspaces_subspacetypes_subspacerule", - "community": 1, + "community": 53, "norm_label": "subspacerule" }, { @@ -343019,7 +343749,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_components_subspaces_subspacetypes_subspaceflair", - "community": 1, + "community": 53, "norm_label": "subspaceflair" }, { @@ -343029,7 +343759,7 @@ "source_location": "L12", "_origin": "ast", "id": "remix_app_components_subspaces_subspacetypes_subspaceremovalreason", - "community": 1, + "community": 53, "norm_label": "subspaceremovalreason" }, { @@ -343359,7 +344089,7 @@ "source_location": "L213", "_origin": "ast", "id": "remix_app_components_subspaces_subspacetypes_subspacecomposercontext", - "community": 48, + "community": 53, "norm_label": "subspacecomposercontext" }, { @@ -343489,7 +344219,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_themesettings_themegallery", - "community": 323, + "community": 53, "norm_label": "themegallery.tsx" }, { @@ -343499,7 +344229,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_components_themesettings_themegallery_gallerytheme", - "community": 323, + "community": 53, "norm_label": "gallerytheme" }, { @@ -343509,7 +344239,7 @@ "source_location": "L28", "_origin": "ast", "id": "remix_app_components_themesettings_themegallery_cardbutton", - "community": 323, + "community": 53, "norm_label": "cardbutton()" }, { @@ -343519,7 +344249,7 @@ "source_location": "L48", "_origin": "ast", "id": "remix_app_components_themesettings_themegallery_themegallery", - "community": 323, + "community": 53, "norm_label": "themegallery()" }, { @@ -343529,7 +344259,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_themesettings_themehost", - "community": 323, + "community": 53, "norm_label": "themehost.tsx" }, { @@ -343539,7 +344269,7 @@ "source_location": "L17", "_origin": "ast", "id": "remix_app_components_themesettings_themehost_static_fonts", - "community": 323, + "community": 53, "norm_label": "static_fonts" }, { @@ -343549,7 +344279,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_components_themesettings_themehost_curatedfontnames", - "community": 323, + "community": 53, "norm_label": "curatedfontnames" }, { @@ -343559,7 +344289,7 @@ "source_location": "L21", "_origin": "ast", "id": "remix_app_components_themesettings_themehost_googlefontshref", - "community": 323, + "community": 53, "norm_label": "googlefontshref()" }, { @@ -343569,7 +344299,7 @@ "source_location": "L33", "_origin": "ast", "id": "remix_app_components_themesettings_themehost_themehost", - "community": 323, + "community": 53, "norm_label": "themehost()" }, { @@ -343579,7 +344309,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_themesettings_themestudio", - "community": 323, + "community": 53, "norm_label": "themestudio.tsx" }, { @@ -343589,7 +344319,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_components_themesettings_themestudio_sectionheaderstyle", - "community": 323, + "community": 53, "norm_label": "sectionheaderstyle" }, { @@ -343599,7 +344329,7 @@ "source_location": "L32", "_origin": "ast", "id": "remix_app_components_themesettings_themestudio_themepreviewcard", - "community": 323, + "community": 53, "norm_label": "themepreviewcard" }, { @@ -343609,7 +344339,7 @@ "source_location": "L82", "_origin": "ast", "id": "remix_app_components_themesettings_themestudio_row", - "community": 323, + "community": 53, "norm_label": "row()" }, { @@ -343619,7 +344349,7 @@ "source_location": "L111", "_origin": "ast", "id": "remix_app_components_themesettings_themestudio_fontselect", - "community": 323, + "community": 53, "norm_label": "fontselect()" }, { @@ -343629,7 +344359,7 @@ "source_location": "L131", "_origin": "ast", "id": "remix_app_components_themesettings_themestudio_stepcontrol", - "community": 323, + "community": 53, "norm_label": "stepcontrol()" }, { @@ -343639,7 +344369,7 @@ "source_location": "L165", "_origin": "ast", "id": "remix_app_components_themesettings_themestudio_pillbutton", - "community": 323, + "community": 53, "norm_label": "pillbutton()" }, { @@ -343649,7 +344379,7 @@ "source_location": "L185", "_origin": "ast", "id": "remix_app_components_themesettings_themestudio_actionbutton", - "community": 323, + "community": 53, "norm_label": "actionbutton()" }, { @@ -343659,7 +344389,7 @@ "source_location": "L205", "_origin": "ast", "id": "remix_app_components_themesettings_themestudio_color_fields", - "community": 323, + "community": 53, "norm_label": "color_fields" }, { @@ -343679,7 +344409,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_themesettings_controls", - "community": 323, + "community": 53, "norm_label": "controls.tsx" }, { @@ -343689,7 +344419,7 @@ "source_location": "L15", "_origin": "ast", "id": "remix_app_components_themesettings_controls_ishexcolor", - "community": 323, + "community": 53, "norm_label": "ishexcolor()" }, { @@ -343699,7 +344429,7 @@ "source_location": "L18", "_origin": "ast", "id": "remix_app_components_themesettings_controls_colorcontrol", - "community": 323, + "community": 53, "norm_label": "colorcontrol()" }, { @@ -343709,7 +344439,7 @@ "source_location": "L56", "_origin": "ast", "id": "remix_app_components_themesettings_controls_things_badge_padding_options", - "community": 323, + "community": 53, "norm_label": "things_badge_padding_options" }, { @@ -343719,7 +344449,7 @@ "source_location": "L64", "_origin": "ast", "id": "remix_app_components_themesettings_controls_thingsbadgepaddingcontrol", - "community": 323, + "community": 53, "norm_label": "thingsbadgepaddingcontrol()" }, { @@ -343729,7 +344459,7 @@ "source_location": "L131", "_origin": "ast", "id": "remix_app_components_themesettings_controls_customisetoggle", - "community": 323, + "community": 53, "norm_label": "customisetoggle()" }, { @@ -343739,7 +344469,7 @@ "source_location": "L159", "_origin": "ast", "id": "remix_app_components_themesettings_controls_customisepanel", - "community": 323, + "community": 53, "norm_label": "customisepanel()" }, { @@ -343819,7 +344549,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_things_sensitivethingreveal", - "community": 287, + "community": 492, "norm_label": "sensitivethingreveal.tsx" }, { @@ -343829,7 +344559,7 @@ "source_location": "L29", "_origin": "ast", "id": "remix_app_components_things_sensitivethingreveal_sensitivethingrevealdescriptor", - "community": 287, + "community": 492, "norm_label": "sensitivethingrevealdescriptor" }, { @@ -343839,7 +344569,7 @@ "source_location": "L36", "_origin": "ast", "id": "remix_app_components_things_sensitivethingreveal_revealedvalue", - "community": 287, + "community": 492, "norm_label": "revealedvalue" }, { @@ -343849,7 +344579,7 @@ "source_location": "L42", "_origin": "ast", "id": "remix_app_components_things_sensitivethingreveal_sensitivethingrevealprops", - "community": 287, + "community": 492, "norm_label": "sensitivethingrevealprops" }, { @@ -343859,7 +344589,7 @@ "source_location": "L51", "_origin": "ast", "id": "remix_app_components_things_sensitivethingreveal_kindlabel", - "community": 287, + "community": 492, "norm_label": "kindlabel()" }, { @@ -343869,7 +344599,7 @@ "source_location": "L54", "_origin": "ast", "id": "remix_app_components_things_sensitivethingreveal_validrevealresponse", - "community": 287, + "community": 492, "norm_label": "validrevealresponse()" }, { @@ -343879,7 +344609,7 @@ "source_location": "L75", "_origin": "ast", "id": "remix_app_components_things_sensitivethingreveal_revealscopekey", - "community": 287, + "community": 492, "norm_label": "revealscopekey()" }, { @@ -343899,7 +344629,7 @@ "source_location": "L377", "_origin": "ast", "id": "remix_app_components_things_sensitivethingreveal_sensitivethingreveal", - "community": 287, + "community": 492, "norm_label": "sensitivethingreveal()" }, { @@ -344019,7 +344749,7 @@ "source_location": "L246", "_origin": "ast", "id": "remix_app_components_things_thingsdialogs_sharedialog", - "community": 53, + "community": 18, "norm_label": "sharedialog()" }, { @@ -344429,7 +345159,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_things_thingattachmentdetailcore_test", - "community": 18, + "community": 492, "norm_label": "thingattachmentdetailcore.test.ts" }, { @@ -344439,7 +345169,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_things_thingattachmentdetailcore", - "community": 18, + "community": 492, "norm_label": "thingattachmentdetailcore.ts" }, { @@ -344449,7 +345179,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_components_things_thingattachmentdetailcore_attachmentfromthing", - "community": 18, + "community": 492, "norm_label": "attachmentfromthing()" }, { @@ -344459,7 +345189,7 @@ "source_location": "L21", "_origin": "ast", "id": "remix_app_components_things_thingattachmentdetailcore_directattachmentreferences", - "community": 18, + "community": 492, "norm_label": "directattachmentreferences()" }, { @@ -344469,7 +345199,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_things_thingdetailsectionscore_test", - "community": 18, + "community": 492, "norm_label": "thingdetailsectionscore.test.ts" }, { @@ -344479,7 +345209,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_things_thingdetailsectionscore", - "community": 18, + "community": 492, "norm_label": "thingdetailsectionscore.ts" }, { @@ -344489,7 +345219,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_components_things_thingdetailsectionscore_thingdetailsectioninput", - "community": 18, + "community": 492, "norm_label": "thingdetailsectioninput" }, { @@ -344499,7 +345229,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_components_things_thingdetailsectionscore_thingdetailsections", - "community": 18, + "community": 492, "norm_label": "thingdetailsections" }, { @@ -344919,7 +345649,7 @@ "source_location": "L167", "_origin": "ast", "id": "remix_app_components_things_thingscore_thingsreferrer", - "community": 18, + "community": 492, "norm_label": "thingsreferrer" }, { @@ -344939,7 +345669,7 @@ "source_location": "L184", "_origin": "ast", "id": "remix_app_components_things_thingscore_parsethingsreferrer", - "community": 18, + "community": 492, "norm_label": "parsethingsreferrer()" }, { @@ -345009,7 +345739,7 @@ "source_location": "L261", "_origin": "ast", "id": "remix_app_components_things_thingscore_schemaidof", - "community": 18, + "community": 492, "norm_label": "schemaidof()" }, { @@ -345489,7 +346219,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit", - "community": 323, + "community": 161, "norm_label": "editorsplit.tsx" }, { @@ -345499,7 +346229,7 @@ "source_location": "L38", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_editorcontentmode", - "community": 323, + "community": 161, "norm_label": "editorcontentmode" }, { @@ -345509,7 +346239,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_editorleaf", - "community": 323, + "community": 161, "norm_label": "editorleaf" }, { @@ -345519,7 +346249,7 @@ "source_location": "L48", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_editorbranch", - "community": 323, + "community": 161, "norm_label": "editorbranch" }, { @@ -345529,7 +346259,7 @@ "source_location": "L59", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_editornode", - "community": 323, + "community": 161, "norm_label": "editornode" }, { @@ -345539,7 +346269,7 @@ "source_location": "L62", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_floatingwindow", - "community": 323, + "community": 161, "norm_label": "floatingwindow" }, { @@ -345549,7 +346279,7 @@ "source_location": "L71", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_editorlayoutsnapshot", - "community": 323, + "community": 161, "norm_label": "editorlayoutsnapshot" }, { @@ -345559,7 +346289,7 @@ "source_location": "L82", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_dropside", - "community": 323, + "community": 161, "norm_label": "dropside" }, { @@ -345569,7 +346299,7 @@ "source_location": "L84", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_droptarget", - "community": 323, + "community": 161, "norm_label": "droptarget" }, { @@ -345579,7 +346309,7 @@ "source_location": "L86", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_windowdragstate", - "community": 323, + "community": 161, "norm_label": "windowdragstate" }, { @@ -345589,7 +346319,7 @@ "source_location": "L117", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_uid", - "community": 323, + "community": 161, "norm_label": "uid()" }, { @@ -345599,7 +346329,7 @@ "source_location": "L119", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_makeleaf", - "community": 323, + "community": 161, "norm_label": "makeleaf()" }, { @@ -345609,7 +346339,7 @@ "source_location": "L129", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_updateleaf", - "community": 323, + "community": 161, "norm_label": "updateleaf()" }, { @@ -345619,7 +346349,7 @@ "source_location": "L141", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_splitleaf", - "community": 323, + "community": 161, "norm_label": "splitleaf()" }, { @@ -345629,7 +346359,7 @@ "source_location": "L168", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_removeleaf", - "community": 323, + "community": 161, "norm_label": "removeleaf()" }, { @@ -345639,7 +346369,7 @@ "source_location": "L193", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_setratio", - "community": 323, + "community": 161, "norm_label": "setratio()" }, { @@ -345649,7 +346379,7 @@ "source_location": "L205", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_collectleaves", - "community": 323, + "community": 161, "norm_label": "collectleaves()" }, { @@ -345659,7 +346389,7 @@ "source_location": "L213", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_findleaf", - "community": 323, + "community": 161, "norm_label": "findleaf()" }, { @@ -345669,7 +346399,7 @@ "source_location": "L219", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_insertatleaf", - "community": 323, + "community": 161, "norm_label": "insertatleaf()" }, { @@ -345679,7 +346409,7 @@ "source_location": "L251", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_sanitizeleafdata", - "community": 323, + "community": 161, "norm_label": "sanitizeleafdata()" }, { @@ -345689,7 +346419,7 @@ "source_location": "L266", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_sanitizenodedata", - "community": 323, + "community": 161, "norm_label": "sanitizenodedata()" }, { @@ -345699,7 +346429,7 @@ "source_location": "L305", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_clampfloatinggeometry", - "community": 323, + "community": 161, "norm_label": "clampfloatinggeometry()" }, { @@ -345709,7 +346439,7 @@ "source_location": "L313", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_sanitizefloatingdata", - "community": 323, + "community": 161, "norm_label": "sanitizefloatingdata()" }, { @@ -345719,7 +346449,7 @@ "source_location": "L334", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_startpointergesture", - "community": 323, + "community": 161, "norm_label": "startpointergesture()" }, { @@ -345729,7 +346459,7 @@ "source_location": "L367", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_resizegrip", - "community": 323, + "community": 161, "norm_label": "resizegrip()" }, { @@ -345739,7 +346469,7 @@ "source_location": "L389", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_windowcontext", - "community": 323, + "community": 161, "norm_label": "windowcontext" }, { @@ -345749,7 +346479,7 @@ "source_location": "L391", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_windowactions", - "community": 323, + "community": 161, "norm_label": "windowactions" }, { @@ -345759,7 +346489,7 @@ "source_location": "L410", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_toolbarbuttonstyles", - "community": 323, + "community": 161, "norm_label": "toolbarbuttonstyles" }, { @@ -345769,7 +346499,7 @@ "source_location": "L424", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_trafficlight", - "community": 323, + "community": 161, "norm_label": "trafficlight()" }, { @@ -345779,7 +346509,7 @@ "source_location": "L470", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_trafficlights", - "community": 323, + "community": 161, "norm_label": "trafficlights()" }, { @@ -345789,7 +346519,7 @@ "source_location": "L516", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_contentmodetoggle", - "community": 323, + "community": 161, "norm_label": "contentmodetoggle()" }, { @@ -345799,7 +346529,7 @@ "source_location": "L558", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_skeletonwindow", - "community": 323, + "community": 161, "norm_label": "skeletonwindow()" }, { @@ -345809,7 +346539,7 @@ "source_location": "L613", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_editorwindow", - "community": 323, + "community": 161, "norm_label": "editorwindow()" }, { @@ -345819,7 +346549,7 @@ "source_location": "L893", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_editornodeview", - "community": 323, + "community": 161, "norm_label": "editornodeview()" }, { @@ -345829,7 +346559,7 @@ "source_location": "L959", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_floatingwindowview", - "community": 323, + "community": 161, "norm_label": "floatingwindowview()" }, { @@ -345839,7 +346569,7 @@ "source_location": "L1043", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_defaulttree", - "community": 323, + "community": 161, "norm_label": "defaulttree()" }, { @@ -345849,7 +346579,7 @@ "source_location": "L1052", "_origin": "ast", "id": "remix_app_components_thingtime_editorsplit_editorsplitprops", - "community": 323, + "community": 161, "norm_label": "editorsplitprops" }, { @@ -345969,7 +346699,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_thingtime_thingtime", - "community": 323, + "community": 506, "norm_label": "thingtime.tsx" }, { @@ -345979,7 +346709,7 @@ "source_location": "L23", "_origin": "ast", "id": "remix_app_components_thingtime_thingtime_thingtimeprops", - "community": 323, + "community": 506, "norm_label": "thingtimeprops" }, { @@ -345989,7 +346719,7 @@ "source_location": "L32", "_origin": "ast", "id": "remix_app_components_thingtime_thingtime_collapsecascadecontext", - "community": 323, + "community": 506, "norm_label": "collapsecascadecontext" }, { @@ -345999,7 +346729,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_components_thingtime_thingtime_numberstepbuttonstyles", - "community": 323, + "community": 506, "norm_label": "numberstepbuttonstyles" }, { @@ -346009,7 +346739,7 @@ "source_location": "L63", "_origin": "ast", "id": "remix_app_components_thingtime_thingtime_numbervalueinput", - "community": 323, + "community": 221, "norm_label": "numbervalueinput()" }, { @@ -346019,7 +346749,7 @@ "source_location": "L157", "_origin": "ast", "id": "remix_app_components_thingtime_thingtime_thingtimecomponentprops", - "community": 323, + "community": 506, "norm_label": "thingtimecomponentprops" }, { @@ -346599,7 +347329,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_thingtime_thingroute", - "community": 323, + "community": 5, "norm_label": "thingroute.ts" }, { @@ -346619,7 +347349,7 @@ "source_location": "L11", "_origin": "ast", "id": "remix_app_components_thingtime_thingroute_mode_segments", - "community": 323, + "community": 5, "norm_label": "mode_segments" }, { @@ -346629,7 +347359,7 @@ "source_location": "L17", "_origin": "ast", "id": "remix_app_components_thingtime_thingroute_thing_mode_prefixes", - "community": 323, + "community": 5, "norm_label": "thing_mode_prefixes" }, { @@ -346639,7 +347369,7 @@ "source_location": "L23", "_origin": "ast", "id": "remix_app_components_thingtime_thingroute_splitsegments", - "community": 323, + "community": 5, "norm_label": "splitsegments()" }, { @@ -346649,7 +347379,7 @@ "source_location": "L28", "_origin": "ast", "id": "remix_app_components_thingtime_thingroute_parsethingmode", - "community": 323, + "community": 5, "norm_label": "parsethingmode()" }, { @@ -346659,7 +347389,7 @@ "source_location": "L36", "_origin": "ast", "id": "remix_app_components_thingtime_thingroute_parsethingpath", - "community": 323, + "community": 5, "norm_label": "parsethingpath()" }, { @@ -346669,7 +347399,7 @@ "source_location": "L53", "_origin": "ast", "id": "remix_app_components_thingtime_thingroute_buildthingmodeurl", - "community": 323, + "community": 5, "norm_label": "buildthingmodeurl()" }, { @@ -346779,7 +347509,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_user_usercard", - "community": 53, + "community": 73, "norm_label": "usercard.tsx" }, { @@ -346789,7 +347519,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_components_user_usercard_usercard", - "community": 53, + "community": 73, "norm_label": "usercard()" }, { @@ -347149,7 +347879,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_components_welcome_welcomesections", - "community": 53, + "community": 73, "norm_label": "welcomesections.tsx" }, { @@ -347159,7 +347889,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_components_welcome_welcomesections_welcomeherosection", - "community": 53, + "community": 73, "norm_label": "welcomeherosection()" }, { @@ -347169,7 +347899,7 @@ "source_location": "L48", "_origin": "ast", "id": "remix_app_components_welcome_welcomesections_welcomecardsection", - "community": 53, + "community": 73, "norm_label": "welcomecardsection()" }, { @@ -347179,7 +347909,7 @@ "source_location": "L100", "_origin": "ast", "id": "remix_app_components_welcome_welcomesections_welcomeshell", - "community": 53, + "community": 73, "norm_label": "welcomeshell()" }, { @@ -347189,7 +347919,7 @@ "source_location": "L115", "_origin": "ast", "id": "remix_app_components_welcome_welcomesections_welcome_sections", - "community": 53, + "community": 73, "norm_label": "welcome_sections" }, { @@ -347269,7 +347999,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_cookies_server", - "community": 42, + "community": 648, "norm_label": "cookies.server.ts" }, { @@ -347279,7 +348009,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_cookies_server_session", - "community": 42, + "community": 648, "norm_label": "session" }, { @@ -347709,7 +348439,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_eggs_eggs", - "community": 323, + "community": 4, "norm_label": "eggs.ts" }, { @@ -347719,7 +348449,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_eggs_eggs_motionok", - "community": 323, + "community": 4, "norm_label": "motionok()" }, { @@ -347729,7 +348459,7 @@ "source_location": "L33", "_origin": "ast", "id": "remix_app_eggs_eggs_partyconfetti", - "community": 323, + "community": 4, "norm_label": "partyconfetti()" }, { @@ -347739,7 +348469,7 @@ "source_location": "L45", "_origin": "ast", "id": "remix_app_eggs_eggs_rainbowflash", - "community": 323, + "community": 4, "norm_label": "rainbowflash()" }, { @@ -347749,7 +348479,7 @@ "source_location": "L74", "_origin": "ast", "id": "remix_app_eggs_eggs_partymode", - "community": 323, + "community": 4, "norm_label": "partymode()" }, { @@ -347759,7 +348489,7 @@ "source_location": "L80", "_origin": "ast", "id": "remix_app_eggs_eggs_konami", - "community": 323, + "community": 4, "norm_label": "konami" }, { @@ -347779,7 +348509,7 @@ "source_location": "L114", "_origin": "ast", "id": "remix_app_eggs_eggs_incantations", - "community": 323, + "community": 4, "norm_label": "incantations" }, { @@ -347789,7 +348519,7 @@ "source_location": "L124", "_origin": "ast", "id": "remix_app_eggs_eggs_pickincantation", - "community": 323, + "community": 4, "norm_label": "pickincantation()" }, { @@ -347799,7 +348529,7 @@ "source_location": "L132", "_origin": "ast", "id": "remix_app_eggs_eggs_secretword", - "community": 323, + "community": 4, "norm_label": "secretword" }, { @@ -347809,7 +348539,7 @@ "source_location": "L134", "_origin": "ast", "id": "remix_app_eggs_eggs_secret_words", - "community": 323, + "community": 4, "norm_label": "secret_words" }, { @@ -347819,7 +348549,7 @@ "source_location": "L144", "_origin": "ast", "id": "remix_app_eggs_eggs_sparkle_lines", - "community": 323, + "community": 4, "norm_label": "sparkle_lines" }, { @@ -347829,7 +348559,7 @@ "source_location": "L152", "_origin": "ast", "id": "remix_app_eggs_eggs_picksparkle", - "community": 323, + "community": 4, "norm_label": "picksparkle()" }, { @@ -347839,7 +348569,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_embed_bridge", - "community": 567, + "community": 323, "norm_label": "bridge.tsx" }, { @@ -347849,7 +348579,7 @@ "source_location": "L15", "_origin": "ast", "id": "remix_app_embed_bridge_bridge_path", - "community": 567, + "community": 323, "norm_label": "bridge_path" }, { @@ -347859,7 +348589,7 @@ "source_location": "L45", "_origin": "ast", "id": "remix_app_embed_bridge_bridgeparams", - "community": 567, + "community": 323, "norm_label": "bridgeparams" }, { @@ -347869,7 +348599,7 @@ "source_location": "L46", "_origin": "ast", "id": "remix_app_embed_bridge_incoming", - "community": 567, + "community": 323, "norm_label": "incoming" }, { @@ -347879,7 +348609,7 @@ "source_location": "L54", "_origin": "ast", "id": "remix_app_embed_bridge_getbridgeparams", - "community": 567, + "community": 323, "norm_label": "getbridgeparams()" }, { @@ -347889,7 +348619,7 @@ "source_location": "L70", "_origin": "ast", "id": "remix_app_embed_bridge_initializebridgeglobals", - "community": 567, + "community": 323, "norm_label": "initializebridgeglobals()" }, { @@ -347909,7 +348639,7 @@ "source_location": "L289", "_origin": "ast", "id": "remix_app_embed_bridge_bootstrapbridge", - "community": 567, + "community": 323, "norm_label": "bootstrapbridge()" }, { @@ -347919,7 +348649,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_embed_bridgeidentity_test", - "community": 567, + "community": 125, "norm_label": "bridgeidentity.test.ts" }, { @@ -347929,7 +348659,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_embed_bridgeidentity_test_savedthingpayload", - "community": 567, + "community": 125, "norm_label": "savedthingpayload" }, { @@ -347939,7 +348669,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_embed_bridgeidentity", - "community": 567, + "community": 125, "norm_label": "bridgeidentity.ts" }, { @@ -347949,7 +348679,7 @@ "source_location": "L21", "_origin": "ast", "id": "remix_app_embed_bridgeidentity_bridgethingidentity", - "community": 567, + "community": 125, "norm_label": "bridgethingidentity" }, { @@ -347959,7 +348689,7 @@ "source_location": "L30", "_origin": "ast", "id": "remix_app_embed_bridgeidentity_readbridgethingidentity", - "community": 567, + "community": 125, "norm_label": "readbridgethingidentity()" }, { @@ -347969,7 +348699,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_embed_entry", - "community": 580, + "community": 125, "norm_label": "entry.ts" }, { @@ -347979,7 +348709,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_embed_entry_thingtimeglobal", - "community": 580, + "community": 125, "norm_label": "thingtimeglobal" }, { @@ -347989,7 +348719,7 @@ "source_location": "L28", "_origin": "ast", "id": "remix_app_embed_entry_window", - "community": 580, + "community": 125, "norm_label": "window" }, { @@ -347999,7 +348729,7 @@ "source_location": "L33", "_origin": "ast", "id": "remix_app_embed_entry_script", - "community": 580, + "community": 125, "norm_label": "script" }, { @@ -348009,7 +348739,7 @@ "source_location": "L37", "_origin": "ast", "id": "remix_app_embed_entry_ondomready", - "community": 580, + "community": 125, "norm_label": "ondomready()" }, { @@ -348019,7 +348749,7 @@ "source_location": "L64", "_origin": "ast", "id": "remix_app_embed_entry_configure", - "community": 580, + "community": 125, "norm_label": "configure()" }, { @@ -348029,7 +348759,7 @@ "source_location": "L68", "_origin": "ast", "id": "remix_app_embed_entry_init", - "community": 580, + "community": 125, "norm_label": "init()" }, { @@ -348039,7 +348769,7 @@ "source_location": "L72", "_origin": "ast", "id": "remix_app_embed_entry_open", - "community": 580, + "community": 125, "norm_label": "open()" }, { @@ -348049,7 +348779,7 @@ "source_location": "L76", "_origin": "ast", "id": "remix_app_embed_entry_close", - "community": 580, + "community": 125, "norm_label": "close()" }, { @@ -348059,7 +348789,7 @@ "source_location": "L80", "_origin": "ast", "id": "remix_app_embed_entry_toggle", - "community": 580, + "community": 125, "norm_label": "toggle()" }, { @@ -348069,7 +348799,7 @@ "source_location": "L97", "_origin": "ast", "id": "remix_app_embed_entry_destroy", - "community": 580, + "community": 125, "norm_label": "destroy()" }, { @@ -348239,7 +348969,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_embed_runtime_thingvisibility", - "community": 567, + "community": 125, "norm_label": "thingvisibility" }, { @@ -348249,7 +348979,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_embed_runtime_thingdocument", - "community": 567, + "community": 125, "norm_label": "thingdocument" }, { @@ -348259,7 +348989,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_embed_runtime_thingtimeembedconfig", - "community": 580, + "community": 125, "norm_label": "thingtimeembedconfig" }, { @@ -348329,7 +349059,7 @@ "source_location": "L71", "_origin": "ast", "id": "remix_app_embed_runtime_booleanattribute", - "community": 580, + "community": 125, "norm_label": "booleanattribute()" }, { @@ -348699,7 +349429,7 @@ "source_location": "L710", "_origin": "ast", "id": "remix_app_embed_runtime_configfromscript", - "community": 580, + "community": 125, "norm_label": "configfromscript()" }, { @@ -348739,7 +349469,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_functions_safe", - "community": 323, + "community": 506, "norm_label": "safe.tsx" }, { @@ -348749,7 +349479,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_functions_safe_safe", - "community": 323, + "community": 506, "norm_label": "safe()" }, { @@ -348759,7 +349489,7 @@ "source_location": "L56", "_origin": "ast", "id": "remix_app_functions_safe_getmeta", - "community": 323, + "community": 506, "norm_label": "getmeta()" }, { @@ -349359,7 +350089,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_hooks_apirequestlog_test", - "community": 287, + "community": 195, "norm_label": "apirequestlog.test.ts" }, { @@ -349369,7 +350099,7 @@ "source_location": "L17", "_origin": "ast", "id": "remix_app_hooks_apirequestlog_test_baseentry", - "community": 287, + "community": 195, "norm_label": "baseentry" }, { @@ -349379,7 +350109,7 @@ "source_location": "L24", "_origin": "ast", "id": "remix_app_hooks_apirequestlog_test_urisentinel", - "community": 287, + "community": 195, "norm_label": "urisentinel()" }, { @@ -349389,7 +350119,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_hooks_apirequestlog", - "community": 287, + "community": 195, "norm_label": "apirequestlog.ts" }, { @@ -349399,7 +350129,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_hooks_apirequestlog_apilogentry", - "community": 287, + "community": 195, "norm_label": "apilogentry" }, { @@ -349409,7 +350139,7 @@ "source_location": "L51", "_origin": "ast", "id": "remix_app_hooks_apirequestlog_redacturicredentials", - "community": 287, + "community": 195, "norm_label": "redacturicredentials()" }, { @@ -349419,7 +350149,7 @@ "source_location": "L53", "_origin": "ast", "id": "remix_app_hooks_apirequestlog_redactsensitive", - "community": 287, + "community": 195, "norm_label": "redactsensitive()" }, { @@ -349429,7 +350159,7 @@ "source_location": "L68", "_origin": "ast", "id": "remix_app_hooks_apirequestlog_entries", - "community": 287, + "community": 195, "norm_label": "entries" }, { @@ -349439,7 +350169,7 @@ "source_location": "L69", "_origin": "ast", "id": "remix_app_hooks_apirequestlog_listeners", - "community": 287, + "community": 195, "norm_label": "listeners" }, { @@ -349449,7 +350179,7 @@ "source_location": "L77", "_origin": "ast", "id": "remix_app_hooks_apirequestlog_redacturl", - "community": 287, + "community": 195, "norm_label": "redacturl()" }, { @@ -349459,7 +350189,7 @@ "source_location": "L110", "_origin": "ast", "id": "remix_app_hooks_apirequestlog_recordapicall", - "community": 287, + "community": 195, "norm_label": "recordapicall()" }, { @@ -349469,7 +350199,7 @@ "source_location": "L132", "_origin": "ast", "id": "remix_app_hooks_apirequestlog_getapicalls", - "community": 287, + "community": 195, "norm_label": "getapicalls()" }, { @@ -349479,7 +350209,7 @@ "source_location": "L134", "_origin": "ast", "id": "remix_app_hooks_apirequestlog_subscribeapicalls", - "community": 287, + "community": 195, "norm_label": "subscribeapicalls()" }, { @@ -349489,7 +350219,7 @@ "source_location": "L139", "_origin": "ast", "id": "remix_app_hooks_apirequestlog_clearapicalls", - "community": 287, + "community": 195, "norm_label": "clearapicalls()" }, { @@ -349499,7 +350229,7 @@ "source_location": "L150", "_origin": "ast", "id": "remix_app_hooks_apirequestlog_apistatustone", - "community": 287, + "community": 195, "norm_label": "apistatustone" }, { @@ -349509,7 +350239,7 @@ "source_location": "L160", "_origin": "ast", "id": "remix_app_hooks_apirequestlog_describeapistatus", - "community": 287, + "community": 195, "norm_label": "describeapistatus()" }, { @@ -349519,7 +350249,7 @@ "source_location": "L169", "_origin": "ast", "id": "remix_app_hooks_apirequestlog_shellquote", - "community": 287, + "community": 195, "norm_label": "shellquote()" }, { @@ -349529,7 +350259,7 @@ "source_location": "L182", "_origin": "ast", "id": "remix_app_hooks_apirequestlog_buildcurlforentry", - "community": 287, + "community": 195, "norm_label": "buildcurlforentry()" }, { @@ -349539,7 +350269,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_hooks_localcache_test", - "community": 53, + "community": 73, "norm_label": "localcache.test.ts" }, { @@ -349549,7 +350279,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_hooks_localcache_test_memorystorage", - "community": 53, + "community": 73, "norm_label": "memorystorage" }, { @@ -349559,7 +350289,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_hooks_localcache_test_memorystorage_length", - "community": 53, + "community": 73, "norm_label": ".length()" }, { @@ -349569,7 +350299,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_hooks_localcache_test_memorystorage_key", - "community": 53, + "community": 73, "norm_label": ".key()" }, { @@ -349579,7 +350309,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_hooks_localcache_test_memorystorage_getitem", - "community": 53, + "community": 73, "norm_label": ".getitem()" }, { @@ -349589,7 +350319,7 @@ "source_location": "L25", "_origin": "ast", "id": "remix_app_hooks_localcache_test_memorystorage_setitem", - "community": 53, + "community": 73, "norm_label": ".setitem()" }, { @@ -349599,7 +350329,7 @@ "source_location": "L28", "_origin": "ast", "id": "remix_app_hooks_localcache_test_memorystorage_removeitem", - "community": 53, + "community": 73, "norm_label": ".removeitem()" }, { @@ -349609,7 +350339,7 @@ "source_location": "L35", "_origin": "ast", "id": "remix_app_hooks_localcache_test_storage", - "community": 53, + "community": 73, "norm_label": "storage()" }, { @@ -349619,7 +350349,7 @@ "source_location": "L36", "_origin": "ast", "id": "remix_app_hooks_localcache_test_keysunder", - "community": 53, + "community": 73, "norm_label": "keysunder()" }, { @@ -349629,7 +350359,7 @@ "source_location": "L46", "_origin": "ast", "id": "remix_app_hooks_localcache_test_writeat", - "community": 53, + "community": 73, "norm_label": "writeat()" }, { @@ -349639,7 +350369,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_hooks_localcache", - "community": 53, + "community": 73, "norm_label": "localcache.ts" }, { @@ -349649,7 +350379,7 @@ "source_location": "L10", "_origin": "ast", "id": "remix_app_hooks_localcache_readlocalcache", - "community": 53, + "community": 73, "norm_label": "readlocalcache()" }, { @@ -349659,7 +350389,7 @@ "source_location": "L20", "_origin": "ast", "id": "remix_app_hooks_localcache_writelocalcache", - "community": 53, + "community": 73, "norm_label": "writelocalcache()" }, { @@ -349669,7 +350399,7 @@ "source_location": "L29", "_origin": "ast", "id": "remix_app_hooks_localcache_clearlocalcache", - "community": 53, + "community": 73, "norm_label": "clearlocalcache()" }, { @@ -349679,7 +350409,7 @@ "source_location": "L50", "_origin": "ast", "id": "remix_app_hooks_localcache_stampedcache", - "community": 53, + "community": 73, "norm_label": "stampedcache" }, { @@ -349689,7 +350419,7 @@ "source_location": "L52", "_origin": "ast", "id": "remix_app_hooks_localcache_writestampedcache", - "community": 53, + "community": 73, "norm_label": "writestampedcache()" }, { @@ -349699,7 +350429,7 @@ "source_location": "L56", "_origin": "ast", "id": "remix_app_hooks_localcache_readstampedcache", - "community": 53, + "community": 73, "norm_label": "readstampedcache()" }, { @@ -349709,7 +350439,7 @@ "source_location": "L63", "_origin": "ast", "id": "remix_app_hooks_localcache_prunecachenamespace", - "community": 53, + "community": 73, "norm_label": "prunecachenamespace()" }, { @@ -349719,7 +350449,7 @@ "source_location": "L86", "_origin": "ast", "id": "remix_app_hooks_localcache_clearlocalcacheprefix", - "community": 53, + "community": 73, "norm_label": "clearlocalcacheprefix()" }, { @@ -349779,7 +350509,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_hooks_passkeyceremony_test", - "community": 604, + "community": 58, "norm_label": "passkeyceremony.test.ts" }, { @@ -349789,7 +350519,7 @@ "source_location": "L4", "_origin": "ast", "id": "remix_app_hooks_passkeyceremony_test_deferred", - "community": 604, + "community": 58, "norm_label": "deferred()" }, { @@ -349799,7 +350529,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_hooks_passkeyceremony", - "community": 604, + "community": 58, "norm_label": "passkeyceremony.ts" }, { @@ -349809,7 +350539,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_hooks_passkeyceremony_decode", - "community": 604, + "community": 58, "norm_label": "decode()" }, { @@ -349819,7 +350549,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_hooks_passkeyceremony_encode", - "community": 604, + "community": 58, "norm_label": "encode()" }, { @@ -349829,7 +350559,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_hooks_passkeyceremony_descriptor", - "community": 604, + "community": 58, "norm_label": "descriptor()" }, { @@ -349839,7 +350569,7 @@ "source_location": "L23", "_origin": "ast", "id": "remix_app_hooks_passkeyceremony_authenticatepasskey", - "community": 604, + "community": 58, "norm_label": "authenticatepasskey()" }, { @@ -349849,7 +350579,7 @@ "source_location": "L50", "_origin": "ast", "id": "remix_app_hooks_passkeyceremony_createpasskey", - "community": 604, + "community": 58, "norm_label": "createpasskey()" }, { @@ -349859,7 +350589,7 @@ "source_location": "L78", "_origin": "ast", "id": "remix_app_hooks_passkeyceremony_passkeyceremonies", - "community": 604, + "community": 58, "norm_label": "passkeyceremonies" }, { @@ -349869,7 +350599,7 @@ "source_location": "L80", "_origin": "ast", "id": "remix_app_hooks_passkeyceremony_passkeyceremonies_constructor", - "community": 604, + "community": 58, "norm_label": ".constructor()" }, { @@ -349879,7 +350609,7 @@ "source_location": "L84", "_origin": "ast", "id": "remix_app_hooks_passkeyceremony_passkeyceremonies_run", - "community": 604, + "community": 58, "norm_label": ".run()" }, { @@ -349889,7 +350619,7 @@ "source_location": "L110", "_origin": "ast", "id": "remix_app_hooks_passkeyceremony_passkeyceremonies_cancel", - "community": 604, + "community": 58, "norm_label": ".cancel()" }, { @@ -349899,7 +350629,7 @@ "source_location": "L119", "_origin": "ast", "id": "remix_app_hooks_passkeyceremony_passkeyerrormessage", - "community": 604, + "community": 58, "norm_label": "passkeyerrormessage()" }, { @@ -349909,7 +350639,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_hooks_thingsrequestpayload_test", - "community": 53, + "community": 70, "norm_label": "thingsrequestpayload.test.ts" }, { @@ -349919,7 +350649,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_hooks_thingsrequestpayload_test_richtext", - "community": 53, + "community": 70, "norm_label": "richtext" }, { @@ -349929,7 +350659,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_hooks_thingsrequestpayload", - "community": 53, + "community": 70, "norm_label": "thingsrequestpayload.ts" }, { @@ -349939,7 +350669,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_hooks_thingsrequestpayload_thingrequestargs", - "community": 53, + "community": 70, "norm_label": "thingrequestargs" }, { @@ -349949,7 +350679,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_hooks_thingsrequestpayload_buildthingcreaterequestpayload", - "community": 53, + "community": 70, "norm_label": "buildthingcreaterequestpayload()" }, { @@ -349959,7 +350689,7 @@ "source_location": "L36", "_origin": "ast", "id": "remix_app_hooks_thingsrequestpayload_buildthingcommentrequestpayload", - "community": 53, + "community": 70, "norm_label": "buildthingcommentrequestpayload()" }, { @@ -349969,7 +350699,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_hooks_useapi", - "community": 53, + "community": 70, "norm_label": "useapi.tsx" }, { @@ -349979,7 +350709,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_hooks_useapi_refreshrootdata", - "community": 53, + "community": 70, "norm_label": "refreshrootdata()" }, { @@ -349999,7 +350729,7 @@ "source_location": "L63", "_origin": "ast", "id": "remix_app_hooks_useapi_toquery", - "community": 53, + "community": 70, "norm_label": "toquery()" }, { @@ -350019,7 +350749,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_hooks_useasyncfetcher", - "community": 287, + "community": 323, "norm_label": "useasyncfetcher.tsx" }, { @@ -350029,7 +350759,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_hooks_useasyncfetcher_useasyncfetcher", - "community": 73, + "community": 323, "norm_label": "useasyncfetcher()" }, { @@ -350069,7 +350799,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_hooks_usecurrentuser", - "community": 53, + "community": 73, "norm_label": "usecurrentuser.tsx" }, { @@ -350079,7 +350809,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_hooks_usecurrentuser_currentuser", - "community": 53, + "community": 73, "norm_label": "currentuser" }, { @@ -350099,7 +350829,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_hooks_usefeedshortcuts", - "community": 63, + "community": 1, "norm_label": "usefeedshortcuts.ts" }, { @@ -350109,7 +350839,7 @@ "source_location": "L25", "_origin": "ast", "id": "remix_app_hooks_usefeedshortcuts_feedpostshortcutactions", - "community": 63, + "community": 1, "norm_label": "feedpostshortcutactions" }, { @@ -350119,7 +350849,7 @@ "source_location": "L34", "_origin": "ast", "id": "remix_app_hooks_usefeedshortcuts_feedpostshortcutactionsref", - "community": 63, + "community": 1, "norm_label": "feedpostshortcutactionsref" }, { @@ -350129,7 +350859,7 @@ "source_location": "L36", "_origin": "ast", "id": "remix_app_hooks_usefeedshortcuts_feedshortcutsregistry", - "community": 63, + "community": 1, "norm_label": "feedshortcutsregistry" }, { @@ -350139,7 +350869,7 @@ "source_location": "L42", "_origin": "ast", "id": "remix_app_hooks_usefeedshortcuts_feedshortcutscontext", - "community": 53, + "community": 1, "norm_label": "feedshortcutscontext" }, { @@ -350149,7 +350879,7 @@ "source_location": "L47", "_origin": "ast", "id": "remix_app_hooks_usefeedshortcuts_istypingcontext", - "community": 63, + "community": 1, "norm_label": "istypingcontext()" }, { @@ -350159,7 +350889,7 @@ "source_location": "L58", "_origin": "ast", "id": "remix_app_hooks_usefeedshortcuts_iselementvisible", - "community": 63, + "community": 1, "norm_label": "iselementvisible()" }, { @@ -350169,7 +350899,7 @@ "source_location": "L66", "_origin": "ast", "id": "remix_app_hooks_usefeedshortcuts_hasopenoverlay", - "community": 63, + "community": 1, "norm_label": "hasopenoverlay()" }, { @@ -350179,7 +350909,7 @@ "source_location": "L77", "_origin": "ast", "id": "remix_app_hooks_usefeedshortcuts_iscommanderactive", - "community": 63, + "community": 1, "norm_label": "iscommanderactive()" }, { @@ -350189,7 +350919,7 @@ "source_location": "L79", "_origin": "ast", "id": "remix_app_hooks_usefeedshortcuts_escapecssid", - "community": 63, + "community": 1, "norm_label": "escapecssid()" }, { @@ -350199,7 +350929,7 @@ "source_location": "L82", "_origin": "ast", "id": "remix_app_hooks_usefeedshortcuts_usefeedshortcutsoptions", - "community": 63, + "community": 1, "norm_label": "usefeedshortcutsoptions" }, { @@ -350209,7 +350939,7 @@ "source_location": "L89", "_origin": "ast", "id": "remix_app_hooks_usefeedshortcuts_usefeedshortcutsresult", - "community": 63, + "community": 1, "norm_label": "usefeedshortcutsresult" }, { @@ -350219,7 +350949,7 @@ "source_location": "L96", "_origin": "ast", "id": "remix_app_hooks_usefeedshortcuts_usefeedshortcuts", - "community": 53, + "community": 1, "norm_label": "usefeedshortcuts()" }, { @@ -350249,7 +350979,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_hooks_usepasskeys", - "community": 53, + "community": 58, "norm_label": "usepasskeys.tsx" }, { @@ -350259,7 +350989,7 @@ "source_location": "L20", "_origin": "ast", "id": "remix_app_hooks_usepasskeys_passkeylinkedapp", - "community": 53, + "community": 58, "norm_label": "passkeylinkedapp" }, { @@ -350269,7 +350999,7 @@ "source_location": "L28", "_origin": "ast", "id": "remix_app_hooks_usepasskeys_passkeyrecord", - "community": 53, + "community": 58, "norm_label": "passkeyrecord" }, { @@ -350279,7 +351009,7 @@ "source_location": "L44", "_origin": "ast", "id": "remix_app_hooks_usepasskeys_accounthint", - "community": 698, + "community": 58, "norm_label": "accounthint" }, { @@ -350289,7 +351019,7 @@ "source_location": "L52", "_origin": "ast", "id": "remix_app_hooks_usepasskeys_ispasskeycancel", - "community": 53, + "community": 58, "norm_label": "ispasskeycancel()" }, { @@ -350299,7 +351029,7 @@ "source_location": "L54", "_origin": "ast", "id": "remix_app_hooks_usepasskeys_passkeyssupported", - "community": 53, + "community": 58, "norm_label": "passkeyssupported()" }, { @@ -350309,7 +351039,7 @@ "source_location": "L62", "_origin": "ast", "id": "remix_app_hooks_usepasskeys_usepasskeyauth", - "community": 53, + "community": 58, "norm_label": "usepasskeyauth()" }, { @@ -350319,7 +351049,7 @@ "source_location": "L110", "_origin": "ast", "id": "remix_app_hooks_usepasskeys_usepasskeyautofill", - "community": 53, + "community": 58, "norm_label": "usepasskeyautofill()" }, { @@ -350329,7 +351059,7 @@ "source_location": "L153", "_origin": "ast", "id": "remix_app_hooks_usepasskeys_fetchfederatedhints", - "community": 53, + "community": 58, "norm_label": "fetchfederatedhints()" }, { @@ -350339,7 +351069,7 @@ "source_location": "L172", "_origin": "ast", "id": "remix_app_hooks_usepasskeys_mergehints", - "community": 53, + "community": 58, "norm_label": "mergehints()" }, { @@ -350349,7 +351079,7 @@ "source_location": "L188", "_origin": "ast", "id": "remix_app_hooks_usepasskeys_useaccounthints", - "community": 53, + "community": 58, "norm_label": "useaccounthints()" }, { @@ -350359,7 +351089,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_hooks_usepath", - "community": 323, + "community": 4, "norm_label": "usepath.tsx" }, { @@ -350369,7 +351099,7 @@ "source_location": "L4", "_origin": "ast", "id": "remix_app_hooks_usepath_usepath", - "community": 323, + "community": 4, "norm_label": "usepath()" }, { @@ -350379,7 +351109,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_hooks_useprops", - "community": 63, + "community": 323, "norm_label": "useprops.tsx" }, { @@ -350389,7 +351119,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_hooks_useprops_useprops", - "community": 63, + "community": 323, "norm_label": "useprops()" }, { @@ -350399,7 +351129,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_hooks_usethings", - "community": 323, + "community": 506, "norm_label": "usethings.tsx" }, { @@ -350409,7 +351139,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_hooks_usethings_usethings", - "community": 323, + "community": 506, "norm_label": "usethings()" }, { @@ -350419,7 +351149,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_hooks_usethingtimemachine", - "community": 896, + "community": 323, "norm_label": "usethingtimemachine.tsx" }, { @@ -350429,7 +351159,7 @@ "source_location": "L23", "_origin": "ast", "id": "remix_app_hooks_usethingtimemachine_patharray", - "community": 896, + "community": 323, "norm_label": "patharray" }, { @@ -350439,7 +351169,7 @@ "source_location": "L25", "_origin": "ast", "id": "remix_app_hooks_usethingtimemachine_timelineevent", - "community": 896, + "community": 323, "norm_label": "timelineevent" }, { @@ -350449,7 +351179,7 @@ "source_location": "L35", "_origin": "ast", "id": "remix_app_hooks_usethingtimemachine_usethingtimeline", - "community": 432, + "community": 323, "norm_label": "usethingtimeline()" }, { @@ -350459,7 +351189,7 @@ "source_location": "L296", "_origin": "ast", "id": "remix_app_hooks_usethingtimemachine_timeline", - "community": 896, + "community": 323, "norm_label": "timeline" }, { @@ -350469,7 +351199,7 @@ "source_location": "L305", "_origin": "ast", "id": "remix_app_hooks_usethingtimemachine_timelinescaffold", - "community": 896, + "community": 323, "norm_label": "timelinescaffold" }, { @@ -350479,7 +351209,7 @@ "source_location": "L314", "_origin": "ast", "id": "remix_app_hooks_usethingtimemachine_newtimeline", - "community": 896, + "community": 323, "norm_label": "newtimeline()" }, { @@ -350489,7 +351219,7 @@ "source_location": "L369", "_origin": "ast", "id": "remix_app_hooks_usethingtimemachine_timemachine", - "community": 896, + "community": 323, "norm_label": "timemachine" }, { @@ -350499,7 +351229,7 @@ "source_location": "L376", "_origin": "ast", "id": "remix_app_hooks_usethingtimemachine_timemachinescaffold", - "community": 896, + "community": 323, "norm_label": "timemachinescaffold" }, { @@ -350509,7 +351239,7 @@ "source_location": "L382", "_origin": "ast", "id": "remix_app_hooks_usethingtimemachine_thingtimeline", - "community": 896, + "community": 323, "norm_label": "thingtimeline()" }, { @@ -350519,7 +351249,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_hooks_usetrace", - "community": 63, + "community": 323, "norm_label": "usetrace.tsx" }, { @@ -350529,7 +351259,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_hooks_usetrace_usetrace", - "community": 63, + "community": 323, "norm_label": "usetrace()" }, { @@ -350539,7 +351269,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_hooks_usetttheme", - "community": 323, + "community": 53, "norm_label": "usetttheme.tsx" }, { @@ -350549,7 +351279,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_hooks_usetttheme_ttthemesettings", - "community": 323, + "community": 53, "norm_label": "ttthemesettings" }, { @@ -350559,7 +351289,7 @@ "source_location": "L27", "_origin": "ast", "id": "remix_app_hooks_usetttheme_usetttheme", - "community": 323, + "community": 53, "norm_label": "usetttheme()" }, { @@ -350569,7 +351299,7 @@ "source_location": "L172", "_origin": "ast", "id": "remix_app_hooks_usetttheme_usettcustomclasses", - "community": 323, + "community": 161, "norm_label": "usettcustomclasses()" }, { @@ -350579,7 +351309,7 @@ "source_location": "L184", "_origin": "ast", "id": "remix_app_hooks_usetttheme_usetticonstyle", - "community": 323, + "community": 5, "norm_label": "usetticonstyle()" }, { @@ -350589,7 +351319,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_hooks_useuuid", - "community": 63, + "community": 323, "norm_label": "useuuid.tsx" }, { @@ -350599,7 +351329,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_hooks_useuuid_useuuid", - "community": 63, + "community": 323, "norm_label": "useuuid()" }, { @@ -350609,7 +351339,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_root_data_server_test", - "community": 42, + "community": 648, "norm_label": "root-data.server.test.ts" }, { @@ -350619,7 +351349,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_root_data_server_test_test_env_keys", - "community": 42, + "community": 648, "norm_label": "test_env_keys" }, { @@ -350629,7 +351359,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_root_data_server_test_withtestenv", - "community": 42, + "community": 648, "norm_label": "withtestenv()" }, { @@ -350639,7 +351369,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_root_data_server", - "community": 42, + "community": 648, "norm_label": "root-data.server.ts" }, { @@ -350649,7 +351379,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_root_data_server_rootloaderdata", - "community": 496, + "community": 1, "norm_label": "rootloaderdata" }, { @@ -350659,7 +351389,7 @@ "source_location": "L20", "_origin": "ast", "id": "remix_app_root_data_server_public_thingtime_env_keys", - "community": 42, + "community": 648, "norm_label": "public_thingtime_env_keys" }, { @@ -350669,7 +351399,7 @@ "source_location": "L30", "_origin": "ast", "id": "remix_app_root_data_server_getdeploymentbranchname", - "community": 42, + "community": 648, "norm_label": "getdeploymentbranchname()" }, { @@ -350679,7 +351409,7 @@ "source_location": "L38", "_origin": "ast", "id": "remix_app_root_data_server_getdeploymentcommitsha", - "community": 42, + "community": 648, "norm_label": "getdeploymentcommitsha()" }, { @@ -350689,7 +351419,7 @@ "source_location": "L42", "_origin": "ast", "id": "remix_app_root_data_server_loadrootdata", - "community": 42, + "community": 648, "norm_label": "loadrootdata()" }, { @@ -350699,7 +351429,7 @@ "source_location": "L90", "_origin": "ast", "id": "remix_app_root_data_server_rootdataresponse", - "community": 42, + "community": 648, "norm_label": "rootdataresponse()" }, { @@ -350729,7 +351459,7 @@ "source_location": "L54", "_origin": "ast", "id": "remix_app_root_app", - "community": 138, + "community": 358, "norm_label": "app()" }, { @@ -350739,7 +351469,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_tsx_remix_app_routes_d47d44", - "community": 496, + "community": 1, "norm_label": "routes.tsx" }, { @@ -350749,7 +351479,7 @@ "source_location": "L43", "_origin": "ast", "id": "remix_app_routes_lazyroute", - "community": 496, + "community": 1, "norm_label": "lazyroute()" }, { @@ -350759,7 +351489,7 @@ "source_location": "L55", "_origin": "ast", "id": "remix_app_routes_hydratefallback", - "community": 496, + "community": 1, "norm_label": "hydratefallback()" }, { @@ -350769,7 +351499,7 @@ "source_location": "L59", "_origin": "ast", "id": "remix_app_routes_fetchjson", - "community": 496, + "community": 1, "norm_label": "fetchjson()" }, { @@ -350779,7 +351509,7 @@ "source_location": "L81", "_origin": "ast", "id": "remix_app_routes_rootloader", - "community": 496, + "community": 1, "norm_label": "rootloader()" }, { @@ -350789,7 +351519,7 @@ "source_location": "L100", "_origin": "ast", "id": "remix_app_routes_currentuserloader", - "community": 496, + "community": 1, "norm_label": "currentuserloader()" }, { @@ -350799,7 +351529,7 @@ "source_location": "L105", "_origin": "ast", "id": "remix_app_routes_requireguest", - "community": 496, + "community": 1, "norm_label": "requireguest()" }, { @@ -350809,7 +351539,7 @@ "source_location": "L114", "_origin": "ast", "id": "remix_app_routes_requireuser", - "community": 496, + "community": 1, "norm_label": "requireuser()" }, { @@ -350819,7 +351549,7 @@ "source_location": "L122", "_origin": "ast", "id": "remix_app_routes_verceldeploymentsloader", - "community": 496, + "community": 1, "norm_label": "verceldeploymentsloader()" }, { @@ -350869,7 +351599,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_index_tsx_remix_app_routes_index", - "community": 591, + "community": 5, "norm_label": "_index.tsx" }, { @@ -350879,7 +351609,7 @@ "source_location": "L10", "_origin": "ast", "id": "remix_app_routes_index_index", - "community": 591, + "community": 5, "norm_label": "index()" }, { @@ -350889,7 +351619,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_action_detail", - "community": 18, + "community": 492, "norm_label": "action-detail.tsx" }, { @@ -350899,7 +351629,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_routes_action_detail_actiondetail", - "community": 18, + "community": 492, "norm_label": "actiondetail()" }, { @@ -350909,7 +351639,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_actions", - "community": 18, + "community": 492, "norm_label": "actions.tsx" }, { @@ -350919,7 +351649,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_routes_actions_actions", - "community": 18, + "community": 492, "norm_label": "actions()" }, { @@ -350929,7 +351659,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_admin", - "community": 17, + "community": 53, "norm_label": "admin.tsx" }, { @@ -350939,7 +351669,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_routes_admin_adminroute", - "community": 17, + "community": 53, "norm_label": "adminroute()" }, { @@ -350989,7 +351719,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_ai_models_models", - "community": 194, + "community": 3, "norm_label": "_models.tsx" }, { @@ -350999,7 +351729,7 @@ "source_location": "L25", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_ai_models_models_handlerdependencies", - "community": 194, + "community": 3, "norm_label": "handlerdependencies" }, { @@ -351009,7 +351739,7 @@ "source_location": "L33", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_ai_models_models_createadminaimodelshandlers", - "community": 194, + "community": 669, "norm_label": "createadminaimodelshandlers()" }, { @@ -351019,7 +351749,7 @@ "source_location": "L93", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_ai_models_models_handlers", - "community": 194, + "community": 3, "norm_label": "handlers" }, { @@ -351029,7 +351759,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_apps_apps", - "community": 194, + "community": 47, "norm_label": "_apps.tsx" }, { @@ -351039,7 +351769,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_apps_apps_privateheaders", - "community": 194, + "community": 47, "norm_label": "privateheaders" }, { @@ -351049,7 +351779,7 @@ "source_location": "L15", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_apps_apps_loader", - "community": 194, + "community": 47, "norm_label": "loader()" }, { @@ -351099,7 +351829,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_ci_automations_automations", - "community": 277, + "community": 194, "norm_label": "_automations.tsx" }, { @@ -351159,7 +351889,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_ci_previews_previews_action", - "community": 194, + "community": 466, "norm_label": "action()" }, { @@ -351189,7 +351919,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_ci_stacks_stacks", - "community": 386, + "community": 194, "norm_label": "_stacks.tsx" }, { @@ -351199,7 +351929,7 @@ "source_location": "L20", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_ci_stacks_stacks_privateheaders", - "community": 386, + "community": 194, "norm_label": "privateheaders" }, { @@ -351209,7 +351939,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_ci_stacks_stacks_featurestack", - "community": 386, + "community": 194, "norm_label": "featurestack" }, { @@ -351219,7 +351949,7 @@ "source_location": "L24", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_ci_stacks_stacks_dispatchsavedfeaturestack", - "community": 386, + "community": 428, "norm_label": "dispatchsavedfeaturestack()" }, { @@ -351229,7 +351959,7 @@ "source_location": "L47", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_ci_stacks_stacks_cancellatestrunwhenactive", - "community": 386, + "community": 564, "norm_label": "cancellatestrunwhenactive()" }, { @@ -351239,7 +351969,7 @@ "source_location": "L58", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_ci_stacks_stacks_recordlifecycleaction", - "community": 386, + "community": 466, "norm_label": "recordlifecycleaction()" }, { @@ -351249,7 +351979,7 @@ "source_location": "L74", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_ci_stacks_stacks_listfeaturestackswithlegacyrunlinks", - "community": 386, + "community": 428, "norm_label": "listfeaturestackswithlegacyrunlinks()" }, { @@ -351259,7 +351989,7 @@ "source_location": "L95", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_ci_stacks_stacks_loader", - "community": 386, + "community": 194, "norm_label": "loader()" }, { @@ -351269,7 +351999,7 @@ "source_location": "L104", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_ci_stacks_stacks_action", - "community": 386, + "community": 194, "norm_label": "action()" }, { @@ -351309,7 +352039,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_integrations_integrations", - "community": 50, + "community": 194, "norm_label": "_integrations.tsx" }, { @@ -351589,7 +352319,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_moderation_moderation", - "community": 52, + "community": 194, "norm_label": "_moderation.tsx" }, { @@ -351679,7 +352409,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_set_admin_set_admin", - "community": 47, + "community": 194, "norm_label": "_set-admin.tsx" }, { @@ -351689,7 +352419,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_set_admin_set_admin_action", - "community": 47, + "community": 194, "norm_label": "action()" }, { @@ -351699,7 +352429,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_subscriptions_subscriptions", - "community": 194, + "community": 8, "norm_label": "_subscriptions.tsx" }, { @@ -351709,7 +352439,7 @@ "source_location": "L10", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_subscriptions_subscriptions_parsesubject", - "community": 194, + "community": 8, "norm_label": "parsesubject()" }, { @@ -351719,7 +352449,7 @@ "source_location": "L24", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_subscriptions_subscriptions_resolvesubjectowner", - "community": 194, + "community": 8, "norm_label": "resolvesubjectowner()" }, { @@ -351729,7 +352459,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_subscriptions_subscriptions_loader", - "community": 194, + "community": 8, "norm_label": "loader()" }, { @@ -351739,7 +352469,7 @@ "source_location": "L61", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_subscriptions_subscriptions_action", - "community": 194, + "community": 8, "norm_label": "action()" }, { @@ -351749,7 +352479,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_tiers_tiers", - "community": 4, + "community": 487, "norm_label": "_tiers.tsx" }, { @@ -351759,7 +352489,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_tiers_tiers_groupedcatalog", - "community": 4, + "community": 487, "norm_label": "groupedcatalog()" }, { @@ -351769,7 +352499,7 @@ "source_location": "L26", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_tiers_tiers_loader", - "community": 194, + "community": 487, "norm_label": "loader()" }, { @@ -351779,7 +352509,7 @@ "source_location": "L35", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_tiers_tiers_action", - "community": 194, + "community": 487, "norm_label": "action()" }, { @@ -351889,7 +352619,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_users_public_uploads_public_uploads", - "community": 47, + "community": 194, "norm_label": "_public-uploads.tsx" }, { @@ -351899,7 +352629,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_users_public_uploads_public_uploads_action", - "community": 47, + "community": 194, "norm_label": "action()" }, { @@ -351909,7 +352639,7 @@ "source_location": "L35", "_origin": "ast", "id": "remix_app_routes_api_v1_admin_users_public_uploads_public_uploads_loader", - "community": 47, + "community": 194, "norm_label": "loader()" }, { @@ -352039,7 +352769,7 @@ "source_location": "L44", "_origin": "ast", "id": "remix_app_routes_api_v1_ai_models_models_createaimodelshandlers", - "community": 194, + "community": 669, "norm_label": "createaimodelshandlers()" }, { @@ -352149,7 +352879,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_algorithms_track_track", - "community": 3, + "community": 343, "norm_label": "_track.tsx" }, { @@ -352159,7 +352889,7 @@ "source_location": "L10", "_origin": "ast", "id": "remix_app_routes_api_v1_algorithms_track_track_action", - "community": 3, + "community": 343, "norm_label": "action()" }, { @@ -352439,7 +353169,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_apps_storage_storage", - "community": 81, + "community": 8, "norm_label": "_storage.tsx" }, { @@ -352449,7 +353179,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_routes_api_v1_apps_storage_storage_loader", - "community": 81, + "community": 8, "norm_label": "loader()" }, { @@ -352459,7 +353189,7 @@ "source_location": "L26", "_origin": "ast", "id": "remix_app_routes_api_v1_apps_storage_storage_action", - "community": 81, + "community": 8, "norm_label": "action()" }, { @@ -352849,7 +353579,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_auth_account_hints_account_hints", - "community": 188, + "community": 41, "norm_label": "_account-hints.tsx" }, { @@ -352859,7 +353589,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_routes_api_v1_auth_account_hints_account_hints_loader", - "community": 188, + "community": 41, "norm_label": "loader()" }, { @@ -352869,7 +353599,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_auth_account_hints_resolve_resolve", - "community": 188, + "community": 41, "norm_label": "_resolve.tsx" }, { @@ -352879,7 +353609,7 @@ "source_location": "L11", "_origin": "ast", "id": "remix_app_routes_api_v1_auth_account_hints_resolve_resolve_corsheadersfor", - "community": 188, + "community": 41, "norm_label": "corsheadersfor()" }, { @@ -352889,7 +353619,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_routes_api_v1_auth_account_hints_resolve_resolve_loader", - "community": 188, + "community": 41, "norm_label": "loader()" }, { @@ -353029,7 +353759,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_auth_jwks_jwks", - "community": 42, + "community": 217, "norm_label": "_jwks.tsx" }, { @@ -353039,7 +353769,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_routes_api_v1_auth_jwks_jwks_loader", - "community": 42, + "community": 217, "norm_label": "loader()" }, { @@ -353089,7 +353819,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_auth_passkeys_passkeys", - "community": 3, + "community": 42, "norm_label": "_passkeys.tsx" }, { @@ -353099,7 +353829,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_routes_api_v1_auth_passkeys_passkeys_loader", - "community": 3, + "community": 42, "norm_label": "loader()" }, { @@ -353249,7 +353979,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_auth_password_reset_confirm_confirm", - "community": 45, + "community": 61, "norm_label": "_confirm.tsx" }, { @@ -353259,7 +353989,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_routes_api_v1_auth_password_reset_confirm_confirm_reset_errors", - "community": 45, + "community": 61, "norm_label": "reset_errors" }, { @@ -353269,7 +353999,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_routes_api_v1_auth_password_reset_confirm_confirm_action", - "community": 45, + "community": 61, "norm_label": "action()" }, { @@ -353279,7 +354009,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_auth_register_register", - "community": 45, + "community": 3, "norm_label": "_register.tsx" }, { @@ -353289,7 +354019,7 @@ "source_location": "L25", "_origin": "ast", "id": "remix_app_routes_api_v1_auth_register_register_action", - "community": 45, + "community": 3, "norm_label": "action()" }, { @@ -353299,7 +354029,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_auth_resend_verification_resend_verification", - "community": 45, + "community": 47, "norm_label": "_resend-verification.tsx" }, { @@ -353309,7 +354039,7 @@ "source_location": "L15", "_origin": "ast", "id": "remix_app_routes_api_v1_auth_resend_verification_resend_verification_action", - "community": 45, + "community": 47, "norm_label": "action()" }, { @@ -353339,7 +354069,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_auth_sso_session_sso_session", - "community": 41, + "community": 3, "norm_label": "_sso-session.tsx" }, { @@ -353349,7 +354079,7 @@ "source_location": "L18", "_origin": "ast", "id": "remix_app_routes_api_v1_auth_sso_session_sso_session_action", - "community": 41, + "community": 3, "norm_label": "action()" }, { @@ -353429,7 +354159,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_auth_verify_email_verify_email", - "community": 45, + "community": 61, "norm_label": "_verify-email.tsx" }, { @@ -353439,7 +354169,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_routes_api_v1_auth_verify_email_verify_email_loader", - "community": 45, + "community": 61, "norm_label": "loader()" }, { @@ -353609,7 +354339,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_chats_react_react", - "community": 3, + "community": 323, "norm_label": "_react.tsx" }, { @@ -353779,7 +354509,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_communities_get_get", - "community": 3, + "community": 6, "norm_label": "_get.tsx" }, { @@ -353789,7 +354519,7 @@ "source_location": "L10", "_origin": "ast", "id": "remix_app_routes_api_v1_communities_get_get_loader", - "community": 3, + "community": 6, "norm_label": "loader()" }, { @@ -354149,7 +354879,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_devices_node_commands_commands", - "community": 152, + "community": 358, "norm_label": "_commands.tsx" }, { @@ -354159,7 +354889,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_routes_api_v1_devices_node_commands_commands_action", - "community": 152, + "community": 358, "norm_label": "action()" }, { @@ -354169,7 +354899,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_devices_node_live_sync_live_sync", - "community": 3, + "community": 358, "norm_label": "_live-sync.tsx" }, { @@ -354179,7 +354909,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_routes_api_v1_devices_node_live_sync_live_sync_action", - "community": 3, + "community": 358, "norm_label": "action()" }, { @@ -354289,7 +355019,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_devices_screen_screen", - "community": 3, + "community": 358, "norm_label": "_screen.tsx" }, { @@ -354299,7 +355029,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_routes_api_v1_devices_screen_screen_loader", - "community": 3, + "community": 358, "norm_label": "loader()" }, { @@ -354309,7 +355039,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_routes_api_v1_devices_screen_screen_action", - "community": 3, + "community": 358, "norm_label": "action()" }, { @@ -354469,7 +355199,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_fedcm_accounts_accounts", - "community": 188, + "community": 41, "norm_label": "_accounts.tsx" }, { @@ -354479,7 +355209,7 @@ "source_location": "L12", "_origin": "ast", "id": "remix_app_routes_api_v1_fedcm_accounts_accounts_loader", - "community": 188, + "community": 41, "norm_label": "loader()" }, { @@ -354519,7 +355249,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_fedcm_client_metadata_client_metadata", - "community": 188, + "community": 41, "norm_label": "_client-metadata.tsx" }, { @@ -354529,7 +355259,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_routes_api_v1_fedcm_client_metadata_client_metadata_loader", - "community": 188, + "community": 41, "norm_label": "loader()" }, { @@ -354539,7 +355269,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_fedcm_config_config", - "community": 188, + "community": 41, "norm_label": "_config.tsx" }, { @@ -354549,7 +355279,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_routes_api_v1_fedcm_config_config_loader", - "community": 188, + "community": 41, "norm_label": "loader()" }, { @@ -355289,7 +356019,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_lopu_chats_reply_reply", - "community": 42, + "community": 49, "norm_label": "_reply.tsx" }, { @@ -355299,7 +356029,7 @@ "source_location": "L51", "_origin": "ast", "id": "remix_app_routes_api_v1_lopu_chats_reply_reply_replybody", - "community": 42, + "community": 49, "norm_label": "replybody" }, { @@ -355309,7 +356039,7 @@ "source_location": "L66", "_origin": "ast", "id": "remix_app_routes_api_v1_lopu_chats_reply_reply_validation", - "community": 42, + "community": 49, "norm_label": "validation" }, { @@ -355319,7 +356049,7 @@ "source_location": "L68", "_origin": "ast", "id": "remix_app_routes_api_v1_lopu_chats_reply_reply_isrecord", - "community": 42, + "community": 49, "norm_label": "isrecord()" }, { @@ -355329,7 +356059,7 @@ "source_location": "L70", "_origin": "ast", "id": "remix_app_routes_api_v1_lopu_chats_reply_reply_optionaltoken", - "community": 42, + "community": 49, "norm_label": "optionaltoken()" }, { @@ -355339,7 +356069,7 @@ "source_location": "L77", "_origin": "ast", "id": "remix_app_routes_api_v1_lopu_chats_reply_reply_parsecontext", - "community": 42, + "community": 49, "norm_label": "parsecontext()" }, { @@ -355349,7 +356079,7 @@ "source_location": "L120", "_origin": "ast", "id": "remix_app_routes_api_v1_lopu_chats_reply_reply_parsebody", - "community": 42, + "community": 49, "norm_label": "parsebody()" }, { @@ -355359,7 +356089,7 @@ "source_location": "L169", "_origin": "ast", "id": "remix_app_routes_api_v1_lopu_chats_reply_reply_titlefrommessage", - "community": 42, + "community": 49, "norm_label": "titlefrommessage()" }, { @@ -355369,7 +356099,7 @@ "source_location": "L179", "_origin": "ast", "id": "remix_app_routes_api_v1_lopu_chats_reply_reply_interruptednote", - "community": 42, + "community": 49, "norm_label": "interruptednote()" }, { @@ -355379,7 +356109,7 @@ "source_location": "L187", "_origin": "ast", "id": "remix_app_routes_api_v1_lopu_chats_reply_reply_action", - "community": 3, + "community": 49, "norm_label": "action()" }, { @@ -355759,7 +356489,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_mongodb_populate_populate", - "community": 194, + "community": 3, "norm_label": "_populate.tsx" }, { @@ -355769,7 +356499,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_routes_api_v1_mongodb_populate_populate_index", - "community": 194, + "community": 3, "norm_label": "index()" }, { @@ -355779,7 +356509,7 @@ "source_location": "L27", "_origin": "ast", "id": "remix_app_routes_api_v1_mongodb_populate_populate_actionexport", - "community": 194, + "community": 3, "norm_label": "actionexport()" }, { @@ -355899,7 +356629,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_network_probe_download_download", - "community": 564, + "community": 194, "norm_label": "_download.tsx" }, { @@ -355909,7 +356639,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_routes_api_v1_network_probe_download_download_loader", - "community": 564, + "community": 194, "norm_label": "loader()" }, { @@ -355919,7 +356649,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_network_probe_ping_ping", - "community": 564, + "community": 194, "norm_label": "_ping.tsx" }, { @@ -355929,7 +356659,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_routes_api_v1_network_probe_ping_ping_loader", - "community": 564, + "community": 194, "norm_label": "loader()" }, { @@ -355939,7 +356669,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_network_probe_upload_upload", - "community": 564, + "community": 194, "norm_label": "_upload.tsx" }, { @@ -355949,7 +356679,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_routes_api_v1_network_probe_upload_upload_action", - "community": 564, + "community": 194, "norm_label": "action()" }, { @@ -356139,7 +356869,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_notifications_settings_settings", - "community": 82, + "community": 47, "norm_label": "_settings.tsx" }, { @@ -356149,7 +356879,7 @@ "source_location": "L12", "_origin": "ast", "id": "remix_app_routes_api_v1_notifications_settings_settings_fullprefs", - "community": 82, + "community": 47, "norm_label": "fullprefs()" }, { @@ -356159,7 +356889,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_routes_api_v1_notifications_settings_settings_master_keys", - "community": 82, + "community": 47, "norm_label": "master_keys" }, { @@ -356169,7 +356899,7 @@ "source_location": "L20", "_origin": "ast", "id": "remix_app_routes_api_v1_notifications_settings_settings_loader", - "community": 82, + "community": 47, "norm_label": "loader()" }, { @@ -356179,7 +356909,7 @@ "source_location": "L28", "_origin": "ast", "id": "remix_app_routes_api_v1_notifications_settings_settings_channelpatch", - "community": 82, + "community": 47, "norm_label": "channelpatch" }, { @@ -356189,7 +356919,7 @@ "source_location": "L30", "_origin": "ast", "id": "remix_app_routes_api_v1_notifications_settings_settings_parsechannelpatch", - "community": 82, + "community": 47, "norm_label": "parsechannelpatch()" }, { @@ -356199,7 +356929,7 @@ "source_location": "L57", "_origin": "ast", "id": "remix_app_routes_api_v1_notifications_settings_settings_action", - "community": 82, + "community": 47, "norm_label": "action()" }, { @@ -356269,7 +356999,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_oauth_grants_revoke_revoke", - "community": 8, + "community": 3, "norm_label": "_revoke.tsx" }, { @@ -356279,7 +357009,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_routes_api_v1_oauth_grants_revoke_revoke_action", - "community": 8, + "community": 3, "norm_label": "action()" }, { @@ -356289,7 +357019,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_oauth_sandbox_sandbox", - "community": 3, + "community": 8, "norm_label": "_sandbox.tsx" }, { @@ -356299,7 +357029,7 @@ "source_location": "L34", "_origin": "ast", "id": "remix_app_routes_api_v1_oauth_sandbox_sandbox_action", - "community": 3, + "community": 8, "norm_label": "action()" }, { @@ -356309,7 +357039,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_oauth_scopes_scopes", - "community": 8, + "community": 3, "norm_label": "_scopes.tsx" }, { @@ -356579,7 +357309,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_settings_lopu_access_lopu_access", - "community": 49, + "community": 3, "norm_label": "_lopu-access.tsx" }, { @@ -356589,7 +357319,7 @@ "source_location": "L15", "_origin": "ast", "id": "remix_app_routes_api_v1_settings_lopu_access_lopu_access_no_store_headers", - "community": 49, + "community": 3, "norm_label": "no_store_headers" }, { @@ -356599,7 +357329,7 @@ "source_location": "L17", "_origin": "ast", "id": "remix_app_routes_api_v1_settings_lopu_access_lopu_access_lopuaccesssettingshandlerdependencies", - "community": 49, + "community": 3, "norm_label": "lopuaccesssettingshandlerdependencies" }, { @@ -356609,7 +357339,7 @@ "source_location": "L25", "_origin": "ast", "id": "remix_app_routes_api_v1_settings_lopu_access_lopu_access_methodnotallowed", - "community": 49, + "community": 3, "norm_label": "methodnotallowed()" }, { @@ -356629,7 +357359,7 @@ "source_location": "L67", "_origin": "ast", "id": "remix_app_routes_api_v1_settings_lopu_access_lopu_access_handlers", - "community": 49, + "community": 3, "norm_label": "handlers" }, { @@ -356699,7 +357429,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_settings_pr_conflict_auto_resolver_model_waterfall_pr_conflict_auto_resolver_model_waterfall", - "community": 194, + "community": 114, "norm_label": "_pr-conflict-auto-resolver-model-waterfall.tsx" }, { @@ -356709,7 +357439,7 @@ "source_location": "L18", "_origin": "ast", "id": "remix_app_routes_api_v1_settings_pr_conflict_auto_resolver_model_waterfall_pr_conflict_auto_resolver_model_waterfall_no_store_headers", - "community": 194, + "community": 114, "norm_label": "no_store_headers" }, { @@ -356719,7 +357449,7 @@ "source_location": "L20", "_origin": "ast", "id": "remix_app_routes_api_v1_settings_pr_conflict_auto_resolver_model_waterfall_pr_conflict_auto_resolver_model_waterfall_responsebody", - "community": 194, + "community": 114, "norm_label": "responsebody()" }, { @@ -356729,7 +357459,7 @@ "source_location": "L34", "_origin": "ast", "id": "remix_app_routes_api_v1_settings_pr_conflict_auto_resolver_model_waterfall_pr_conflict_auto_resolver_model_waterfall_handlerdependencies", - "community": 194, + "community": 114, "norm_label": "handlerdependencies" }, { @@ -356739,7 +357469,7 @@ "source_location": "L43", "_origin": "ast", "id": "remix_app_routes_api_v1_settings_pr_conflict_auto_resolver_model_waterfall_pr_conflict_auto_resolver_model_waterfall_createprconflictresolvermodelwaterfallhandlers", - "community": 194, + "community": 114, "norm_label": "createprconflictresolvermodelwaterfallhandlers()" }, { @@ -356749,7 +357479,7 @@ "source_location": "L90", "_origin": "ast", "id": "remix_app_routes_api_v1_settings_pr_conflict_auto_resolver_model_waterfall_pr_conflict_auto_resolver_model_waterfall_handlers", - "community": 194, + "community": 114, "norm_label": "handlers" }, { @@ -357089,7 +357819,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_template_template", - "community": 652, + "community": 323, "norm_label": "_template.tsx" }, { @@ -357099,7 +357829,7 @@ "source_location": "L5", "_origin": "ast", "id": "remix_app_routes_api_v1_template_template_index", - "community": 652, + "community": 323, "norm_label": "index()" }, { @@ -357109,7 +357839,7 @@ "source_location": "L15", "_origin": "ast", "id": "remix_app_routes_api_v1_template_template_action", - "community": 652, + "community": 323, "norm_label": "action()" }, { @@ -357119,7 +357849,7 @@ "source_location": "L26", "_origin": "ast", "id": "remix_app_routes_api_v1_template_template_earlyreturn", - "community": 652, + "community": 323, "norm_label": "earlyreturn()" }, { @@ -357379,7 +358109,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_things_quota_quota", - "community": 41, + "community": 47, "norm_label": "_quota.tsx" }, { @@ -357389,7 +358119,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_routes_api_v1_things_quota_quota_withquotaerrors", - "community": 41, + "community": 47, "norm_label": "withquotaerrors()" }, { @@ -357399,7 +358129,7 @@ "source_location": "L24", "_origin": "ast", "id": "remix_app_routes_api_v1_things_quota_quota_authenticate", - "community": 41, + "community": 47, "norm_label": "authenticate()" }, { @@ -357409,7 +358139,7 @@ "source_location": "L33", "_origin": "ast", "id": "remix_app_routes_api_v1_things_quota_quota_loader", - "community": 41, + "community": 47, "norm_label": "loader()" }, { @@ -357419,7 +358149,7 @@ "source_location": "L44", "_origin": "ast", "id": "remix_app_routes_api_v1_things_quota_quota_action", - "community": 41, + "community": 47, "norm_label": "action()" }, { @@ -357719,7 +358449,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_things_trending_trending", - "community": 41, + "community": 3, "norm_label": "_trending.tsx" }, { @@ -357729,7 +358459,7 @@ "source_location": "L18", "_origin": "ast", "id": "remix_app_routes_api_v1_things_trending_trending_loader", - "community": 41, + "community": 3, "norm_label": "loader()" }, { @@ -357839,7 +358569,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_tiers_tiers", - "community": 3, + "community": 487, "norm_label": "_tiers.tsx" }, { @@ -357849,7 +358579,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_routes_api_v1_tiers_tiers_loader", - "community": 3, + "community": 487, "norm_label": "loader()" }, { @@ -357879,7 +358609,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_tokens_self_self", - "community": 41, + "community": 217, "norm_label": "_self.tsx" }, { @@ -357889,7 +358619,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_routes_api_v1_tokens_self_self_loader", - "community": 41, + "community": 217, "norm_label": "loader()" }, { @@ -358329,7 +359059,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_vercel_status_data_status_data", - "community": 304, + "community": 3, "norm_label": "_status-data.tsx" }, { @@ -358339,7 +359069,7 @@ "source_location": "L5", "_origin": "ast", "id": "remix_app_routes_api_v1_vercel_status_data_status_data_loader", - "community": 304, + "community": 3, "norm_label": "loader()" }, { @@ -358349,7 +359079,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_vercel_status_status", - "community": 903, + "community": 304, "norm_label": "_status.tsx" }, { @@ -358359,7 +359089,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_routes_api_v1_vercel_status_status_loader", - "community": 903, + "community": 304, "norm_label": "loader()" }, { @@ -358369,7 +359099,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_routes_api_v1_vercel_status_status_action", - "community": 903, + "community": 304, "norm_label": "action()" }, { @@ -358399,7 +359129,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_waitlist_waitlist", - "community": 50, + "community": 261, "norm_label": "_waitlist.tsx" }, { @@ -358409,7 +359139,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_routes_api_v1_waitlist_waitlist_action", - "community": 50, + "community": 261, "norm_label": "action()" }, { @@ -358419,7 +359149,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_watch_pairing_pairing", - "community": 41, + "community": 358, "norm_label": "_pairing.tsx" }, { @@ -358429,7 +359159,7 @@ "source_location": "L15", "_origin": "ast", "id": "remix_app_routes_api_v1_watch_pairing_pairing_nostore", - "community": 41, + "community": 358, "norm_label": "nostore" }, { @@ -358439,7 +359169,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_routes_api_v1_watch_pairing_pairing_limitedresponse", - "community": 41, + "community": 358, "norm_label": "limitedresponse()" }, { @@ -358449,7 +359179,7 @@ "source_location": "L21", "_origin": "ast", "id": "remix_app_routes_api_v1_watch_pairing_pairing_loader", - "community": 41, + "community": 358, "norm_label": "loader()" }, { @@ -358459,7 +359189,7 @@ "source_location": "L35", "_origin": "ast", "id": "remix_app_routes_api_v1_watch_pairing_pairing_action", - "community": 41, + "community": 358, "norm_label": "action()" }, { @@ -358469,7 +359199,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_api_v1_watch_sync_sync", - "community": 82, + "community": 3, "norm_label": "_sync.tsx" }, { @@ -358479,7 +359209,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_routes_api_v1_watch_sync_sync_nostore", - "community": 82, + "community": 3, "norm_label": "nostore" }, { @@ -358489,7 +359219,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_routes_api_v1_watch_sync_sync_action", - "community": 82, + "community": 3, "norm_label": "action()" }, { @@ -358499,7 +359229,7 @@ "source_location": "L62", "_origin": "ast", "id": "remix_app_routes_api_v1_watch_sync_sync_loader", - "community": 82, + "community": 3, "norm_label": "loader()" }, { @@ -358629,7 +359359,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_apps", - "community": 53, + "community": 73, "norm_label": "apps.tsx" }, { @@ -358639,7 +359369,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_routes_apps_appsroute", - "community": 53, + "community": 73, "norm_label": "appsroute()" }, { @@ -358649,7 +359379,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_authorize", - "community": 496, + "community": 58, "norm_label": "authorize.tsx" }, { @@ -358659,7 +359389,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_routes_authorize_authorize", - "community": 496, + "community": 58, "norm_label": "authorize()" }, { @@ -358739,7 +359469,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_branding_old", - "community": 591, + "community": 323, "norm_label": "branding_old.tsx" }, { @@ -358749,7 +359479,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_routes_branding_old_branding", - "community": 591, + "community": 323, "norm_label": "branding()" }, { @@ -358759,7 +359489,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_builder_demo_detail", - "community": 7, + "community": 46, "norm_label": "builder-demo-detail.tsx" }, { @@ -358769,7 +359499,7 @@ "source_location": "L5", "_origin": "ast", "id": "remix_app_routes_builder_demo_detail_builderdemodetail", - "community": 7, + "community": 46, "norm_label": "builderdemodetail()" }, { @@ -358779,7 +359509,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_builder_demos", - "community": 7, + "community": 46, "norm_label": "builder-demos.tsx" }, { @@ -358799,7 +359529,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_component_detail", - "community": 7, + "community": 330, "norm_label": "component-detail.tsx" }, { @@ -358809,7 +359539,7 @@ "source_location": "L5", "_origin": "ast", "id": "remix_app_routes_component_detail_componentdetail", - "community": 7, + "community": 330, "norm_label": "componentdetail()" }, { @@ -358819,7 +359549,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_routes_component_detail_componentdetaildocs", - "community": 7, + "community": 330, "norm_label": "componentdetaildocs()" }, { @@ -358829,7 +359559,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_components", - "community": 7, + "community": 330, "norm_label": "components.tsx" }, { @@ -358839,7 +359569,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_routes_components_components", - "community": 7, + "community": 330, "norm_label": "components()" }, { @@ -360069,7 +360799,7 @@ "source_location": "L46", "_origin": "ast", "id": "remix_app_routes_docs_concepts_entries_conceptentries", - "community": 258, + "community": 317, "norm_label": "conceptentries" }, { @@ -360479,7 +361209,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_docs_design_system_pagescaffoldstories", - "community": 7, + "community": 492, "norm_label": "pagescaffoldstories.tsx" }, { @@ -360489,7 +361219,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_routes_docs_design_system_pagescaffoldstories_viewportframe", - "community": 7, + "community": 492, "norm_label": "viewportframe()" }, { @@ -360499,7 +361229,7 @@ "source_location": "L59", "_origin": "ast", "id": "remix_app_routes_docs_design_system_pagescaffoldstories_hairlinerow", - "community": 7, + "community": 492, "norm_label": "hairlinerow()" }, { @@ -360509,7 +361239,7 @@ "source_location": "L84", "_origin": "ast", "id": "remix_app_routes_docs_design_system_pagescaffoldstories_canonicalpagestory", - "community": 7, + "community": 492, "norm_label": "canonicalpagestory()" }, { @@ -360519,7 +361249,7 @@ "source_location": "L113", "_origin": "ast", "id": "remix_app_routes_docs_design_system_pagescaffoldstories_inkheaderstory", - "community": 7, + "community": 492, "norm_label": "inkheaderstory()" }, { @@ -360529,7 +361259,7 @@ "source_location": "L141", "_origin": "ast", "id": "remix_app_routes_docs_design_system_pagescaffoldstories_eyebrowsample", - "community": 7, + "community": 492, "norm_label": "eyebrowsample()" }, { @@ -360539,7 +361269,7 @@ "source_location": "L154", "_origin": "ast", "id": "remix_app_routes_docs_design_system_pagescaffoldstories_eyebrowstory", - "community": 7, + "community": 492, "norm_label": "eyebrowstory()" }, { @@ -360549,7 +361279,7 @@ "source_location": "L174", "_origin": "ast", "id": "remix_app_routes_docs_design_system_pagescaffoldstories_width_scale", - "community": 7, + "community": 492, "norm_label": "width_scale" }, { @@ -360559,7 +361289,7 @@ "source_location": "L185", "_origin": "ast", "id": "remix_app_routes_docs_design_system_pagescaffoldstories_widthscalestory", - "community": 7, + "community": 492, "norm_label": "widthscalestory()" }, { @@ -360569,7 +361299,7 @@ "source_location": "L214", "_origin": "ast", "id": "remix_app_routes_docs_design_system_pagescaffoldstories_pagescaffoldstories", - "community": 7, + "community": 492, "norm_label": "pagescaffoldstories" }, { @@ -360829,7 +361559,7 @@ "source_location": "L70", "_origin": "ast", "id": "remix_app_routes_docs_design_system_entries_designsystementries", - "community": 433, + "community": 317, "norm_label": "designsystementries" }, { @@ -361089,7 +361819,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_docs_design_system_entries_buttonsstories", - "community": 5, + "community": 53, "norm_label": "buttonsstories.tsx" }, { @@ -361099,7 +361829,7 @@ "source_location": "L15", "_origin": "ast", "id": "remix_app_routes_docs_design_system_entries_buttonsstories_grouplabel", - "community": 5, + "community": 53, "norm_label": "grouplabel()" }, { @@ -361109,7 +361839,7 @@ "source_location": "L29", "_origin": "ast", "id": "remix_app_routes_docs_design_system_entries_buttonsstories_voicerow", - "community": 5, + "community": 53, "norm_label": "voicerow()" }, { @@ -361119,7 +361849,7 @@ "source_location": "L56", "_origin": "ast", "id": "remix_app_routes_docs_design_system_entries_buttonsstories_accentcta", - "community": 5, + "community": 53, "norm_label": "accentcta()" }, { @@ -361129,7 +361859,7 @@ "source_location": "L68", "_origin": "ast", "id": "remix_app_routes_docs_design_system_entries_buttonsstories_buttonmatrixstory", - "community": 5, + "community": 53, "norm_label": "buttonmatrixstory()" }, { @@ -361139,7 +361869,7 @@ "source_location": "L118", "_origin": "ast", "id": "remix_app_routes_docs_design_system_entries_buttonsstories_positive_button_styles", - "community": 5, + "community": 53, "norm_label": "positive_button_styles" }, { @@ -361149,7 +361879,7 @@ "source_location": "L125", "_origin": "ast", "id": "remix_app_routes_docs_design_system_entries_buttonsstories_danger_button_styles", - "community": 5, + "community": 53, "norm_label": "danger_button_styles" }, { @@ -361159,7 +361889,7 @@ "source_location": "L132", "_origin": "ast", "id": "remix_app_routes_docs_design_system_entries_buttonsstories_tintedbuttonsstory", - "community": 5, + "community": 53, "norm_label": "tintedbuttonsstory()" }, { @@ -361169,7 +361899,7 @@ "source_location": "L166", "_origin": "ast", "id": "remix_app_routes_docs_design_system_entries_buttonsstories_loadingstatesstory", - "community": 5, + "community": 53, "norm_label": "loadingstatesstory()" }, { @@ -361189,7 +361919,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_docs_design_system_entries_cardsandsectionsstories", - "community": 5, + "community": 53, "norm_label": "cardsandsectionsstories.tsx" }, { @@ -361199,7 +361929,7 @@ "source_location": "L17", "_origin": "ast", "id": "remix_app_routes_docs_design_system_entries_cardsandsectionsstories_eyebrow", - "community": 5, + "community": 53, "norm_label": "eyebrow()" }, { @@ -361209,7 +361939,7 @@ "source_location": "L32", "_origin": "ast", "id": "remix_app_routes_docs_design_system_entries_cardsandsectionsstories_cardrecipestory", - "community": 5, + "community": 53, "norm_label": "cardrecipestory()" }, { @@ -361219,7 +361949,7 @@ "source_location": "L67", "_origin": "ast", "id": "remix_app_routes_docs_design_system_entries_cardsandsectionsstories_settingssectionstory", - "community": 5, + "community": 53, "norm_label": "settingssectionstory()" }, { @@ -361229,7 +361959,7 @@ "source_location": "L96", "_origin": "ast", "id": "remix_app_routes_docs_design_system_entries_cardsandsectionsstories_hairlinerow", - "community": 5, + "community": 53, "norm_label": "hairlinerow()" }, { @@ -361239,7 +361969,7 @@ "source_location": "L121", "_origin": "ast", "id": "remix_app_routes_docs_design_system_entries_cardsandsectionsstories_hairlinerowsstory", - "community": 5, + "community": 53, "norm_label": "hairlinerowsstory()" }, { @@ -361249,7 +361979,7 @@ "source_location": "L141", "_origin": "ast", "id": "remix_app_routes_docs_design_system_entries_cardsandsectionsstories_readout_rows", - "community": 5, + "community": 53, "norm_label": "readout_rows" }, { @@ -361259,7 +361989,7 @@ "source_location": "L148", "_origin": "ast", "id": "remix_app_routes_docs_design_system_entries_cardsandsectionsstories_tone_color", - "community": 5, + "community": 53, "norm_label": "tone_color" }, { @@ -361269,7 +361999,7 @@ "source_location": "L155", "_origin": "ast", "id": "remix_app_routes_docs_design_system_entries_cardsandsectionsstories_readouttablestory", - "community": 5, + "community": 53, "norm_label": "readouttablestory()" }, { @@ -361609,7 +362339,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_docs_design_system_entries_inputsandformsstories", - "community": 5, + "community": 53, "norm_label": "inputsandformsstories.tsx" }, { @@ -361619,7 +362349,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_routes_docs_design_system_entries_inputsandformsstories_grouplabel", - "community": 5, + "community": 53, "norm_label": "grouplabel()" }, { @@ -361629,7 +362359,7 @@ "source_location": "L32", "_origin": "ast", "id": "remix_app_routes_docs_design_system_entries_inputsandformsstories_microlabel", - "community": 5, + "community": 53, "norm_label": "microlabel()" }, { @@ -361639,7 +362369,7 @@ "source_location": "L50", "_origin": "ast", "id": "remix_app_routes_docs_design_system_entries_inputsandformsstories_field_recipe", - "community": 5, + "community": 53, "norm_label": "field_recipe" }, { @@ -361649,7 +362379,7 @@ "source_location": "L58", "_origin": "ast", "id": "remix_app_routes_docs_design_system_entries_inputsandformsstories_settingsformstory", - "community": 5, + "community": 53, "norm_label": "settingsformstory()" }, { @@ -361659,7 +362389,7 @@ "source_location": "L85", "_origin": "ast", "id": "remix_app_routes_docs_design_system_entries_inputsandformsstories_tokenedfieldsstory", - "community": 5, + "community": 53, "norm_label": "tokenedfieldsstory()" }, { @@ -361669,7 +362399,7 @@ "source_location": "L140", "_origin": "ast", "id": "remix_app_routes_docs_design_system_entries_inputsandformsstories_stepbuttonstyles", - "community": 5, + "community": 53, "norm_label": "stepbuttonstyles" }, { @@ -361679,7 +362409,7 @@ "source_location": "L158", "_origin": "ast", "id": "remix_app_routes_docs_design_system_entries_inputsandformsstories_numbereditorstory", - "community": 5, + "community": 53, "norm_label": "numbereditorstory()" }, { @@ -363129,7 +363859,7 @@ "source_location": "L246", "_origin": "ast", "id": "remix_app_routes_docs_docscode_windowtrafficlights", - "community": 226, + "community": 587, "norm_label": "windowtrafficlights()" }, { @@ -363139,7 +363869,7 @@ "source_location": "L258", "_origin": "ast", "id": "remix_app_routes_docs_docscode_codewindow", - "community": 587, + "community": 226, "norm_label": "codewindow()" }, { @@ -363699,7 +364429,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_docs_schemas", - "community": 12, + "community": 226, "norm_label": "schemas.tsx" }, { @@ -363709,7 +364439,7 @@ "source_location": "L5", "_origin": "ast", "id": "remix_app_routes_docs_schemas_docsschemas", - "community": 12, + "community": 226, "norm_label": "docsschemas()" }, { @@ -363739,7 +364469,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_explore", - "community": 496, + "community": 1, "norm_label": "explore.tsx" }, { @@ -363749,7 +364479,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_routes_explore_explore", - "community": 496, + "community": 1, "norm_label": "explore()" }, { @@ -363759,7 +364489,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_feed", - "community": 496, + "community": 1, "norm_label": "feed.tsx" }, { @@ -363769,7 +364499,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_routes_feed_feed", - "community": 496, + "community": 1, "norm_label": "feed()" }, { @@ -363779,7 +364509,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_login", - "community": 496, + "community": 1, "norm_label": "login.tsx" }, { @@ -363789,7 +364519,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_routes_login_login", - "community": 496, + "community": 1, "norm_label": "login()" }, { @@ -363799,7 +364529,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_lopu_voice", - "community": 53, + "community": 70, "norm_label": "lopu-voice.tsx" }, { @@ -363809,7 +364539,7 @@ "source_location": "L5", "_origin": "ast", "id": "remix_app_routes_lopu_voice_lopuvoice", - "community": 53, + "community": 70, "norm_label": "lopuvoice()" }, { @@ -363819,7 +364549,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_lopu", - "community": 53, + "community": 70, "norm_label": "lopu.tsx" }, { @@ -363829,7 +364559,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_routes_lopu_lopu", - "community": 53, + "community": 70, "norm_label": "lopu()" }, { @@ -363839,7 +364569,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_media", - "community": 53, + "community": 48, "norm_label": "media.tsx" }, { @@ -363849,7 +364579,7 @@ "source_location": "L31", "_origin": "ast", "id": "remix_app_routes_media_mediaresponse", - "community": 53, + "community": 48, "norm_label": "mediaresponse" }, { @@ -363889,7 +364619,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_migrations", - "community": 7, + "community": 492, "norm_label": "migrations.tsx" }, { @@ -363899,7 +364629,7 @@ "source_location": "L12", "_origin": "ast", "id": "remix_app_routes_migrations_migrationsroute", - "community": 7, + "community": 492, "norm_label": "migrationsroute()" }, { @@ -363909,7 +364639,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_mongodb_status", - "community": 7, + "community": 492, "norm_label": "mongodb-status.tsx" }, { @@ -363919,7 +364649,7 @@ "source_location": "L10", "_origin": "ast", "id": "remix_app_routes_mongodb_status_mongostatuspage", - "community": 7, + "community": 492, "norm_label": "mongostatuspage()" }, { @@ -363929,7 +364659,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_notifications", - "community": 53, + "community": 144, "norm_label": "notifications.tsx" }, { @@ -363939,7 +364669,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_routes_notifications_notificationsroute", - "community": 53, + "community": 144, "norm_label": "notificationsroute()" }, { @@ -363949,7 +364679,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_ode", - "community": 323, + "community": 492, "norm_label": "ode.tsx" }, { @@ -363959,7 +364689,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_routes_ode_index", - "community": 323, + "community": 492, "norm_label": "index()" }, { @@ -363969,7 +364699,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_p", - "community": 7, + "community": 46, "norm_label": "p.tsx" }, { @@ -363979,7 +364709,7 @@ "source_location": "L35", "_origin": "ast", "id": "remix_app_routes_p_publicwebpage", - "community": 7, + "community": 46, "norm_label": "publicwebpage()" }, { @@ -363989,7 +364719,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_peers", - "community": 496, + "community": 1, "norm_label": "peers.tsx" }, { @@ -363999,7 +364729,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_routes_peers_deploymentpeersroute", - "community": 496, + "community": 1, "norm_label": "deploymentpeersroute()" }, { @@ -364009,7 +364739,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_post", - "community": 53, + "community": 1, "norm_label": "post.tsx" }, { @@ -364019,7 +364749,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_routes_post_thingresponse", - "community": 53, + "community": 1, "norm_label": "thingresponse" }, { @@ -364029,7 +364759,7 @@ "source_location": "L25", "_origin": "ast", "id": "remix_app_routes_post_postpage", - "community": 53, + "community": 1, "norm_label": "postpage()" }, { @@ -364039,7 +364769,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_profile", - "community": 496, + "community": 1, "norm_label": "profile.tsx" }, { @@ -364049,7 +364779,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_routes_profile_profile", - "community": 496, + "community": 1, "norm_label": "profile()" }, { @@ -364079,7 +364809,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_raw", - "community": 7, + "community": 492, "norm_label": "raw.tsx" }, { @@ -364089,7 +364819,7 @@ "source_location": "L4", "_origin": "ast", "id": "remix_app_routes_raw_rawpage", - "community": 7, + "community": 492, "norm_label": "rawpage()" }, { @@ -364099,7 +364829,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_register", - "community": 496, + "community": 323, "norm_label": "register.tsx" }, { @@ -364109,7 +364839,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_routes_register_register", - "community": 496, + "community": 323, "norm_label": "register()" }, { @@ -364119,7 +364849,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_saved", - "community": 496, + "community": 1, "norm_label": "saved.tsx" }, { @@ -364129,7 +364859,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_routes_saved_saved", - "community": 496, + "community": 1, "norm_label": "saved()" }, { @@ -364179,7 +364909,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_search", - "community": 63, + "community": 4, "norm_label": "search.tsx" }, { @@ -364189,7 +364919,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_routes_search_search", - "community": 63, + "community": 4, "norm_label": "search()" }, { @@ -364219,7 +364949,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_status", - "community": 7, + "community": 492, "norm_label": "status.tsx" }, { @@ -364229,7 +364959,7 @@ "source_location": "L10", "_origin": "ast", "id": "remix_app_routes_status_statuspage", - "community": 7, + "community": 492, "norm_label": "statuspage()" }, { @@ -364439,7 +365169,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_themes_gallery", - "community": 323, + "community": 53, "norm_label": "themes.gallery.tsx" }, { @@ -364449,7 +365179,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_routes_themes_gallery_themesgallery", - "community": 323, + "community": 53, "norm_label": "themesgallery()" }, { @@ -364459,7 +365189,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_themes", - "community": 323, + "community": 53, "norm_label": "themes.tsx" }, { @@ -364469,7 +365199,7 @@ "source_location": "L7", "_origin": "ast", "id": "remix_app_routes_themes_themes", - "community": 323, + "community": 53, "norm_label": "themes()" }, { @@ -364479,7 +365209,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_thing", - "community": 18, + "community": 492, "norm_label": "thing.tsx" }, { @@ -364489,7 +365219,7 @@ "source_location": "L49", "_origin": "ast", "id": "remix_app_routes_thing_referrers", - "community": 18, + "community": 492, "norm_label": "referrers" }, { @@ -364499,7 +365229,7 @@ "source_location": "L95", "_origin": "ast", "id": "remix_app_routes_thing_livekit", - "community": 18, + "community": 492, "norm_label": "livekit" }, { @@ -364509,7 +365239,7 @@ "source_location": "L96", "_origin": "ast", "id": "remix_app_routes_thing_loadlivekit", - "community": 7, + "community": 46, "norm_label": "loadlivekit()" }, { @@ -364519,7 +365249,7 @@ "source_location": "L102", "_origin": "ast", "id": "remix_app_routes_thing_migrationdiagnostic", - "community": 18, + "community": 492, "norm_label": "migrationdiagnostic" }, { @@ -364529,7 +365259,7 @@ "source_location": "L116", "_origin": "ast", "id": "remix_app_routes_thing_thingviewdata", - "community": 18, + "community": 492, "norm_label": "thingviewdata" }, { @@ -364539,7 +365269,7 @@ "source_location": "L120", "_origin": "ast", "id": "remix_app_routes_thing_thingloadstate", - "community": 18, + "community": 492, "norm_label": "thingloadstate" }, { @@ -364549,7 +365279,7 @@ "source_location": "L127", "_origin": "ast", "id": "remix_app_routes_thing_diagnosticfromresponse", - "community": 18, + "community": 492, "norm_label": "diagnosticfromresponse()" }, { @@ -364559,7 +365289,7 @@ "source_location": "L167", "_origin": "ast", "id": "remix_app_routes_thing_thingfromresponse", - "community": 18, + "community": 492, "norm_label": "thingfromresponse()" }, { @@ -364569,7 +365299,7 @@ "source_location": "L175", "_origin": "ast", "id": "remix_app_routes_thing_readabledate", - "community": 18, + "community": 492, "norm_label": "readabledate()" }, { @@ -364579,7 +365309,7 @@ "source_location": "L180", "_origin": "ast", "id": "remix_app_routes_thing_kindsof", - "community": 18, + "community": 492, "norm_label": "kindsof()" }, { @@ -364589,7 +365319,7 @@ "source_location": "L186", "_origin": "ast", "id": "remix_app_routes_thing_componentlive", - "community": 7, + "community": 330, "norm_label": "componentlive()" }, { @@ -364599,7 +365329,7 @@ "source_location": "L224", "_origin": "ast", "id": "remix_app_routes_thing_inertlabel", - "community": 18, + "community": 492, "norm_label": "inertlabel()" }, { @@ -364609,7 +365339,7 @@ "source_location": "L241", "_origin": "ast", "id": "remix_app_routes_thing_thingpage", - "community": 18, + "community": 492, "norm_label": "thingpage()" }, { @@ -364879,7 +365609,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_routes_welcome", - "community": 53, + "community": 73, "norm_label": "welcome.tsx" }, { @@ -364889,7 +365619,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_app_routes_welcome_welcome", - "community": 53, + "community": 73, "norm_label": "welcome()" }, { @@ -365039,7 +365769,7 @@ "source_location": "L174", "_origin": "ast", "id": "remix_app_schemas_actionexpressions_cataloguesignature", - "community": 151, + "community": 12, "norm_label": "cataloguesignature()" }, { @@ -365049,7 +365779,7 @@ "source_location": "L177", "_origin": "ast", "id": "remix_app_schemas_actionexpressions_islambdaarg", - "community": 151, + "community": 12, "norm_label": "islambdaarg()" }, { @@ -365319,7 +366049,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_schemas_appsuites_index", - "community": 7, + "community": 46, "norm_label": "index.ts" }, { @@ -365329,7 +366059,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_schemas_appsuites_index_app_suite_list", - "community": 60, + "community": 46, "norm_label": "app_suite_list" }, { @@ -365339,7 +366069,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_schemas_appsuites_index_all_suites", - "community": 7, + "community": 46, "norm_label": "all_suites" }, { @@ -365359,7 +366089,7 @@ "source_location": "L43", "_origin": "ast", "id": "remix_app_schemas_appsuites_pokeworld_el", - "community": 191, + "community": 507, "norm_label": "el()" }, { @@ -365369,7 +366099,7 @@ "source_location": "L48", "_origin": "ast", "id": "remix_app_schemas_appsuites_pokeworld_text", - "community": 191, + "community": 507, "norm_label": "text()" }, { @@ -365379,7 +366109,7 @@ "source_location": "L49", "_origin": "ast", "id": "remix_app_schemas_appsuites_pokeworld_label", - "community": 191, + "community": 507, "norm_label": "label()" }, { @@ -365389,7 +366119,7 @@ "source_location": "L50", "_origin": "ast", "id": "remix_app_schemas_appsuites_pokeworld_textbox", - "community": 191, + "community": 507, "norm_label": "textbox()" }, { @@ -365399,7 +366129,7 @@ "source_location": "L52", "_origin": "ast", "id": "remix_app_schemas_appsuites_pokeworld_button", - "community": 191, + "community": 507, "norm_label": "button()" }, { @@ -365409,7 +366139,7 @@ "source_location": "L74", "_origin": "ast", "id": "remix_app_schemas_appsuites_pokeworld_linkbutton", - "community": 191, + "community": 507, "norm_label": "linkbutton()" }, { @@ -365419,7 +366149,7 @@ "source_location": "L76", "_origin": "ast", "id": "remix_app_schemas_appsuites_pokeworld_row", - "community": 191, + "community": 507, "norm_label": "row()" }, { @@ -365449,7 +366179,7 @@ "source_location": "L79", "_origin": "ast", "id": "remix_app_schemas_appsuites_pokeworld_field", - "community": 191, + "community": 507, "norm_label": "field()" }, { @@ -365459,7 +366189,7 @@ "source_location": "L81", "_origin": "ast", "id": "remix_app_schemas_appsuites_pokeworld_group", - "community": 191, + "community": 507, "norm_label": "group()" }, { @@ -365469,7 +366199,7 @@ "source_location": "L83", "_origin": "ast", "id": "remix_app_schemas_appsuites_pokeworld_whenstate", - "community": 191, + "community": 507, "norm_label": "whenstate()" }, { @@ -365499,7 +366229,7 @@ "source_location": "L86", "_origin": "ast", "id": "remix_app_schemas_appsuites_pokeworld_hptone", - "community": 191, + "community": 507, "norm_label": "hptone()" }, { @@ -365509,7 +366239,7 @@ "source_location": "L87", "_origin": "ast", "id": "remix_app_schemas_appsuites_pokeworld_hpbar", - "community": 191, + "community": 507, "norm_label": "hpbar()" }, { @@ -365519,7 +366249,7 @@ "source_location": "L90", "_origin": "ast", "id": "remix_app_schemas_appsuites_pokeworld_gates", - "community": 191, + "community": 507, "norm_label": "gates()" }, { @@ -365559,7 +366289,7 @@ "source_location": "L225", "_origin": "ast", "id": "remix_app_schemas_appsuites_pokeworld_movebutton", - "community": 191, + "community": 507, "norm_label": "movebutton()" }, { @@ -365579,7 +366309,7 @@ "source_location": "L267", "_origin": "ast", "id": "remix_app_schemas_appsuites_pokeworld_memberrow", - "community": 191, + "community": 507, "norm_label": "memberrow()" }, { @@ -365669,7 +366399,7 @@ "source_location": "L410", "_origin": "ast", "id": "remix_app_schemas_appsuites_pokeworld_first", - "community": 473, + "community": 555, "norm_label": "first()" }, { @@ -366079,7 +366809,7 @@ "source_location": "L35", "_origin": "ast", "id": "remix_app_schemas_appsuites_starsalign_el", - "community": 342, + "community": 471, "norm_label": "el()" }, { @@ -366089,7 +366819,7 @@ "source_location": "L41", "_origin": "ast", "id": "remix_app_schemas_appsuites_starsalign_text", - "community": 342, + "community": 471, "norm_label": "text()" }, { @@ -366099,7 +366829,7 @@ "source_location": "L42", "_origin": "ast", "id": "remix_app_schemas_appsuites_starsalign_serif", - "community": 342, + "community": 471, "norm_label": "serif()" }, { @@ -366109,7 +366839,7 @@ "source_location": "L44", "_origin": "ast", "id": "remix_app_schemas_appsuites_starsalign_eyebrow", - "community": 342, + "community": 471, "norm_label": "eyebrow()" }, { @@ -366119,7 +366849,7 @@ "source_location": "L46", "_origin": "ast", "id": "remix_app_schemas_appsuites_starsalign_card", - "community": 342, + "community": 471, "norm_label": "card()" }, { @@ -366129,7 +366859,7 @@ "source_location": "L48", "_origin": "ast", "id": "remix_app_schemas_appsuites_starsalign_chip", - "community": 342, + "community": 471, "norm_label": "chip()" }, { @@ -366139,7 +366869,7 @@ "source_location": "L50", "_origin": "ast", "id": "remix_app_schemas_appsuites_starsalign_glyph", - "community": 342, + "community": 471, "norm_label": "glyph()" }, { @@ -366149,7 +366879,7 @@ "source_location": "L51", "_origin": "ast", "id": "remix_app_schemas_appsuites_starsalign_link", - "community": 342, + "community": 471, "norm_label": "link()" }, { @@ -366159,7 +366889,7 @@ "source_location": "L53", "_origin": "ast", "id": "remix_app_schemas_appsuites_starsalign_button", - "community": 342, + "community": 471, "norm_label": "button()" }, { @@ -366169,7 +366899,7 @@ "source_location": "L73", "_origin": "ast", "id": "remix_app_schemas_appsuites_starsalign_linkbutton", - "community": 342, + "community": 471, "norm_label": "linkbutton()" }, { @@ -366179,7 +366909,7 @@ "source_location": "L91", "_origin": "ast", "id": "remix_app_schemas_appsuites_starsalign_row", - "community": 342, + "community": 471, "norm_label": "row()" }, { @@ -366189,7 +366919,7 @@ "source_location": "L93", "_origin": "ast", "id": "remix_app_schemas_appsuites_starsalign_field", - "community": 342, + "community": 471, "norm_label": "field()" }, { @@ -366219,7 +366949,7 @@ "source_location": "L97", "_origin": "ast", "id": "remix_app_schemas_appsuites_starsalign_spinner", - "community": 342, + "community": 471, "norm_label": "spinner()" }, { @@ -366229,7 +366959,7 @@ "source_location": "L99", "_origin": "ast", "id": "remix_app_schemas_appsuites_starsalign_group", - "community": 342, + "community": 471, "norm_label": "group()" }, { @@ -366239,7 +366969,7 @@ "source_location": "L105", "_origin": "ast", "id": "remix_app_schemas_appsuites_starsalign_whenstate", - "community": 342, + "community": 471, "norm_label": "whenstate()" }, { @@ -366269,7 +366999,7 @@ "source_location": "L110", "_origin": "ast", "id": "remix_app_schemas_appsuites_starsalign_gates", - "community": 342, + "community": 471, "norm_label": "gates()" }, { @@ -366319,7 +367049,7 @@ "source_location": "L170", "_origin": "ast", "id": "remix_app_schemas_appsuites_starsalign_houserow", - "community": 342, + "community": 471, "norm_label": "houserow()" }, { @@ -366329,7 +367059,7 @@ "source_location": "L177", "_origin": "ast", "id": "remix_app_schemas_appsuites_starsalign_transitcard", - "community": 342, + "community": 471, "norm_label": "transitcard()" }, { @@ -366339,7 +367069,7 @@ "source_location": "L185", "_origin": "ast", "id": "remix_app_schemas_appsuites_starsalign_todaybody", - "community": 342, + "community": 471, "norm_label": "todaybody()" }, { @@ -366619,7 +367349,7 @@ "source_location": "L30", "_origin": "ast", "id": "remix_app_schemas_behavioursuites_test_expectvalid", - "community": 60, + "community": 46, "norm_label": "expectvalid()" }, { @@ -366689,7 +367419,7 @@ "source_location": "L83", "_origin": "ast", "id": "remix_app_schemas_behavioursuites_suitecomponentdef", - "community": 46, + "community": 342, "norm_label": "suitecomponentdef" }, { @@ -366739,7 +367469,7 @@ "source_location": "L121", "_origin": "ast", "id": "remix_app_schemas_behavioursuites_behavioursuite", - "community": 7, + "community": 46, "norm_label": "behavioursuite" }, { @@ -367029,7 +367759,7 @@ "source_location": "L1288", "_origin": "ast", "id": "remix_app_schemas_behavioursuites_materializedsuite", - "community": 7, + "community": 46, "norm_label": "materializedsuite" }, { @@ -367039,7 +367769,7 @@ "source_location": "L1308", "_origin": "ast", "id": "remix_app_schemas_behavioursuites_materializesuite", - "community": 7, + "community": 46, "norm_label": "materializesuite()" }, { @@ -367099,7 +367829,7 @@ "source_location": "L1457", "_origin": "ast", "id": "remix_app_schemas_behavioursuites_getallsuites", - "community": 46, + "community": 107, "norm_label": "getallsuites()" }, { @@ -367159,7 +367889,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_schemas_medialayout_test", - "community": 60, + "community": 12, "norm_label": "medialayout.test.ts" }, { @@ -367169,7 +367899,7 @@ "source_location": "L10", "_origin": "ast", "id": "remix_app_schemas_medialayout_test_basepost", - "community": 60, + "community": 12, "norm_label": "basepost" }, { @@ -367179,7 +367909,7 @@ "source_location": "L12", "_origin": "ast", "id": "remix_app_schemas_medialayout_test_validatepost", - "community": 60, + "community": 12, "norm_label": "validatepost()" }, { @@ -367189,7 +367919,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_schemas_medialayout_test_crystalof", - "community": 60, + "community": 12, "norm_label": "crystalof()" }, { @@ -367209,7 +367939,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_schemas_postrichtext_test", - "community": 60, + "community": 12, "norm_label": "postrichtext.test.ts" }, { @@ -367219,7 +367949,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_schemas_postrichtext_test_validatepost", - "community": 60, + "community": 12, "norm_label": "validatepost()" }, { @@ -367249,7 +367979,7 @@ "source_location": "L35", "_origin": "ast", "id": "remix_app_schemas_registry_thingtimeschemafield", - "community": 12, + "community": 226, "norm_label": "thingtimeschemafield" }, { @@ -367259,7 +367989,7 @@ "source_location": "L61", "_origin": "ast", "id": "remix_app_schemas_registry_thingtimeschemakind", - "community": 12, + "community": 226, "norm_label": "thingtimeschemakind" }, { @@ -367269,7 +367999,7 @@ "source_location": "L63", "_origin": "ast", "id": "remix_app_schemas_registry_thingtimeschema", - "community": 12, + "community": 226, "norm_label": "thingtimeschema" }, { @@ -367299,7 +368029,7 @@ "source_location": "L98", "_origin": "ast", "id": "remix_app_schemas_registry_ci_control_thingtime", - "community": 261, + "community": 277, "norm_label": "ci_control_thingtime" }, { @@ -367469,7 +368199,7 @@ "source_location": "L493", "_origin": "ast", "id": "remix_app_schemas_registry_subspacereportstatus", - "community": 33, + "community": 12, "norm_label": "subspacereportstatus" }, { @@ -367489,7 +368219,7 @@ "source_location": "L497", "_origin": "ast", "id": "remix_app_schemas_registry_subspacereportresolution", - "community": 33, + "community": 12, "norm_label": "subspacereportresolution" }, { @@ -367519,7 +368249,7 @@ "source_location": "L501", "_origin": "ast", "id": "remix_app_schemas_registry_subspace_roles", - "community": 33, + "community": 12, "norm_label": "subspace_roles" }, { @@ -367539,7 +368269,7 @@ "source_location": "L503", "_origin": "ast", "id": "remix_app_schemas_registry_subspace_feed_sorts", - "community": 33, + "community": 12, "norm_label": "subspace_feed_sorts" }, { @@ -367559,7 +368289,7 @@ "source_location": "L508", "_origin": "ast", "id": "remix_app_schemas_registry_subspace_list_sorts", - "community": 33, + "community": 12, "norm_label": "subspace_list_sorts" }, { @@ -367589,7 +368319,7 @@ "source_location": "L514", "_origin": "ast", "id": "remix_app_schemas_registry_feedscope", - "community": 343, + "community": 12, "norm_label": "feedscope" }, { @@ -367629,7 +368359,7 @@ "source_location": "L555", "_origin": "ast", "id": "remix_app_schemas_registry_collection_schema_versions", - "community": 45, + "community": 61, "norm_label": "collection_schema_versions" }, { @@ -368149,7 +368879,7 @@ "source_location": "L2538", "_origin": "ast", "id": "remix_app_schemas_registry_subspace_notification_types", - "community": 721, + "community": 144, "norm_label": "subspace_notification_types" }, { @@ -368329,7 +369059,7 @@ "source_location": "L2650", "_origin": "ast", "id": "remix_app_schemas_registry_normalizenotificationprefs", - "community": 82, + "community": 45, "norm_label": "normalizenotificationprefs()" }, { @@ -368749,7 +369479,7 @@ "source_location": "L4017", "_origin": "ast", "id": "remix_app_schemas_registry_device_thingtime", - "community": 123, + "community": 261, "norm_label": "device_thingtime" }, { @@ -368759,7 +369489,7 @@ "source_location": "L4032", "_origin": "ast", "id": "remix_app_schemas_registry_device_control_thingtime", - "community": 123, + "community": 261, "norm_label": "device_control_thingtime" }, { @@ -368779,7 +369509,7 @@ "source_location": "L4080", "_origin": "ast", "id": "remix_app_schemas_registry_isprotectedthingtime", - "community": 486, + "community": 12, "norm_label": "isprotectedthingtime()" }, { @@ -368799,7 +369529,7 @@ "source_location": "L4103", "_origin": "ast", "id": "remix_app_schemas_registry_messenger_thingtime", - "community": 123, + "community": 261, "norm_label": "messenger_thingtime" }, { @@ -368849,7 +369579,7 @@ "source_location": "L4221", "_origin": "ast", "id": "remix_app_schemas_registry_thingtimeschemas", - "community": 63, + "community": 4, "norm_label": "thingtimeschemas" }, { @@ -368879,7 +369609,7 @@ "source_location": "L4316", "_origin": "ast", "id": "remix_app_schemas_registry_fail", - "community": 33, + "community": 487, "norm_label": "fail" }, { @@ -368959,7 +369689,7 @@ "source_location": "L4353", "_origin": "ast", "id": "remix_app_schemas_registry_postmedialayout", - "community": 48, + "community": 1, "norm_label": "postmedialayout" }, { @@ -368989,7 +369719,7 @@ "source_location": "L4563", "_origin": "ast", "id": "remix_app_schemas_registry_sanitizecommentcrystal", - "community": 33, + "community": 12, "norm_label": "sanitizecommentcrystal()" }, { @@ -368999,7 +369729,7 @@ "source_location": "L4574", "_origin": "ast", "id": "remix_app_schemas_registry_sanitizereactioncrystal", - "community": 6, + "community": 175, "norm_label": "sanitizereactioncrystal()" }, { @@ -369069,7 +369799,7 @@ "source_location": "L4749", "_origin": "ast", "id": "remix_app_schemas_registry_checkextendedkeys", - "community": 33, + "community": 487, "norm_label": "checkextendedkeys()" }, { @@ -369079,7 +369809,7 @@ "source_location": "L4784", "_origin": "ast", "id": "remix_app_schemas_registry_sanitizeextended", - "community": 33, + "community": 487, "norm_label": "sanitizeextended()" }, { @@ -369299,7 +370029,7 @@ "source_location": "L5718", "_origin": "ast", "id": "remix_app_schemas_registry_parseactionref", - "community": 12, + "community": 151, "norm_label": "parseactionref()" }, { @@ -369419,7 +370149,7 @@ "source_location": "L6205", "_origin": "ast", "id": "remix_app_schemas_registry_deriveactioneffects", - "community": 18, + "community": 492, "norm_label": "deriveactioneffects()" }, { @@ -369519,7 +370249,7 @@ "source_location": "L6514", "_origin": "ast", "id": "remix_app_schemas_registry_sanitizefoldercrystal", - "community": 33, + "community": 12, "norm_label": "sanitizefoldercrystal()" }, { @@ -369549,7 +370279,7 @@ "source_location": "L6574", "_origin": "ast", "id": "remix_app_schemas_registry_validatethingtimecrystal", - "community": 60, + "community": 12, "norm_label": "validatethingtimecrystal()" }, { @@ -369689,7 +370419,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_schemas_webpageblockgate_test", - "community": 60, + "community": 12, "norm_label": "webpageblockgate.test.ts" }, { @@ -369699,7 +370429,7 @@ "source_location": "L12", "_origin": "ast", "id": "remix_app_schemas_webpageblockgate_test_page", - "community": 60, + "community": 12, "norm_label": "page()" }, { @@ -369709,7 +370439,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_schemas_webpageblockgate_test_okblocks", - "community": 60, + "community": 12, "norm_label": "okblocks()" }, { @@ -369719,7 +370449,7 @@ "source_location": "L124", "_origin": "ast", "id": "remix_app_schemas_webpageblockgate_test_pagebg", - "community": 60, + "community": 12, "norm_label": "pagebg()" }, { @@ -369789,7 +370519,7 @@ "source_location": "L54", "_origin": "ast", "id": "remix_app_schemas_webpagedemos_webpagedemo", - "community": 7, + "community": 46, "norm_label": "webpagedemo" }, { @@ -369799,7 +370529,7 @@ "source_location": "L70", "_origin": "ast", "id": "remix_app_schemas_webpagedemos_webpagedemoshareid", - "community": 7, + "community": 46, "norm_label": "webpagedemoshareid()" }, { @@ -369809,7 +370539,7 @@ "source_location": "L71", "_origin": "ast", "id": "remix_app_schemas_webpagedemos_webpagedemopagekey", - "community": 7, + "community": 46, "norm_label": "webpagedemopagekey()" }, { @@ -370039,7 +370769,7 @@ "source_location": "L1314", "_origin": "ast", "id": "remix_app_schemas_webpagedemos_webpage_demo_families", - "community": 7, + "community": 46, "norm_label": "webpage_demo_families" }, { @@ -370159,7 +370889,7 @@ "source_location": "L1546", "_origin": "ast", "id": "remix_app_schemas_webpagedemos_webpagedemocrystal", - "community": 7, + "community": 46, "norm_label": "webpagedemocrystal()" }, { @@ -370469,7 +371199,7 @@ "source_location": "L32", "_origin": "ast", "id": "remix_app_scripts_mongodb_setup_registerall", - "community": 45, + "community": 257, "norm_label": "registerall()" }, { @@ -370479,7 +371209,7 @@ "source_location": "L62", "_origin": "ast", "id": "remix_app_scripts_mongodb_setup_saveusers", - "community": 45, + "community": 257, "norm_label": "saveusers()" }, { @@ -370509,7 +371239,7 @@ "source_location": "L82", "_origin": "ast", "id": "remix_app_scripts_mongodb_setup_saveprofiles", - "community": 155, + "community": 257, "norm_label": "saveprofiles()" }, { @@ -370549,7 +371279,7 @@ "source_location": "L276", "_origin": "ast", "id": "remix_app_scripts_mongodb_setup_setup_stages", - "community": 194, + "community": 257, "norm_label": "setup_stages" }, { @@ -370579,7 +371309,7 @@ "source_location": "L287", "_origin": "ast", "id": "remix_app_scripts_mongodb_setup_setup", - "community": 194, + "community": 257, "norm_label": "setup()" }, { @@ -370719,7 +371449,7 @@ "source_location": "L50", "_origin": "ast", "id": "remix_app_smarts_index_pause", - "community": 233, + "community": 721, "norm_label": "pause()" }, { @@ -370729,7 +371459,7 @@ "source_location": "L53", "_origin": "ast", "id": "remix_app_smarts_index_save", - "community": 233, + "community": 721, "norm_label": "save()" }, { @@ -370779,7 +371509,7 @@ "source_location": "L197", "_origin": "ast", "id": "remix_app_smarts_index_serialize", - "community": 233, + "community": 721, "norm_label": "serialize()" }, { @@ -370789,7 +371519,7 @@ "source_location": "L202", "_origin": "ast", "id": "remix_app_smarts_index_stringify", - "community": 233, + "community": 721, "norm_label": "stringify()" }, { @@ -370799,7 +371529,7 @@ "source_location": "L252", "_origin": "ast", "id": "remix_app_smarts_index_replacer", - "community": 233, + "community": 721, "norm_label": "replacer()" }, { @@ -370809,7 +371539,7 @@ "source_location": "L277", "_origin": "ast", "id": "remix_app_smarts_index_setknown", - "community": 233, + "community": 721, "norm_label": "setknown()" }, { @@ -370819,7 +371549,7 @@ "source_location": "L282", "_origin": "ast", "id": "remix_app_smarts_index_stringifier", - "community": 233, + "community": 721, "norm_label": "stringifier()" }, { @@ -370919,7 +371649,7 @@ "source_location": "L653", "_origin": "ast", "id": "remix_app_smarts_index_jsuuid", - "community": 233, + "community": 597, "norm_label": "jsuuid()" }, { @@ -370929,7 +371659,7 @@ "source_location": "L656", "_origin": "ast", "id": "remix_app_smarts_index_context", - "community": 233, + "community": 597, "norm_label": "context()" }, { @@ -370939,7 +371669,7 @@ "source_location": "L667", "_origin": "ast", "id": "remix_app_smarts_index_contextobject", - "community": 233, + "community": 597, "norm_label": "contextobject()" }, { @@ -370949,7 +371679,7 @@ "source_location": "L762", "_origin": "ast", "id": "remix_app_smarts_index_createcontext", - "community": 233, + "community": 597, "norm_label": "createcontext()" }, { @@ -370959,7 +371689,7 @@ "source_location": "L833", "_origin": "ast", "id": "remix_app_smarts_index_createinlinecontext", - "community": 233, + "community": 597, "norm_label": "createinlinecontext()" }, { @@ -370969,7 +371699,7 @@ "source_location": "L846", "_origin": "ast", "id": "remix_app_smarts_index_addbindingstocontext", - "community": 233, + "community": 597, "norm_label": "addbindingstocontext()" }, { @@ -370979,7 +371709,7 @@ "source_location": "L859", "_origin": "ast", "id": "remix_app_smarts_index_scopevarcode", - "community": 233, + "community": 597, "norm_label": "scopevarcode()" }, { @@ -370989,7 +371719,7 @@ "source_location": "L878", "_origin": "ast", "id": "remix_app_smarts_index_scopevarinlinecode", - "community": 233, + "community": 597, "norm_label": "scopevarinlinecode()" }, { @@ -370999,7 +371729,7 @@ "source_location": "L886", "_origin": "ast", "id": "remix_app_smarts_index_scopevar", - "community": 233, + "community": 597, "norm_label": "scopevar()" }, { @@ -371029,7 +371759,7 @@ "source_location": "L923", "_origin": "ast", "id": "remix_app_smarts_index_initblock", - "community": 233, + "community": 597, "norm_label": "initblock()" }, { @@ -371039,7 +371769,7 @@ "source_location": "L931", "_origin": "ast", "id": "remix_app_smarts_index_getnodeuuid", - "community": 233, + "community": 597, "norm_label": "getnodeuuid()" }, { @@ -371049,7 +371779,7 @@ "source_location": "L939", "_origin": "ast", "id": "remix_app_smarts_index_getpathuuid", - "community": 233, + "community": 597, "norm_label": "getpathuuid()" }, { @@ -371089,7 +371819,7 @@ "source_location": "L1148", "_origin": "ast", "id": "remix_app_smarts_index_dupe", - "community": 233, + "community": 103, "norm_label": "dupe()" }, { @@ -371099,7 +371829,7 @@ "source_location": "L1151", "_origin": "ast", "id": "remix_app_smarts_index_clone", - "community": 233, + "community": 103, "norm_label": "clone()" }, { @@ -371109,7 +371839,7 @@ "source_location": "L1154", "_origin": "ast", "id": "remix_app_smarts_index_schema", - "community": 233, + "community": 103, "norm_label": "schema()" }, { @@ -371129,7 +371859,7 @@ "source_location": "L1172", "_origin": "ast", "id": "remix_app_smarts_index_merge", - "community": 233, + "community": 103, "norm_label": "merge()" }, { @@ -371139,7 +371869,7 @@ "source_location": "L1271", "_origin": "ast", "id": "remix_app_smarts_index_basic", - "community": 233, + "community": 103, "norm_label": "basic()" }, { @@ -371189,7 +371919,7 @@ "source_location": "L1332", "_origin": "ast", "id": "remix_app_smarts_index_setthing", - "community": 233, + "community": 718, "norm_label": "setthing()" }, { @@ -371199,7 +371929,7 @@ "source_location": "L1399", "_origin": "ast", "id": "remix_app_smarts_index_setthings", - "community": 233, + "community": 718, "norm_label": "setthings()" }, { @@ -371209,7 +371939,7 @@ "source_location": "L1436", "_origin": "ast", "id": "remix_app_smarts_index_optin", - "community": 233, + "community": 501, "norm_label": "optin()" }, { @@ -371219,7 +371949,7 @@ "source_location": "L1488", "_origin": "ast", "id": "remix_app_smarts_index_thingin", - "community": 233, + "community": 718, "norm_label": "thingin()" }, { @@ -371229,7 +371959,7 @@ "source_location": "L1572", "_origin": "ast", "id": "remix_app_smarts_index_optsin", - "community": 233, + "community": 501, "norm_label": "optsin()" }, { @@ -371239,7 +371969,7 @@ "source_location": "L1593", "_origin": "ast", "id": "remix_app_smarts_index_thingsin", - "community": 233, + "community": 501, "norm_label": "thingsin()" }, { @@ -371249,7 +371979,7 @@ "source_location": "L1614", "_origin": "ast", "id": "remix_app_smarts_index_anyoptsin", - "community": 233, + "community": 501, "norm_label": "anyoptsin()" }, { @@ -371259,7 +371989,7 @@ "source_location": "L1633", "_origin": "ast", "id": "remix_app_smarts_index_anythingsin", - "community": 233, + "community": 501, "norm_label": "anythingsin()" }, { @@ -371269,7 +371999,7 @@ "source_location": "L1652", "_origin": "ast", "id": "remix_app_smarts_index_optindex", - "community": 233, + "community": 501, "norm_label": "optindex()" }, { @@ -371279,7 +372009,7 @@ "source_location": "L1669", "_origin": "ast", "id": "remix_app_smarts_index_thingindex", - "community": 233, + "community": 718, "norm_label": "thingindex()" }, { @@ -371289,7 +372019,7 @@ "source_location": "L1691", "_origin": "ast", "id": "remix_app_smarts_index_pushopt", - "community": 233, + "community": 501, "norm_label": "pushopt()" }, { @@ -371299,7 +372029,7 @@ "source_location": "L1705", "_origin": "ast", "id": "remix_app_smarts_index_addopt", - "community": 233, + "community": 501, "norm_label": "addopt()" }, { @@ -371309,7 +372039,7 @@ "source_location": "L1719", "_origin": "ast", "id": "remix_app_smarts_index_pushthing", - "community": 233, + "community": 718, "norm_label": "pushthing()" }, { @@ -371319,7 +372049,7 @@ "source_location": "L1731", "_origin": "ast", "id": "remix_app_smarts_index_pushopts", - "community": 233, + "community": 501, "norm_label": "pushopts()" }, { @@ -371329,7 +372059,7 @@ "source_location": "L1737", "_origin": "ast", "id": "remix_app_smarts_index_pushthings", - "community": 233, + "community": 718, "norm_label": "pushthings()" }, { @@ -371339,7 +372069,7 @@ "source_location": "L1743", "_origin": "ast", "id": "remix_app_smarts_index_popopt", - "community": 233, + "community": 501, "norm_label": "popopt()" }, { @@ -371349,7 +372079,7 @@ "source_location": "L1753", "_origin": "ast", "id": "remix_app_smarts_index_popthing", - "community": 233, + "community": 718, "norm_label": "popthing()" }, { @@ -371359,7 +372089,7 @@ "source_location": "L1781", "_origin": "ast", "id": "remix_app_smarts_index_popopts", - "community": 233, + "community": 501, "norm_label": "popopts()" }, { @@ -371369,7 +372099,7 @@ "source_location": "L1787", "_origin": "ast", "id": "remix_app_smarts_index_popthings", - "community": 233, + "community": 501, "norm_label": "popthings()" }, { @@ -371379,7 +372109,7 @@ "source_location": "L1793", "_origin": "ast", "id": "remix_app_smarts_index_toggleopt", - "community": 233, + "community": 501, "norm_label": "toggleopt()" }, { @@ -371389,7 +372119,7 @@ "source_location": "L1800", "_origin": "ast", "id": "remix_app_smarts_index_togglething", - "community": 233, + "community": 501, "norm_label": "togglething()" }, { @@ -371399,7 +372129,7 @@ "source_location": "L1807", "_origin": "ast", "id": "remix_app_smarts_index_toggleopts", - "community": 233, + "community": 501, "norm_label": "toggleopts()" }, { @@ -371409,7 +372139,7 @@ "source_location": "L1813", "_origin": "ast", "id": "remix_app_smarts_index_togglethings", - "community": 233, + "community": 501, "norm_label": "togglethings()" }, { @@ -371609,7 +372339,7 @@ "source_location": "L2305", "_origin": "ast", "id": "remix_app_smarts_index_safestring", - "community": 233, + "community": 721, "norm_label": "safestring()" }, { @@ -371669,7 +372399,7 @@ "source_location": "L2429", "_origin": "ast", "id": "remix_app_smarts_index_getthing", - "community": 233, + "community": 718, "norm_label": "getthing()" }, { @@ -371689,7 +372419,7 @@ "source_location": "L2478", "_origin": "ast", "id": "remix_app_smarts_index_mergeall", - "community": 233, + "community": 103, "norm_label": "mergeall()" }, { @@ -371699,7 +372429,7 @@ "source_location": "L2489", "_origin": "ast", "id": "remix_app_smarts_index_smarts", - "community": 432, + "community": 323, "norm_label": "smarts" }, { @@ -372249,7 +372979,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_theme_card", - "community": 7, + "community": 492, "norm_label": "card.ts" }, { @@ -372259,7 +372989,7 @@ "source_location": "L4", "_origin": "ast", "id": "remix_app_theme_card_card_styles", - "community": 7, + "community": 492, "norm_label": "card_styles" }, { @@ -372269,7 +372999,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_theme_customise", - "community": 323, + "community": 53, "norm_label": "customise.ts" }, { @@ -372279,7 +373009,7 @@ "source_location": "L15", "_origin": "ast", "id": "remix_app_theme_customise_ttcustomentry", - "community": 323, + "community": 53, "norm_label": "ttcustomentry" }, { @@ -372289,7 +373019,7 @@ "source_location": "L20", "_origin": "ast", "id": "remix_app_theme_customise_ttcustommap", - "community": 323, + "community": 53, "norm_label": "ttcustommap" }, { @@ -372299,7 +373029,7 @@ "source_location": "L22", "_origin": "ast", "id": "remix_app_theme_customise_ttcustomtarget", - "community": 323, + "community": 53, "norm_label": "ttcustomtarget" }, { @@ -372309,7 +373039,7 @@ "source_location": "L33", "_origin": "ast", "id": "remix_app_theme_customise_root", - "community": 323, + "community": 53, "norm_label": "root()" }, { @@ -372319,7 +373049,7 @@ "source_location": "L39", "_origin": "ast", "id": "remix_app_theme_customise_tt_custom_targets", - "community": 323, + "community": 53, "norm_label": "tt_custom_targets" }, { @@ -372329,7 +373059,7 @@ "source_location": "L87", "_origin": "ast", "id": "remix_app_theme_customise_sanitizecustomcss", - "community": 323, + "community": 53, "norm_label": "sanitizecustomcss()" }, { @@ -372339,7 +373069,7 @@ "source_location": "L102", "_origin": "ast", "id": "remix_app_theme_customise_sanitizecustomclasses", - "community": 323, + "community": 53, "norm_label": "sanitizecustomclasses()" }, { @@ -372349,7 +373079,7 @@ "source_location": "L112", "_origin": "ast", "id": "remix_app_theme_customise_buildcustomcss", - "community": 323, + "community": 53, "norm_label": "buildcustomcss()" }, { @@ -372359,7 +373089,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_theme_icons", - "community": 323, + "community": 5, "norm_label": "icons.tsx" }, { @@ -372369,7 +373099,7 @@ "source_location": "L103", "_origin": "ast", "id": "remix_app_theme_icons_ttlucideicondef", - "community": 323, + "community": 5, "norm_label": "ttlucideicondef" }, { @@ -372379,7 +373109,7 @@ "source_location": "L120", "_origin": "ast", "id": "remix_app_theme_icons_lucide_icons", - "community": 323, + "community": 5, "norm_label": "lucide_icons" }, { @@ -372389,7 +373119,7 @@ "source_location": "L213", "_origin": "ast", "id": "remix_app_theme_icons_lucide_for_emoji", - "community": 323, + "community": 5, "norm_label": "lucide_for_emoji" }, { @@ -372399,7 +373129,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_theme_rainbow", - "community": 53, + "community": 1, "norm_label": "rainbow.ts" }, { @@ -372419,7 +373149,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_utils_attachmentcontenturl", - "community": 134, + "community": 47, "norm_label": "attachmentcontenturl.ts" }, { @@ -372429,7 +373159,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_utils_attachmentcontenturl_attachmentcontentpath", - "community": 134, + "community": 47, "norm_label": "attachmentcontentpath()" }, { @@ -372439,7 +373169,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_utils_authreturn_test", - "community": 723, + "community": 58, "norm_label": "authreturn.test.ts" }, { @@ -372449,7 +373179,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_utils_authreturn_test_memorystorage", - "community": 723, + "community": 58, "norm_label": "memorystorage()" }, { @@ -372459,7 +373189,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_utils_authreturn", - "community": 723, + "community": 58, "norm_label": "authreturn.ts" }, { @@ -372469,7 +373199,7 @@ "source_location": "L4", "_origin": "ast", "id": "remix_app_utils_authreturn_authreturnstorage", - "community": 723, + "community": 58, "norm_label": "authreturnstorage" }, { @@ -372479,7 +373209,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_utils_authreturn_browserstorage", - "community": 723, + "community": 58, "norm_label": "browserstorage()" }, { @@ -372489,7 +373219,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_utils_authreturn_safeauthreturnpath", - "community": 723, + "community": 58, "norm_label": "safeauthreturnpath()" }, { @@ -372499,7 +373229,7 @@ "source_location": "L33", "_origin": "ast", "id": "remix_app_utils_authreturn_rememberauthreturnto", - "community": 723, + "community": 58, "norm_label": "rememberauthreturnto()" }, { @@ -372509,7 +373239,7 @@ "source_location": "L45", "_origin": "ast", "id": "remix_app_utils_authreturn_readauthreturnto", - "community": 723, + "community": 58, "norm_label": "readauthreturnto()" }, { @@ -372519,7 +373249,7 @@ "source_location": "L56", "_origin": "ast", "id": "remix_app_utils_authreturn_consumeauthreturnto", - "community": 723, + "community": 58, "norm_label": "consumeauthreturnto()" }, { @@ -372529,7 +373259,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_utils_editabletarget_test", - "community": 896, + "community": 70, "norm_label": "editabletarget.test.ts" }, { @@ -372539,7 +373269,7 @@ "source_location": "L6", "_origin": "ast", "id": "remix_app_utils_editabletarget_test_el", - "community": 896, + "community": 70, "norm_label": "el()" }, { @@ -372549,7 +373279,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_utils_editabletarget", - "community": 896, + "community": 70, "norm_label": "editabletarget.ts" }, { @@ -372559,7 +373289,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_utils_editabletarget_maybeeditable", - "community": 896, + "community": 70, "norm_label": "maybeeditable" }, { @@ -372569,7 +373299,7 @@ "source_location": "L20", "_origin": "ast", "id": "remix_app_utils_editabletarget_editable_tags", - "community": 896, + "community": 70, "norm_label": "editable_tags" }, { @@ -372579,7 +373309,7 @@ "source_location": "L26", "_origin": "ast", "id": "remix_app_utils_editabletarget_iseditabletarget", - "community": 896, + "community": 70, "norm_label": "iseditabletarget()" }, { @@ -372589,7 +373319,7 @@ "source_location": "L38", "_origin": "ast", "id": "remix_app_utils_editabletarget_shouldignoreglobalkeydown", - "community": 896, + "community": 70, "norm_label": "shouldignoreglobalkeydown()" }, { @@ -372599,7 +373329,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_utils_electronbridge", - "community": 388, + "community": 323, "norm_label": "electronbridge.ts" }, { @@ -372609,7 +373339,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_utils_electronbridge_thingtimedesktopendpointprofile", - "community": 388, + "community": 323, "norm_label": "thingtimedesktopendpointprofile" }, { @@ -372619,7 +373349,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_utils_electronbridge_thingtimedesktopmenubaricon", - "community": 388, + "community": 323, "norm_label": "thingtimedesktopmenubaricon" }, { @@ -372629,7 +373359,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_app_utils_electronbridge_thingtimedesktopsettings", - "community": 388, + "community": 323, "norm_label": "thingtimedesktopsettings" }, { @@ -372639,7 +373369,7 @@ "source_location": "L24", "_origin": "ast", "id": "remix_app_utils_electronbridge_thingtimedesktopendpointcompatibility", - "community": 388, + "community": 323, "norm_label": "thingtimedesktopendpointcompatibility" }, { @@ -372659,7 +373389,7 @@ "source_location": "L52", "_origin": "ast", "id": "remix_app_utils_electronbridge_thingtimedesktopupdateasset", - "community": 388, + "community": 323, "norm_label": "thingtimedesktopupdateasset" }, { @@ -372669,7 +373399,7 @@ "source_location": "L60", "_origin": "ast", "id": "remix_app_utils_electronbridge_thingtimedesktopupdateinfo", - "community": 388, + "community": 323, "norm_label": "thingtimedesktopupdateinfo" }, { @@ -372679,7 +373409,7 @@ "source_location": "L76", "_origin": "ast", "id": "remix_app_utils_electronbridge_thingtimedesktoprelease", - "community": 388, + "community": 323, "norm_label": "thingtimedesktoprelease" }, { @@ -372689,7 +373419,7 @@ "source_location": "L91", "_origin": "ast", "id": "remix_app_utils_electronbridge_thingtimedesktopcachedbundle", - "community": 388, + "community": 323, "norm_label": "thingtimedesktopcachedbundle" }, { @@ -372699,7 +373429,7 @@ "source_location": "L105", "_origin": "ast", "id": "remix_app_utils_electronbridge_thingtimedesktopreleasecatalog", - "community": 388, + "community": 323, "norm_label": "thingtimedesktopreleasecatalog" }, { @@ -372709,7 +373439,7 @@ "source_location": "L115", "_origin": "ast", "id": "remix_app_utils_electronbridge_thingtimeaidesktopsource", - "community": 388, + "community": 73, "norm_label": "thingtimeaidesktopsource" }, { @@ -372719,7 +373449,7 @@ "source_location": "L126", "_origin": "ast", "id": "remix_app_utils_electronbridge_thingtimeaisyncbatch", - "community": 388, + "community": 73, "norm_label": "thingtimeaisyncbatch" }, { @@ -372729,7 +373459,7 @@ "source_location": "L156", "_origin": "ast", "id": "remix_app_utils_electronbridge_thingtimenodeservicestatus", - "community": 388, + "community": 323, "norm_label": "thingtimenodeservicestatus" }, { @@ -372739,7 +373469,7 @@ "source_location": "L157", "_origin": "ast", "id": "remix_app_utils_electronbridge_thingtimenodepairingstatus", - "community": 388, + "community": 323, "norm_label": "thingtimenodepairingstatus" }, { @@ -372749,7 +373479,7 @@ "source_location": "L158", "_origin": "ast", "id": "remix_app_utils_electronbridge_thingtimenodetransportstatus", - "community": 388, + "community": 323, "norm_label": "thingtimenodetransportstatus" }, { @@ -372759,7 +373489,7 @@ "source_location": "L159", "_origin": "ast", "id": "remix_app_utils_electronbridge_thingtimenodepermissionstatus", - "community": 388, + "community": 323, "norm_label": "thingtimenodepermissionstatus" }, { @@ -372769,7 +373499,7 @@ "source_location": "L161", "_origin": "ast", "id": "remix_app_utils_electronbridge_thingtimenodestatus", - "community": 323, + "community": 474, "norm_label": "thingtimenodestatus" }, { @@ -372799,7 +373529,7 @@ "source_location": "L190", "_origin": "ast", "id": "remix_app_utils_electronbridge_thingtimenodeprojectreference", - "community": 388, + "community": 323, "norm_label": "thingtimenodeprojectreference" }, { @@ -372819,7 +373549,7 @@ "source_location": "L203", "_origin": "ast", "id": "remix_app_utils_electronbridge_thingtimenodeconnectorrequest", - "community": 388, + "community": 323, "norm_label": "thingtimenodeconnectorrequest" }, { @@ -372829,7 +373559,7 @@ "source_location": "L221", "_origin": "ast", "id": "remix_app_utils_electronbridge_thingtimenodedevicerequest", - "community": 388, + "community": 323, "norm_label": "thingtimenodedevicerequest" }, { @@ -372839,7 +373569,7 @@ "source_location": "L251", "_origin": "ast", "id": "remix_app_utils_electronbridge_thingtimedesktopbridge", - "community": 388, + "community": 323, "norm_label": "thingtimedesktopbridge" }, { @@ -372849,7 +373579,7 @@ "source_location": "L308", "_origin": "ast", "id": "remix_app_utils_electronbridge_window", - "community": 388, + "community": 323, "norm_label": "window" }, { @@ -372859,7 +373589,7 @@ "source_location": "L313", "_origin": "ast", "id": "remix_app_utils_electronbridge_electronurlsettingkey", - "community": 388, + "community": 323, "norm_label": "electronurlsettingkey()" }, { @@ -372879,7 +373609,7 @@ "source_location": "L316", "_origin": "ast", "id": "remix_app_utils_electronbridge_electronurlsettingpath", - "community": 388, + "community": 323, "norm_label": "electronurlsettingpath()" }, { @@ -372909,7 +373639,7 @@ "source_location": "L327", "_origin": "ast", "id": "remix_app_utils_electronbridge_getelectronsettingurl", - "community": 388, + "community": 323, "norm_label": "getelectronsettingurl()" }, { @@ -372929,7 +373659,7 @@ "source_location": "L345", "_origin": "ast", "id": "remix_app_utils_electronbridge_normalizeelectronurl", - "community": 388, + "community": 323, "norm_label": "normalizeelectronurl()" }, { @@ -372939,7 +373669,7 @@ "source_location": "L365", "_origin": "ast", "id": "remix_app_utils_electronbridge_loadelectronurl", - "community": 388, + "community": 323, "norm_label": "loadelectronurl()" }, { @@ -372959,7 +373689,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_utils_index_stringliteraltorichtext", - "community": 432, + "community": 323, "norm_label": "stringliteraltorichtext()" }, { @@ -373149,7 +373879,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_utils_nativebridge", - "community": 523, + "community": 70, "norm_label": "nativebridge.ts" }, { @@ -373159,7 +373889,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_utils_nativebridge_thingtimebridgemessage", - "community": 523, + "community": 70, "norm_label": "thingtimebridgemessage" }, { @@ -373169,7 +373899,7 @@ "source_location": "L8", "_origin": "ast", "id": "remix_app_utils_nativebridge_thingtimenativebridge", - "community": 523, + "community": 70, "norm_label": "thingtimenativebridge" }, { @@ -373179,7 +373909,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_utils_nativebridge_window", - "community": 523, + "community": 70, "norm_label": "window" }, { @@ -373189,7 +373919,7 @@ "source_location": "L27", "_origin": "ast", "id": "remix_app_utils_nativebridge_getnativebridge", - "community": 523, + "community": 70, "norm_label": "getnativebridge()" }, { @@ -373199,7 +373929,7 @@ "source_location": "L35", "_origin": "ast", "id": "remix_app_utils_nativebridge_isnativebridgeavailable", - "community": 523, + "community": 70, "norm_label": "isnativebridgeavailable()" }, { @@ -373209,7 +373939,7 @@ "source_location": "L39", "_origin": "ast", "id": "remix_app_utils_nativebridge_postnativebridgemessage", - "community": 523, + "community": 70, "norm_label": "postnativebridgemessage()" }, { @@ -373509,7 +374239,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_utils_profilemediaurl_test", - "community": 134, + "community": 47, "norm_label": "profilemediaurl.test.ts" }, { @@ -373519,7 +374249,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_utils_profilemediaurl", - "community": 134, + "community": 47, "norm_label": "profilemediaurl.ts" }, { @@ -373529,7 +374259,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_utils_profilemediaurl_profilemediaslot", - "community": 134, + "community": 47, "norm_label": "profilemediaslot" }, { @@ -373539,7 +374269,7 @@ "source_location": "L5", "_origin": "ast", "id": "remix_app_utils_profilemediaurl_fieldvalue", - "community": 134, + "community": 47, "norm_label": "fieldvalue()" }, { @@ -373549,7 +374279,7 @@ "source_location": "L10", "_origin": "ast", "id": "remix_app_utils_profilemediaurl_profileattachmentidfromrecord", - "community": 134, + "community": 47, "norm_label": "profileattachmentidfromrecord()" }, { @@ -373559,7 +374289,7 @@ "source_location": "L19", "_origin": "ast", "id": "remix_app_utils_profilemediaurl_linkedprofilemediaurl", - "community": 134, + "community": 47, "norm_label": "linkedprofilemediaurl()" }, { @@ -373569,7 +374299,7 @@ "source_location": "L24", "_origin": "ast", "id": "remix_app_utils_profilemediaurl_effectiveprofilemediaurl", - "community": 134, + "community": 47, "norm_label": "effectiveprofilemediaurl()" }, { @@ -373579,7 +374309,7 @@ "source_location": "L33", "_origin": "ast", "id": "remix_app_utils_profilemediaurl_absolutethirdpartyprofilemediaurl", - "community": 134, + "community": 47, "norm_label": "absolutethirdpartyprofilemediaurl()" }, { @@ -373609,7 +374339,7 @@ "source_location": "L45", "_origin": "ast", "id": "remix_app_utils_reactiontokens_sanitizereactiontoken", - "community": 6, + "community": 175, "norm_label": "sanitizereactiontoken()" }, { @@ -373619,7 +374349,7 @@ "source_location": "L57", "_origin": "ast", "id": "remix_app_utils_reactiontokens_isvalidreactiontoken", - "community": 6, + "community": 175, "norm_label": "isvalidreactiontoken()" }, { @@ -373749,7 +374479,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_utils_temporaryuserbootstrap_test", - "community": 496, + "community": 1, "norm_label": "temporaryuserbootstrap.test.ts" }, { @@ -373759,7 +374489,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_utils_temporaryuserbootstrap", - "community": 496, + "community": 1, "norm_label": "temporaryuserbootstrap.ts" }, { @@ -373769,7 +374499,7 @@ "source_location": "L3", "_origin": "ast", "id": "remix_app_utils_temporaryuserbootstrap_shouldbootstraptemporaryuser", - "community": 496, + "community": 1, "norm_label": "shouldbootstraptemporaryuser()" }, { @@ -373779,7 +374509,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_utils_useridentity_test", - "community": 53, + "community": 73, "norm_label": "useridentity.test.ts" }, { @@ -373789,7 +374519,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_app_utils_useridentity", - "community": 53, + "community": 73, "norm_label": "useridentity.ts" }, { @@ -373799,7 +374529,7 @@ "source_location": "L4", "_origin": "ast", "id": "remix_app_utils_useridentity_presentableuseridentity", - "community": 53, + "community": 73, "norm_label": "presentableuseridentity" }, { @@ -373809,7 +374539,7 @@ "source_location": "L10", "_origin": "ast", "id": "remix_app_utils_useridentity_getuserdisplayname", - "community": 53, + "community": 73, "norm_label": "getuserdisplayname()" }, { @@ -373819,7 +374549,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_utils_useridentity_getuseridentitydetail", - "community": 53, + "community": 73, "norm_label": "getuseridentitydetail()" }, { @@ -373829,7 +374559,7 @@ "source_location": "L16", "_origin": "ast", "id": "remix_app_utils_useridentity_getusermention", - "community": 53, + "community": 73, "norm_label": "getusermention()" }, { @@ -374753,11 +375483,21 @@ "norm_label": "test:root-data" }, { - "label": "test:schemas", + "label": "test:social-previews", "file_type": "code", "source_file": "remix/package.json", "source_location": "L87", "_origin": "ast", + "id": "remix_package_scripts_test_social_previews", + "community": 79, + "norm_label": "test:social-previews" + }, + { + "label": "test:schemas", + "file_type": "code", + "source_file": "remix/package.json", + "source_location": "L88", + "_origin": "ast", "id": "remix_package_scripts_test_schemas", "community": 79, "norm_label": "test:schemas" @@ -374766,7 +375506,7 @@ "label": "test:settings", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L88", + "source_location": "L89", "_origin": "ast", "id": "remix_package_scripts_test_settings", "community": 79, @@ -374776,7 +375516,7 @@ "label": "test:storage", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L89", + "source_location": "L90", "_origin": "ast", "id": "remix_package_scripts_test_storage", "community": 79, @@ -374786,7 +375526,7 @@ "label": "test:storage-recovery", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L90", + "source_location": "L91", "_origin": "ast", "id": "remix_package_scripts_test_storage_recovery", "community": 79, @@ -374796,7 +375536,7 @@ "label": "test:temporary-user", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L91", + "source_location": "L92", "_origin": "ast", "id": "remix_package_scripts_test_temporary_user", "community": 79, @@ -374806,7 +375546,7 @@ "label": "test:subspaces", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L92", + "source_location": "L93", "_origin": "ast", "id": "remix_package_scripts_test_subspaces", "community": 79, @@ -374816,7 +375556,7 @@ "label": "test:things", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L93", + "source_location": "L94", "_origin": "ast", "id": "remix_package_scripts_test_things", "community": 79, @@ -374826,7 +375566,7 @@ "label": "test:theme", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L94", + "source_location": "L95", "_origin": "ast", "id": "remix_package_scripts_test_theme", "community": 79, @@ -374836,7 +375576,7 @@ "label": "test:typecheck-ratchet", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L95", + "source_location": "L96", "_origin": "ast", "id": "remix_package_scripts_test_typecheck_ratchet", "community": 79, @@ -374846,7 +375586,7 @@ "label": "test:vercel-status", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L96", + "source_location": "L97", "_origin": "ast", "id": "remix_package_scripts_test_vercel_status", "community": 79, @@ -374856,7 +375596,7 @@ "label": "test:vercel-config", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L97", + "source_location": "L98", "_origin": "ast", "id": "remix_package_scripts_test_vercel_config", "community": 79, @@ -374866,7 +375606,7 @@ "label": "test:vercel-root", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L98", + "source_location": "L99", "_origin": "ast", "id": "remix_package_scripts_test_vercel_root", "community": 79, @@ -374876,7 +375616,7 @@ "label": "test:web-ci-context", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L99", + "source_location": "L100", "_origin": "ast", "id": "remix_package_scripts_test_web_ci_context", "community": 79, @@ -374886,7 +375626,7 @@ "label": "test:webpages", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L100", + "source_location": "L101", "_origin": "ast", "id": "remix_package_scripts_test_webpages", "community": 79, @@ -374896,7 +375636,7 @@ "label": "test:workflow-callers", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L101", + "source_location": "L102", "_origin": "ast", "id": "remix_package_scripts_test_workflow_callers", "community": 79, @@ -374906,7 +375646,7 @@ "label": "test:subscriptions", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L102", + "source_location": "L103", "_origin": "ast", "id": "remix_package_scripts_test_subscriptions", "community": 79, @@ -374916,7 +375656,7 @@ "label": "test:persist", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L103", + "source_location": "L104", "_origin": "ast", "id": "remix_package_scripts_test_persist", "community": 79, @@ -374926,7 +375666,7 @@ "label": "verify:vercel-output", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L104", + "source_location": "L105", "_origin": "ast", "id": "remix_package_scripts_verify_vercel_output", "community": 79, @@ -374936,7 +375676,7 @@ "label": "test:moderation", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L105", + "source_location": "L106", "_origin": "ast", "id": "remix_package_scripts_test_moderation", "community": 79, @@ -374946,7 +375686,7 @@ "label": "verify:embed", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L106", + "source_location": "L107", "_origin": "ast", "id": "remix_package_scripts_verify_embed", "community": 79, @@ -374956,7 +375696,7 @@ "label": "test:passkeys", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L107", + "source_location": "L108", "_origin": "ast", "id": "remix_package_scripts_test_passkeys", "community": 79, @@ -374966,7 +375706,7 @@ "label": "dependencies", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L109", + "source_location": "L110", "_origin": "ast", "id": "remix_package_dependencies", "community": 145, @@ -374976,7 +375716,7 @@ "label": "@anthropic-ai/sdk", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L110", + "source_location": "L111", "_origin": "ast", "id": "remix_package_dependencies_anthropic_ai_sdk", "community": 145, @@ -374986,7 +375726,7 @@ "label": "@aws-sdk/client-s3", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L111", + "source_location": "L112", "_origin": "ast", "id": "remix_package_dependencies_aws_sdk_client_s3", "community": 145, @@ -374996,7 +375736,7 @@ "label": "@aws-sdk/client-sesv2", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L112", + "source_location": "L113", "_origin": "ast", "id": "remix_package_dependencies_aws_sdk_client_sesv2", "community": 145, @@ -375006,7 +375746,7 @@ "label": "@aws-sdk/s3-request-presigner", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L113", + "source_location": "L114", "_origin": "ast", "id": "remix_package_dependencies_aws_sdk_s3_request_presigner", "community": 145, @@ -375016,7 +375756,7 @@ "label": "@chakra-ui/react", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L114", + "source_location": "L115", "_origin": "ast", "id": "remix_package_dependencies_chakra_ui_react", "community": 145, @@ -375026,7 +375766,7 @@ "label": "@chakra-ui/react-types", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L115", + "source_location": "L116", "_origin": "ast", "id": "remix_package_dependencies_chakra_ui_react_types", "community": 145, @@ -375036,7 +375776,7 @@ "label": "@editorjs/checklist", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L116", + "source_location": "L117", "_origin": "ast", "id": "remix_package_dependencies_editorjs_checklist", "community": 145, @@ -375046,7 +375786,7 @@ "label": "@editorjs/code", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L117", + "source_location": "L118", "_origin": "ast", "id": "remix_package_dependencies_editorjs_code", "community": 145, @@ -375056,7 +375796,7 @@ "label": "@editorjs/delimiter", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L118", + "source_location": "L119", "_origin": "ast", "id": "remix_package_dependencies_editorjs_delimiter", "community": 145, @@ -375066,7 +375806,7 @@ "label": "@editorjs/editorjs", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L119", + "source_location": "L120", "_origin": "ast", "id": "remix_package_dependencies_editorjs_editorjs", "community": 145, @@ -375076,7 +375816,7 @@ "label": "@editorjs/embed", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L120", + "source_location": "L121", "_origin": "ast", "id": "remix_package_dependencies_editorjs_embed", "community": 145, @@ -375086,7 +375826,7 @@ "label": "@editorjs/header", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L121", + "source_location": "L122", "_origin": "ast", "id": "remix_package_dependencies_editorjs_header", "community": 145, @@ -375096,7 +375836,7 @@ "label": "@editorjs/inline-code", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L122", + "source_location": "L123", "_origin": "ast", "id": "remix_package_dependencies_editorjs_inline_code", "community": 145, @@ -375106,7 +375846,7 @@ "label": "@editorjs/list", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L123", + "source_location": "L124", "_origin": "ast", "id": "remix_package_dependencies_editorjs_list", "community": 145, @@ -375116,7 +375856,7 @@ "label": "@editorjs/marker", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L124", + "source_location": "L125", "_origin": "ast", "id": "remix_package_dependencies_editorjs_marker", "community": 145, @@ -375126,7 +375866,7 @@ "label": "@editorjs/quote", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L125", + "source_location": "L126", "_origin": "ast", "id": "remix_package_dependencies_editorjs_quote", "community": 145, @@ -375136,7 +375876,7 @@ "label": "@editorjs/simple-image", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L126", + "source_location": "L127", "_origin": "ast", "id": "remix_package_dependencies_editorjs_simple_image", "community": 145, @@ -375146,7 +375886,7 @@ "label": "@editorjs/table", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L127", + "source_location": "L128", "_origin": "ast", "id": "remix_package_dependencies_editorjs_table", "community": 145, @@ -375156,7 +375896,7 @@ "label": "@editorjs/underline", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L128", + "source_location": "L129", "_origin": "ast", "id": "remix_package_dependencies_editorjs_underline", "community": 145, @@ -375166,7 +375906,7 @@ "label": "@editorjs/warning", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L129", + "source_location": "L130", "_origin": "ast", "id": "remix_package_dependencies_editorjs_warning", "community": 145, @@ -375176,7 +375916,7 @@ "label": "@emotion/cache", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L130", + "source_location": "L131", "_origin": "ast", "id": "remix_package_dependencies_emotion_cache", "community": 145, @@ -375186,7 +375926,7 @@ "label": "@emotion/react", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L131", + "source_location": "L132", "_origin": "ast", "id": "remix_package_dependencies_emotion_react", "community": 145, @@ -375196,7 +375936,7 @@ "label": "@emotion/server", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L132", + "source_location": "L133", "_origin": "ast", "id": "remix_package_dependencies_emotion_server", "community": 145, @@ -375206,7 +375946,7 @@ "label": "@fortawesome/fontawesome-svg-core", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L133", + "source_location": "L134", "_origin": "ast", "id": "remix_package_dependencies_fortawesome_fontawesome_svg_core", "community": 145, @@ -375216,7 +375956,7 @@ "label": "@fortawesome/free-regular-svg-icons", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L134", + "source_location": "L135", "_origin": "ast", "id": "remix_package_dependencies_fortawesome_free_regular_svg_icons", "community": 145, @@ -375226,7 +375966,7 @@ "label": "@fortawesome/free-solid-svg-icons", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L135", + "source_location": "L136", "_origin": "ast", "id": "remix_package_dependencies_fortawesome_free_solid_svg_icons", "community": 145, @@ -375236,7 +375976,7 @@ "label": "@fortawesome/react-fontawesome", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L136", + "source_location": "L137", "_origin": "ast", "id": "remix_package_dependencies_fortawesome_react_fontawesome", "community": 145, @@ -375246,17 +375986,27 @@ "label": "@monaco-editor/react", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L137", + "source_location": "L138", "_origin": "ast", "id": "remix_package_dependencies_monaco_editor_react", "community": 145, "norm_label": "@monaco-editor/react" }, + { + "label": "@resvg/resvg-js", + "file_type": "code", + "source_file": "remix/package.json", + "source_location": "L139", + "_origin": "ast", + "id": "remix_package_dependencies_resvg_resvg_js", + "community": 145, + "norm_label": "@resvg/resvg-js" + }, { "label": "@simplewebauthn/browser", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L138", + "source_location": "L140", "_origin": "ast", "id": "remix_package_dependencies_simplewebauthn_browser", "community": 145, @@ -375266,7 +376016,7 @@ "label": "@simplewebauthn/server", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L139", + "source_location": "L141", "_origin": "ast", "id": "remix_package_dependencies_simplewebauthn_server", "community": 145, @@ -375276,7 +376026,7 @@ "label": "@vercel/analytics", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L140", + "source_location": "L142", "_origin": "ast", "id": "remix_package_dependencies_vercel_analytics", "community": 145, @@ -375286,7 +376036,7 @@ "label": "@vercel/oidc-aws-credentials-provider", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L141", + "source_location": "L143", "_origin": "ast", "id": "remix_package_dependencies_vercel_oidc_aws_credentials_provider", "community": 145, @@ -375296,7 +376046,7 @@ "label": "@vercel/sandbox", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L142", + "source_location": "L144", "_origin": "ast", "id": "remix_package_dependencies_vercel_sandbox", "community": 145, @@ -375306,7 +376056,7 @@ "label": "astronomy-engine", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L143", + "source_location": "L145", "_origin": "ast", "id": "remix_package_dependencies_astronomy_engine", "community": 145, @@ -375316,7 +376066,7 @@ "label": "axios", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L144", + "source_location": "L146", "_origin": "ast", "id": "remix_package_dependencies_axios", "community": 145, @@ -375326,7 +376076,7 @@ "label": "bcrypt", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L145", + "source_location": "L147", "_origin": "ast", "id": "remix_package_dependencies_bcrypt", "community": 145, @@ -375336,7 +376086,7 @@ "label": "draft-js", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L146", + "source_location": "L148", "_origin": "ast", "id": "remix_package_dependencies_draft_js", "community": 145, @@ -375346,7 +376096,7 @@ "label": "emojis-list", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L147", + "source_location": "L149", "_origin": "ast", "id": "remix_package_dependencies_emojis_list", "community": 145, @@ -375356,7 +376106,7 @@ "label": "emotion", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L148", + "source_location": "L150", "_origin": "ast", "id": "remix_package_dependencies_emotion", "community": 145, @@ -375366,7 +376116,7 @@ "label": "file-type", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L149", + "source_location": "L151", "_origin": "ast", "id": "remix_package_dependencies_file_type", "community": 145, @@ -375376,7 +376126,7 @@ "label": "flatted", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L150", + "source_location": "L152", "_origin": "ast", "id": "remix_package_dependencies_flatted", "community": 145, @@ -375386,7 +376136,7 @@ "label": "fuse.js", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L151", + "source_location": "L153", "_origin": "ast", "id": "remix_package_dependencies_fuse_js", "community": 145, @@ -375396,7 +376146,7 @@ "label": "gradient-path", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L152", + "source_location": "L154", "_origin": "ast", "id": "remix_package_dependencies_gradient_path", "community": 145, @@ -375406,7 +376156,7 @@ "label": "hex-to-rgba", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L153", + "source_location": "L155", "_origin": "ast", "id": "remix_package_dependencies_hex_to_rgba", "community": 145, @@ -375416,7 +376166,7 @@ "label": "isbot", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L154", + "source_location": "L156", "_origin": "ast", "id": "remix_package_dependencies_isbot", "community": 145, @@ -375426,7 +376176,7 @@ "label": "jose", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L155", + "source_location": "L157", "_origin": "ast", "id": "remix_package_dependencies_jose", "community": 145, @@ -375436,7 +376186,7 @@ "label": "localforage", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L156", + "source_location": "L158", "_origin": "ast", "id": "remix_package_dependencies_localforage", "community": 145, @@ -375446,7 +376196,7 @@ "label": "lodash-es", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L157", + "source_location": "L159", "_origin": "ast", "id": "remix_package_dependencies_lodash_es", "community": 145, @@ -375456,7 +376206,7 @@ "label": "lucide-react", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L158", + "source_location": "L160", "_origin": "ast", "id": "remix_package_dependencies_lucide_react", "community": 145, @@ -375466,7 +376216,7 @@ "label": "mongodb", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L159", + "source_location": "L161", "_origin": "ast", "id": "remix_package_dependencies_mongodb", "community": 145, @@ -375476,17 +376226,17 @@ "label": "nitro", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L160", + "source_location": "L162", "_origin": "ast", "id": "remix_package_dependencies_nitro", - "community": 9, + "community": 145, "norm_label": "nitro" }, { "label": "openai", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L161", + "source_location": "L163", "_origin": "ast", "id": "remix_package_dependencies_openai", "community": 145, @@ -375496,7 +376246,7 @@ "label": "prismjs", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L162", + "source_location": "L164", "_origin": "ast", "id": "remix_package_dependencies_prismjs", "community": 145, @@ -375506,7 +376256,7 @@ "label": "react", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L163", + "source_location": "L165", "_origin": "ast", "id": "remix_package_dependencies_react", "community": 145, @@ -375516,7 +376266,7 @@ "label": "react-click-away-listener", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L164", + "source_location": "L166", "_origin": "ast", "id": "remix_package_dependencies_react_click_away_listener", "community": 145, @@ -375526,7 +376276,7 @@ "label": "react-contenteditable", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L165", + "source_location": "L167", "_origin": "ast", "id": "remix_package_dependencies_react_contenteditable", "community": 145, @@ -375536,7 +376286,7 @@ "label": "react-dom", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L166", + "source_location": "L168", "_origin": "ast", "id": "remix_package_dependencies_react_dom", "community": 667, @@ -375546,7 +376296,7 @@ "label": "react-icons", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L167", + "source_location": "L169", "_origin": "ast", "id": "remix_package_dependencies_react_icons", "community": 145, @@ -375556,7 +376306,7 @@ "label": "react-router", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L168", + "source_location": "L170", "_origin": "ast", "id": "remix_package_dependencies_react_router", "community": 145, @@ -375566,7 +376316,7 @@ "label": "react-simple-code-editor", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L169", + "source_location": "L171", "_origin": "ast", "id": "remix_package_dependencies_react_simple_code_editor", "community": 145, @@ -375576,7 +376326,7 @@ "label": "react-sticky", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L170", + "source_location": "L172", "_origin": "ast", "id": "remix_package_dependencies_react_sticky", "community": 145, @@ -375586,7 +376336,7 @@ "label": "react-sticky-el", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L171", + "source_location": "L173", "_origin": "ast", "id": "remix_package_dependencies_react_sticky_el", "community": 145, @@ -375596,7 +376346,7 @@ "label": "react-visibility-sensor", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L172", + "source_location": "L174", "_origin": "ast", "id": "remix_package_dependencies_react_visibility_sensor", "community": 145, @@ -375606,7 +376356,7 @@ "label": "rxjs", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L173", + "source_location": "L175", "_origin": "ast", "id": "remix_package_dependencies_rxjs", "community": 145, @@ -375616,7 +376366,7 @@ "label": "sharp", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L174", + "source_location": "L176", "_origin": "ast", "id": "remix_package_dependencies_sharp", "community": 145, @@ -375626,7 +376376,7 @@ "label": "sshpk", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L175", + "source_location": "L177", "_origin": "ast", "id": "remix_package_dependencies_sshpk", "community": 145, @@ -375636,7 +376386,7 @@ "label": "tinygradient", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L176", + "source_location": "L178", "_origin": "ast", "id": "remix_package_dependencies_tinygradient", "community": 145, @@ -375646,7 +376396,7 @@ "label": "tldts", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L177", + "source_location": "L179", "_origin": "ast", "id": "remix_package_dependencies_tldts", "community": 145, @@ -375656,7 +376406,7 @@ "label": "unicode-emoji-json", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L178", + "source_location": "L180", "_origin": "ast", "id": "remix_package_dependencies_unicode_emoji_json", "community": 145, @@ -375666,7 +376416,7 @@ "label": "uuid", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L179", + "source_location": "L181", "_origin": "ast", "id": "remix_package_dependencies_uuid", "community": 145, @@ -375676,7 +376426,7 @@ "label": "workflow", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L180", + "source_location": "L182", "_origin": "ast", "id": "remix_package_dependencies_workflow", "community": 145, @@ -375686,7 +376436,7 @@ "label": "devDependencies", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L182", + "source_location": "L184", "_origin": "ast", "id": "remix_package_devdependencies", "community": 434, @@ -375696,7 +376446,7 @@ "label": "@emotion/styled", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L183", + "source_location": "L185", "_origin": "ast", "id": "remix_package_devdependencies_emotion_styled", "community": 434, @@ -375706,7 +376456,7 @@ "label": "@remix-run/eslint-config", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L184", + "source_location": "L186", "_origin": "ast", "id": "remix_package_devdependencies_remix_run_eslint_config", "community": 434, @@ -375716,7 +376466,7 @@ "label": "@shopify/eslint-plugin", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L185", + "source_location": "L187", "_origin": "ast", "id": "remix_package_devdependencies_shopify_eslint_plugin", "community": 434, @@ -375726,7 +376476,7 @@ "label": "@types/eslint", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L186", + "source_location": "L188", "_origin": "ast", "id": "remix_package_devdependencies_types_eslint", "community": 434, @@ -375736,7 +376486,7 @@ "label": "@types/node", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L187", + "source_location": "L189", "_origin": "ast", "id": "remix_package_devdependencies_types_node", "community": 434, @@ -375746,7 +376496,7 @@ "label": "@types/react", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L188", + "source_location": "L190", "_origin": "ast", "id": "remix_package_devdependencies_types_react", "community": 434, @@ -375756,7 +376506,7 @@ "label": "@types/react-dom", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L189", + "source_location": "L191", "_origin": "ast", "id": "remix_package_devdependencies_types_react_dom", "community": 434, @@ -375766,7 +376516,7 @@ "label": "@typescript-eslint/parser", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L190", + "source_location": "L192", "_origin": "ast", "id": "remix_package_devdependencies_typescript_eslint_parser", "community": 434, @@ -375776,7 +376526,7 @@ "label": "@vitejs/plugin-react", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L191", + "source_location": "L193", "_origin": "ast", "id": "remix_package_devdependencies_vitejs_plugin_react", "community": 434, @@ -375786,7 +376536,7 @@ "label": "eslint", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L192", + "source_location": "L194", "_origin": "ast", "id": "remix_package_devdependencies_eslint", "community": 434, @@ -375796,7 +376546,7 @@ "label": "eslint-config-prettier", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L193", + "source_location": "L195", "_origin": "ast", "id": "remix_package_devdependencies_eslint_config_prettier", "community": 434, @@ -375806,7 +376556,7 @@ "label": "eslint-loader", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L194", + "source_location": "L196", "_origin": "ast", "id": "remix_package_devdependencies_eslint_loader", "community": 434, @@ -375816,7 +376566,7 @@ "label": "eslint-plugin-chakra-ui", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L195", + "source_location": "L197", "_origin": "ast", "id": "remix_package_devdependencies_eslint_plugin_chakra_ui", "community": 434, @@ -375826,7 +376576,7 @@ "label": "eslint-plugin-hydrogen", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L196", + "source_location": "L198", "_origin": "ast", "id": "remix_package_devdependencies_eslint_plugin_hydrogen", "community": 434, @@ -375836,7 +376586,7 @@ "label": "eslint-plugin-prettier", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L197", + "source_location": "L199", "_origin": "ast", "id": "remix_package_devdependencies_eslint_plugin_prettier", "community": 434, @@ -375846,7 +376596,7 @@ "label": "eslint-plugin-react", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L198", + "source_location": "L200", "_origin": "ast", "id": "remix_package_devdependencies_eslint_plugin_react", "community": 434, @@ -375856,7 +376606,7 @@ "label": "eslint-plugin-react-hooks", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L199", + "source_location": "L201", "_origin": "ast", "id": "remix_package_devdependencies_eslint_plugin_react_hooks", "community": 434, @@ -375866,7 +376616,7 @@ "label": "eslint-plugin-simple-import-sort", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L200", + "source_location": "L202", "_origin": "ast", "id": "remix_package_devdependencies_eslint_plugin_simple_import_sort", "community": 434, @@ -375876,7 +376626,7 @@ "label": "eslint-plugin-unused-imports", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L201", + "source_location": "L203", "_origin": "ast", "id": "remix_package_devdependencies_eslint_plugin_unused_imports", "community": 434, @@ -375886,7 +376636,7 @@ "label": "framer-motion", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L202", + "source_location": "L204", "_origin": "ast", "id": "remix_package_devdependencies_framer_motion", "community": 434, @@ -375896,7 +376646,7 @@ "label": "prettier", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L203", + "source_location": "L205", "_origin": "ast", "id": "remix_package_devdependencies_prettier", "community": 434, @@ -375906,7 +376656,7 @@ "label": "ts-node", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L204", + "source_location": "L206", "_origin": "ast", "id": "remix_package_devdependencies_ts_node", "community": 434, @@ -375916,7 +376666,7 @@ "label": "tsx", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L205", + "source_location": "L207", "_origin": "ast", "id": "remix_package_devdependencies_tsx", "community": 434, @@ -375926,7 +376676,7 @@ "label": "typescript", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L206", + "source_location": "L208", "_origin": "ast", "id": "remix_package_devdependencies_typescript", "community": 434, @@ -375936,7 +376686,7 @@ "label": "vite", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L207", + "source_location": "L209", "_origin": "ast", "id": "remix_package_devdependencies_vite", "community": 434, @@ -375946,7 +376696,7 @@ "label": "engines", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L209", + "source_location": "L211", "_origin": "ast", "id": "remix_package_engines", "community": 803, @@ -375956,7 +376706,7 @@ "label": "node", "file_type": "code", "source_file": "remix/package.json", - "source_location": "L210", + "source_location": "L212", "_origin": "ast", "id": "remix_package_engines_node", "community": 803, @@ -376679,7 +377429,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_scripts_embed_bundle_source_map", - "community": 749, + "community": 227, "norm_label": "embed-bundle-source-map.mjs" }, { @@ -376689,7 +377439,7 @@ "source_location": "L23", "_origin": "ast", "id": "remix_scripts_embed_bundle_source_map_findsourcemapannotation", - "community": 749, + "community": 227, "norm_label": "findsourcemapannotation()" }, { @@ -376699,7 +377449,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_scripts_embed_bundle_source_map_test", - "community": 749, + "community": 227, "norm_label": "embed-bundle-source-map.test.mjs" }, { @@ -377380,6 +378130,46 @@ "community": 316, "norm_label": "presskit" }, + { + "label": "generate-social-card-font.mjs", + "file_type": "code", + "source_file": "remix/scripts/generate-social-card-font.mjs", + "source_location": "L1", + "_origin": "ast", + "id": "remix_scripts_generate_social_card_font", + "community": 754, + "norm_label": "generate-social-card-font.mjs" + }, + { + "label": "faces", + "file_type": "code", + "source_file": "remix/scripts/generate-social-card-font.mjs", + "source_location": "L20", + "_origin": "ast", + "id": "remix_scripts_generate_social_card_font_faces", + "community": 754, + "norm_label": "faces" + }, + { + "label": "chunk()", + "file_type": "code", + "source_file": "remix/scripts/generate-social-card-font.mjs", + "source_location": "L23", + "_origin": "ast", + "id": "remix_scripts_generate_social_card_font_chunk", + "community": 754, + "norm_label": "chunk()" + }, + { + "label": "entries", + "file_type": "code", + "source_file": "remix/scripts/generate-social-card-font.mjs", + "source_location": "L29", + "_origin": "ast", + "id": "remix_scripts_generate_social_card_font_entries", + "community": 754, + "norm_label": "entries" + }, { "label": "media-cache.test.mjs", "file_type": "code", @@ -377470,6 +378260,36 @@ "community": 227, "norm_label": "appshellheaders" }, + { + "label": "socialCardHeaders", + "file_type": "code", + "source_file": "remix/scripts/patch-vercel-output.mjs", + "source_location": "L24", + "_origin": "ast", + "id": "remix_scripts_patch_vercel_output_socialcardheaders", + "community": 227, + "norm_label": "socialcardheaders" + }, + { + "label": "socialMetaRoute", + "file_type": "code", + "source_file": "remix/scripts/patch-vercel-output.mjs", + "source_location": "L28", + "_origin": "ast", + "id": "remix_scripts_patch_vercel_output_socialmetaroute", + "community": 227, + "norm_label": "socialmetaroute" + }, + { + "label": "socialCardRoute", + "file_type": "code", + "source_file": "remix/scripts/patch-vercel-output.mjs", + "source_location": "L36", + "_origin": "ast", + "id": "remix_scripts_patch_vercel_output_socialcardroute", + "community": 227, + "norm_label": "socialcardroute" + }, { "label": "pre-dev.sh", "file_type": "code", @@ -377775,7 +378595,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_scripts_verify_actions", - "community": 175, + "community": 50, "norm_label": "verify-actions.mjs" }, { @@ -377785,7 +378605,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_scripts_verify_actions_failures", - "community": 175, + "community": 50, "norm_label": "failures" }, { @@ -377795,7 +378615,7 @@ "source_location": "L15", "_origin": "ast", "id": "remix_scripts_verify_actions_check", - "community": 175, + "community": 50, "norm_label": "check()" }, { @@ -377805,7 +378625,7 @@ "source_location": "L25", "_origin": "ast", "id": "remix_scripts_verify_actions_api", - "community": 175, + "community": 50, "norm_label": "api()" }, { @@ -377815,7 +378635,7 @@ "source_location": "L39", "_origin": "ast", "id": "remix_scripts_verify_actions_register", - "community": 175, + "community": 50, "norm_label": "register()" }, { @@ -377825,7 +378645,7 @@ "source_location": "L52", "_origin": "ast", "id": "remix_scripts_verify_actions_creatething", - "community": 175, + "community": 50, "norm_label": "creatething()" }, { @@ -377835,7 +378655,7 @@ "source_location": "L53", "_origin": "ast", "id": "remix_scripts_verify_actions_runaction", - "community": 175, + "community": 50, "norm_label": "runaction()" }, { @@ -377845,7 +378665,7 @@ "source_location": "L55", "_origin": "ast", "id": "remix_scripts_verify_actions_run", - "community": 175, + "community": 50, "norm_label": "run()" }, { @@ -378305,7 +379125,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_scripts_verify_embed_bundle", - "community": 749, + "community": 227, "norm_label": "verify-embed-bundle.mjs" }, { @@ -378315,7 +379135,7 @@ "source_location": "L12", "_origin": "ast", "id": "remix_scripts_verify_embed_bundle_outputpath", - "community": 749, + "community": 227, "norm_label": "outputpath" }, { @@ -378325,7 +379145,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_scripts_verify_embed_bundle_filenames", - "community": 749, + "community": 227, "norm_label": "filenames()" }, { @@ -378335,7 +379155,7 @@ "source_location": "L25", "_origin": "ast", "id": "remix_scripts_verify_embed_bundle_copiedassets", - "community": 749, + "community": 227, "norm_label": "copiedassets" }, { @@ -378345,7 +379165,7 @@ "source_location": "L26", "_origin": "ast", "id": "remix_scripts_verify_embed_bundle_generatedassets", - "community": 749, + "community": 227, "norm_label": "generatedassets" }, { @@ -378355,7 +379175,7 @@ "source_location": "L32", "_origin": "ast", "id": "remix_scripts_verify_embed_bundle_source", - "community": 749, + "community": 227, "norm_label": "source" }, { @@ -378365,7 +379185,7 @@ "source_location": "L36", "_origin": "ast", "id": "remix_scripts_verify_embed_bundle_sourcemapannotation", - "community": 749, + "community": 227, "norm_label": "sourcemapannotation" }, { @@ -378375,7 +379195,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_scripts_verify_embed_bundle_syntaxcheck", - "community": 749, + "community": 227, "norm_label": "syntaxcheck" }, { @@ -378885,7 +379705,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_scripts_verify_poll_unique_keys", - "community": 175, + "community": 50, "norm_label": "verify-poll-unique-keys.ts" }, { @@ -378895,7 +379715,7 @@ "source_location": "L9", "_origin": "ast", "id": "remix_scripts_verify_poll_unique_keys_main", - "community": 175, + "community": 50, "norm_label": "main()" }, { @@ -378905,7 +379725,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_scripts_verify_subspaces", - "community": 721, + "community": 144, "norm_label": "verify-subspaces.mjs" }, { @@ -378915,7 +379735,7 @@ "source_location": "L93", "_origin": "ast", "id": "remix_scripts_verify_subspaces_failures", - "community": 721, + "community": 144, "norm_label": "failures" }, { @@ -378925,7 +379745,7 @@ "source_location": "L98", "_origin": "ast", "id": "remix_scripts_verify_subspaces_skipped", - "community": 721, + "community": 144, "norm_label": "skipped" }, { @@ -378935,7 +379755,7 @@ "source_location": "L100", "_origin": "ast", "id": "remix_scripts_verify_subspaces_isstoragegate", - "community": 721, + "community": 144, "norm_label": "isstoragegate()" }, { @@ -378945,7 +379765,7 @@ "source_location": "L101", "_origin": "ast", "id": "remix_scripts_verify_subspaces_checkorskip", - "community": 721, + "community": 144, "norm_label": "checkorskip()" }, { @@ -378955,7 +379775,7 @@ "source_location": "L109", "_origin": "ast", "id": "remix_scripts_verify_subspaces_check", - "community": 721, + "community": 144, "norm_label": "check()" }, { @@ -378965,7 +379785,7 @@ "source_location": "L127", "_origin": "ast", "id": "remix_scripts_verify_subspaces_api", - "community": 721, + "community": 144, "norm_label": "api()" }, { @@ -378975,7 +379795,7 @@ "source_location": "L157", "_origin": "ast", "id": "remix_scripts_verify_subspaces_day", - "community": 721, + "community": 144, "norm_label": "day" }, { @@ -378985,7 +379805,7 @@ "source_location": "L158", "_origin": "ast", "id": "remix_scripts_verify_subspaces_sessionof", - "community": 721, + "community": 144, "norm_label": "sessionof()" }, { @@ -378995,7 +379815,7 @@ "source_location": "L169", "_origin": "ast", "id": "remix_scripts_verify_subspaces_register", - "community": 721, + "community": 144, "norm_label": "register()" }, { @@ -379005,7 +379825,7 @@ "source_location": "L178", "_origin": "ast", "id": "remix_scripts_verify_subspaces_run", - "community": 721, + "community": 144, "norm_label": "run()" }, { @@ -379098,11 +379918,21 @@ "community": 227, "norm_label": "config" }, + { + "label": "tracedServerPackage", + "file_type": "code", + "source_file": "remix/scripts/verify-vercel-output.mjs", + "source_location": "L18", + "_origin": "ast", + "id": "remix_scripts_verify_vercel_output_tracedserverpackage", + "community": 227, + "norm_label": "tracedserverpackage" + }, { "label": "filesBelow()", "file_type": "code", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L19", + "source_location": "L20", "_origin": "ast", "id": "remix_scripts_verify_vercel_output_filesbelow", "community": 227, @@ -379112,7 +379942,7 @@ "label": "emojiCreateRequirePattern", "file_type": "code", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L32", + "source_location": "L33", "_origin": "ast", "id": "remix_scripts_verify_vercel_output_emojicreaterequirepattern", "community": 227, @@ -379122,7 +379952,7 @@ "label": "unresolvedEmojiLookup", "file_type": "code", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L35", + "source_location": "L36", "_origin": "ast", "id": "remix_scripts_verify_vercel_output_unresolvedemojilookup", "community": 227, @@ -379132,17 +379962,27 @@ "label": "tracedEmojiAsset", "file_type": "code", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L38", + "source_location": "L39", "_origin": "ast", "id": "remix_scripts_verify_vercel_output_tracedemojiasset", "community": 227, "norm_label": "tracedemojiasset" }, + { + "label": "tracedResvgNativePackage", + "file_type": "code", + "source_file": "remix/scripts/verify-vercel-output.mjs", + "source_location": "L49", + "_origin": "ast", + "id": "remix_scripts_verify_vercel_output_tracedresvgnativepackage", + "community": 227, + "norm_label": "tracedresvgnativepackage" + }, { "label": "getDirectiveSources()", "file_type": "code", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L45", + "source_location": "L56", "_origin": "ast", "id": "remix_scripts_verify_vercel_output_getdirectivesources", "community": 227, @@ -379152,7 +379992,7 @@ "label": "appScriptSources", "file_type": "code", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L60", + "source_location": "L71", "_origin": "ast", "id": "remix_scripts_verify_vercel_output_appscriptsources", "community": 227, @@ -379162,7 +380002,7 @@ "label": "inlineExecutableScripts()", "file_type": "code", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L70", + "source_location": "L81", "_origin": "ast", "id": "remix_scripts_verify_vercel_output_inlineexecutablescripts", "community": 227, @@ -379172,7 +380012,7 @@ "label": "previewFreshnessIndex", "file_type": "code", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L92", + "source_location": "L103", "_origin": "ast", "id": "remix_scripts_verify_vercel_output_previewfreshnessindex", "community": 227, @@ -379182,7 +380022,7 @@ "label": "appEntryTag", "file_type": "code", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L93", + "source_location": "L104", "_origin": "ast", "id": "remix_scripts_verify_vercel_output_appentrytag", "community": 227, @@ -379192,7 +380032,7 @@ "label": "embedSourceMapAnnotation", "file_type": "code", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L105", + "source_location": "L116", "_origin": "ast", "id": "remix_scripts_verify_vercel_output_embedsourcemapannotation", "community": 227, @@ -379202,7 +380042,7 @@ "label": "hasFilesystemRoute", "file_type": "code", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L132", + "source_location": "L143", "_origin": "ast", "id": "remix_scripts_verify_vercel_output_hasfilesystemroute", "community": 227, @@ -379212,7 +380052,7 @@ "label": "filesystemIndex", "file_type": "code", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L138", + "source_location": "L149", "_origin": "ast", "id": "remix_scripts_verify_vercel_output_filesystemindex", "community": 227, @@ -379222,7 +380062,7 @@ "label": "apiIndex", "file_type": "code", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L139", + "source_location": "L150", "_origin": "ast", "id": "remix_scripts_verify_vercel_output_apiindex", "community": 227, @@ -379232,7 +380072,7 @@ "label": "rootIndex", "file_type": "code", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L140", + "source_location": "L151", "_origin": "ast", "id": "remix_scripts_verify_vercel_output_rootindex", "community": 227, @@ -379242,7 +380082,7 @@ "label": "directIndex", "file_type": "code", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L141", + "source_location": "L152", "_origin": "ast", "id": "remix_scripts_verify_vercel_output_directindex", "community": 227, @@ -379252,57 +380092,57 @@ "label": "spaIndex", "file_type": "code", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L142", + "source_location": "L153", "_origin": "ast", "id": "remix_scripts_verify_vercel_output_spaindex", "community": 227, "norm_label": "spaindex" }, { - "label": "isPermalinkSrc()", + "label": "wellKnownDiscoveryIndex", "file_type": "code", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L145", + "source_location": "L154", "_origin": "ast", - "id": "remix_scripts_verify_vercel_output_ispermalinksrc", + "id": "remix_scripts_verify_vercel_output_wellknowndiscoveryindex", "community": 227, - "norm_label": "ispermalinksrc()" + "norm_label": "wellknowndiscoveryindex" }, { - "label": "postPermalinkIndex", + "label": "socialCardIndex", "file_type": "code", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L146", + "source_location": "L159", "_origin": "ast", - "id": "remix_scripts_verify_vercel_output_postpermalinkindex", + "id": "remix_scripts_verify_vercel_output_socialcardindex", "community": 227, - "norm_label": "postpermalinkindex" + "norm_label": "socialcardindex" }, { - "label": "profilePermalinkIndex", + "label": "socialMetaIndex", "file_type": "code", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L147", + "source_location": "L160", "_origin": "ast", - "id": "remix_scripts_verify_vercel_output_profilepermalinkindex", + "id": "remix_scripts_verify_vercel_output_socialmetaindex", "community": 227, - "norm_label": "profilepermalinkindex" + "norm_label": "socialmetaindex" }, { - "label": "wellKnownDiscoveryIndex", + "label": "socialRouteIndexes", "file_type": "code", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L148", + "source_location": "L163", "_origin": "ast", - "id": "remix_scripts_verify_vercel_output_wellknowndiscoveryindex", + "id": "remix_scripts_verify_vercel_output_socialrouteindexes", "community": 227, - "norm_label": "wellknowndiscoveryindex" + "norm_label": "socialrouteindexes" }, { "label": "serverFallbackIndex", "file_type": "code", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L153", + "source_location": "L164", "_origin": "ast", "id": "remix_scripts_verify_vercel_output_serverfallbackindex", "community": 227, @@ -379312,7 +380152,7 @@ "label": "authorizeHeadersIndex", "file_type": "code", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L232", + "source_location": "L246", "_origin": "ast", "id": "remix_scripts_verify_vercel_output_authorizeheadersindex", "community": 227, @@ -379322,7 +380162,7 @@ "label": "cspHeadersIndex", "file_type": "code", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L247", + "source_location": "L261", "_origin": "ast", "id": "remix_scripts_verify_vercel_output_cspheadersindex", "community": 227, @@ -379332,7 +380172,7 @@ "label": "designBundlesHeadersIndex", "file_type": "code", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L259", + "source_location": "L273", "_origin": "ast", "id": "remix_scripts_verify_vercel_output_designbundlesheadersindex", "community": 227, @@ -379342,7 +380182,7 @@ "label": "mcpLabHeadersIndex", "file_type": "code", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L272", + "source_location": "L286", "_origin": "ast", "id": "remix_scripts_verify_vercel_output_mcplabheadersindex", "community": 227, @@ -379352,7 +380192,7 @@ "label": "mcpLabScriptSources", "file_type": "code", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L290", + "source_location": "L304", "_origin": "ast", "id": "remix_scripts_verify_vercel_output_mcplabscriptsources", "community": 227, @@ -379362,7 +380202,7 @@ "label": "designBundleScriptSources", "file_type": "code", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L300", + "source_location": "L314", "_origin": "ast", "id": "remix_scripts_verify_vercel_output_designbundlescriptsources", "community": 227, @@ -379372,7 +380212,7 @@ "label": "designBundleConnectSources", "file_type": "code", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L301", + "source_location": "L315", "_origin": "ast", "id": "remix_scripts_verify_vercel_output_designbundleconnectsources", "community": 227, @@ -379382,7 +380222,7 @@ "label": "designBundleSandboxTokens", "file_type": "code", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L302", + "source_location": "L316", "_origin": "ast", "id": "remix_scripts_verify_vercel_output_designbundlesandboxtokens", "community": 227, @@ -379795,7 +380635,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_server_handlers_thingtime_capabilities", - "community": 9, + "community": 210, "norm_label": "thingtime-capabilities.ts" }, { @@ -379815,7 +380655,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_server_routes_well_known_web_identity", - "community": 188, + "community": 41, "norm_label": "web-identity.ts" }, { @@ -380105,7 +380945,7 @@ "source_location": "L1", "_origin": "ast", "id": "remix_tests_editor_rich_text", - "community": 349, + "community": 506, "norm_label": "editor-rich-text.tsx" }, { @@ -380115,7 +380955,7 @@ "source_location": "L14", "_origin": "ast", "id": "remix_tests_editor_rich_text_initial", - "community": 349, + "community": 506, "norm_label": "initial" }, { @@ -380125,7 +380965,7 @@ "source_location": "L34", "_origin": "ast", "id": "remix_tests_editor_rich_text_buildercheck", - "community": 349, + "community": 506, "norm_label": "buildercheck()" }, { @@ -380135,7 +380975,7 @@ "source_location": "L63", "_origin": "ast", "id": "remix_tests_editor_rich_text_tightbuildercheck", - "community": 349, + "community": 506, "norm_label": "tightbuildercheck()" }, { @@ -380145,7 +380985,7 @@ "source_location": "L111", "_origin": "ast", "id": "remix_tests_editor_rich_text_sharedfieldscheck", - "community": 349, + "community": 506, "norm_label": "sharedfieldscheck()" }, { @@ -380155,7 +380995,7 @@ "source_location": "L132", "_origin": "ast", "id": "remix_tests_editor_rich_text_app", - "community": 349, + "community": 506, "norm_label": "app()" }, { @@ -380165,7 +381005,7 @@ "source_location": "L207", "_origin": "ast", "id": "remix_tests_editor_rich_text_root", - "community": 349, + "community": 506, "norm_label": "root" }, { @@ -391158,6 +391998,106 @@ "community": 839, "norm_label": "live proof gate" }, + { + "label": "607-codex-rich-link-previews--rich-route-aware-thingtime-link-previews.md", + "file_type": "document", + "source_file": "PRs/607-codex-rich-link-previews--rich-route-aware-thingtime-link-previews.md", + "source_location": "L1", + "_origin": "ast", + "id": "prs_607_codex_rich_link_previews_rich_route_aware_thingtime_link_previews", + "community": 660, + "norm_label": "607-codex-rich-link-previews--rich-route-aware-thingtime-link-previews.md" + }, + { + "label": "PR #607 \u2014 Rich route-aware Thingtime link previews", + "file_type": "document", + "source_file": "PRs/607-codex-rich-link-previews--rich-route-aware-thingtime-link-previews.md", + "source_location": "L1", + "_origin": "ast", + "id": "prs_607_codex_rich_link_previews_rich_route_aware_thingtime_link_previews_pr_607_rich_route_aware_thingtime_link_previews", + "community": 660, + "norm_label": "pr #607 \u2014 rich route-aware thingtime link previews" + }, + { + "label": "Outcome", + "file_type": "document", + "source_file": "PRs/607-codex-rich-link-previews--rich-route-aware-thingtime-link-previews.md", + "source_location": "L3", + "_origin": "ast", + "id": "prs_607_codex_rich_link_previews_rich_route_aware_thingtime_link_previews_outcome", + "community": 660, + "norm_label": "outcome" + }, + { + "label": "Surfaces", + "file_type": "document", + "source_file": "PRs/607-codex-rich-link-previews--rich-route-aware-thingtime-link-previews.md", + "source_location": "L18", + "_origin": "ast", + "id": "prs_607_codex_rich_link_previews_rich_route_aware_thingtime_link_previews_surfaces", + "community": 660, + "norm_label": "surfaces" + }, + { + "label": "Safety boundaries", + "file_type": "document", + "source_file": "PRs/607-codex-rich-link-previews--rich-route-aware-thingtime-link-previews.md", + "source_location": "L31", + "_origin": "ast", + "id": "prs_607_codex_rich_link_previews_rich_route_aware_thingtime_link_previews_safety_boundaries", + "community": 660, + "norm_label": "safety boundaries" + }, + { + "label": "Fonts", + "file_type": "document", + "source_file": "PRs/607-codex-rich-link-previews--rich-route-aware-thingtime-link-previews.md", + "source_location": "L57", + "_origin": "ast", + "id": "prs_607_codex_rich_link_previews_rich_route_aware_thingtime_link_previews_fonts", + "community": 660, + "norm_label": "fonts" + }, + { + "label": "Layout is measured, not counted", + "file_type": "document", + "source_file": "PRs/607-codex-rich-link-previews--rich-route-aware-thingtime-link-previews.md", + "source_location": "L77", + "_origin": "ast", + "id": "prs_607_codex_rich_link_previews_rich_route_aware_thingtime_link_previews_layout_is_measured_not_counted", + "community": 660, + "norm_label": "layout is measured, not counted" + }, + { + "label": "Vercel routing", + "file_type": "document", + "source_file": "PRs/607-codex-rich-link-previews--rich-route-aware-thingtime-link-previews.md", + "source_location": "L87", + "_origin": "ast", + "id": "prs_607_codex_rich_link_previews_rich_route_aware_thingtime_link_previews_vercel_routing", + "community": 660, + "norm_label": "vercel routing" + }, + { + "label": "Validation", + "file_type": "document", + "source_file": "PRs/607-codex-rich-link-previews--rich-route-aware-thingtime-link-previews.md", + "source_location": "L96", + "_origin": "ast", + "id": "prs_607_codex_rich_link_previews_rich_route_aware_thingtime_link_previews_validation", + "community": 660, + "norm_label": "validation" + }, + { + "label": "Follow-ups (not blocking)", + "file_type": "document", + "source_file": "PRs/607-codex-rich-link-previews--rich-route-aware-thingtime-link-previews.md", + "source_location": "L106", + "_origin": "ast", + "id": "prs_607_codex_rich_link_previews_rich_route_aware_thingtime_link_previews_follow_ups_not_blocking", + "community": 660, + "norm_label": "follow-ups (not blocking)" + }, { "label": "611-claude-lopu-toast-position-notifications-history--lopu-toast-position-notifications-history.md", "file_type": "document", @@ -392335,7 +393275,7 @@ "source_location": "L1", "_origin": "ast", "id": "prs_68_codex_thingtime_mcp_desktop_connectors_add_consent_first_thingtime_mcp_desktop_chat_bridge", - "community": 648, + "community": 579, "norm_label": "68-codex-thingtime-mcp-desktop-connectors--add-consent-first-thingtime-mcp-desktop-chat-bridge.md" }, { @@ -394819,20 +395759,20 @@ "norm_label": "public upload approval (new-signup permissions)" }, { - "label": "Social meta / link unfurls (`remix/app/api/utils/meta/socialMeta.ts`)", + "label": "Social meta / link unfurls (`remix/app/api/utils/meta/socialMeta.ts`, `socialPreview.ts`, `socialCard.ts`)", "file_type": "document", "source_file": "TESTING.md", "source_location": "L428", "_origin": "ast", - "id": "testing_social_meta_link_unfurls_remix_app_api_utils_meta_socialmeta_ts", + "id": "testing_social_meta_link_unfurls_remix_app_api_utils_meta_socialmeta_ts_socialpreview_ts_socialcard_ts", "community": 276, - "norm_label": "social meta / link unfurls (`remix/app/api/utils/meta/socialmeta.ts`)" + "norm_label": "social meta / link unfurls (`remix/app/api/utils/meta/socialmeta.ts`, `socialpreview.ts`, `socialcard.ts`)" }, { "label": "Emailed-link origin trust (`remix/app/api/utils/auth/appOrigin.ts`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L465", + "source_location": "L492", "_origin": "ast", "id": "testing_emailed_link_origin_trust_remix_app_api_utils_auth_apporigin_ts", "community": 276, @@ -394842,7 +395782,7 @@ "label": "Canonical AI instruction links (`AI_ALL.md`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L487", + "source_location": "L514", "_origin": "ast", "id": "testing_canonical_ai_instruction_links_ai_all_md", "community": 276, @@ -394852,7 +395792,7 @@ "label": "Repository-root Vercel builds", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L496", + "source_location": "L523", "_origin": "ast", "id": "testing_repository_root_vercel_builds", "community": 276, @@ -394862,7 +395802,7 @@ "label": "Lopu CodeQL all-branch listener", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L535", + "source_location": "L562", "_origin": "ast", "id": "testing_lopu_codeql_all_branch_listener", "community": 276, @@ -394872,7 +395812,7 @@ "label": "Lopu wildcard `all`-branch maintenance", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L545", + "source_location": "L572", "_origin": "ast", "id": "testing_lopu_wildcard_all_branch_maintenance", "community": 276, @@ -394882,7 +395822,7 @@ "label": "Develop-target Vercel PR previews", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L556", + "source_location": "L583", "_origin": "ast", "id": "testing_develop_target_vercel_pr_previews", "community": 276, @@ -394892,7 +395832,7 @@ "label": "iOS web destination drawer", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L693", + "source_location": "L720", "_origin": "ast", "id": "testing_ios_web_destination_drawer", "community": 276, @@ -394902,7 +395842,7 @@ "label": "Apple Watch notifications", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L732", + "source_location": "L759", "_origin": "ast", "id": "testing_apple_watch_notifications", "community": 276, @@ -394912,7 +395852,7 @@ "label": "Worktree dependency bootstrap (`remix/scripts/ensure-dependencies.js`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L914", + "source_location": "L941", "_origin": "ast", "id": "testing_worktree_dependency_bootstrap_remix_scripts_ensure_dependencies_js", "community": 276, @@ -394922,7 +395862,7 @@ "label": "Branding page (`remix/app/routes/branding/_index.tsx`, `remix/app/components/Branding/`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L931", + "source_location": "L958", "_origin": "ast", "id": "testing_branding_page_remix_app_routes_branding_index_tsx_remix_app_components_branding", "community": 276, @@ -394932,7 +395872,7 @@ "label": "Composer \u2014 Thingtime tab (`remix/app/components/Feed/PostComposer.tsx`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L962", + "source_location": "L989", "_origin": "ast", "id": "testing_composer_thingtime_tab_remix_app_components_feed_postcomposer_tsx", "community": 276, @@ -394942,7 +395882,7 @@ "label": "Post and comment attachments (`remix/app/components/Attachments/`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L996", + "source_location": "L1023", "_origin": "ast", "id": "testing_post_and_comment_attachments_remix_app_components_attachments", "community": 276, @@ -394952,7 +395892,7 @@ "label": "Media thing pages \u2014 masonry, lightbox, `/media/:id`, annotate (`remix/app/components/Attachments/`, `remix/app/routes/media.tsx`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L1278", + "source_location": "L1305", "_origin": "ast", "id": "testing_media_thing_pages_masonry_lightbox_media_id_annotate_remix_app_components_attachments_remix_app_routes_media_tsx", "community": 276, @@ -394962,7 +395902,7 @@ "label": "Profile avatar and banner media (`remix/app/components/Profile/`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L1357", + "source_location": "L1384", "_origin": "ast", "id": "testing_profile_avatar_and_banner_media_remix_app_components_profile", "community": 276, @@ -394972,7 +395912,7 @@ "label": "Editor windows & layer system (`remix/app/components/Thingtime/EditorSplit.tsx`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L1389", + "source_location": "L1416", "_origin": "ast", "id": "testing_editor_windows_layer_system_remix_app_components_thingtime_editorsplit_tsx", "community": 276, @@ -394982,7 +395922,7 @@ "label": "Editor.js rich text styles", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L1416", + "source_location": "L1443", "_origin": "ast", "id": "testing_editor_js_rich_text_styles", "community": 276, @@ -394992,7 +395932,7 @@ "label": "Multi-editor focus (`remix/app/components/Editor/LongTextEditor.tsx`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L1472", + "source_location": "L1499", "_origin": "ast", "id": "testing_multi_editor_focus_remix_app_components_editor_longtexteditor_tsx", "community": 276, @@ -395002,7 +395942,7 @@ "label": "Feed thing rendering (`remix/app/components/Thingtime/ThingView.tsx`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L1482", + "source_location": "L1509", "_origin": "ast", "id": "testing_feed_thing_rendering_remix_app_components_thingtime_thingview_tsx", "community": 276, @@ -395012,7 +395952,7 @@ "label": "Post interactions & inherit chains (`remix/app/api/utils/things/things.ts`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L1540", + "source_location": "L1567", "_origin": "ast", "id": "testing_post_interactions_inherit_chains_remix_app_api_utils_things_things_ts", "community": 276, @@ -395022,7 +395962,7 @@ "label": "Poll voting (`remix/app/api/utils/things/vote.ts`, `PollRenderer`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L1558", + "source_location": "L1585", "_origin": "ast", "id": "testing_poll_voting_remix_app_api_utils_things_vote_ts_pollrenderer", "community": 276, @@ -395032,7 +395972,7 @@ "label": "Subspaces (`remix/app/components/Subspaces/`, `remix/app/api/utils/subspaces/`, `/api/v1/subspaces*`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L1595", + "source_location": "L1622", "_origin": "ast", "id": "testing_subspaces_remix_app_components_subspaces_remix_app_api_utils_subspaces_api_v1_subspaces", "community": 276, @@ -395042,7 +395982,7 @@ "label": "Up/down votes (`remix/app/api/utils/things/updown.ts`, `remix/app/components/Feed/UpdownControl.tsx`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L1990", + "source_location": "L2017", "_origin": "ast", "id": "testing_up_down_votes_remix_app_api_utils_things_updown_ts_remix_app_components_feed_updowncontrol_tsx", "community": 276, @@ -395052,7 +395992,7 @@ "label": "Thing context menu (`remix/app/components/Thingtime/ContextMenu/`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L2019", + "source_location": "L2046", "_origin": "ast", "id": "testing_thing_context_menu_remix_app_components_thingtime_contextmenu", "community": 276, @@ -395062,7 +396002,7 @@ "label": "/things Duplicate (`remix/app/components/Things/ThingsPage.tsx`, `thingsMenuModel.ts`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L2032", + "source_location": "L2059", "_origin": "ast", "id": "testing_things_duplicate_remix_app_components_things_thingspage_tsx_thingsmenumodel_ts", "community": 276, @@ -395072,7 +396012,7 @@ "label": "Post engagement row & comment threads (`remix/app/components/Feed/PostCard.tsx`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L2058", + "source_location": "L2085", "_origin": "ast", "id": "testing_post_engagement_row_comment_threads_remix_app_components_feed_postcard_tsx", "community": 276, @@ -395082,7 +396022,7 @@ "label": "Lopu toast placement (`remix/app/components/Lopu/lopuPosition.ts`, `useLopuPosition.tsx`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L2155", + "source_location": "L2182", "_origin": "ast", "id": "testing_lopu_toast_placement_remix_app_components_lopu_lopuposition_ts_uselopuposition_tsx", "community": 276, @@ -395092,7 +396032,7 @@ "label": "Drawer navigation & settings (`remix/app/components/Nav/Drawer/`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L2174", + "source_location": "L2201", "_origin": "ast", "id": "testing_drawer_navigation_settings_remix_app_components_nav_drawer", "community": 276, @@ -395102,7 +396042,7 @@ "label": "Shared page shell & footer (`remix/app/components/Layout/Main.tsx`, `remix/app/components/Nav/Footer.tsx`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L2194", + "source_location": "L2221", "_origin": "ast", "id": "testing_shared_page_shell_footer_remix_app_components_layout_main_tsx_remix_app_components_nav_footer_tsx", "community": 276, @@ -395112,7 +396052,7 @@ "label": "Profile page (`remix/app/components/Profile/ProfilePage.tsx`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L2201", + "source_location": "L2228", "_origin": "ast", "id": "testing_profile_page_remix_app_components_profile_profilepage_tsx", "community": 276, @@ -395122,7 +396062,7 @@ "label": "Required Web CI contexts (`.github/workflows/web-ci.yml`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L2219", + "source_location": "L2246", "_origin": "ast", "id": "testing_required_web_ci_contexts_github_workflows_web_ci_yml", "community": 276, @@ -395132,7 +396072,7 @@ "label": "Content-addressed Graphify snapshots (`scripts/graphify`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L2238", + "source_location": "L2265", "_origin": "ast", "id": "testing_content_addressed_graphify_snapshots_scripts_graphify", "community": 276, @@ -395142,7 +396082,7 @@ "label": "AI merge-conflict resolver (`.github/workflows/resolve-pr-conflicts.yml`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L2290", + "source_location": "L2317", "_origin": "ast", "id": "testing_ai_merge_conflict_resolver_github_workflows_resolve_pr_conflicts_yml", "community": 276, @@ -395152,7 +396092,7 @@ "label": "Per-feature develop \u2192 main promoter (protected `.github/scripts/promote-features-to-main.mjs`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L2384", + "source_location": "L2411", "_origin": "ast", "id": "testing_per_feature_develop_main_promoter_protected_github_scripts_promote_features_to_main_mjs", "community": 276, @@ -395162,7 +396102,7 @@ "label": "PR conflict resolver model waterfall (`remix/app/components/Admin/`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L2514", + "source_location": "L2541", "_origin": "ast", "id": "testing_pr_conflict_resolver_model_waterfall_remix_app_components_admin", "community": 276, @@ -395172,7 +396112,7 @@ "label": "Lopu internal PR/stack rebase engine (protected `github-actions` implementation)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L2596", + "source_location": "L2623", "_origin": "ast", "id": "testing_lopu_internal_pr_stack_rebase_engine_protected_github_actions_implementation", "community": 276, @@ -395182,7 +396122,7 @@ "label": "Data crystals & nesting depth (`remix/app/schemas/registry.ts`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L2683", + "source_location": "L2710", "_origin": "ast", "id": "testing_data_crystals_nesting_depth_remix_app_schemas_registry_ts", "community": 276, @@ -395192,7 +396132,7 @@ "label": "Feed & profile advanced filters (`remix/app/components/Feed/AdvancedFilters.tsx`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L2737", + "source_location": "L2764", "_origin": "ast", "id": "testing_feed_profile_advanced_filters_remix_app_components_feed_advancedfilters_tsx", "community": 276, @@ -395202,7 +396142,7 @@ "label": "Commander palette (`remix/app/components/Commander/CommanderV2.tsx`, `commanderCommands.ts`, `commanderShortcut.ts`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L2759", + "source_location": "L2786", "_origin": "ast", "id": "testing_commander_palette_remix_app_components_commander_commanderv2_tsx_commandercommands_ts_commandershortcut_ts", "community": 276, @@ -395212,7 +396152,7 @@ "label": "Search page (`remix/app/components/Search/SearchPage.tsx`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L2801", + "source_location": "L2828", "_origin": "ast", "id": "testing_search_page_remix_app_components_search_searchpage_tsx", "community": 276, @@ -395222,7 +396162,7 @@ "label": "Hashtags & tag chips (`remix/app/components/Feed/hashtags.ts`, `PostCard.tsx`, `PostComposer.tsx`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L2873", + "source_location": "L2900", "_origin": "ast", "id": "testing_hashtags_tag_chips_remix_app_components_feed_hashtags_ts_postcard_tsx_postcomposer_tsx", "community": 276, @@ -395232,7 +396172,7 @@ "label": "@Mentions (`remix/app/utils/mentions.ts`, `MentionAutocomplete.tsx`, `api/utils/notifications/mentions.ts`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L2891", + "source_location": "L2918", "_origin": "ast", "id": "testing_mentions_remix_app_utils_mentions_ts_mentionautocomplete_tsx_api_utils_notifications_mentions_ts", "community": 276, @@ -395242,7 +396182,7 @@ "label": "Admin migrations & collection generations (`remix/app/components/Schemas/MigrationsPanel.tsx`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L2925", + "source_location": "L2952", "_origin": "ast", "id": "testing_admin_migrations_collection_generations_remix_app_components_schemas_migrationspanel_tsx", "community": 276, @@ -395252,7 +396192,7 @@ "label": "Docs code windows & embed SDK preview (`remix/app/routes/docs/docsCode.tsx`, `remix/app/routes/docs/embed.tsx`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L3029", + "source_location": "L3056", "_origin": "ast", "id": "testing_docs_code_windows_embed_sdk_preview_remix_app_routes_docs_docscode_tsx_remix_app_routes_docs_embed_tsx", "community": 276, @@ -395262,7 +396202,7 @@ "label": "Single-file embed bundle (`remix/vite.embed.config.ts`, `remix/scripts/verify-embed-bundle.mjs`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L3041", + "source_location": "L3068", "_origin": "ast", "id": "testing_single_file_embed_bundle_remix_vite_embed_config_ts_remix_scripts_verify_embed_bundle_mjs", "community": 276, @@ -395272,7 +396212,7 @@ "label": "Register request body cap (`remix/app/routes/api/v1/auth/register/_register.tsx`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L3068", + "source_location": "L3095", "_origin": "ast", "id": "testing_register_request_body_cap_remix_app_routes_api_v1_auth_register_register_tsx", "community": 276, @@ -395282,7 +396222,7 @@ "label": "Persisted-state codec (`remix/app/Providers/thingtimeSerialization.ts`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L3075", + "source_location": "L3102", "_origin": "ast", "id": "testing_persisted_state_codec_remix_app_providers_thingtimeserialization_ts", "community": 276, @@ -395292,7 +396232,7 @@ "label": "Installed-app Login with Thingtime (loopback + PKCE)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L3101", + "source_location": "L3128", "_origin": "ast", "id": "testing_installed_app_login_with_thingtime_loopback_pkce", "community": 276, @@ -395302,7 +396242,7 @@ "label": "Commander desktop launcher", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L3126", + "source_location": "L3153", "_origin": "ast", "id": "testing_commander_desktop_launcher", "community": 276, @@ -395312,7 +396252,7 @@ "label": "Cross-tab Thingtime sync (`remix/app/Providers/thingtimeSyncChannel.ts`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L3249", + "source_location": "L3276", "_origin": "ast", "id": "testing_cross_tab_thingtime_sync_remix_app_providers_thingtimesyncchannel_ts", "community": 276, @@ -395322,7 +396262,7 @@ "label": "MongoDB data endpoint (`/mongodb-status`, `remix/app/components/MongoDB/MongoEndpointConfig.tsx`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L3301", + "source_location": "L3328", "_origin": "ast", "id": "testing_mongodb_data_endpoint_mongodb_status_remix_app_components_mongodb_mongoendpointconfig_tsx", "community": 276, @@ -395332,7 +396272,7 @@ "label": "Docs search (`remix/app/routes/docs/DocsSearch.tsx`, `docsSearchIndex.ts`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L3349", + "source_location": "L3376", "_origin": "ast", "id": "testing_docs_search_remix_app_routes_docs_docssearch_tsx_docssearchindex_ts", "community": 276, @@ -395342,7 +396282,7 @@ "label": "API docs Try-it runner (`remix/app/routes/docs/ApiTryIt.tsx`, `api.tsx`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L3387", + "source_location": "L3414", "_origin": "ast", "id": "testing_api_docs_try_it_runner_remix_app_routes_docs_apitryit_tsx_api_tsx", "community": 276, @@ -395352,7 +396292,7 @@ "label": "Shared app-data (`/api/v1/app-data/shared`, `api/utils/apps/appData.ts`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L3416", + "source_location": "L3443", "_origin": "ast", "id": "testing_shared_app_data_api_v1_app_data_shared_api_utils_apps_appdata_ts", "community": 276, @@ -395362,7 +396302,7 @@ "label": "Account birthday & profile.birthday scope (`api/utils/auth/birthday.ts`, `/api/v1/oauth/userinfo`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L3512", + "source_location": "L3539", "_origin": "ast", "id": "testing_account_birthday_profile_birthday_scope_api_utils_auth_birthday_ts_api_v1_oauth_userinfo", "community": 276, @@ -395372,7 +396312,7 @@ "label": "Sandbox tokens (`/api/v1/oauth/sandbox`, `api/utils/apps/sandbox.ts`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L3531", + "source_location": "L3558", "_origin": "ast", "id": "testing_sandbox_tokens_api_v1_oauth_sandbox_api_utils_apps_sandbox_ts", "community": 276, @@ -395382,7 +396322,7 @@ "label": "Token minter \u2014 personal access tokens (`remix/app/components/Settings/TokenMinter.tsx`, `api/utils/auth/patTokens.ts`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L3579", + "source_location": "L3606", "_origin": "ast", "id": "testing_token_minter_personal_access_tokens_remix_app_components_settings_tokenminter_tsx_api_utils_auth_pattokens_ts", "community": 276, @@ -395392,7 +396332,7 @@ "label": "Admin dashboard, subscription tiers & ownership links (`/admin`, `api/utils/subscriptions/`, `api/utils/accounts/accountLinks.ts`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L3755", + "source_location": "L3782", "_origin": "ast", "id": "testing_admin_dashboard_subscription_tiers_ownership_links_admin_api_utils_subscriptions_api_utils_accounts_accountlinks_ts", "community": 276, @@ -395402,7 +396342,7 @@ "label": "CI control-plane storage (`ciControl` satellite, retention, relocation, index rebuild)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L3858", + "source_location": "L3885", "_origin": "ast", "id": "testing_ci_control_plane_storage_cicontrol_satellite_retention_relocation_index_rebuild", "community": 276, @@ -395412,7 +396352,7 @@ "label": "Admin CI control plane (`/admin` \u2192 CI Control, `api/utils/ciControl/`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L3919", + "source_location": "L3946", "_origin": "ast", "id": "testing_admin_ci_control_plane_admin_ci_control_api_utils_cicontrol", "community": 276, @@ -395422,7 +396362,7 @@ "label": "App-owner storage manager (`/apps/manage`, `api/utils/apps/appStorageManagement.ts`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L4171", + "source_location": "L4198", "_origin": "ast", "id": "testing_app_owner_storage_manager_apps_manage_api_utils_apps_appstoragemanagement_ts", "community": 276, @@ -395432,7 +396372,7 @@ "label": "Rate limiting & index-ensure reliability (`api/utils/rateLimit/enforce.ts`, `api/utils/mongodb/collections.ts`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L4203", + "source_location": "L4230", "_origin": "ast", "id": "testing_rate_limiting_index_ensure_reliability_api_utils_ratelimit_enforce_ts_api_utils_mongodb_collections_ts", "community": 276, @@ -395442,7 +396382,7 @@ "label": "Password hasher (`/crypto` Password Hasher panel, `api/utils/crypto/passwordHasher.server.ts`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L4240", + "source_location": "L4267", "_origin": "ast", "id": "testing_password_hasher_crypto_password_hasher_panel_api_utils_crypto_passwordhasher_server_ts", "community": 276, @@ -395452,7 +396392,7 @@ "label": "Social graph \u2014 follows + friends (`api/utils/users/social.ts`, `/api/v1/users/{follow,friend,relationships,connections}`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L4272", + "source_location": "L4299", "_origin": "ast", "id": "testing_social_graph_follows_friends_api_utils_users_social_ts_api_v1_users_follow_friend_relationships_connections", "community": 276, @@ -395462,7 +396402,7 @@ "label": "Notifications (`api/utils/notifications/notifications.ts`, `/api/v1/notifications*`, nav bell)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L4297", + "source_location": "L4324", "_origin": "ast", "id": "testing_notifications_api_utils_notifications_notifications_ts_api_v1_notifications_nav_bell", "community": 276, @@ -395472,7 +396412,7 @@ "label": "Notification history (`/notifications`, `remix/app/components/Notifications/`, `api/utils/notifications/listQuery.ts`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L4356", + "source_location": "L4383", "_origin": "ast", "id": "testing_notification_history_notifications_remix_app_components_notifications_api_utils_notifications_listquery_ts", "community": 276, @@ -395482,7 +396422,7 @@ "label": "Post views (`api/utils/things/views.ts`, `/api/v1/things/views`, `useViewTracking`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L4410", + "source_location": "L4437", "_origin": "ast", "id": "testing_post_views_api_utils_things_views_ts_api_v1_things_views_useviewtracking", "community": 276, @@ -395492,7 +396432,7 @@ "label": "Thingtime desktop mesh packaging (`electron/`, `MCP/`, `macos/ThingtimeNode/`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L4435", + "source_location": "L4462", "_origin": "ast", "id": "testing_thingtime_desktop_mesh_packaging_electron_mcp_macos_thingtimenode", "community": 276, @@ -395502,7 +396442,7 @@ "label": "Messenger (chats, communities, custom emojis) (`remix/app/components/Messenger/`, `/api/v1/chats*`, `api/utils/messenger/`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L4731", + "source_location": "L4758", "_origin": "ast", "id": "testing_messenger_chats_communities_custom_emojis_remix_app_components_messenger_api_v1_chats_api_utils_messenger", "community": 276, @@ -395512,7 +396452,7 @@ "label": "Linked deployments (Settings \u2192 Linked deployments, `api/utils/deployments/*`, `/api/v1/deployment-links*`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L4869", + "source_location": "L4896", "_origin": "ast", "id": "testing_linked_deployments_settings_linked_deployments_api_utils_deployments_api_v1_deployment_links", "community": 276, @@ -395522,7 +396462,7 @@ "label": "Things page (`/things`, `remix/app/components/Things/`, `/api/v1/things/bulk`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L4939", + "source_location": "L4966", "_origin": "ast", "id": "testing_things_page_things_remix_app_components_things_api_v1_things_bulk", "community": 276, @@ -395532,7 +396472,7 @@ "label": "Explore / trending (`remix/app/components/Explore/ExplorePage.tsx`, `remix/app/api/utils/things/trending.ts`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L5133", + "source_location": "L5160", "_origin": "ast", "id": "testing_explore_trending_remix_app_components_explore_explorepage_tsx_remix_app_api_utils_things_trending_ts", "community": 276, @@ -395542,7 +396482,7 @@ "label": "Saved library (`remix/app/components/Saved/SavedPage.tsx`, `remix/app/api/utils/things/saved.ts`, `GET /api/v1/things/saved`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L5153", + "source_location": "L5180", "_origin": "ast", "id": "testing_saved_library_remix_app_components_saved_savedpage_tsx_remix_app_api_utils_things_saved_ts_get_api_v1_things_saved", "community": 276, @@ -395552,7 +396492,7 @@ "label": "Public posts Atom feed (`remix/app/api/utils/things/rss.ts`, `GET /api/v1/things/rss`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L5180", + "source_location": "L5207", "_origin": "ast", "id": "testing_public_posts_atom_feed_remix_app_api_utils_things_rss_ts_get_api_v1_things_rss", "community": 276, @@ -395562,7 +396502,7 @@ "label": "Feed keyboard shortcuts (`remix/app/hooks/useFeedShortcuts.ts`, `/feed` + `/explore`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L5192", + "source_location": "L5219", "_origin": "ast", "id": "testing_feed_keyboard_shortcuts_remix_app_hooks_usefeedshortcuts_ts_feed_explore", "community": 276, @@ -395572,7 +396512,7 @@ "label": "Feed \"On this day\" memories (`remix/app/components/Feed/MemoriesCard.tsx`, `/feed`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L5209", + "source_location": "L5236", "_origin": "ast", "id": "testing_feed_on_this_day_memories_remix_app_components_feed_memoriescard_tsx_feed", "community": 276, @@ -395582,7 +396522,7 @@ "label": "Quick switcher (`remix/app/components/QuickSwitcher/`, global \u2318K)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L5236", + "source_location": "L5263", "_origin": "ast", "id": "testing_quick_switcher_remix_app_components_quickswitcher_global_k", "community": 276, @@ -395592,7 +396532,7 @@ "label": "Components (/components, `remix/app/components/ComponentsLibrary/`, `/api/v1/components/browse`, `/api/v1/admin/components/seed`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L5253", + "source_location": "L5280", "_origin": "ast", "id": "testing_components_components_remix_app_components_componentslibrary_api_v1_components_browse_api_v1_admin_components_seed", "community": 276, @@ -395602,7 +396542,7 @@ "label": "Actions (/actions, `remix/app/api/utils/actions/`, `/api/v1/actions/run`, `/api/v1/actions/runs`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L5301", + "source_location": "L5328", "_origin": "ast", "id": "testing_actions_actions_remix_app_api_utils_actions_api_v1_actions_run_api_v1_actions_runs", "community": 276, @@ -395612,7 +396552,7 @@ "label": "Design system + builder (`/builder`, `/p/:id`, `/docs/design-system`, `remix/app/components/Builder/`, `/api/v1/webpages/resolve`, `/api/v1/admin/webpages/seed`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L5378", + "source_location": "L5405", "_origin": "ast", "id": "testing_design_system_builder_builder_p_id_docs_design_system_remix_app_components_builder_api_v1_webpages_resolve_api_v1_admin_webpages_seed", "community": 1758, @@ -395622,7 +396562,7 @@ "label": "Recovery cards, build IDs and app selection", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L5563", + "source_location": "L5590", "_origin": "ast", "id": "testing_recovery_cards_build_ids_and_app_selection", "community": 1758, @@ -395632,7 +396572,7 @@ "label": "Persistent media and progressive image regression", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L5596", + "source_location": "L5623", "_origin": "ast", "id": "testing_persistent_media_and_progressive_image_regression", "community": 276, @@ -395642,7 +396582,7 @@ "label": "Commander emoji paste recovery", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L5612", + "source_location": "L5639", "_origin": "ast", "id": "testing_commander_emoji_paste_recovery", "community": 276, @@ -395652,7 +396592,7 @@ "label": "App suites \u2014 Pokeworld + StarsAlign (`remix/app/schemas/appSuites/`, `/p/pokeworld`, `/p/starsalign`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L5616", + "source_location": "L5643", "_origin": "ast", "id": "testing_app_suites_pokeworld_starsalign_remix_app_schemas_appsuites_p_pokeworld_p_starsalign", "community": 276, @@ -395662,7 +396602,7 @@ "label": "Dedicated live pages \u2014 every card opens one (`/components/:key`, `/builder/demos/:slug`, `/schemas/:key`, `/thing/:id`, `/actions/:id`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L5653", + "source_location": "L5680", "_origin": "ast", "id": "testing_dedicated_live_pages_every_card_opens_one_components_key_builder_demos_slug_schemas_key_thing_id_actions_id", "community": 276, @@ -395672,7 +396612,7 @@ "label": "Lopu AI assistant (`/lopu`, floating launcher, `remix/app/components/Lopu/`, `/api/v1/lopu/chats*`, `/api/v1/ai/models`)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L5773", + "source_location": "L5800", "_origin": "ast", "id": "testing_lopu_ai_assistant_lopu_floating_launcher_remix_app_components_lopu_api_v1_lopu_chats_api_v1_ai_models", "community": 1236, @@ -395682,7 +396622,7 @@ "label": "PR #592 integration regression", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L5953", + "source_location": "L5980", "_origin": "ast", "id": "testing_pr_592_integration_regression", "community": 1236, @@ -395692,7 +396632,7 @@ "label": "Shared rich-text surfaces (PR #635)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L5956", + "source_location": "L5983", "_origin": "ast", "id": "testing_shared_rich_text_surfaces_pr_635", "community": 1236, @@ -395702,7 +396642,7 @@ "label": "Lopu verified access + credits (client \u2014 `PRs/lopu-verified-credits-design.md` \u00a74)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L5963", + "source_location": "L5990", "_origin": "ast", "id": "testing_lopu_verified_access_credits_client_prs_lopu_verified_credits_design_md_4", "community": 1236, @@ -395712,7 +396652,7 @@ "label": "Money invariants (server \u2014 regressions, fixer round 1)", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L6021", + "source_location": "L6048", "_origin": "ast", "id": "testing_money_invariants_server_regressions_fixer_round_1", "community": 1236, @@ -395722,7 +396662,7 @@ "label": "Storage ledger operator diagnostics", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L6051", + "source_location": "L6078", "_origin": "ast", "id": "testing_storage_ledger_operator_diagnostics", "community": 1756, @@ -395732,7 +396672,7 @@ "label": "Index consolidation regression checks", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L6058", + "source_location": "L6085", "_origin": "ast", "id": "testing_index_consolidation_regression_checks", "community": 1756, @@ -395742,7 +396682,7 @@ "label": "Desktop permission recovery", "file_type": "document", "source_file": "TESTING.md", - "source_location": "L6074", + "source_location": "L6101", "_origin": "ast", "id": "testing_desktop_permission_recovery", "community": 1756, @@ -398365,7 +399305,7 @@ "source_location": "L1", "_origin": "ast", "id": "configurations_aws_readme", - "community": 622, + "community": 575, "norm_label": "readme.md" }, { @@ -398375,7 +399315,7 @@ "source_location": "L1", "_origin": "ast", "id": "configurations_aws_readme_aws", - "community": 622, + "community": 575, "norm_label": "aws" }, { @@ -398385,7 +399325,7 @@ "source_location": "L1", "_origin": "ast", "id": "configurations_aws_s3_readme", - "community": 622, + "community": 575, "norm_label": "readme.md" }, { @@ -398395,7 +399335,7 @@ "source_location": "L1", "_origin": "ast", "id": "configurations_aws_s3_readme_s3_restoration", - "community": 622, + "community": 575, "norm_label": "s3 restoration" }, { @@ -398405,7 +399345,7 @@ "source_location": "L14", "_origin": "ast", "id": "configurations_aws_s3_readme_restore_an_existing_or_replacement_bucket", - "community": 622, + "community": 575, "norm_label": "restore an existing or replacement bucket" }, { @@ -398415,7 +399355,7 @@ "source_location": "L54", "_origin": "ast", "id": "configurations_aws_s3_readme_media_caching_and_resizing", - "community": 622, + "community": 575, "norm_label": "media caching and resizing" }, { @@ -398425,7 +399365,7 @@ "source_location": "L1", "_origin": "ast", "id": "configurations_aws_ses_readme", - "community": 622, + "community": 575, "norm_label": "readme.md" }, { @@ -398435,7 +399375,7 @@ "source_location": "L1", "_origin": "ast", "id": "configurations_aws_ses_readme_ses_restoration", - "community": 622, + "community": 575, "norm_label": "ses restoration" }, { @@ -398445,7 +399385,7 @@ "source_location": "L47", "_origin": "ast", "id": "configurations_aws_ses_readme_configuration_sets", - "community": 622, + "community": 575, "norm_label": "configuration sets" }, { @@ -398455,7 +399395,7 @@ "source_location": "L1", "_origin": "ast", "id": "configurations_readme", - "community": 622, + "community": 575, "norm_label": "readme.md" }, { @@ -398465,7 +399405,7 @@ "source_location": "L1", "_origin": "ast", "id": "configurations_readme_service_configurations", - "community": 622, + "community": 575, "norm_label": "service configurations" }, { @@ -399825,7 +400765,7 @@ "source_location": "L1", "_origin": "ast", "id": "electron_production_release", - "community": 648, + "community": 579, "norm_label": "production_release.md" }, { @@ -399835,7 +400775,7 @@ "source_location": "L1", "_origin": "ast", "id": "electron_production_release_electron_production_release_control_plane", - "community": 648, + "community": 579, "norm_label": "electron production release control plane" }, { @@ -399845,7 +400785,7 @@ "source_location": "L15", "_origin": "ast", "id": "electron_production_release_approved_pr_prereleases", - "community": 648, + "community": 579, "norm_label": "approved pr prereleases" }, { @@ -399855,7 +400795,7 @@ "source_location": "L39", "_origin": "ast", "id": "electron_production_release_secret_mapping_and_distribution_selection", - "community": 648, + "community": 579, "norm_label": "secret mapping and distribution selection" }, { @@ -399865,7 +400805,7 @@ "source_location": "L71", "_origin": "ast", "id": "electron_production_release_desktop_and_recovery_artifacts", - "community": 648, + "community": 579, "norm_label": "desktop and recovery artifacts" }, { @@ -399875,7 +400815,7 @@ "source_location": "L101", "_origin": "ast", "id": "electron_production_release_local_versus_production_proof", - "community": 648, + "community": 579, "norm_label": "local versus production proof" }, { @@ -399885,7 +400825,7 @@ "source_location": "L1", "_origin": "ast", "id": "electron_readme", - "community": 648, + "community": 579, "norm_label": "readme.md" }, { @@ -399895,7 +400835,7 @@ "source_location": "L1", "_origin": "ast", "id": "electron_readme_thingtime_electron", - "community": 648, + "community": 579, "norm_label": "thingtime electron" }, { @@ -399905,7 +400845,7 @@ "source_location": "L17", "_origin": "ast", "id": "electron_readme_commands", - "community": 648, + "community": 579, "norm_label": "commands" }, { @@ -399915,7 +400855,7 @@ "source_location": "L74", "_origin": "ast", "id": "electron_readme_runtime", - "community": 648, + "community": 579, "norm_label": "runtime" }, { @@ -399925,7 +400865,7 @@ "source_location": "L220", "_origin": "ast", "id": "electron_readme_standalone_thingtime_recovery", - "community": 648, + "community": 579, "norm_label": "standalone thingtime recovery" }, { @@ -399935,7 +400875,7 @@ "source_location": "L251", "_origin": "ast", "id": "electron_readme_github_releases", - "community": 648, + "community": 579, "norm_label": "github releases" }, { @@ -400769,11 +401709,21 @@ "norm_label": "2026-09-05 \u2014 re-land hidden \ud83d\udd75\ufe0f links, the pat get bridge and custom audiences \ud83c\udfad \u2014 claude (ai)" }, { - "label": "2026-09-02 \u2014 Lopu toast position setting + `/notifications` history page \u2014 Claude (AI)", + "label": "2026-09-04 \u2014 Rich public link previews \u2014 Codex (AI)", "file_type": "document", "source_file": "remix/CHANGELOG.md", "source_location": "L293", "_origin": "ast", + "id": "remix_changelog_2026_09_04_rich_public_link_previews_codex_ai", + "community": 1023, + "norm_label": "2026-09-04 \u2014 rich public link previews \u2014 codex (ai)" + }, + { + "label": "2026-09-02 \u2014 Lopu toast position setting + `/notifications` history page \u2014 Claude (AI)", + "file_type": "document", + "source_file": "remix/CHANGELOG.md", + "source_location": "L309", + "_origin": "ast", "id": "remix_changelog_2026_09_02_lopu_toast_position_setting_notifications_history_page_claude_ai", "community": 1023, "norm_label": "2026-09-02 \u2014 lopu toast position setting + `/notifications` history page \u2014 claude (ai)" @@ -400782,7 +401732,7 @@ "label": "2026-09-04 \u2014 Lopu direct voice + reconciled provider models (PR #592) \u2014 Claude (AI)", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L360", + "source_location": "L376", "_origin": "ast", "id": "remix_changelog_2026_09_04_lopu_direct_voice_reconciled_provider_models_pr_592_claude_ai", "community": 1023, @@ -400792,7 +401742,7 @@ "label": "2026-09-04 \u2014 Lopu wave 2 hardening: server-verified confirmations, JSON fences, deterministic provider choice (PR #592) \u2014 Claude (AI)", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L394", + "source_location": "L410", "_origin": "ast", "id": "remix_changelog_2026_09_04_lopu_wave_2_hardening_server_verified_confirmations_json_fences_deterministic_provider_choice_pr_592_claude_ai", "community": 1023, @@ -400802,7 +401752,7 @@ "label": "2026-09-04 \u2014 Lopu wave 2: voice in the chat page, your own providers, design pass, navbar \ud83e\udd84 (PR #592) \u2014 Claude (AI)", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L430", + "source_location": "L446", "_origin": "ast", "id": "remix_changelog_2026_09_04_lopu_wave_2_voice_in_the_chat_page_your_own_providers_design_pass_navbar_pr_592_claude_ai", "community": 1023, @@ -400812,7 +401762,7 @@ "label": "2026-09-03 \u2014 Lopu AI assistant: streamed chat, tools, live builder patches (PR #592) \u2014 Claude (AI)", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L479", + "source_location": "L495", "_origin": "ast", "id": "remix_changelog_2026_09_03_lopu_ai_assistant_streamed_chat_tools_live_builder_patches_pr_592_claude_ai", "community": 1023, @@ -400822,7 +401772,7 @@ "label": "2026-09-03 \u2014 Lopu voice, Live Activities + personal Secure Vault \u2014 Codex (AI)", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L519", + "source_location": "L535", "_origin": "ast", "id": "remix_changelog_2026_09_03_lopu_voice_live_activities_personal_secure_vault_codex_ai", "community": 1023, @@ -400832,7 +401782,7 @@ "label": "2026-09-03 \u2014 Multi-environment PR preview links \u2014 Codex (AI)", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L542", + "source_location": "L558", "_origin": "ast", "id": "remix_changelog_2026_09_03_multi_environment_pr_preview_links_codex_ai", "community": 1023, @@ -400842,7 +401792,7 @@ "label": "2026-09-03 \u2014 Storage migration readiness and API sweep correction \u2014 Codex (AI)", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L557", + "source_location": "L573", "_origin": "ast", "id": "remix_changelog_2026_09_03_storage_migration_readiness_and_api_sweep_correction_codex_ai", "community": 1023, @@ -400852,7 +401802,7 @@ "label": "2026-09-03 \u2014 Host-native Thingtime login bootstrap \u2014 Codex (AI)", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L570", + "source_location": "L586", "_origin": "ast", "id": "remix_changelog_2026_09_03_host_native_thingtime_login_bootstrap_codex_ai", "community": 1023, @@ -400862,7 +401812,7 @@ "label": "2026-09-03 \u2014 Every card opens a dedicated live page \u2014 Claude (AI)", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L578", + "source_location": "L594", "_origin": "ast", "id": "remix_changelog_2026_09_03_every_card_opens_a_dedicated_live_page_claude_ai", "community": 1023, @@ -400872,7 +401822,7 @@ "label": "2026-09-02 \u2014 App suites: Pokeworld + StarsAlign on Thingtime \u2014 Claude (AI)", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L599", + "source_location": "L615", "_origin": "ast", "id": "remix_changelog_2026_09_02_app_suites_pokeworld_starsalign_on_thingtime_claude_ai", "community": 1023, @@ -400882,7 +401832,7 @@ "label": "2026-09-02 \u2014 CI telemetry satellite + things index storage reclaim (PR #583) \u2014 Claude (AI)", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L618", + "source_location": "L634", "_origin": "ast", "id": "remix_changelog_2026_09_02_ci_telemetry_satellite_things_index_storage_reclaim_pr_583_claude_ai", "community": 1023, @@ -400892,9 +401842,9 @@ "label": "2026-09-02 \u2014 App suites: Pokeworld + StarsAlign on Thingtime \u2014 Claude (AI)", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L640", + "source_location": "L656", "_origin": "ast", - "id": "remix_changelog_2026_09_02_app_suites_pokeworld_starsalign_on_thingtime_claude_ai_640", + "id": "remix_changelog_2026_09_02_app_suites_pokeworld_starsalign_on_thingtime_claude_ai_656", "community": 1023, "norm_label": "2026-09-02 \u2014 app suites: pokeworld + starsalign on thingtime \u2014 claude (ai)" }, @@ -400902,7 +401852,7 @@ "label": "2026-09-01 \u2014 Builder round 8: saved-media lifecycle + 17-finding review batch \u2014 Claude (AI)", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L659", + "source_location": "L675", "_origin": "ast", "id": "remix_changelog_2026_09_01_builder_round_8_saved_media_lifecycle_17_finding_review_batch_claude_ai", "community": 1023, @@ -400912,7 +401862,7 @@ "label": "2026-09-01 \u2014 Builder round 6: true-WYSIWYG canvas, inline Editor.js, wrap-with-block \u2014 Claude (AI)", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L683", + "source_location": "L699", "_origin": "ast", "id": "remix_changelog_2026_09_01_builder_round_6_true_wysiwyg_canvas_inline_editor_js_wrap_with_block_claude_ai", "community": 1023, @@ -400922,7 +401872,7 @@ "label": "2026-08-31 \u2014 Builder round 5: media drop/paste everywhere, Figma-parity controls, resizable drawer \u2014 Claude (AI)", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L707", + "source_location": "L723", "_origin": "ast", "id": "remix_changelog_2026_08_31_builder_round_5_media_drop_paste_everywhere_figma_parity_controls_resizable_drawer_claude_ai", "community": 1023, @@ -400932,7 +401882,7 @@ "label": "2026-08-31 \u2014 Builder round 4: Figma-layer styling, WYSIWYG, layout fixes \u2014 Claude (AI)", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L735", + "source_location": "L751", "_origin": "ast", "id": "remix_changelog_2026_08_31_builder_round_4_figma_layer_styling_wysiwyg_layout_fixes_claude_ai", "community": 1023, @@ -400942,7 +401892,7 @@ "label": "2026-08-30 \u2014 Design system alignment + block-based site builder \u2014 Claude (AI)", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L768", + "source_location": "L784", "_origin": "ast", "id": "remix_changelog_2026_08_30_design_system_alignment_block_based_site_builder_claude_ai", "community": 1023, @@ -400952,7 +401902,7 @@ "label": "2026-09-01 \u2014 ChatGPT OAuth production credential vault", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L802", + "source_location": "L818", "_origin": "ast", "id": "remix_changelog_2026_09_01_chatgpt_oauth_production_credential_vault", "community": 1023, @@ -400962,7 +401912,7 @@ "label": "2026-09-01 \u2014 Self-draining moderation safety sweep", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L807", + "source_location": "L823", "_origin": "ast", "id": "remix_changelog_2026_09_01_self_draining_moderation_safety_sweep", "community": 1023, @@ -400972,7 +401922,7 @@ "label": "2026-09-01 \u2014 Production search server-bundle repair", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L814", + "source_location": "L830", "_origin": "ast", "id": "remix_changelog_2026_09_01_production_search_server_bundle_repair", "community": 1023, @@ -400982,7 +401932,7 @@ "label": "2026-08-31 \u2014 Bounded Graphify snapshot retention", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L822", + "source_location": "L838", "_origin": "ast", "id": "remix_changelog_2026_08_31_bounded_graphify_snapshot_retention", "community": 1023, @@ -400992,7 +401942,7 @@ "label": "Fixed", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L830", + "source_location": "L846", "_origin": "ast", "id": "remix_changelog_fixed", "community": 1023, @@ -401002,7 +401952,7 @@ "label": "2026-08-25 \u2014 Action Thing v1 security review: private minting, trust boundary, delegated resolution", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L850", + "source_location": "L866", "_origin": "ast", "id": "remix_changelog_2026_08_25_action_thing_v1_security_review_private_minting_trust_boundary_delegated_resolution", "community": 1023, @@ -401012,7 +401962,7 @@ "label": "2026-08-25 \u2014 Action Thing v1: builder, ttAction closure, Used-by, v2 design", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L865", + "source_location": "L881", "_origin": "ast", "id": "remix_changelog_2026_08_25_action_thing_v1_builder_ttaction_closure_used_by_v2_design", "community": 1023, @@ -401022,7 +401972,7 @@ "label": "2026-08-24 \u2014 Action Thing v1 (declarative, capability-bounded programs)", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L885", + "source_location": "L901", "_origin": "ast", "id": "remix_changelog_2026_08_24_action_thing_v1_declarative_capability_bounded_programs", "community": 1023, @@ -401032,7 +401982,7 @@ "label": "Changed", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L896", + "source_location": "L912", "_origin": "ast", "id": "remix_changelog_changed", "community": 1023, @@ -401042,7 +401992,7 @@ "label": "Added", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L1081", + "source_location": "L1097", "_origin": "ast", "id": "remix_changelog_added", "community": 1023, @@ -401052,7 +402002,7 @@ "label": "Security", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L1137", + "source_location": "L1153", "_origin": "ast", "id": "remix_changelog_security", "community": 1023, @@ -401062,9 +402012,9 @@ "label": "Changed", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L1172", + "source_location": "L1188", "_origin": "ast", - "id": "remix_changelog_changed_1172", + "id": "remix_changelog_changed_1188", "community": 1023, "norm_label": "changed" }, @@ -401072,9 +402022,9 @@ "label": "Added", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L1254", + "source_location": "L1270", "_origin": "ast", - "id": "remix_changelog_added_1254", + "id": "remix_changelog_added_1270", "community": 1023, "norm_label": "added" }, @@ -401082,7 +402032,7 @@ "label": "Performance", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L1442", + "source_location": "L1458", "_origin": "ast", "id": "remix_changelog_performance", "community": 1023, @@ -401092,9 +402042,9 @@ "label": "Fixed", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L1488", + "source_location": "L1504", "_origin": "ast", - "id": "remix_changelog_fixed_1488", + "id": "remix_changelog_fixed_1504", "community": 1023, "norm_label": "fixed" }, @@ -401102,9 +402052,9 @@ "label": "Performance", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L1837", + "source_location": "L1853", "_origin": "ast", - "id": "remix_changelog_performance_1837", + "id": "remix_changelog_performance_1853", "community": 1023, "norm_label": "performance" }, @@ -401112,9 +402062,9 @@ "label": "Added", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L1889", + "source_location": "L1905", "_origin": "ast", - "id": "remix_changelog_added_1889", + "id": "remix_changelog_added_1905", "community": 1023, "norm_label": "added" }, @@ -401122,9 +402072,9 @@ "label": "Performance", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L2018", + "source_location": "L2034", "_origin": "ast", - "id": "remix_changelog_performance_2018", + "id": "remix_changelog_performance_2034", "community": 1023, "norm_label": "performance" }, @@ -401132,9 +402082,9 @@ "label": "Added", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L2070", + "source_location": "L2086", "_origin": "ast", - "id": "remix_changelog_added_2070", + "id": "remix_changelog_added_2086", "community": 1023, "norm_label": "added" }, @@ -401142,9 +402092,9 @@ "label": "Security", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L2158", + "source_location": "L2174", "_origin": "ast", - "id": "remix_changelog_security_2158", + "id": "remix_changelog_security_2174", "community": 1023, "norm_label": "security" }, @@ -401152,9 +402102,9 @@ "label": "Added", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L2231", + "source_location": "L2247", "_origin": "ast", - "id": "remix_changelog_added_2231", + "id": "remix_changelog_added_2247", "community": 1023, "norm_label": "added" }, @@ -401162,9 +402112,9 @@ "label": "Fixed", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L2272", + "source_location": "L2288", "_origin": "ast", - "id": "remix_changelog_fixed_2272", + "id": "remix_changelog_fixed_2288", "community": 1023, "norm_label": "fixed" }, @@ -401172,9 +402122,9 @@ "label": "Added", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L2332", + "source_location": "L2348", "_origin": "ast", - "id": "remix_changelog_added_2332", + "id": "remix_changelog_added_2348", "community": 1023, "norm_label": "added" }, @@ -401182,9 +402132,9 @@ "label": "Fixed", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L2468", + "source_location": "L2484", "_origin": "ast", - "id": "remix_changelog_fixed_2468", + "id": "remix_changelog_fixed_2484", "community": 1023, "norm_label": "fixed" }, @@ -401192,9 +402142,9 @@ "label": "Security", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L2951", + "source_location": "L2967", "_origin": "ast", - "id": "remix_changelog_security_2951", + "id": "remix_changelog_security_2967", "community": 1023, "norm_label": "security" }, @@ -401202,9 +402152,9 @@ "label": "Added", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L2966", + "source_location": "L2982", "_origin": "ast", - "id": "remix_changelog_added_2966", + "id": "remix_changelog_added_2982", "community": 1023, "norm_label": "added" }, @@ -401212,9 +402162,9 @@ "label": "Performance", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L3211", + "source_location": "L3227", "_origin": "ast", - "id": "remix_changelog_performance_3211", + "id": "remix_changelog_performance_3227", "community": 1023, "norm_label": "performance" }, @@ -401222,9 +402172,9 @@ "label": "Fixed", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L3294", + "source_location": "L3310", "_origin": "ast", - "id": "remix_changelog_fixed_3294", + "id": "remix_changelog_fixed_3310", "community": 1023, "norm_label": "fixed" }, @@ -401232,9 +402182,9 @@ "label": "Changed", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L3414", + "source_location": "L3430", "_origin": "ast", - "id": "remix_changelog_changed_3414", + "id": "remix_changelog_changed_3430", "community": 1023, "norm_label": "changed" }, @@ -401242,9 +402192,9 @@ "label": "Added", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L3482", + "source_location": "L3498", "_origin": "ast", - "id": "remix_changelog_added_3482", + "id": "remix_changelog_added_3498", "community": 1023, "norm_label": "added" }, @@ -401252,9 +402202,9 @@ "label": "Changed", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L3732", + "source_location": "L3748", "_origin": "ast", - "id": "remix_changelog_changed_3732", + "id": "remix_changelog_changed_3748", "community": 1023, "norm_label": "changed" }, @@ -401262,9 +402212,9 @@ "label": "Fixed", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L3751", + "source_location": "L3767", "_origin": "ast", - "id": "remix_changelog_fixed_3751", + "id": "remix_changelog_fixed_3767", "community": 1023, "norm_label": "fixed" }, @@ -401272,7 +402222,7 @@ "label": "PR #26 - Environment-Aware Footer Status Checks", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L3879", + "source_location": "L3895", "_origin": "ast", "id": "remix_changelog_pr_26_environment_aware_footer_status_checks", "community": 1023, @@ -401282,9 +402232,9 @@ "label": "Added", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L3884", + "source_location": "L3900", "_origin": "ast", - "id": "remix_changelog_added_3884", + "id": "remix_changelog_added_3900", "community": 1023, "norm_label": "added" }, @@ -401292,7 +402242,7 @@ "label": "PR #24 - Nitro React Router Migration", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L3893", + "source_location": "L3909", "_origin": "ast", "id": "remix_changelog_pr_24_nitro_react_router_migration", "community": 1023, @@ -401302,9 +402252,9 @@ "label": "Changed", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L3898", + "source_location": "L3914", "_origin": "ast", - "id": "remix_changelog_changed_3898", + "id": "remix_changelog_changed_3914", "community": 1023, "norm_label": "changed" }, @@ -401312,7 +402262,7 @@ "label": "PR #16 - Auth And Lopu Hardening", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L3925", + "source_location": "L3941", "_origin": "ast", "id": "remix_changelog_pr_16_auth_and_lopu_hardening", "community": 1023, @@ -401322,9 +402272,9 @@ "label": "Fixed", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L3930", + "source_location": "L3946", "_origin": "ast", - "id": "remix_changelog_fixed_3930", + "id": "remix_changelog_fixed_3946", "community": 1023, "norm_label": "fixed" }, @@ -401332,9 +402282,9 @@ "label": "Changed", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L3941", + "source_location": "L3957", "_origin": "ast", - "id": "remix_changelog_changed_3941", + "id": "remix_changelog_changed_3957", "community": 1023, "norm_label": "changed" }, @@ -401342,7 +402292,7 @@ "label": "PR #13 - Remix Hydration, Vercel Status, And Deployment Hygiene", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L4000", + "source_location": "L4016", "_origin": "ast", "id": "remix_changelog_pr_13_remix_hydration_vercel_status_and_deployment_hygiene", "community": 1023, @@ -401352,9 +402302,9 @@ "label": "Added", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L4005", + "source_location": "L4021", "_origin": "ast", - "id": "remix_changelog_added_4005", + "id": "remix_changelog_added_4021", "community": 1023, "norm_label": "added" }, @@ -401362,9 +402312,9 @@ "label": "Changed", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L4016", + "source_location": "L4032", "_origin": "ast", - "id": "remix_changelog_changed_4016", + "id": "remix_changelog_changed_4032", "community": 1023, "norm_label": "changed" }, @@ -401372,9 +402322,9 @@ "label": "Fixed", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L4054", + "source_location": "L4070", "_origin": "ast", - "id": "remix_changelog_fixed_4054", + "id": "remix_changelog_fixed_4070", "community": 1023, "norm_label": "fixed" }, @@ -401382,7 +402332,7 @@ "label": "Verified", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L4065", + "source_location": "L4081", "_origin": "ast", "id": "remix_changelog_verified", "community": 1023, @@ -401392,7 +402342,7 @@ "label": "[1.0.0] - YYYY-MM-DD", "file_type": "document", "source_file": "remix/CHANGELOG.md", - "source_location": "L4075", + "source_location": "L4091", "_origin": "ast", "id": "remix_changelog_1_0_0_yyyy_mm_dd", "community": 1023, @@ -401555,7 +402505,7 @@ "source_location": "L13", "_origin": "ast", "id": "remix_app_providers_chakra_space_space", - "community": 594, + "community": 323, "norm_label": "space" }, { @@ -401575,7 +402525,7 @@ "source_location": "L106", "_origin": "ast", "id": "remix_app_api_utils_apps_appdata_resolveappdataacl", - "community": 134, + "community": 81, "norm_label": "resolveappdataacl" }, { @@ -401595,7 +402545,7 @@ "source_location": "L126", "_origin": "ast", "id": "remix_app_api_utils_apps_namespace_appthingsizebytes", - "community": 134, + "community": 81, "norm_label": "appthingsizebytes" }, { @@ -401625,7 +402575,7 @@ "source_location": "L1000", "_origin": "ast", "id": "remix_app_api_utils_devices_devices_deviceexistsforowner", - "community": 152, + "community": 358, "norm_label": "deviceexistsforowner" }, { @@ -401655,7 +402605,7 @@ "source_location": "L40", "_origin": "ast", "id": "remix_app_api_utils_messenger_storage_stampmessengerstoragedocument", - "community": 123, + "community": 6, "norm_label": "stampmessengerstoragedocument" }, { @@ -401675,7 +402625,7 @@ "source_location": "L175", "_origin": "ast", "id": "remix_app_api_utils_subspaces_gate_authorflairkey", - "community": 486, + "community": 175, "norm_label": "authorflairkey" }, { @@ -401695,7 +402645,7 @@ "source_location": "L2964", "_origin": "ast", "id": "remix_app_api_utils_things_things_appmatchclauses", - "community": 486, + "community": 175, "norm_label": "appmatchclauses" }, { @@ -401725,7 +402675,7 @@ "source_location": "L41", "_origin": "ast", "id": "remix_app_components_componentslibrary_componenttemplate_max_resolved_values", - "community": 7, + "community": 330, "norm_label": "max_resolved_values" }, { @@ -402015,7 +402965,7 @@ "source_location": "L49", "_origin": "ast", "id": "remix_app_smarts_index_uuid", - "community": 233, + "community": 597, "norm_label": "uuid" }, { @@ -413734,7 +414684,7 @@ "community": 1752, "norm_label": "migration-safe continuous availability", "community_name": "Migration Availability Strategy", - "id": "todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_migration_safe_continuous_availability" + "id": "todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_todo_migration_safe_continuous_availability" }, { "label": "Migration Compatibility Policy", @@ -418107,6 +419057,17 @@ "target": "commander_apps_daemon_src_services_config", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/nitro.config.ts", + "source_location": "L2", + "weight": 1.0, + "source": "remix_nitro_config", + "target": "commander_apps_daemon_src_services_config", + "confidence_score": 1.0 + }, { "relation": "imports", "context": "import", @@ -422539,7 +423500,7 @@ "weight": 1.0, "context": "import", "source": "commander_apps_desktop_ui_package_dependencies_react", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -422550,7 +423511,7 @@ "weight": 1.0, "context": "import", "source": "commander_apps_desktop_ui_package_dependencies_react_dom", - "target": "docs_design_thingtime_directions_ds_react_dom", + "target": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_dom", "confidence_score": 1.0 }, { @@ -422697,7 +423658,7 @@ "source_location": "L1", "weight": 1.0, "source": "commander_apps_desktop_ui_src_app", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -422763,7 +423724,7 @@ "source_location": "L3", "weight": 1.0, "source": "commander_apps_desktop_ui_src_components_accountsettings_test", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -422838,7 +423799,7 @@ "source_location": "L1", "weight": 1.0, "source": "commander_apps_desktop_ui_src_components_accountsettings", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -422881,7 +423842,7 @@ "source_location": "L1", "weight": 1.0, "source": "commander_apps_desktop_ui_src_components_actionspanel", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -422977,7 +423938,7 @@ "source_location": "L3", "weight": 1.0, "source": "commander_apps_desktop_ui_src_components_activitysettings_test", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -423294,7 +424255,7 @@ "source_location": "L1", "weight": 1.0, "source": "commander_apps_desktop_ui_src_components_activitysettings", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -423480,7 +424441,7 @@ "source_location": "L1", "weight": 1.0, "source": "commander_apps_desktop_ui_src_components_cloudsyncsettings", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -423578,7 +424539,7 @@ "source_location": "L3", "weight": 1.0, "source": "commander_apps_desktop_ui_src_components_emojipicker_test", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -423877,7 +424838,7 @@ "source_location": "L2", "weight": 1.0, "source": "commander_apps_desktop_ui_src_components_emojipicker", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -424081,7 +425042,7 @@ "source_location": "L3", "weight": 1.0, "source": "commander_apps_desktop_ui_src_components_extensionssettings_test", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -424261,7 +425222,7 @@ "source_location": "L1", "weight": 1.0, "source": "commander_apps_desktop_ui_src_components_extensionssettings", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -424327,7 +425288,7 @@ "source_location": "L3", "weight": 1.0, "source": "commander_apps_desktop_ui_src_components_generalsettings_test", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -424433,7 +425394,7 @@ "source_location": "L1", "weight": 1.0, "source": "commander_apps_desktop_ui_src_components_generalsettings", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -424670,7 +425631,7 @@ "source_location": "L1", "weight": 1.0, "source": "commander_apps_desktop_ui_src_components_indexingsettings", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -424887,7 +425848,7 @@ "source_location": "L3", "weight": 1.0, "source": "commander_apps_desktop_ui_src_components_launcher_test", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -425128,7 +426089,7 @@ "source_location": "L2", "weight": 1.0, "source": "commander_apps_desktop_ui_src_components_launcher", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -425171,7 +426132,7 @@ "source_location": "L1", "weight": 1.0, "source": "commander_apps_desktop_ui_src_components_resultcontextmenu", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -425225,7 +426186,7 @@ "source_location": "L1", "weight": 1.0, "source": "commander_apps_desktop_ui_src_components_resulticon", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -425269,7 +426230,7 @@ "source_location": "L3", "weight": 1.0, "source": "commander_apps_desktop_ui_src_components_searchpreferencessettings_test", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -425364,7 +426325,7 @@ "source_location": "L1", "weight": 1.0, "source": "commander_apps_desktop_ui_src_components_searchpreferencessettings", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -425505,7 +426466,7 @@ "source_location": "L3", "weight": 1.0, "source": "commander_apps_desktop_ui_src_components_settings_test", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -425610,7 +426571,7 @@ "source_location": "L1", "weight": 1.0, "source": "commander_apps_desktop_ui_src_components_settings", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -425632,7 +426593,7 @@ "source_location": "L3", "weight": 1.0, "source": "commander_apps_desktop_ui_src_components_uierrorboundary_test", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -425673,7 +426634,7 @@ "source_location": "L1", "weight": 1.0, "source": "commander_apps_desktop_ui_src_components_uierrorboundary", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -426545,7 +427506,7 @@ "source_location": "L2", "weight": 1.0, "source": "commander_apps_desktop_ui_src_hooks_usecommander_test", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -426641,7 +427602,7 @@ "source_location": "L1", "weight": 1.0, "source": "commander_apps_desktop_ui_src_hooks_usecommander", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -427236,7 +428197,7 @@ "source_location": "L2", "weight": 1.0, "source": "commander_apps_desktop_ui_src_lib_nativebridge", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -427598,7 +428559,7 @@ "source_location": "L1", "weight": 1.0, "source": "commander_apps_desktop_ui_src_main", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -440164,7 +441125,7 @@ "source_location": "L16", "weight": 1.0, "source": "commander_extensions_raycast_src_apply_filter", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -440567,7 +441528,7 @@ "source_location": "L55", "weight": 1.0, "source": "commander_extensions_raycast_src_commanderconvert", - "target": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderconvert_command", + "target": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderconvert_command", "confidence_score": 1.0 }, { @@ -440577,7 +441538,7 @@ "source_location": "L30", "weight": 1.0, "source": "commander_extensions_raycast_src_commanderconvert", - "target": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderconvert_convertformats", + "target": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderconvert_convertformats", "confidence_score": 1.0 }, { @@ -440587,7 +441548,7 @@ "source_location": "L28", "weight": 1.0, "source": "commander_extensions_raycast_src_commanderconvert", - "target": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderconvert_formats", + "target": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderconvert_formats", "confidence_score": 1.0 }, { @@ -440598,7 +441559,7 @@ "source_file": "Commander/extensions/raycast/src/commanderConvert.tsx", "source_location": "L101", "weight": 1.0, - "source": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderconvert_command", + "source": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderconvert_command", "target": "commander_extensions_raycast_src_commands_opennewfinderwindow_opennewfinderwindow" }, { @@ -440609,7 +441570,7 @@ "source_file": "Commander/extensions/raycast/src/commanderConvert.tsx", "source_location": "L121", "weight": 1.0, - "source": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderconvert_command", + "source": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderconvert_command", "target": "commander_extensions_raycast_src_commands_regextoreplacementconverter_regextoreplacementconverter" }, { @@ -440620,7 +441581,7 @@ "source_file": "Commander/extensions/raycast/src/commanderConvert.tsx", "source_location": "L111", "weight": 1.0, - "source": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderconvert_command", + "source": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderconvert_command", "target": "commander_extensions_raycast_src_commands_regextrim_regextrim" }, { @@ -440784,7 +441745,7 @@ "source_location": "L55", "weight": 1.0, "source": "commander_extensions_raycast_src_commandermp4tomp3", - "target": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commandermp4tomp3_command", + "target": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commandermp4tomp3_command", "confidence_score": 1.0 }, { @@ -440794,7 +441755,7 @@ "source_location": "L30", "weight": 1.0, "source": "commander_extensions_raycast_src_commandermp4tomp3", - "target": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commandermp4tomp3_convertformats", + "target": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commandermp4tomp3_convertformats", "confidence_score": 1.0 }, { @@ -440804,7 +441765,7 @@ "source_location": "L28", "weight": 1.0, "source": "commander_extensions_raycast_src_commandermp4tomp3", - "target": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commandermp4tomp3_formats", + "target": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commandermp4tomp3_formats", "confidence_score": 1.0 }, { @@ -440815,7 +441776,7 @@ "source_file": "Commander/extensions/raycast/src/commanderMp4ToMp3.tsx", "source_location": "L101", "weight": 1.0, - "source": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commandermp4tomp3_command", + "source": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commandermp4tomp3_command", "target": "commander_extensions_raycast_src_commands_opennewfinderwindow_opennewfinderwindow" }, { @@ -440826,7 +441787,7 @@ "source_file": "Commander/extensions/raycast/src/commanderMp4ToMp3.tsx", "source_location": "L121", "weight": 1.0, - "source": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commandermp4tomp3_command", + "source": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commandermp4tomp3_command", "target": "commander_extensions_raycast_src_commands_regextoreplacementconverter_regextoreplacementconverter" }, { @@ -440837,7 +441798,7 @@ "source_file": "Commander/extensions/raycast/src/commanderMp4ToMp3.tsx", "source_location": "L111", "weight": 1.0, - "source": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commandermp4tomp3_command", + "source": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commandermp4tomp3_command", "target": "commander_extensions_raycast_src_commands_regextrim_regextrim" }, { @@ -441001,7 +441962,7 @@ "source_location": "L55", "weight": 1.0, "source": "commander_extensions_raycast_src_commanderopennewfinderwindow", - "target": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderopennewfinderwindow_command", + "target": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderopennewfinderwindow_command", "confidence_score": 1.0 }, { @@ -441011,7 +441972,7 @@ "source_location": "L30", "weight": 1.0, "source": "commander_extensions_raycast_src_commanderopennewfinderwindow", - "target": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderopennewfinderwindow_convertformats", + "target": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderopennewfinderwindow_convertformats", "confidence_score": 1.0 }, { @@ -441021,7 +441982,7 @@ "source_location": "L28", "weight": 1.0, "source": "commander_extensions_raycast_src_commanderopennewfinderwindow", - "target": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderopennewfinderwindow_formats", + "target": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderopennewfinderwindow_formats", "confidence_score": 1.0 }, { @@ -441032,7 +441993,7 @@ "source_file": "Commander/extensions/raycast/src/commanderOpenNewFinderWindow.tsx", "source_location": "L101", "weight": 1.0, - "source": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderopennewfinderwindow_command", + "source": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderopennewfinderwindow_command", "target": "commander_extensions_raycast_src_commands_opennewfinderwindow_opennewfinderwindow" }, { @@ -441043,7 +442004,7 @@ "source_file": "Commander/extensions/raycast/src/commanderOpenNewFinderWindow.tsx", "source_location": "L121", "weight": 1.0, - "source": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderopennewfinderwindow_command", + "source": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderopennewfinderwindow_command", "target": "commander_extensions_raycast_src_commands_regextoreplacementconverter_regextoreplacementconverter" }, { @@ -441054,7 +442015,7 @@ "source_file": "Commander/extensions/raycast/src/commanderOpenNewFinderWindow.tsx", "source_location": "L111", "weight": 1.0, - "source": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderopennewfinderwindow_command", + "source": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderopennewfinderwindow_command", "target": "commander_extensions_raycast_src_commands_regextrim_regextrim" }, { @@ -441218,7 +442179,7 @@ "source_location": "L55", "weight": 1.0, "source": "commander_extensions_raycast_src_commanderregextoreplacementconverter", - "target": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderregextoreplacementconverter_command", + "target": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderregextoreplacementconverter_command", "confidence_score": 1.0 }, { @@ -441228,7 +442189,7 @@ "source_location": "L30", "weight": 1.0, "source": "commander_extensions_raycast_src_commanderregextoreplacementconverter", - "target": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderregextoreplacementconverter_convertformats", + "target": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderregextoreplacementconverter_convertformats", "confidence_score": 1.0 }, { @@ -441238,7 +442199,7 @@ "source_location": "L28", "weight": 1.0, "source": "commander_extensions_raycast_src_commanderregextoreplacementconverter", - "target": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderregextoreplacementconverter_formats", + "target": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderregextoreplacementconverter_formats", "confidence_score": 1.0 }, { @@ -441249,7 +442210,7 @@ "source_file": "Commander/extensions/raycast/src/commanderRegexToReplacementConverter.tsx", "source_location": "L101", "weight": 1.0, - "source": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderregextoreplacementconverter_command", + "source": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderregextoreplacementconverter_command", "target": "commander_extensions_raycast_src_commands_opennewfinderwindow_opennewfinderwindow" }, { @@ -441260,7 +442221,7 @@ "source_file": "Commander/extensions/raycast/src/commanderRegexToReplacementConverter.tsx", "source_location": "L121", "weight": 1.0, - "source": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderregextoreplacementconverter_command", + "source": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderregextoreplacementconverter_command", "target": "commander_extensions_raycast_src_commands_regextoreplacementconverter_regextoreplacementconverter" }, { @@ -441271,7 +442232,7 @@ "source_file": "Commander/extensions/raycast/src/commanderRegexToReplacementConverter.tsx", "source_location": "L111", "weight": 1.0, - "source": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderregextoreplacementconverter_command", + "source": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderregextoreplacementconverter_command", "target": "commander_extensions_raycast_src_commands_regextrim_regextrim" }, { @@ -441435,7 +442396,7 @@ "source_location": "L55", "weight": 1.0, "source": "commander_extensions_raycast_src_commanderregextrim", - "target": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderregextrim_command", + "target": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderregextrim_command", "confidence_score": 1.0 }, { @@ -441445,7 +442406,7 @@ "source_location": "L30", "weight": 1.0, "source": "commander_extensions_raycast_src_commanderregextrim", - "target": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderregextrim_convertformats", + "target": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderregextrim_convertformats", "confidence_score": 1.0 }, { @@ -441455,7 +442416,7 @@ "source_location": "L28", "weight": 1.0, "source": "commander_extensions_raycast_src_commanderregextrim", - "target": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderregextrim_formats", + "target": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderregextrim_formats", "confidence_score": 1.0 }, { @@ -441466,7 +442427,7 @@ "source_file": "Commander/extensions/raycast/src/commanderRegexTrim.tsx", "source_location": "L101", "weight": 1.0, - "source": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderregextrim_command", + "source": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderregextrim_command", "target": "commander_extensions_raycast_src_commands_opennewfinderwindow_opennewfinderwindow" }, { @@ -441477,7 +442438,7 @@ "source_file": "Commander/extensions/raycast/src/commanderRegexTrim.tsx", "source_location": "L121", "weight": 1.0, - "source": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderregextrim_command", + "source": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderregextrim_command", "target": "commander_extensions_raycast_src_commands_regextoreplacementconverter_regextoreplacementconverter" }, { @@ -441488,7 +442449,7 @@ "source_file": "Commander/extensions/raycast/src/commanderRegexTrim.tsx", "source_location": "L111", "weight": 1.0, - "source": "users_lopu_codex_worktrees_thingtime_vault_verified_reveal_commander_extensions_raycast_src_commanderregextrim_command", + "source": "home_runner_work_thingtime_thingtime_commander_extensions_raycast_src_commanderregextrim_command", "target": "commander_extensions_raycast_src_commands_regextrim_regextrim" }, { @@ -441855,7 +442816,7 @@ "source_location": "L10", "weight": 1.0, "source": "commander_extensions_raycast_src_components_imagepatterngrid", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", + "target": "remix_app_routes_api_v1_chats_react_react", "confidence_score": 1.0 }, { @@ -444464,7 +445425,7 @@ "source_location": "L5", "weight": 1.0, "source": "commander_extensions_raycast_src_strip_exif", - "target": "remix_app_routes_api_v1_crypto_crypto", + "target": "remix_app_routes_crypto", "confidence_score": 1.0 }, { @@ -479710,7 +480671,7 @@ "weight": 1.0, "context": "import", "source": "deprecated_api_package_dependencies_mongodb", - "target": "remix_app_routes_api_v1_health_mongodb_mongodb", + "target": "remix_app_api_utils_mongodb_mongodb", "confidence_score": 1.0 }, { @@ -571848,28 +572809,6 @@ "target": "docs_design_thingtime_app_support_loadscript", "confidence_score": 1.0 }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Thingtime/ContextMenu/ThingContextMenu.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_thingtime_contextmenu_thingcontextmenu", - "target": "docs_design_thingtime_directions_ds_react_dom", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "remix/package.json", - "source_location": "L166", - "weight": 1.0, - "context": "import", - "source": "remix_package_dependencies_react_dom", - "target": "docs_design_thingtime_directions_ds_react_dom", - "confidence_score": 1.0 - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -672644,4054 +673583,6 @@ "target": "docs_design_thingtime_landing_1b_product_split_ds_react_workloopsync", "confidence_score": 1.0 }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Account/AccountHints.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_account_accounthints", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Account/AccountSwitcher.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_account_accountswitcher", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Account/AutoLoginPopup.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_account_autologinpopup", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Account/useAccountSwitcher.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_account_useaccountswitcher", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Actions/ActionBuilder.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_actions_actionbuilder", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Actions/ActionChip.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_actions_actionchip", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Actions/ActionDetailPage.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_actions_actiondetailpage", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Actions/ActionRunConfirm.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_actions_actionrunconfirm", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Actions/ActionsPage.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_actions_actionspage", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Actions/useTtActionClicks.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_actions_usettactionclicks", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Admin/AdminDashboard.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_admin_admindashboard", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Admin/AdminPanel.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_admin_adminpanel", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Admin/AdminRowQueryControls.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_admin_adminrowquerycontrols", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Admin/CIControl/CIControlDashboard.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_admin_cicontrol_cicontroldashboard", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Admin/CIControl/ClaudeCredentialWaterfall.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_admin_cicontrol_claudecredentialwaterfall", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Admin/IntegrationManager.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_admin_integrationmanager", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Admin/LinkManagerModal.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_admin_linkmanagermodal", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Admin/LopuAccountsAdmin.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_admin_lopuaccountsadmin", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Admin/LopuModelsEditor.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_admin_lopumodelseditor", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Admin/ModerationTab.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_admin_moderationtab", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Admin/PRConflictResolverModelWaterfallEditor.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_admin_prconflictresolvermodelwaterfalleditor", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Admin/SubscriptionEditorModal.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_admin_subscriptioneditormodal", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Admin/TierManager.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_admin_tiermanager", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/API/Submit.tsx", - "source_location": "L4", - "weight": 1.0, - "source": "remix_app_components_api_submit", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/API/Test.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_api_test", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Apps/AppsDataPage.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_apps_appsdatapage", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Apps/AppStorageManagerPage.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_apps_appstoragemanagerpage", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Apps/ConnectedAppsSection.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_apps_connectedappssection", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Attachments/AttachmentAnnotatePopover.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_attachments_attachmentannotatepopover", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Attachments/AttachmentComposer.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_attachments_attachmentcomposer", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Attachments/AttachmentReorderGallery.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_attachments_attachmentreordergallery", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Attachments/AudioAttachmentPlayer.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_attachments_audioattachmentplayer", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Attachments/MediaLayoutControls.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_attachments_medialayoutcontrols", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Attachments/MediaLightbox.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_attachments_medialightbox", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Attachments/PostAttachments.tsx", - "source_location": "L5", - "weight": 1.0, - "source": "remix_app_components_attachments_postattachments", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Attachments/ProgressiveImage.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_attachments_progressiveimage", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Attachments/useAttachmentUploads.ts", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_attachments_useattachmentuploads", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Branding/BrandAssetSection.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_branding_brandassetsection", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Branding/Branding.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_branding_branding", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Branding/BrandPressKit.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_branding_brandpresskit", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Branding/Logo.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_branding_logo", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Branding/LogoOld2.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_branding_logoold2", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Branding/LogoOld3.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_branding_logoold3", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Builder/BlockContextMenu.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_builder_blockcontextmenu", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Builder/BlockInsertMenu.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_builder_blockinsertmenu", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Builder/BuilderDrawer.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_builder_builderdrawer", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Builder/BuilderPage.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_builder_builderpage", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Builder/DemoDetailPage.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_builder_demodetailpage", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Builder/DemoLibraryPage.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_builder_demolibrarypage", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Builder/FigmaControls.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_builder_figmacontrols", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Builder/InlineRichTextEditor.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_builder_inlinerichtexteditor", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Builder/liveComponent.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_builder_livecomponent", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Builder/nativeSections.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_builder_nativesections", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Builder/RichTextModal.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_builder_richtextmodal", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Builder/SiteBlocksHost.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_builder_siteblockshost", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Builder/useBuilderChrome.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_builder_usebuilderchrome", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Builder/useWebpage.ts", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_builder_usewebpage", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Builder/WebpageBlocksRenderer.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_builder_webpageblocksrenderer", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Builder/webpageRuntime.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_builder_webpageruntime", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Buttons/Attention.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_buttons_attention", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Buttons/Hamburger.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_buttons_hamburger", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Commander/commanderClickAway.ts", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_commander_commanderclickaway", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Commander/CommanderV1Deprecated.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_commander_commanderv1deprecated", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Commander/CommanderV2.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_commander_commanderv2", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/ComponentsLibrary/ComponentDetailPage.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_componentslibrary_componentdetailpage", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/ComponentsLibrary/ComponentsBrowsePage.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_componentslibrary_componentsbrowsepage", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Devices/DeviceApplications.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_devices_deviceapplications", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Devices/DeviceApprovalCard.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_devices_deviceapprovalcard", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Devices/DeviceAudioControls.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_devices_deviceaudiocontrols", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Devices/DeviceCard.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_devices_devicecard", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Devices/DeviceCommandTimeline.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_devices_devicecommandtimeline", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Devices/DeviceConnectors.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_devices_deviceconnectors", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Devices/DeviceDetailsDrawer.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_devices_devicedetailsdrawer", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Devices/DeviceListRow.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_devices_devicelistrow", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Devices/DeviceNetworkControls.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_devices_devicenetworkcontrols", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Devices/DevicePowerControls.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_devices_devicepowercontrols", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Devices/DeviceStateGrid.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_devices_devicestategrid", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Devices/DeviceSystemControls.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_devices_devicesystemcontrols", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Devices/LocalNodeSetupCard.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_devices_localnodesetupcard", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Devices/PermissionRecoveryControls.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_devices_permissionrecoverycontrols", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Devices/ScreenSessionPanel.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_devices_screensessionpanel", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Devices/useDeviceApi.ts", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_devices_usedeviceapi", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Devices/useDeviceStore.ts", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_devices_usedevicestore", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Devices/useLocalThingtimeNode.ts", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_devices_uselocalthingtimenode", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Devices/WatchDeviceDetails.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_devices_watchdevicedetails", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/DevKit/DevKit.tsx", - "source_location": "L4", - "weight": 1.0, - "source": "remix_app_components_devkit_devkit", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/EasterEggs/EasterEggs.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_eastereggs_eastereggs", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Editor/Editor.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_editor_editor", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Editor/EditorHistoryControls.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_editor_editorhistorycontrols", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Editor/LongTextEditor.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_editor_longtexteditor", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Editor/styleTokens.ts", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_editor_styletokens", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Electron/ElectronBridgeHost.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_electron_electronbridgehost", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Emoji/EmojiPicker.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_emoji_emojipicker", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Emoji/useRecentReactions.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_emoji_userecentreactions", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Explore/ExplorePage.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_explore_explorepage", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Feed/AdvancedFilters.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_feed_advancedfilters", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Feed/AlgorithmMenu.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_feed_algorithmmenu", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Feed/CustomAudienceModal.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_feed_customaudiencemodal", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Feed/Feed.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_feed_feed", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Feed/FeedFilters.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_feed_feedfilters", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Feed/FeedShortcutsHelp.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_feed_feedshortcutshelp", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Feed/MemoriesCard.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_feed_memoriescard", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Feed/MentionAutocomplete.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_feed_mentionautocomplete", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Feed/PostCard.tsx", - "source_location": "L29", - "weight": 1.0, - "source": "remix_app_components_feed_postcard", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Feed/PostComposer.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_feed_postcomposer", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Feed/PostList.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_feed_postlist", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Feed/ReactionControl.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_feed_reactioncontrol", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Feed/UpdownControl.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_feed_updowncontrol", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Feed/useFeedEngagement.ts", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_feed_usefeedengagement", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Feed/useViewTracking.ts", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_feed_useviewtracking", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Icon/Icon.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_icon_icon", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Kinds/ChakraThingRenderer.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_kinds_chakrathingrenderer", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Kinds/HtmlThingRenderer.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_kinds_htmlthingrenderer", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Kinds/kindPrimitives.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_kinds_kindprimitives", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Kinds/kindRegistry.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_kinds_kindregistry", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Kinds/kindRenderers.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_kinds_kindrenderers", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Kinds/kindRenderersCommerce.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_kinds_kindrendererscommerce", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Kinds/kindRenderersKnowledge.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_kinds_kindrenderersknowledge", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Kinds/kindRenderersMedia.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_kinds_kindrenderersmedia", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Kinds/kindRenderersPlanning.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_kinds_kindrenderersplanning", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Kinds/kindRenderersSocial.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_kinds_kindrendererssocial", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Landing/BrutalButton.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_landing_brutalbutton", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Landing/ConfettiCanvas.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_landing_confetticanvas", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Landing/landingSections.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_landing_landingsections", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Layout/Main.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_layout_main", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Layout/PageShell.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_layout_pageshell", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Layout/TopSpacing.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_layout_topspacing", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Login/Login.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_login_login", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Login/Register.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_login_register", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Lopu/LopuActivityBadge.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_lopu_lopuactivitybadge", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Lopu/LopuBalanceChip.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_lopu_lopubalancechip", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Lopu/LopuChatView.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_lopu_lopuchatview", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Lopu/LopuComposer.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_lopu_lopucomposer", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Lopu/LopuCreditsPanel.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_lopu_lopucreditspanel", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Lopu/LopuHost.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_lopu_lopuhost", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Lopu/LopuLivePreview.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_lopu_lopulivepreview", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Lopu/LopuLockedState.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_lopu_lopulockedstate", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Lopu/LopuMarkdown.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_lopu_lopumarkdown", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Lopu/LopuModelPicker.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_lopu_lopumodelpicker", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Lopu/LopuNavButton.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_lopu_lopunavbutton", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Lopu/LopuPage.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_lopu_lopupage", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Lopu/LopuPositionSelect.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_lopu_lopupositionselect", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Lopu/LopuToolCard.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_lopu_loputoolcard", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Lopu/LopuVoiceChat.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_lopu_lopuvoicechat", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Lopu/LopuVoiceControls.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_lopu_lopuvoicecontrols", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Lopu/useLopu.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_lopu_uselopu", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Lopu/useLopuAccount.ts", - "source_location": "L19", - "weight": 1.0, - "source": "remix_app_components_lopu_uselopuaccount", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Lopu/useLopuChat.ts", - "source_location": "L10", - "weight": 1.0, - "source": "remix_app_components_lopu_uselopuchat", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Lopu/useLopuPosition.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_lopu_uselopuposition", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Lopu/useLopuSettings.ts", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_lopu_uselopusettings", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/MagicInput/MagicInput.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_magicinput_magicinput", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Media/LinkedImageGallery.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_media_linkedimagegallery", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Media/MediaGallery.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_media_mediagallery", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Media/useMediaReorder.ts", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_media_usemediareorder", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Messenger/AgentComposerControls.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_messenger_agentcomposercontrols", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Messenger/AgentLiveActivity.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_messenger_agentliveactivity", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Messenger/AiConnectionsModal.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_messenger_aiconnectionsmodal", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Messenger/ChatDetailsDrawer.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_messenger_chatdetailsdrawer", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Messenger/ChatView.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_messenger_chatview", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Messenger/Composer.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_messenger_composer", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Messenger/CustomEmojiImage.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_messenger_customemojiimage", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Messenger/EmojiUploadModal.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_messenger_emojiuploadmodal", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Messenger/InboxSidebar.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_messenger_inboxsidebar", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Messenger/MessageList.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_messenger_messagelist", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Messenger/MessageRow.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_messenger_messagerow", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Messenger/MessengerEmojiPicker.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_messenger_messengeremojipicker", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Messenger/MessengerModals.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_messenger_messengermodals", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Messenger/MessengerNotifications.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_messenger_messengernotifications", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Messenger/MessengerPage.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_messenger_messengerpage", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Messenger/RequestsView.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_messenger_requestsview", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Messenger/SlackSidebar.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_messenger_slacksidebar", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Messenger/useAgentSession.ts", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_messenger_useagentsession", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Messenger/useMessengerApi.ts", - "source_location": "L4", - "weight": 1.0, - "source": "remix_app_components_messenger_usemessengerapi", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/MongoDB/BsonValueEditor.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_mongodb_bsonvalueeditor", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/MongoDB/FilterBuilder.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_mongodb_filterbuilder", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/MongoDB/mongodbStatusSections.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_mongodb_mongodbstatussections", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/MongoDB/MongoEndpointConfig.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_mongodb_mongoendpointconfig", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/MongoDB/MongoStatus.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_mongodb_mongostatus", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/MongoDB/PipelineBuilder.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_mongodb_pipelinebuilder", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/MongoDB/Raw.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_mongodb_raw", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/MongoDB/RawResults.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_mongodb_rawresults", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/NativeBridge/NativeBridgeHost.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_nativebridge_nativebridgehost", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Nav/Drawer/DesktopNodeControls.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_nav_drawer_desktopnodecontrols", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Nav/Drawer/DrawerContent.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_nav_drawer_drawercontent", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Nav/Drawer/DrawerSystem.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_nav_drawer_drawersystem", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Nav/Drawer/DrawerTrigger.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_nav_drawer_drawertrigger", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Nav/Drawer/EditorDrawerSection.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_nav_drawer_editordrawersection", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Nav/Drawer/ElectronUpdateManager.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_nav_drawer_electronupdatemanager", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Nav/Drawer/NavDrawer.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_nav_drawer_navdrawer", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Nav/Drawer/ReorderableList.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_nav_drawer_reorderablelist", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Nav/Drawer/useDrawer.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_nav_drawer_usedrawer", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Nav/Drawer/UserSettingsModal.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_nav_drawer_usersettingsmodal", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Nav/Footer.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_nav_footer", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Nav/Nav.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_nav_nav", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Nav/NotificationsBell.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_nav_notificationsbell", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Nav/ReactiveNav.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_nav_reactivenav", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Nav/ReactiveRightNav.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_nav_reactiverightnav", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Notifications/NotificationRow.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_notifications_notificationrow", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Notifications/NotificationsPage.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_notifications_notificationspage", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/OAuth/AuthorizePage.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_oauth_authorizepage", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Ode/odeSections.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_ode_odesections", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Peers/DeploymentPeersPage.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_peers_deploymentpeerspage", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Profile/ActivityHeatmap.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_profile_activityheatmap", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Profile/EditProfileModal.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_profile_editprofilemodal", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Profile/ProfileMediaField.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_profile_profilemediafield", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Profile/ProfilePage.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_profile_profilepage", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Profile/RelationshipControls.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_profile_relationshipcontrols", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/QuickSwitcher/QuickSwitcher.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_quickswitcher_quickswitcher", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Rainbow/Rainbow.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_rainbow_rainbow", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/rainbowText.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_rainbowtext", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Saved/SavedPage.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_saved_savedpage", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Schemas/MigrationsPanel.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_schemas_migrationspanel", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Schemas/SchemaBuilder.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_schemas_schemabuilder", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Schemas/SchemaDetailPage.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_schemas_schemadetailpage", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Schemas/SchemasBrowsePage.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_schemas_schemasbrowsepage", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Schemas/SchemasPage.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_schemas_schemaspage", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Schemas/SchemaThingForm.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_schemas_schemathingform", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Search/searchBuilder.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_search_searchbuilder", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Search/SearchPage.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_search_searchpage", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Settings/AlgorithmManager.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_settings_algorithmmanager", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Settings/LinkedDeployments.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_settings_linkeddeployments", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Settings/MediaCacheSettings.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_settings_mediacachesettings", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Settings/NotificationSettings.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_settings_notificationsettings", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Settings/PasskeysManager.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_settings_passkeysmanager", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Settings/SecureVault.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_settings_securevault", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Settings/SettingsPage.tsx", - "source_location": "L4", - "weight": 1.0, - "source": "remix_app_components_settings_settingspage", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Settings/SettingsSection.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_settings_settingssection", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Settings/TokenMinter.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_settings_tokenminter", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Settings/useLinkedDeployments.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_settings_uselinkeddeployments", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Settings/VaultReveal.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_settings_vaultreveal", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Sharing/ThingAudienceControl.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_sharing_thingaudiencecontrol", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Skeleton/RainbowSkeleton.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_skeleton_rainbowskeleton", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Splash/Splash.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_splash_splash", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Status/FooterStatusPanel.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_status_footerstatuspanel", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Status/ServiceStatus.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_status_servicestatus", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Status/StatusRefreshButton.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_status_statusrefreshbutton", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Status/statusSections.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_status_statussections", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Subscriptions/TierCard.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_subscriptions_tiercard", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Subscriptions/TierFeatureComparison.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_subscriptions_tierfeaturecomparison", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Subspaces/CreateSubspaceModal.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_subspaces_createsubspacemodal", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Subspaces/ModerationModals.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_subspaces_moderationmodals", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Subspaces/SubspaceCard.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_subspaces_subspacecard", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Subspaces/SubspaceModPage.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_subspaces_subspacemodpage", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Subspaces/SubspacePage.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_subspaces_subspacepage", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Subspaces/SubspacePreferencesSection.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_subspaces_subspacepreferencessection", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Subspaces/SubspacesDirectoryPage.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_subspaces_subspacesdirectorypage", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Subspaces/useSubspacePrefs.ts", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_subspaces_usesubspaceprefs", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/textAnimation1.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_textanimation1", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/ThemeSettings/controls.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_themesettings_controls", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/ThemeSettings/ThemeGallery.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_themesettings_themegallery", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/ThemeSettings/ThemeHost.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_themesettings_themehost", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/ThemeSettings/ThemeStudio.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_themesettings_themestudio", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Things/FolderTree.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_things_foldertree", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Things/SensitiveThingReveal.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_things_sensitivethingreveal", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Things/ThingAttachmentDetail.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_things_thingattachmentdetail", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Things/ThingsDialogs.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_things_thingsdialogs", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Things/ThingsPage.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_things_thingspage", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Things/ThingsViews.tsx", - "source_location": "L4", - "weight": 1.0, - "source": "remix_app_components_things_thingsviews", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Thingtime/concepts/conceptBits.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_thingtime_concepts_conceptbits", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Thingtime/concepts/conceptData.ts", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_thingtime_concepts_conceptdata", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Thingtime/concepts/FocusCardsViewer.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_thingtime_concepts_focuscardsviewer", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Thingtime/concepts/FormSheetViewer.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_thingtime_concepts_formsheetviewer", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Thingtime/concepts/MillerColumnsViewer.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_thingtime_concepts_millercolumnsviewer", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Thingtime/concepts/OrbitCanvasViewer.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_thingtime_concepts_orbitcanvasviewer", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Thingtime/concepts/OutlineDocViewer.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_thingtime_concepts_outlinedocviewer", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Thingtime/ContextMenu/ThingContextMenu.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_thingtime_contextmenu_thingcontextmenu", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Thingtime/ContextMenu/ThingContextMenuTrigger.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_thingtime_contextmenu_thingcontextmenutrigger", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Thingtime/ContextMenu/useThingContextMenu.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_thingtime_contextmenu_usethingcontextmenu", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Thingtime/EditorSplit.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_thingtime_editorsplit", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Thingtime/Thingtime.tsx", - "source_location": "L4", - "weight": 1.0, - "source": "remix_app_components_thingtime_thingtime", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Thingtime/ThingtimeDemo.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_thingtime_thingtimedemo", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Thingtime/ThingtimeURL.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_thingtime_thingtimeurl", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Thingtime/ThingView.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_thingtime_thingview", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Thingtime/useThingtime.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_thingtime_usethingtime", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/tt/Button.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_tt_button", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/User/UserCard.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_user_usercard", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Vercel/VercelStatus.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_components_vercel_vercelstatus", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/VisualSettings/VisualSettingsHost.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_components_visualsettings_visualsettingshost", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Watch/WatchCodeField.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_watch_watchcodefield", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Watch/WatchPairingPage.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_watch_watchpairingpage", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Watch/WatchPendingApprovals.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_watch_watchpendingapprovals", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/components/Welcome/welcomeSections.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_components_welcome_welcomesections", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/embed/bridge.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_embed_bridge", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/entry.client.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_entry_client", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/globals/GlobalStyles.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_globals_globalstyles", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/hooks/useApi.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_hooks_useapi", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/hooks/useAsyncFetcher.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_hooks_useasyncfetcher", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/hooks/useCommentDraft.ts", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_hooks_usecommentdraft", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/hooks/useFeedShortcuts.ts", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_hooks_usefeedshortcuts", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/hooks/useOutsideTapClose.ts", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_hooks_useoutsidetapclose", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/hooks/usePasskeys.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_hooks_usepasskeys", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/hooks/usePath.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_hooks_usepath", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/hooks/useProps.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_hooks_useprops", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/hooks/useThings.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_hooks_usethings", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/hooks/useThingtimeMachine.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_hooks_usethingtimemachine", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/hooks/useTrace.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_hooks_usetrace", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/hooks/useTtTheme.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_hooks_usetttheme", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/hooks/useUuid.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_hooks_useuuid", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/Providers/Chakra/ChakraWrapper.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_providers_chakra_chakrawrapper", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/Providers/Chakra/Components/Button.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_providers_chakra_components_button", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/Providers/Chakra/emotionContext.ts", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_providers_chakra_emotioncontext", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/Providers/Chakra/theme.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_providers_chakra_theme", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/Providers/ThingtimeProvider.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_providers_thingtimeprovider", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/root.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_root", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/api/v1/mongodb/endpoint/_endpoint.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_routes_api_v1_mongodb_endpoint_endpoint", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/api/v1/mongodb/endpoints/_endpoints.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_routes_api_v1_mongodb_endpoints_endpoints", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/api/v1/mongodb/get-connection/_get-connection.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_routes_api_v1_mongodb_get_connection_get_connection", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/api/v1/mongodb/populate/_populate.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_routes_api_v1_mongodb_populate_populate", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/api/v1/mongodb/status/_status.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_routes_api_v1_mongodb_status_status", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/api/v1/template/_template.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_routes_api_v1_template_template", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/authorize.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_routes_authorize", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/branding/_index.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_branding_index", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/crypto.tsx", - "source_location": "L18", - "weight": 1.0, - "source": "remix_app_routes_crypto", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/api.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_api", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/ApiPlayground.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_apiplayground", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/ApiTryIt.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_apitryit", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/concepts/ConceptStories.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_concepts_conceptstories", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/concepts/index.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_concepts_index", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/design-system/BrutalButtonStories.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_design_system_brutalbuttonstories", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/design-system/BuilderBlocksStories.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_design_system_builderblocksstories", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/design-system/entries/AvatarIdentityStories.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_design_system_entries_avataridentitystories", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/design-system/entries/BrandMarkStories.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_design_system_entries_brandmarkstories", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/design-system/entries/ButtonsStories.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_design_system_entries_buttonsstories", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/design-system/entries/CardsAndSectionsStories.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_design_system_entries_cardsandsectionsstories", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/design-system/entries/ChipsAndBadgesStories.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_design_system_entries_chipsandbadgesstories", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/design-system/entries/ClearanceStories.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_design_system_entries_clearancestories", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/design-system/entries/IconStories.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_design_system_entries_iconstories", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/design-system/entries/InputsAndFormsStories.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_design_system_entries_inputsandformsstories", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/design-system/entries/ModalsAndPopoversStories.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_design_system_entries_modalsandpopoversstories", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/design-system/entries/NavigationStories.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_design_system_entries_navigationstories", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/design-system/entries/OptimisticRenderingStories.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_design_system_entries_optimisticrenderingstories", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/design-system/entries/RainbowMotionStories.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_design_system_entries_rainbowmotionstories", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/design-system/entries/ToastsStories.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_design_system_entries_toastsstories", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/design-system/entries/TouchA11yStories.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_design_system_entries_toucha11ystories", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/design-system/entries/TypographyAndSpacingStories.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_design_system_entries_typographyandspacingstories", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/design-system/FoundationsStories.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_design_system_foundationsstories", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/design-system/index.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_design_system_index", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/design-system/PageScaffoldStories.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_design_system_pagescaffoldstories", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/design-system/ThingContextMenuStories.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_design_system_thingcontextmenustories", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/DesignWorkspace.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_designworkspace", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/docsCode.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_docscode", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/DocsLayout.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_docslayout", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/DocsSearch.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_docssearch", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/embed.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_embed", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/index.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_routes_docs_index", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/mcp.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_docs_mcp", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/docs/useDocsAnchorScroll.ts", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_routes_docs_usedocsanchorscroll", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/login.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_login", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/media.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_media", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/migrations.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_migrations", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/p.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_p", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/post.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_post", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/rainbow.$.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_rainbow", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/register.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_register", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/tests.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_tests", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/themes.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_routes_themes", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/themes.gallery.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_routes_themes_gallery", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/thing.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_thing", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/$.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_routes_tsx_remix_app_routes_69924d", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_routes_tsx_remix_app_routes_d47d44", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/vercel.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_vercel", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/verify-email.tsx", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_routes_verify_email", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/routes/watch.pair.tsx", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_routes_watch_pair", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/theme/icons.tsx", - "source_location": "L92", - "weight": 1.0, - "source": "remix_app_theme_icons", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "re-export", - "confidence": "EXTRACTED", - "source_file": "remix/.ds-entry.tsx", - "source_location": "L4", - "weight": 1.0, - "source": "remix_ds_entry", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "remix/package.json", - "source_location": "L163", - "weight": 1.0, - "context": "import", - "source": "remix_package_dependencies_react", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/tests/editor-rich-text.tsx", - "source_location": "L7", - "weight": 1.0, - "source": "remix_tests_editor_rich_text", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/tests/media-cache.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "remix_tests_media_cache", - "target": "docs_design_thingtime_landing_1b_product_split_ds_react", - "confidence_score": 1.0 - }, { "relation": "calls", "context": "call", @@ -848150,6 +845041,28 @@ "target": "docs_design_thingtime_landing_1e_typographic_story_support_loadscript", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Thingtime/ContextMenu/ThingContextMenu.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_thingtime_contextmenu_thingcontextmenu", + "target": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_dom", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "remix/package.json", + "source_location": "L168", + "weight": 1.0, + "context": "import", + "source": "remix_package_dependencies_react_dom", + "target": "docs_design_thingtime_landing_1f_ecosystem_map_ds_react_dom", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1102136,7 +1099049,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L6058", + "source_location": "L6085", "weight": 1.0, "source": "testing", "target": "testing_index_consolidation_regression_checks", @@ -1102146,7 +1099059,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L6051", + "source_location": "L6078", "weight": 1.0, "source": "testing", "target": "testing_storage_ledger_operator_diagnostics", @@ -1103011,6 +1099924,17 @@ "target": "package_dependencies_typescript", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "remix/.ds-entry.tsx", + "source_location": "L4", + "weight": 1.0, + "source": "remix_ds_entry", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "re_exports", "context": "export", @@ -1103273,6 +1100197,17 @@ "target": "remix_app_env_d_window", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/Providers/Chakra/ChakraWrapper.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_providers_chakra_chakrawrapper", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1103327,6 +1100262,17 @@ "target": "remix_app_providers_chakra_chakrawrapper_chakrawrapper", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/Providers/Chakra/Components/Button.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_providers_chakra_components_button", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1103578,6 +1100524,17 @@ "target": "remix_app_providers_chakra_emotioncontext", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/Providers/Chakra/emotionContext.ts", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_providers_chakra_emotioncontext", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1103661,6 +1100618,17 @@ "target": "remix_app_providers_chakra_theme", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/Providers/Chakra/theme.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_providers_chakra_theme", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports", "context": "import", @@ -1103960,6 +1100928,17 @@ "target": "remix_app_providers_thingtimeprovider", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/Providers/ThingtimeProvider.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_providers_thingtimeprovider", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1136836,7 +1133815,7 @@ "source_location": "L2", "weight": 1.0, "source": "remix_app_api_utils_algorithms_algorithms", - "target": "remix_app_routes_api_v1_health_mongodb_mongodb", + "target": "remix_app_api_utils_mongodb_mongodb", "confidence_score": 1.0 }, { @@ -1150123,17 +1147102,6 @@ "target": "remix_app_api_utils_auth_users_publicuser", "confidence_score": 1.0 }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/ciControl/vercelRunner.ts", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_api_utils_cicontrol_vercelrunner", - "target": "remix_app_api_utils_apps_sandbox", - "confidence_score": 1.0 - }, { "relation": "imports_from", "context": "import", @@ -1151459,7 +1148427,7 @@ "source_location": "L1", "weight": 1.0, "source": "remix_app_api_utils_attachments_attachmentaccess", - "target": "remix_app_routes_api_v1_health_mongodb_mongodb", + "target": "remix_app_api_utils_mongodb_mongodb", "confidence_score": 1.0 }, { @@ -1156800,6 +1153768,17 @@ "target": "remix_app_api_utils_attachments_attachments", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L694", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_loadattachmentdatauri", + "target": "remix_app_api_utils_attachments_attachments", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1169502,7 +1166481,7 @@ "source_location": "L10", "weight": 1.0, "source": "remix_app_api_utils_auth_passkeys", - "target": "remix_app_routes_api_v1_health_mongodb_mongodb", + "target": "remix_app_api_utils_mongodb_mongodb", "confidence_score": 1.0 }, { @@ -1177520,7 +1174499,7 @@ "source_location": "L2", "weight": 1.0, "source": "remix_app_api_utils_auth_users", - "target": "remix_app_routes_api_v1_health_mongodb_mongodb", + "target": "remix_app_api_utils_mongodb_mongodb", "confidence_score": 1.0 }, { @@ -1178748,10 +1175727,10 @@ "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L162", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L580", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta_profilemeta", + "source": "remix_app_api_utils_meta_socialpreview_profilepreview", "target": "remix_app_api_utils_auth_users", "confidence_score": 1.0 }, @@ -1179596,10 +1176575,10 @@ "context": "call", "confidence": "INFERRED", "confidence_score": 0.8, - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L169", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L583", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta_profilemeta", + "source": "remix_app_api_utils_meta_socialpreview_profilepreview", "target": "remix_app_api_utils_auth_users_topublicprofile" }, { @@ -1180344,10 +1177323,10 @@ "context": "call", "confidence": "INFERRED", "confidence_score": 0.8, - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L164", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L581", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta_profilemeta", + "source": "remix_app_api_utils_meta_socialpreview_profilepreview", "target": "remix_app_api_utils_auth_users_finduserbyusername" }, { @@ -1183105,7 +1180084,7 @@ "source_location": "L3", "weight": 1.0, "source": "remix_app_api_utils_auth_vaultpasskey_test", - "target": "remix_app_routes_api_v1_health_mongodb_mongodb", + "target": "remix_app_api_utils_mongodb_mongodb", "confidence_score": 1.0 }, { @@ -1195291,6 +1192270,17 @@ "target": "remix_app_api_utils_cicontrol_vercelrunner_vercelrunnerjob", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/ciControl/vercelRunner.ts", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_api_utils_cicontrol_vercelrunner", + "target": "remix_app_routes_api_v1_oauth_sandbox_sandbox", + "confidence_score": 1.0 + }, { "relation": "calls", "context": "call", @@ -1215711,7 +1212701,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L15", + "source_location": "L14", "weight": 1.0, "source": "remix_app_api_utils_meta_socialmeta", "target": "remix_app_api_utils_health_statustarget", @@ -1215887,7 +1212877,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L15", + "source_location": "L14", "weight": 1.0, "source": "remix_app_api_utils_meta_socialmeta", "target": "remix_app_api_utils_health_statustarget_getrequestorigin", @@ -1215899,7 +1212889,7 @@ "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L186", + "source_location": "L78", "weight": 1.0, "source": "remix_app_api_utils_meta_socialmeta_resolvesocialmeta", "target": "remix_app_api_utils_health_statustarget_getrequestorigin" @@ -1217833,7 +1214823,7 @@ "source_location": "L2", "weight": 1.0, "source": "remix_app_api_utils_lopu_accounting", - "target": "remix_app_routes_api_v1_health_mongodb_mongodb", + "target": "remix_app_api_utils_mongodb_mongodb", "confidence_score": 1.0 }, { @@ -1234594,7 +1231584,7 @@ "source_location": "L12", "weight": 1.0, "source": "remix_app_api_utils_messenger_emojis", - "target": "remix_app_routes_api_v1_health_mongodb_mongodb", + "target": "remix_app_api_utils_mongodb_mongodb", "confidence_score": 1.0 }, { @@ -1237284,6 +1234274,17 @@ "target": "remix_app_api_utils_messenger_lopuchats_chunk", "confidence_score": 1.0 }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "remix/app/api/utils/meta/socialCard.test.ts", + "source_location": "L474", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_test_pngofsize", + "target": "remix_app_api_utils_messenger_lopuchats_chunk" + }, { "relation": "calls", "context": "call", @@ -1241585,7 +1238586,7 @@ "source_location": "L9", "weight": 1.0, "source": "remix_app_api_utils_messenger_shared", - "target": "remix_app_routes_api_v1_health_mongodb_mongodb", + "target": "remix_app_api_utils_mongodb_mongodb", "confidence_score": 1.0 }, { @@ -1242457,6 +1239458,17 @@ "target": "remix_app_api_utils_storage_accountedthings_withaccountedthingstransaction", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/server/routes/[...].ts", + "source_location": "L2", + "weight": 1.0, + "source": "remix_server_routes", + "target": "remix_app_api_utils_messenger_storage", + "confidence_score": 1.0 + }, { "relation": "calls", "context": "call", @@ -1242578,395 +1239590,1171 @@ "source": "remix_app_api_utils_messenger_storage_withmessengerstoragetransaction", "target": "remix_app_api_utils_storage_accountedthings_withaccountedthingstransaction" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.test.ts", + "source_location": "L7", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_test", + "target": "remix_app_api_utils_meta_socialcard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.test.ts", + "source_location": "L7", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_test", + "target": "remix_app_api_utils_meta_socialcard_buildsocialcardsvg", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.test.ts", + "source_location": "L7", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_test", + "target": "remix_app_api_utils_meta_socialcard_readbodywithin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.test.ts", + "source_location": "L7", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_test", + "target": "remix_app_api_utils_meta_socialcard_rendersocialcardpng", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.test.ts", + "source_location": "L7", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_test", + "target": "remix_app_api_utils_meta_socialcard_socialcardimageextent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.test.ts", + "source_location": "L7", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_test", + "target": "remix_app_api_utils_meta_socialcard_socialcardrenderoptions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.test.ts", + "source_location": "L7", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_test", + "target": "remix_app_api_utils_meta_socialcard_socialtextwidth", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L59", + "source_file": "remix/app/api/utils/meta/socialCard.test.ts", + "source_location": "L234", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta", - "target": "remix_app_api_utils_meta_socialmeta_absolutemediaurl", + "source": "remix_app_api_utils_meta_socialcard_test", + "target": "remix_app_api_utils_meta_socialcard_test_cardpixels", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L76", + "source_file": "remix/app/api/utils/meta/socialCard.test.ts", + "source_location": "L18", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta", - "target": "remix_app_api_utils_meta_socialmeta_buildtags", + "source": "remix_app_api_utils_meta_socialcard_test", + "target": "remix_app_api_utils_meta_socialcard_test_gallery", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L36", + "source_file": "remix/app/api/utils/meta/socialCard.test.ts", + "source_location": "L221", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta", - "target": "remix_app_api_utils_meta_socialmeta_cleantext", + "source": "remix_app_api_utils_meta_socialcard_test", + "target": "remix_app_api_utils_meta_socialcard_test_inkinband", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L48", + "source_file": "remix/app/api/utils/meta/socialCard.test.ts", + "source_location": "L447", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta", - "target": "remix_app_api_utils_meta_socialmeta_escapehtml", + "source": "remix_app_api_utils_meta_socialcard_test", + "target": "remix_app_api_utils_meta_socialcard_test_pngofsize", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L214", + "source_file": "remix/app/api/utils/meta/socialCard.test.ts", + "source_location": "L130", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta", - "target": "remix_app_api_utils_meta_socialmeta_injectsocialmeta", + "source": "remix_app_api_utils_meta_socialcard_test", + "target": "remix_app_api_utils_meta_socialcard_test_rectsfilled", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L65", + "source_file": "remix/app/api/utils/meta/socialCard.test.ts", + "source_location": "L413", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta", - "target": "remix_app_api_utils_meta_socialmeta_named", + "source": "remix_app_api_utils_meta_socialcard_test", + "target": "remix_app_api_utils_meta_socialcard_test_streamed", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L67", + "source_file": "remix/app/api/utils/meta/socialCard.test.ts", + "source_location": "L83", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta", - "target": "remix_app_api_utils_meta_socialmeta_pagemeta", + "source": "remix_app_api_utils_meta_socialcard_test", + "target": "remix_app_api_utils_meta_socialcard_test_titlelinesof", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.test.ts", + "source_location": "L16", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_test", + "target": "remix_app_api_utils_meta_socialpreview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.test.ts", + "source_location": "L15", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_test", + "target": "remix_app_api_utils_meta_socialpreview_socialpreview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.test.ts", + "source_location": "L16", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_test", + "target": "remix_app_api_utils_meta_socialpreview_staticsocialpreview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.test.ts", + "source_location": "L235", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_test_cardpixels", + "target": "remix_app_api_utils_meta_socialcard_buildsocialcardsvg", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.test.ts", + "source_location": "L235", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_test_cardpixels", + "target": "remix_app_api_utils_meta_socialcard_socialcardrenderoptions", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L100", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L582", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta", - "target": "remix_app_api_utils_meta_socialmeta_polloptionlabels", + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_asciiat", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L110", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L595", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta", - "target": "remix_app_api_utils_meta_socialmeta_postmeta", + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_avif_container_boxes", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L596", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_avifextent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L169", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_badgerenders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L400", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_buildsocialcardsvg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L54", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_card_themes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L690", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_cardimage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", "source_location": "L161", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta", - "target": "remix_app_api_utils_meta_socialmeta_profilemeta", + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_cardinitial", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L64", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L146", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta", - "target": "remix_app_api_utils_meta_socialmeta_property", + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_cardtext", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L207", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L52", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta", - "target": "remix_app_api_utils_meta_socialmeta_rendersocialmetahtml", + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_cardtheme", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L185", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L174", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta", - "target": "remix_app_api_utils_meta_socialmeta_resolvesocialmeta", + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_clamptowidth", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L21", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L229", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta", - "target": "remix_app_api_utils_meta_socialmeta_socialmeta", + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_colourtile", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L19", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L105", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta", - "target": "remix_app_api_utils_meta_socialmeta_socialmetatag", + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_escapexml", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L41", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L125", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta", - "target": "remix_app_api_utils_meta_socialmeta_truncate", + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_glyphem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L585", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_imageextent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L248", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_imagetile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L617", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_jpegextent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L586", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_larger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L692", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_loadattachmentdatauri", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L331", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_medialayout", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L255", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_panelart", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L301", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_panelcopy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L210", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_plusmark", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L550", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_readbodywithin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L579", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_readuint16be", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L580", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_readuint16le", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L581", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_readuint24le", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L577", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_readuint32be", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L717", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_rendersocialcardpng", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L11", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_safe_image_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L497", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_socialcardfontfiles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L674", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_socialcardimageextent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L520", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_socialcardrenderoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L134", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_socialtextwidth", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L645", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_webpextent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L183", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcard_wrap", "confidence_score": 1.0 }, { "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L16", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L7", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta", - "target": "remix_app_utils_attachmentcontenturl", + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcardfontdata", "confidence_score": 1.0 }, { "relation": "imports", "context": "import", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L16", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L7", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta", - "target": "remix_app_utils_attachmentcontenturl_attachmentcontentpath", + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialcardfontdata_social_card_fonts", "confidence_score": 1.0 }, { "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L17", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L9", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta", - "target": "remix_app_utils_profilemediaurl", + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialpreview", "confidence_score": 1.0 }, { "relation": "imports", "context": "import", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L17", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L9", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta", - "target": "remix_app_utils_profilemediaurl_absolutethirdpartyprofilemediaurl", + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialpreview_cleansocialtext", "confidence_score": 1.0 }, { - "relation": "imports_from", + "relation": "imports", "context": "import", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/things/rss.ts", - "source_location": "L1", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L8", "weight": 1.0, - "source": "remix_app_api_utils_things_rss", - "target": "remix_app_api_utils_meta_socialmeta", + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialpreview_socialpreview", "confidence_score": 1.0 }, { - "relation": "imports_from", + "relation": "imports", "context": "import", "confidence": "EXTRACTED", - "source_file": "remix/server/routes/[...].ts", - "source_location": "L4", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L8", "weight": 1.0, - "source": "remix_server_routes", - "target": "remix_app_api_utils_meta_socialmeta", + "source": "remix_app_api_utils_meta_socialcard", + "target": "remix_app_api_utils_meta_socialpreview_socialpreviewvariant", "confidence_score": 1.0 }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L704", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_loadattachmentdatauri", + "target": "remix_app_api_utils_meta_socialcard_safe_image_types" + }, { "relation": "calls", "context": "call", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L135", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L436", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta_postmeta", - "target": "remix_app_api_utils_meta_socialmeta_cleantext", + "source": "remix_app_api_utils_meta_socialcard_buildsocialcardsvg", + "target": "remix_app_api_utils_meta_socialcard_escapexml", "confidence_score": 1.0 }, { "relation": "calls", "context": "call", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L170", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L356", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta_profilemeta", - "target": "remix_app_api_utils_meta_socialmeta_cleantext", + "source": "remix_app_api_utils_meta_socialcard_medialayout", + "target": "remix_app_api_utils_meta_socialcard_escapexml", "confidence_score": 1.0 }, { "relation": "calls", "context": "call", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L147", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L189", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta_postmeta", - "target": "remix_app_api_utils_meta_socialmeta_truncate", + "source": "remix_app_api_utils_meta_socialcard_wrap", + "target": "remix_app_api_utils_meta_socialcard_socialtextwidth", "confidence_score": 1.0 }, { "relation": "calls", "context": "call", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L169", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_badgerenders", + "target": "remix_app_api_utils_meta_socialcard_cardtext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L162", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_cardinitial", + "target": "remix_app_api_utils_meta_socialcard_cardtext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", "source_location": "L176", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta_profilemeta", - "target": "remix_app_api_utils_meta_socialmeta_truncate", + "source": "remix_app_api_utils_meta_socialcard_clamptowidth", + "target": "remix_app_api_utils_meta_socialcard_cardtext", "confidence_score": 1.0 }, { - "relation": "imports", - "context": "import", + "relation": "calls", + "context": "call", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/things/rss.ts", - "source_location": "L1", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L184", "weight": 1.0, - "source": "remix_app_api_utils_things_rss", - "target": "remix_app_api_utils_meta_socialmeta_escapehtml", + "source": "remix_app_api_utils_meta_socialcard_wrap", + "target": "remix_app_api_utils_meta_socialcard_cardtext", "confidence_score": 1.0 }, { "relation": "calls", "context": "call", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/things/rss.ts", - "source_location": "L46", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L442", "weight": 1.0, - "source": "remix_app_api_utils_things_rss_xml", - "target": "remix_app_api_utils_meta_socialmeta_escapehtml", + "source": "remix_app_api_utils_meta_socialcard_buildsocialcardsvg", + "target": "remix_app_api_utils_meta_socialcard_cardinitial", "confidence_score": 1.0 }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L404", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_buildsocialcardsvg", + "target": "remix_app_api_utils_meta_socialcard_badgerenders", + "confidence_score": 0.5 + }, { "relation": "calls", "context": "call", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L60", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L437", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta_absolutemediaurl", - "target": "remix_app_utils_profilemediaurl_absolutethirdpartyprofilemediaurl", + "source": "remix_app_api_utils_meta_socialcard_buildsocialcardsvg", + "target": "remix_app_api_utils_meta_socialcard_clamptowidth", "confidence_score": 1.0 }, { "relation": "calls", "context": "call", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L142", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L402", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta_postmeta", - "target": "remix_app_api_utils_meta_socialmeta_absolutemediaurl", + "source": "remix_app_api_utils_meta_socialcard_buildsocialcardsvg", + "target": "remix_app_api_utils_meta_socialcard_wrap", "confidence_score": 1.0 }, { "relation": "calls", "context": "call", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L178", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L184", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta_profilemeta", - "target": "remix_app_api_utils_meta_socialmeta_absolutemediaurl", + "source": "remix_app_api_utils_meta_socialcard_wrap", + "target": "remix_app_api_utils_meta_socialpreview_cleansocialtext", "confidence_score": 1.0 }, { "relation": "calls", "context": "call", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L88", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L425", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta_buildtags", - "target": "remix_app_api_utils_meta_socialmeta_property", + "source": "remix_app_api_utils_meta_socialcard_buildsocialcardsvg", + "target": "remix_app_api_utils_meta_socialcard_plusmark", "confidence_score": 1.0 }, { "relation": "calls", "context": "call", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L87", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L293", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta_buildtags", - "target": "remix_app_api_utils_meta_socialmeta_named", + "source": "remix_app_api_utils_meta_socialcard_panelart", + "target": "remix_app_api_utils_meta_socialcard_plusmark", "confidence_score": 1.0 }, { "relation": "calls", "context": "call", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L123", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L249", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta_postmeta", - "target": "remix_app_api_utils_meta_socialmeta_buildtags", + "source": "remix_app_api_utils_meta_socialcard_imagetile", + "target": "remix_app_api_utils_meta_socialcard_colourtile", "confidence_score": 1.0 }, { "relation": "calls", "context": "call", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L166", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L360", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta_profilemeta", - "target": "remix_app_api_utils_meta_socialmeta_buildtags", + "source": "remix_app_api_utils_meta_socialcard_medialayout", + "target": "remix_app_api_utils_meta_socialcard_imagetile", "confidence_score": 1.0 }, { "relation": "calls", "context": "call", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L204", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L350", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta_resolvesocialmeta", - "target": "remix_app_api_utils_meta_socialmeta_buildtags", + "source": "remix_app_api_utils_meta_socialcard_medialayout", + "target": "remix_app_api_utils_meta_socialcard_panelart", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L339", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_medialayout", + "target": "remix_app_api_utils_meta_socialcard_panelcopy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L486", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_buildsocialcardsvg", + "target": "remix_app_api_utils_meta_socialcard_medialayout", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L733", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_rendersocialcardpng", + "target": "remix_app_api_utils_meta_socialcard_buildsocialcardsvg", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L521", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_socialcardrenderoptions", + "target": "remix_app_api_utils_meta_socialcard_socialcardfontfiles", "confidence_score": 1.0 }, { "relation": "calls", "context": "call", "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L734", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_rendersocialcardpng", + "target": "remix_app_api_utils_meta_socialcard_socialcardrenderoptions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L705", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_loadattachmentdatauri", + "target": "remix_app_api_utils_meta_socialcard_readbodywithin", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L600", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_avifextent", + "target": "remix_app_api_utils_meta_socialcard_readuint32be", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L677", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_socialcardimageextent", + "target": "remix_app_api_utils_meta_socialcard_readuint32be", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L636", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_jpegextent", + "target": "remix_app_api_utils_meta_socialcard_readuint16be", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L679", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_socialcardimageextent", + "target": "remix_app_api_utils_meta_socialcard_readuint16le", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L653", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_webpextent", + "target": "remix_app_api_utils_meta_socialcard_readuint16le", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L649", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_webpextent", + "target": "remix_app_api_utils_meta_socialcard_readuint24le", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L601", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_avifextent", + "target": "remix_app_api_utils_meta_socialcard_asciiat", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L676", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_socialcardimageextent", + "target": "remix_app_api_utils_meta_socialcard_asciiat", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L646", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_webpextent", + "target": "remix_app_api_utils_meta_socialcard_asciiat", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L607", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_avifextent", + "target": "remix_app_api_utils_meta_socialcard_larger", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L608", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_avifextent", + "target": "remix_app_api_utils_meta_socialcard_avif_container_boxes" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L685", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_socialcardimageextent", + "target": "remix_app_api_utils_meta_socialcard_avifextent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L681", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_socialcardimageextent", + "target": "remix_app_api_utils_meta_socialcard_jpegextent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L683", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_socialcardimageextent", + "target": "remix_app_api_utils_meta_socialcard_webpextent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCard.ts", + "source_location": "L707", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcard_loadattachmentdatauri", + "target": "remix_app_api_utils_meta_socialcard_socialcardimageextent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialCardFontData.ts", + "source_location": "L22", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialcardfontdata", + "target": "remix_app_api_utils_meta_socialcardfontdata_social_card_fonts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L138", + "source_location": "L46", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialmeta", + "target": "remix_app_api_utils_meta_socialmeta_buildsocialmetatags", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialMeta.ts", + "source_location": "L31", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta_postmeta", - "target": "remix_app_api_utils_meta_socialmeta_polloptionlabels", + "source": "remix_app_api_utils_meta_socialmeta", + "target": "remix_app_api_utils_meta_socialmeta_escapehtml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialMeta.ts", + "source_location": "L111", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialmeta", + "target": "remix_app_api_utils_meta_socialmeta_injectsocialmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialMeta.ts", + "source_location": "L35", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialmeta", + "target": "remix_app_api_utils_meta_socialmeta_named", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialMeta.ts", + "source_location": "L37", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialmeta", + "target": "remix_app_api_utils_meta_socialmeta_pagemeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialMeta.ts", + "source_location": "L34", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialmeta", + "target": "remix_app_api_utils_meta_socialmeta_property", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialMeta.ts", + "source_location": "L104", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialmeta", + "target": "remix_app_api_utils_meta_socialmeta_rendersocialmetahtml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialMeta.ts", + "source_location": "L77", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialmeta", + "target": "remix_app_api_utils_meta_socialmeta_resolvesocialmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialMeta.ts", + "source_location": "L19", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialmeta", + "target": "remix_app_api_utils_meta_socialmeta_socialmeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialMeta.ts", + "source_location": "L17", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialmeta", + "target": "remix_app_api_utils_meta_socialmeta_socialmetatag", "confidence_score": 1.0 }, { @@ -1242974,43 +1240762,98 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L114", + "source_location": "L15", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta_postmeta", - "target": "remix_app_api_utils_things_things", + "source": "remix_app_api_utils_meta_socialmeta", + "target": "remix_app_api_utils_meta_socialpreview", "confidence_score": 1.0 }, { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L116", + "source_location": "L15", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta_postmeta", - "target": "remix_app_api_utils_things_things_getthing" + "source": "remix_app_api_utils_meta_socialmeta", + "target": "remix_app_api_utils_meta_socialpreview_resolvesocialpreview", + "confidence_score": 1.0 }, { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L116", + "source_location": "L15", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta_postmeta", - "target": "remix_app_api_utils_things_things_viewerof" + "source": "remix_app_api_utils_meta_socialmeta", + "target": "remix_app_api_utils_meta_socialpreview_socialpreviewcardurl", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.test.ts", + "source_location": "L4", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_test", + "target": "remix_app_api_utils_meta_socialmeta", + "confidence_score": 1.0 }, { "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/things/rss.ts", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_api_utils_things_rss", + "target": "remix_app_api_utils_meta_socialmeta", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/server/routes/[...].ts", + "source_location": "L4", + "weight": 1.0, + "source": "remix_server_routes", + "target": "remix_app_api_utils_meta_socialmeta", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/things/rss.ts", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_api_utils_things_rss", + "target": "remix_app_api_utils_meta_socialmeta_escapehtml", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/things/rss.ts", + "source_location": "L46", + "weight": 1.0, + "source": "remix_app_api_utils_things_rss_xml", + "target": "remix_app_api_utils_meta_socialmeta_escapehtml", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L113", + "source_location": "L58", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta_postmeta", - "target": "remix_app_schemas_registry", + "source": "remix_app_api_utils_meta_socialmeta_buildsocialmetatags", + "target": "remix_app_api_utils_meta_socialmeta_property", "confidence_score": 1.0 }, { @@ -1243018,33 +1240861,66 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L142", + "source_location": "L57", "weight": 1.0, - "source": "remix_app_api_utils_meta_socialmeta_postmeta", - "target": "remix_app_utils_attachmentcontenturl_attachmentcontentpath", + "source": "remix_app_api_utils_meta_socialmeta_buildsocialmetatags", + "target": "remix_app_api_utils_meta_socialmeta_named", "confidence_score": 1.0 }, { "relation": "calls", "context": "call", "confidence": "EXTRACTED", + "confidence_score": 1.0, "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L196", + "source_location": "L55", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialmeta_buildsocialmetatags", + "target": "remix_app_api_utils_meta_socialpreview_socialpreviewcardurl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialMeta.ts", + "source_location": "L89", "weight": 1.0, "source": "remix_app_api_utils_meta_socialmeta_resolvesocialmeta", - "target": "remix_app_api_utils_meta_socialmeta_postmeta", + "target": "remix_app_api_utils_meta_socialmeta_buildsocialmetatags", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.test.ts", + "source_location": "L4", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_test", + "target": "remix_app_api_utils_meta_socialmeta_buildsocialmetatags", "confidence_score": 1.0 }, { "relation": "calls", "context": "call", "confidence": "EXTRACTED", + "confidence_score": 1.0, "source_file": "remix/app/api/utils/meta/socialMeta.ts", - "source_location": "L199", + "source_location": "L87", "weight": 1.0, "source": "remix_app_api_utils_meta_socialmeta_resolvesocialmeta", - "target": "remix_app_api_utils_meta_socialmeta_profilemeta", - "confidence_score": 1.0 + "target": "remix_app_api_utils_meta_socialpreview_resolvesocialpreview" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "remix/app/api/utils/meta/socialMeta.ts", + "source_location": "L93", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialmeta_resolvesocialmeta", + "target": "remix_app_api_utils_meta_socialpreview_socialpreviewcardurl" }, { "relation": "imports", @@ -1243079,6 +1240955,1164 @@ "target": "remix_app_api_utils_meta_socialmeta_injectsocialmeta", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.test.ts", + "source_location": "L5", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_test", + "target": "remix_app_api_utils_meta_socialpreview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.test.ts", + "source_location": "L5", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_test", + "target": "remix_app_api_utils_meta_socialpreview_normalisesocialmediakind", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.test.ts", + "source_location": "L5", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_test", + "target": "remix_app_api_utils_meta_socialpreview_normalisesocialpreviewpath", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.test.ts", + "source_location": "L5", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_test", + "target": "remix_app_api_utils_meta_socialpreview_socialmediavariant", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.test.ts", + "source_location": "L5", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_test", + "target": "remix_app_api_utils_meta_socialpreview_socialpreviewcardurl", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.test.ts", + "source_location": "L5", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_test", + "target": "remix_app_api_utils_meta_socialpreview_socialpreviewfrompublicpost", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.test.ts", + "source_location": "L5", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_test", + "target": "remix_app_api_utils_meta_socialpreview_staticsocialpreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L115", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview", + "target": "remix_app_api_utils_meta_socialpreview_cleanlist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L97", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview", + "target": "remix_app_api_utils_meta_socialpreview_cleansocialtext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L282", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview", + "target": "remix_app_api_utils_meta_socialpreview_formatprice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L360", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview", + "target": "remix_app_api_utils_meta_socialpreview_humanpostkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L118", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview", + "target": "remix_app_api_utils_meta_socialpreview_initialof", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L604", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview", + "target": "remix_app_api_utils_meta_socialpreview_mediapreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L385", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview", + "target": "remix_app_api_utils_meta_socialpreview_normalisesocialmediakind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L120", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview", + "target": "remix_app_api_utils_meta_socialpreview_normalisesocialpreviewpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L273", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview", + "target": "remix_app_api_utils_meta_socialpreview_polloptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L264", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview", + "target": "remix_app_api_utils_meta_socialpreview_postimages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L348", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview", + "target": "remix_app_api_utils_meta_socialpreview_postmediavariant", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L570", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview", + "target": "remix_app_api_utils_meta_socialpreview_postpreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L578", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview", + "target": "remix_app_api_utils_meta_socialpreview_profilepreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L555", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview", + "target": "remix_app_api_utils_meta_socialpreview_publicpostpreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L663", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview", + "target": "remix_app_api_utils_meta_socialpreview_resolvesocialpreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L390", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview", + "target": "remix_app_api_utils_meta_socialpreview_socialmediavariant", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L58", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview", + "target": "remix_app_api_utils_meta_socialpreview_socialpreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L128", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview", + "target": "remix_app_api_utils_meta_socialpreview_socialpreviewcardurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L434", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview", + "target": "remix_app_api_utils_meta_socialpreview_socialpreviewfrompublicpost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L53", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview", + "target": "remix_app_api_utils_meta_socialpreview_socialpreviewimage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L5", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview", + "target": "remix_app_api_utils_meta_socialpreview_socialpreviewkind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L30", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview", + "target": "remix_app_api_utils_meta_socialpreview_socialpreviewvariant", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L134", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview", + "target": "remix_app_api_utils_meta_socialpreview_staticsocialpreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L82", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview", + "target": "remix_app_api_utils_meta_socialpreview_staticvariantfor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L332", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview", + "target": "remix_app_api_utils_meta_socialpreview_structuredthingpreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L634", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview", + "target": "remix_app_api_utils_meta_socialpreview_thingpreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L105", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview", + "target": "remix_app_api_utils_meta_socialpreview_truncatesocialtext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L312", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview", + "target": "remix_app_api_utils_meta_socialpreview_webpageblockcount", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L293", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview", + "target": "remix_app_api_utils_meta_socialpreview_webpagecopy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L403", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview", + "target": "remix_app_api_utils_meta_socialpreview_webpagepreview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/server/routes/[...].ts", + "source_location": "L5", + "weight": 1.0, + "source": "remix_server_routes", + "target": "remix_app_api_utils_meta_socialpreview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L251", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_staticsocialpreview", + "target": "remix_app_api_utils_meta_socialpreview_staticvariantfor", + "confidence_score": 1.0 + }, + { + "relation": "indirect_call", + "context": "argument", + "confidence": "INFERRED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L116", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_cleanlist", + "target": "remix_app_api_utils_meta_socialpreview_cleansocialtext", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L284", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_formatprice", + "target": "remix_app_api_utils_meta_socialpreview_cleansocialtext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L611", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_mediapreview", + "target": "remix_app_api_utils_meta_socialpreview_cleansocialtext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L386", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_normalisesocialmediakind", + "target": "remix_app_api_utils_meta_socialpreview_cleansocialtext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L584", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_profilepreview", + "target": "remix_app_api_utils_meta_socialpreview_cleansocialtext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L566", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_publicpostpreview", + "target": "remix_app_api_utils_meta_socialpreview_cleansocialtext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L436", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_socialpreviewfrompublicpost", + "target": "remix_app_api_utils_meta_socialpreview_cleansocialtext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L334", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_structuredthingpreview", + "target": "remix_app_api_utils_meta_socialpreview_cleansocialtext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L645", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_thingpreview", + "target": "remix_app_api_utils_meta_socialpreview_cleansocialtext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L298", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_webpagecopy", + "target": "remix_app_api_utils_meta_socialpreview_cleansocialtext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L411", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_webpagepreview", + "target": "remix_app_api_utils_meta_socialpreview_cleansocialtext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L373", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_humanpostkind", + "target": "remix_app_api_utils_meta_socialpreview_truncatesocialtext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L620", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_mediapreview", + "target": "remix_app_api_utils_meta_socialpreview_truncatesocialtext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L591", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_profilepreview", + "target": "remix_app_api_utils_meta_socialpreview_truncatesocialtext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L130", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_socialpreviewcardurl", + "target": "remix_app_api_utils_meta_socialpreview_truncatesocialtext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L517", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_socialpreviewfrompublicpost", + "target": "remix_app_api_utils_meta_socialpreview_truncatesocialtext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L253", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_staticsocialpreview", + "target": "remix_app_api_utils_meta_socialpreview_truncatesocialtext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L651", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_thingpreview", + "target": "remix_app_api_utils_meta_socialpreview_truncatesocialtext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L420", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_webpagepreview", + "target": "remix_app_api_utils_meta_socialpreview_truncatesocialtext", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L511", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_socialpreviewfrompublicpost", + "target": "remix_app_api_utils_meta_socialpreview_cleanlist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L644", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_thingpreview", + "target": "remix_app_api_utils_meta_socialpreview_cleanlist", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L595", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_profilepreview", + "target": "remix_app_api_utils_meta_socialpreview_initialof", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L540", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_socialpreviewfrompublicpost", + "target": "remix_app_api_utils_meta_socialpreview_initialof", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L425", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_webpagepreview", + "target": "remix_app_api_utils_meta_socialpreview_initialof", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L664", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_resolvesocialpreview", + "target": "remix_app_api_utils_meta_socialpreview_normalisesocialpreviewpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L129", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_socialpreviewcardurl", + "target": "remix_app_api_utils_meta_socialpreview_normalisesocialpreviewpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L135", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_staticsocialpreview", + "target": "remix_app_api_utils_meta_socialpreview_normalisesocialpreviewpath", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/server/routes/[...].ts", + "source_location": "L5", + "weight": 1.0, + "source": "remix_server_routes", + "target": "remix_app_api_utils_meta_socialpreview_normalisesocialpreviewpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L605", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_mediapreview", + "target": "remix_app_api_utils_meta_socialpreview_staticsocialpreview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L571", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_postpreview", + "target": "remix_app_api_utils_meta_socialpreview_staticsocialpreview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L579", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_profilepreview", + "target": "remix_app_api_utils_meta_socialpreview_staticsocialpreview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L679", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_resolvesocialpreview", + "target": "remix_app_api_utils_meta_socialpreview_staticsocialpreview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L635", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_thingpreview", + "target": "remix_app_api_utils_meta_socialpreview_staticsocialpreview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L404", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_webpagepreview", + "target": "remix_app_api_utils_meta_socialpreview_staticsocialpreview", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/server/routes/[...].ts", + "source_location": "L5", + "weight": 1.0, + "source": "remix_server_routes", + "target": "remix_app_api_utils_meta_socialpreview_staticsocialpreview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L450", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_socialpreviewfrompublicpost", + "target": "remix_app_api_utils_meta_socialpreview_postimages", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L449", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_socialpreviewfrompublicpost", + "target": "remix_app_api_utils_meta_socialpreview_polloptions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L486", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_socialpreviewfrompublicpost", + "target": "remix_app_api_utils_meta_socialpreview_formatprice", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L412", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_webpagepreview", + "target": "remix_app_api_utils_meta_socialpreview_webpagecopy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L415", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_webpagepreview", + "target": "remix_app_api_utils_meta_socialpreview_webpageblockcount", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L446", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_socialpreviewfrompublicpost", + "target": "remix_app_api_utils_meta_socialpreview_structuredthingpreview" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L462", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_socialpreviewfrompublicpost", + "target": "remix_app_api_utils_meta_socialpreview_postmediavariant", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L502", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_socialpreviewfrompublicpost", + "target": "remix_app_api_utils_meta_socialpreview_humanpostkind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L612", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_mediapreview", + "target": "remix_app_api_utils_meta_socialpreview_normalisesocialmediakind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L391", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_socialmediavariant", + "target": "remix_app_api_utils_meta_socialpreview_normalisesocialmediakind", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L613", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_mediapreview", + "target": "remix_app_api_utils_meta_socialpreview_socialmediavariant", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L673", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_resolvesocialpreview", + "target": "remix_app_api_utils_meta_socialpreview_webpagepreview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L406", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_webpagepreview", + "target": "remix_app_api_utils_things_things", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L407", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_webpagepreview", + "target": "remix_app_api_utils_things_things_viewerof" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L405", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_webpagepreview", + "target": "remix_app_api_utils_webpages_webpages", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L407", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_webpagepreview", + "target": "remix_app_api_utils_webpages_webpages_resolvewebpage" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L564", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_publicpostpreview", + "target": "remix_app_api_utils_meta_socialpreview_socialpreviewfrompublicpost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L575", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_postpreview", + "target": "remix_app_api_utils_meta_socialpreview_publicpostpreview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L562", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_publicpostpreview", + "target": "remix_app_schemas_registry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L641", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_thingpreview", + "target": "remix_app_api_utils_meta_socialpreview_publicpostpreview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L572", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_postpreview", + "target": "remix_app_api_utils_things_things", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L573", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_postpreview", + "target": "remix_app_api_utils_things_things_getthing" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L573", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_postpreview", + "target": "remix_app_api_utils_things_things_viewerof" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L667", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_resolvesocialpreview", + "target": "remix_app_api_utils_meta_socialpreview_postpreview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L669", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_resolvesocialpreview", + "target": "remix_app_api_utils_meta_socialpreview_profilepreview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L606", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_mediapreview", + "target": "remix_app_api_utils_things_things", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L607", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_mediapreview", + "target": "remix_app_api_utils_things_things_getthing" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L607", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_mediapreview", + "target": "remix_app_api_utils_things_things_viewerof" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L671", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_resolvesocialpreview", + "target": "remix_app_api_utils_meta_socialpreview_mediapreview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L675", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_resolvesocialpreview", + "target": "remix_app_api_utils_meta_socialpreview_thingpreview", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L636", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_thingpreview", + "target": "remix_app_api_utils_things_things", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L637", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_thingpreview", + "target": "remix_app_api_utils_things_things_getthing" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "remix/app/api/utils/meta/socialPreview.ts", + "source_location": "L637", + "weight": 1.0, + "source": "remix_app_api_utils_meta_socialpreview_thingpreview", + "target": "remix_app_api_utils_things_things_viewerof" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/server/routes/[...].ts", + "source_location": "L5", + "weight": 1.0, + "source": "remix_server_routes", + "target": "remix_app_api_utils_meta_socialpreview_resolvesocialpreview", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1247757,7 +1246791,7 @@ "source_location": "L1", "weight": 1.0, "source": "remix_app_api_utils_migrations_relationshipkeys", - "target": "remix_app_routes_api_v1_health_mongodb_mongodb", + "target": "remix_app_api_utils_mongodb_mongodb", "confidence_score": 1.0 }, { @@ -1258283,17 +1257317,6 @@ "target": "remix_app_api_utils_mongodb_config", "confidence_score": 1.0 }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/nitro.config.ts", - "source_location": "L2", - "weight": 1.0, - "source": "remix_nitro_config", - "target": "remix_app_api_utils_mongodb_config", - "confidence_score": 1.0 - }, { "relation": "imports", "context": "import", @@ -1258790,7 +1257813,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "remix/server/routes/[...].ts", - "source_location": "L5", + "source_location": "L6", "weight": 1.0, "source": "remix_server_routes", "target": "remix_app_api_utils_mongodb_endpoint", @@ -1258999,7 +1258022,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "remix/server/routes/[...].ts", - "source_location": "L5", + "source_location": "L6", "weight": 1.0, "source": "remix_server_routes", "target": "remix_app_api_utils_mongodb_endpoint_getrequestmongoendpoint", @@ -1259098,7 +1258121,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "remix/server/routes/[...].ts", - "source_location": "L5", + "source_location": "L6", "weight": 1.0, "source": "remix_server_routes", "target": "remix_app_api_utils_mongodb_endpoint_runwithmongoendpoint", @@ -1260163,13 +1259186,14 @@ "confidence_score": 1.0 }, { - "relation": "contains", + "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "remix/app/api/utils/mongodb/mongodb.ts", - "source_location": "L1", + "source_location": "L2", "weight": 1.0, - "source": "remix_app_api_utils_mongodb_mongodb", - "target": "remix_app_api_utils_mongodb_mongodb_getmongodb", + "context": "import", + "source": "remix_app_api_utils_mongodb_mongodb_getmongodb", + "target": "remix_app_api_utils_mongodb_mongodb", "confidence_score": 1.0 }, { @@ -1260183,6 +1259207,17 @@ "target": "remix_app_api_utils_mongodb_mongodb", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/mongodb/querySafety.ts", + "source_location": "L270", + "weight": 1.0, + "source": "remix_app_api_utils_mongodb_querysafety_deserializeextendedjson", + "target": "remix_app_api_utils_mongodb_mongodb", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1260198,11 +1259233,77 @@ "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/mongodb/mongodb.ts", + "source_file": "remix/app/api/utils/mongodb/uniqueKeys.ts", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_api_utils_mongodb_uniquekeys", + "target": "remix_app_api_utils_mongodb_mongodb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/notifications/notifications.ts", "source_location": "L2", "weight": 1.0, - "source": "remix_app_api_utils_mongodb_mongodb_getmongodb", - "target": "remix_app_routes_api_v1_health_mongodb_mongodb", + "source": "remix_app_api_utils_notifications_notifications", + "target": "remix_app_api_utils_mongodb_mongodb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/notifications/pushDevices.ts", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_api_utils_notifications_pushdevices", + "target": "remix_app_api_utils_mongodb_mongodb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/themes/themes.ts", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_api_utils_themes_themes", + "target": "remix_app_api_utils_mongodb_mongodb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/things/things.ts", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_api_utils_things_things", + "target": "remix_app_api_utils_mongodb_mongodb", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/api/utils/users/social.ts", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_api_utils_users_social", + "target": "remix_app_api_utils_mongodb_mongodb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "remix/package.json", + "source_location": "L161", + "weight": 1.0, + "context": "import", + "source": "remix_package_dependencies_mongodb", + "target": "remix_app_api_utils_mongodb_mongodb", "confidence_score": 1.0 }, { @@ -1261766,17 +1260867,6 @@ "target": "remix_app_api_utils_mongodb_querysafety_validatepipelinestages", "confidence_score": 1.0 }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/mongodb/querySafety.ts", - "source_location": "L270", - "weight": 1.0, - "source": "remix_app_api_utils_mongodb_querysafety_deserializeextendedjson", - "target": "remix_app_routes_api_v1_health_mongodb_mongodb", - "confidence_score": 1.0 - }, { "relation": "calls", "context": "call", @@ -1262370,17 +1261460,6 @@ "target": "remix_app_api_utils_mongodb_uniquekeys_thinguniquekeysfilter", "confidence_score": 1.0 }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/mongodb/uniqueKeys.ts", - "source_location": "L1", - "weight": 1.0, - "source": "remix_app_api_utils_mongodb_uniquekeys", - "target": "remix_app_routes_api_v1_health_mongodb_mongodb", - "confidence_score": 1.0 - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1264730,17 +1263809,6 @@ "target": "remix_app_api_utils_notifications_notifications_notificationcursorfor", "confidence_score": 1.0 }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/notifications/notifications.ts", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_api_utils_notifications_notifications", - "target": "remix_app_routes_api_v1_health_mongodb_mongodb", - "confidence_score": 1.0 - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1265815,17 +1264883,6 @@ "target": "remix_app_api_utils_notifications_pushdevices_pushdeviceupsert", "confidence_score": 1.0 }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/notifications/pushDevices.ts", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_api_utils_notifications_pushdevices", - "target": "remix_app_routes_api_v1_health_mongodb_mongodb", - "confidence_score": 1.0 - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1294571,17 +1293628,6 @@ "source": "remix_app_routes_api_v1_subspaces_feed_feed_loader", "target": "remix_app_api_utils_subspaces_subspaces_subspacefeed" }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/themes/themes.ts", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_api_utils_themes_themes", - "target": "remix_app_routes_api_v1_health_mongodb_mongodb", - "confidence_score": 1.0 - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1301656,17 +1300702,6 @@ "target": "remix_app_api_utils_things_sensitivereveal_revealsensitivethingvalue", "confidence_score": 1.0 }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/things/things.ts", - "source_location": "L3", - "weight": 1.0, - "source": "remix_app_api_utils_things_things", - "target": "remix_app_routes_api_v1_health_mongodb_mongodb", - "confidence_score": 1.0 - }, { "relation": "imports", "context": "import", @@ -1312458,17 +1311493,6 @@ "target": "remix_app_api_utils_usergeneratejwt_usergeneratejwt", "confidence_score": 1.0 }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/app/api/utils/users/social.ts", - "source_location": "L2", - "weight": 1.0, - "source": "remix_app_api_utils_users_social", - "target": "remix_app_routes_api_v1_health_mongodb_mongodb", - "confidence_score": 1.0 - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1317703,6 +1316727,17 @@ "source": "remix_app_routes_api_v1_webpages_resolve_resolve_loader", "target": "remix_app_api_utils_webpages_webpages_resolvewebpage" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/API/Submit.tsx", + "source_location": "L4", + "weight": 1.0, + "source": "remix_app_components_api_submit", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1317922,6 +1316957,17 @@ "target": "remix_app_components_api_submit_submit", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/API/Test.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_api_test", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1317998,6 +1317044,17 @@ "target": "remix_app_components_api_test_testapi", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Account/AccountHints.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_account_accounthints", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1318192,6 +1317249,17 @@ "target": "remix_app_components_account_accounthints_accounthintrow", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Account/AccountSwitcher.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_account_accountswitcher", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1318497,6 +1317565,17 @@ "target": "remix_app_components_account_accountswitcher_accountswitcher", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Account/AutoLoginPopup.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_account_autologinpopup", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1319014,6 +1318093,17 @@ "target": "remix_app_components_account_ssohub_validorigin", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Account/useAccountSwitcher.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_account_useaccountswitcher", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1319198,6 +1318288,17 @@ "source": "remix_app_components_account_useaccountswitcher_useaccountswitcher", "target": "remix_app_hooks_usecurrentuser_usecurrentuser" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Actions/ActionBuilder.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_actions_actionbuilder", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1319519,6 +1318620,17 @@ "target": "remix_app_components_actions_actionbuilder_actionbuilder", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Actions/ActionChip.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_actions_actionchip", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1319657,6 +1318769,17 @@ "target": "remix_app_components_actions_actionchip_actionchip", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Actions/ActionDetailPage.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_actions_actiondetailpage", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1320091,6 +1319214,17 @@ "target": "remix_app_components_actions_actiondetailpage_actiondetailpage", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Actions/ActionRunConfirm.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_actions_actionrunconfirm", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1320286,6 +1319420,17 @@ "source": "remix_app_routes_thing_thingpage", "target": "remix_app_components_actions_actionrunconfirm_useactionrunconfirm" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Actions/ActionsPage.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_actions_actionspage", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1321227,6 +1320372,17 @@ "target": "remix_app_components_actions_usettactionclicks_test_unowned", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Actions/useTtActionClicks.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_actions_usettactionclicks", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1321649,6 +1320805,17 @@ "source": "remix_app_components_kinds_kindrenderers_componentkindrenderer", "target": "remix_app_components_actions_usettactionclicks_usettactionclicks" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Admin/AdminDashboard.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_admin_admindashboard", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1322593,6 +1321760,17 @@ "target": "remix_app_components_admin_admindashboard_admindashboard", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Admin/AdminPanel.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_admin_adminpanel", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1323031,6 +1322209,17 @@ "target": "remix_app_components_admin_adminpanel_adminpanel", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Admin/AdminRowQueryControls.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_admin_adminrowquerycontrols", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1323371,6 +1322560,17 @@ "source": "remix_app_components_admin_tiermanager_tiermanager", "target": "remix_app_components_admin_adminrowquerycontrols_useadminrowquery" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Admin/CIControl/CIControlDashboard.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_admin_cicontrol_cicontroldashboard", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1324250,6 +1323450,17 @@ "source": "remix_app_components_admin_cicontrol_cicontroldashboard_cicontroldashboard", "target": "remix_app_hooks_useapi_useapi" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Admin/CIControl/ClaudeCredentialWaterfall.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_admin_cicontrol_claudecredentialwaterfall", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1324899,6 +1324110,17 @@ "target": "remix_app_components_admin_cicontrol_types_ciworkflowkey", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Admin/IntegrationManager.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_admin_integrationmanager", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1325100,6 +1324322,17 @@ "source": "remix_app_components_admin_integrationmanager_integrationmanager", "target": "remix_app_hooks_useapi_useapi" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Admin/LinkManagerModal.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_admin_linkmanagermodal", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1325217,6 +1324450,17 @@ "source": "remix_app_components_admin_linkmanagermodal_linkmanagermodal", "target": "remix_app_hooks_useapi_useapi" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Admin/LopuAccountsAdmin.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_admin_lopuaccountsadmin", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1325798,6 +1325042,17 @@ "source": "remix_app_components_admin_lopuaccountsadmin_lopuaccountsadmin", "target": "remix_app_hooks_usecurrentuser_usecurrentuser" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Admin/LopuModelsEditor.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_admin_lopumodelseditor", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1326388,6 +1325643,17 @@ "source": "remix_app_components_admin_lopumodelseditor_lopumodelseditor", "target": "remix_app_hooks_useapi_useapi" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Admin/ModerationTab.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_admin_moderationtab", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1326526,6 +1325792,17 @@ "source": "remix_app_components_admin_moderationtab_moderationtab", "target": "remix_app_hooks_useapi_useapi" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Admin/PRConflictResolverModelWaterfallEditor.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_admin_prconflictresolvermodelwaterfalleditor", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1326781,6 +1326058,17 @@ "source": "remix_app_components_admin_prconflictresolvermodelwaterfalleditor_prconflictresolvermodelwaterfalleditor", "target": "remix_app_hooks_useapi_useapi" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Admin/SubscriptionEditorModal.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_admin_subscriptioneditormodal", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1326940,6 +1326228,17 @@ "source": "remix_app_components_admin_subscriptioneditormodal_subscriptioneditormodal", "target": "remix_app_hooks_useapi_useapi" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Admin/TierManager.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_admin_tiermanager", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1328639,6 +1327938,17 @@ "target": "remix_app_components_admin_adminstorageprojection_storagestatuspresentation", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Apps/AppStorageManagerPage.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_apps_appstoragemanagerpage", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1329026,6 +1328336,17 @@ "target": "remix_app_components_apps_appstoragemanagerpage_appstoragemanagerpage", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Apps/AppsDataPage.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_apps_appsdatapage", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1329363,6 +1328684,17 @@ "target": "remix_app_components_apps_appsdatapage_appsdatapage", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Apps/ConnectedAppsSection.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_apps_connectedappssection", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1329630,6 +1328962,17 @@ "target": "remix_app_components_apps_connectedappssection_connectedappssection", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Attachments/AttachmentAnnotatePopover.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_attachments_attachmentannotatepopover", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1329826,6 +1329169,17 @@ "target": "remix_app_components_attachments_attachmentannotatepopover_attachmentannotatepopover", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Attachments/AttachmentComposer.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_attachments_attachmentcomposer", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1330428,6 +1329782,17 @@ "target": "remix_app_components_attachments_attachmentcomposer_attachmentcomposer", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Attachments/AttachmentReorderGallery.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_attachments_attachmentreordergallery", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1330655,6 +1330020,17 @@ "source": "remix_app_components_attachments_attachmentreordergallery_attachmentreordergallery", "target": "remix_app_components_media_usemediareorder_usemediareorder" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Attachments/AudioAttachmentPlayer.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_attachments_audioattachmentplayer", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1330993,6 +1330369,17 @@ "target": "remix_app_components_attachments_audioattachmentplayer_audioattachmentplayer", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Attachments/MediaLayoutControls.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_attachments_medialayoutcontrols", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1331325,6 +1330712,17 @@ "target": "remix_app_components_attachments_medialayoutcontrols_medialayoutfinalpreview", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Attachments/MediaLightbox.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_attachments_medialightbox", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1331554,6 +1330952,17 @@ "target": "remix_app_components_attachments_medialightbox_medialightbox", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Attachments/PostAttachments.tsx", + "source_location": "L5", + "weight": 1.0, + "source": "remix_app_components_attachments_postattachments", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1331983,6 +1331392,17 @@ "target": "remix_app_components_attachments_postattachments_postattachments", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Attachments/ProgressiveImage.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_attachments_progressiveimage", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1334325,6 +1333745,17 @@ "target": "remix_app_components_attachments_audioplaybackcore_nextqueuedaudioindex", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Attachments/useAttachmentUploads.ts", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_attachments_useattachmentuploads", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1334536,6 +1333967,17 @@ "target": "remix_app_components_attachments_useattachmentuploads_useattachmentuploads", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Branding/BrandAssetSection.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_branding_brandassetsection", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1334822,6 +1334264,17 @@ "target": "remix_app_components_branding_brandassetsection_brandassetsection", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Branding/BrandPressKit.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_branding_brandpresskit", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1334885,6 +1334338,17 @@ "target": "remix_app_components_branding_brandpresskit_brandpresskit", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Branding/Branding.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_branding_branding", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1334950,6 +1334414,17 @@ "target": "remix_app_components_branding_branding_branding", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Branding/Logo.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_branding_logo", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1335059,6 +1334534,17 @@ "target": "remix_app_components_branding_logo_logo", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Branding/LogoOld2.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_branding_logoold2", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1335069,6 +1334555,17 @@ "target": "remix_app_components_branding_logoold2_logoold2", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Branding/LogoOld3.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_branding_logoold3", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1335804,6 +1335301,17 @@ "target": "remix_app_components_branding_logomatrix_buildlogosvg", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Builder/BlockContextMenu.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_builder_blockcontextmenu", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1335944,6 +1335452,17 @@ "target": "remix_app_components_builder_blockcontextmenu_blockcontextmenu", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Builder/BlockInsertMenu.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_builder_blockinsertmenu", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1336160,6 +1335679,17 @@ "target": "remix_app_components_builder_blockinsertmenu_blockinsertmenu", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Builder/BuilderDrawer.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_builder_builderdrawer", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1336880,6 +1336410,17 @@ "target": "remix_app_components_builder_builderdrawer_builderdrawer", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Builder/BuilderPage.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_builder_builderpage", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1337283,6 +1336824,17 @@ "source": "remix_app_components_builder_builderpage_buildercanvas", "target": "remix_app_components_kinds_safeurl_issafecsstext" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Builder/DemoDetailPage.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_builder_demodetailpage", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1338171,6 +1337723,17 @@ "target": "remix_app_components_builder_demodetailpage_demodetailpage", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Builder/DemoLibraryPage.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_builder_demolibrarypage", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1339073,6 +1338636,17 @@ "source": "remix_app_components_builder_demolibrarypage_demolibrarypage", "target": "remix_app_schemas_webpagedemos_webpagedemoshareid" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Builder/FigmaControls.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_builder_figmacontrols", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1339315,6 +1338889,17 @@ "source": "remix_app_components_builder_figmacontrols_shadowcontrol", "target": "remix_app_components_builder_figmacontrolvalues_parseshadow" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Builder/InlineRichTextEditor.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_builder_inlinerichtexteditor", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1339500,6 +1339085,17 @@ "target": "remix_app_components_builder_inlinerichtexteditor_inlinerichtexteditor", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Builder/RichTextModal.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_builder_richtextmodal", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1339795,6 +1339391,17 @@ "target": "remix_app_components_builder_richtextmodal_richtextmodal", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Builder/SiteBlocksHost.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_builder_siteblockshost", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1340398,6 +1340005,17 @@ "target": "remix_app_components_builder_webpageblocksrenderer", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Builder/WebpageBlocksRenderer.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_builder_webpageblocksrenderer", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1343487,6 +1343105,17 @@ "source": "remix_app_routes_p_publicwebpage", "target": "remix_app_components_builder_installsuite_suitekeyofpage" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Builder/liveComponent.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_builder_livecomponent", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1343965,6 +1343594,17 @@ "target": "remix_app_components_builder_livecomponent_livetemplate", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Builder/nativeSections.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_builder_nativesections", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1344195,6 +1343835,17 @@ "target": "remix_app_components_editor_editorjsvalue_editor_js_heading_font_sizes", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Builder/useBuilderChrome.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_builder_usebuilderchrome", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1344554,6 +1344205,17 @@ "source": "remix_app_components_builder_usewebpage_test_withfetch", "target": "remix_app_components_profile_themetryoncore_test_run" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Builder/useWebpage.ts", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_builder_usewebpage", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1346009,6 +1345671,17 @@ "source": "remix_app_components_builder_webpageruntime_test_withfakestorage", "target": "remix_app_components_profile_themetryoncore_test_run" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Builder/webpageRuntime.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_builder_webpageruntime", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1346281,6 +1345954,17 @@ "target": "remix_app_components_builder_webpageruntime_sourcecachekey", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Buttons/Attention.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_buttons_attention", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1346324,6 +1346008,17 @@ "target": "remix_app_components_buttons_attention_attention", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Buttons/Hamburger.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_buttons_hamburger", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1346367,6 +1346062,17 @@ "target": "remix_app_components_buttons_hamburger_hamburger", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Commander/CommanderV1Deprecated.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_commander_commanderv1deprecated", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1346607,6 +1346313,17 @@ "target": "remix_app_components_commander_commanderv1deprecated_commanderv1", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Commander/CommanderV2.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_commander_commanderv2", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1347200,6 +1346917,17 @@ "target": "remix_app_components_commander_commanderclickaway_shouldclosecommanderfortarget", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Commander/commanderClickAway.ts", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_commander_commanderclickaway", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1347672,6 +1347400,17 @@ "target": "remix_app_components_commander_commandershortcut_targetownscommanderchord", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/ComponentsLibrary/ComponentDetailPage.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_componentslibrary_componentdetailpage", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1348784,6 +1348523,17 @@ "target": "remix_app_components_componentslibrary_componentdetailpage_componentdetailpage", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/ComponentsLibrary/ComponentsBrowsePage.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_componentslibrary_componentsbrowsepage", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1350857,6 +1350607,17 @@ "target": "remix_app_components_componentslibrary_componenttemplate_defaultsfromargs", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/DevKit/DevKit.tsx", + "source_location": "L4", + "weight": 1.0, + "source": "remix_app_components_devkit_devkit", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1351489,6 +1351250,17 @@ "target": "remix_app_components_devkit_devkit_devkit", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Devices/DeviceApplications.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_devices_deviceapplications", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1351652,6 +1351424,17 @@ "target": "remix_app_components_devices_deviceapplications_deviceapplications", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Devices/DeviceApprovalCard.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_devices_deviceapprovalcard", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1351823,6 +1351606,17 @@ "target": "remix_app_components_devices_deviceapprovalcard_deviceapprovalcard", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Devices/DeviceAudioControls.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_devices_deviceaudiocontrols", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1352025,6 +1351819,17 @@ "target": "remix_app_components_devices_deviceaudiocontrols_deviceaudiocontrols", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Devices/DeviceCard.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_devices_devicecard", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1352487,6 +1352292,17 @@ "target": "remix_app_components_devices_devicecard_devicecard", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Devices/DeviceCommandTimeline.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_devices_devicecommandtimeline", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1352667,6 +1352483,17 @@ "target": "remix_app_components_devices_devicecommandtimeline_devicecommandtimeline", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Devices/DeviceConnectors.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_devices_deviceconnectors", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1352807,6 +1352634,17 @@ "target": "remix_app_components_devices_deviceconnectors_deviceconnectors", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Devices/DeviceDetailsDrawer.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_devices_devicedetailsdrawer", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1353250,6 +1353088,17 @@ "target": "remix_app_components_devices_devicedetailsdrawer_devicedetailsdrawer", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Devices/DeviceListRow.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_devices_devicelistrow", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1353336,6 +1353185,17 @@ "target": "remix_app_components_devices_devicelistrow_devicelistrow", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Devices/DeviceNetworkControls.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_devices_devicenetworkcontrols", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1353432,6 +1353292,17 @@ "target": "remix_app_components_devices_devicetypes_devicewifistate", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Devices/DevicePowerControls.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_devices_devicepowercontrols", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1353507,6 +1353378,17 @@ "target": "remix_app_components_nav_drawer_usedrawer", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Devices/DeviceStateGrid.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_devices_devicestategrid", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1354011,6 +1353893,17 @@ "target": "remix_app_components_devices_devicestategrid_devicepolicymenuitem", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Devices/DeviceSystemControls.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_devices_devicesystemcontrols", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1354203,6 +1354096,17 @@ "target": "remix_app_components_devices_localnodesetupcard", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Devices/LocalNodeSetupCard.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_devices_localnodesetupcard", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1354345,6 +1354249,17 @@ "target": "remix_app_components_devices_localnodesetupcard_localnodesetupcard", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Devices/PermissionRecoveryControls.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_devices_permissionrecoverycontrols", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1354454,6 +1354369,17 @@ "target": "remix_app_components_devices_screensessionpanel", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Devices/ScreenSessionPanel.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_devices_screensessionpanel", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1354547,6 +1354473,17 @@ "target": "remix_app_components_devices_screensessionpanel_screenvideocontract", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Devices/WatchDeviceDetails.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_devices_watchdevicedetails", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1358372,6 +1358309,17 @@ "target": "remix_app_components_devices_localnodepresentation_localnodeactionisbusy", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Devices/useDeviceApi.ts", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_devices_usedeviceapi", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1358880,6 +1358828,17 @@ "source": "remix_app_components_messenger_useagentsession_useagentsession", "target": "remix_app_components_devices_usedeviceapi_usedeviceapi" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Devices/useDeviceStore.ts", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_devices_usedevicestore", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1359635,6 +1359594,17 @@ "source": "remix_app_components_things_thingspage_thingspage", "target": "remix_app_components_devices_usedevicestore_usedevicestore" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Devices/useLocalThingtimeNode.ts", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_devices_uselocalthingtimenode", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1359890,6 +1359860,17 @@ "source": "remix_app_components_things_thingspage_thingspage", "target": "remix_app_components_devices_uselocalthingtimenode_uselocalthingtimenode" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/EasterEggs/EasterEggs.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_eastereggs_eastereggs", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1360043,6 +1360024,17 @@ "target": "remix_app_components_eastereggs_eastereggs_eastereggs", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Editor/Editor.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_editor_editor", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1360053,6 +1360045,17 @@ "target": "remix_app_components_editor_editor_editor", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Editor/EditorHistoryControls.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_editor_editorhistorycontrols", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1360503,6 +1360506,17 @@ "source": "remix_app_components_editor_inlinestyle_inlinestyle_surround", "target": "remix_app_components_editor_styletokens_inlinestyletotokens" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Editor/LongTextEditor.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_editor_longtexteditor", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1366624,6 +1366638,17 @@ "target": "remix_app_components_editor_styletokens_tokenstoinlinestyle", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Editor/styleTokens.ts", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_editor_styletokens", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1366957,6 +1366982,17 @@ "target": "remix_app_components_editor_styletokens_tokenstoinlinestyle", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Electron/ElectronBridgeHost.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_electron_electronbridgehost", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1367077,6 +1367113,17 @@ "target": "remix_app_components_electron_electronbridgehost_electronbridgehost", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Emoji/EmojiPicker.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_emoji_emojipicker", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1367340,6 +1367387,17 @@ "target": "remix_app_components_emoji_emojidata_searchemojis", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Emoji/useRecentReactions.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_emoji_userecentreactions", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1367642,6 +1367700,17 @@ "target": "remix_app_components_emoji_userecentreactions_userecentreactions", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Explore/ExplorePage.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_explore_explorepage", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1368119,6 +1368188,17 @@ "target": "remix_app_components_explore_explorepage_explorepage", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Feed/AdvancedFilters.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_feed_advancedfilters", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1368593,6 +1368673,17 @@ "target": "remix_app_components_feed_advancedfilters_advancedfilters", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Feed/AlgorithmMenu.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_feed_algorithmmenu", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1368864,6 +1368955,17 @@ "target": "remix_app_components_feed_algorithmmenu_algorithmmenu", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Feed/CustomAudienceModal.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_feed_customaudiencemodal", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1369128,6 +1369230,17 @@ "target": "remix_app_components_feed_customaudiencemodal_customaudiencemodal", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Feed/Feed.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_feed_feed", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1369631,6 +1369744,17 @@ "target": "remix_app_components_feed_feed_feedpage", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Feed/FeedFilters.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_feed_feedfilters", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1369802,6 +1369926,17 @@ "source": "remix_app_components_feed_feedfilters_feedfilters", "target": "remix_app_hooks_usecurrentuser_usecurrentuser" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Feed/FeedShortcutsHelp.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_feed_feedshortcutshelp", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1369874,6 +1370009,17 @@ "target": "remix_app_components_feed_feedshortcutshelp_feedshortcutshelp", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Feed/MemoriesCard.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_feed_memoriescard", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1370140,6 +1370286,17 @@ "source": "remix_app_components_feed_memoriescard_memoriescard", "target": "remix_app_hooks_usecurrentuser_usecurrentuser" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Feed/MentionAutocomplete.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_feed_mentionautocomplete", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1370322,6 +1370479,17 @@ "target": "remix_app_components_feed_mentionautocomplete_mentionautocomplete", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Feed/PostCard.tsx", + "source_location": "L29", + "weight": 1.0, + "source": "remix_app_components_feed_postcard", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1372086,6 +1372254,17 @@ "target": "remix_app_components_feed_postcard_postcard", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Feed/PostComposer.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_feed_postcomposer", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1372691,6 +1372870,17 @@ "target": "remix_app_components_feed_postcomposer_postcomposer", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Feed/PostList.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_feed_postlist", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1372896,6 +1373086,17 @@ "target": "remix_app_components_feed_postlist_postlist", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Feed/ReactionControl.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_feed_reactioncontrol", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1372938,6 +1373139,17 @@ "target": "remix_app_components_feed_reactioncontrol_reactioncontrol", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Feed/UpdownControl.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_feed_updowncontrol", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1375692,6 +1375904,17 @@ "target": "remix_app_components_feed_threadcache_fetchthreadinto", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Feed/useFeedEngagement.ts", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_feed_usefeedengagement", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1375788,6 +1376011,17 @@ "source": "remix_app_components_feed_usefeedengagement_usefeedengagement", "target": "remix_app_hooks_useapi_useapi" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Feed/useViewTracking.ts", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_feed_useviewtracking", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1375917,6 +1376151,17 @@ "source": "remix_app_routes_thing_thingpage", "target": "remix_app_components_feed_useviewtracking_useviewtracking" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Icon/Icon.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_icon_icon", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1376279,6 +1376524,17 @@ "target": "remix_app_components_icon_icon_icon", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Kinds/ChakraThingRenderer.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_kinds_chakrathingrenderer", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1376814,6 +1377070,17 @@ "target": "remix_app_components_kinds_htmlthingrenderer_allowed_props", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Kinds/HtmlThingRenderer.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_kinds_htmlthingrenderer", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1377484,6 +1377751,17 @@ "target": "remix_app_components_kinds_index", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Kinds/kindPrimitives.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_kinds_kindprimitives", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1378926,6 +1379204,17 @@ "source": "remix_app_components_kinds_kindrenderersplanning_ticketrenderer", "target": "remix_app_components_kinds_kindprimitives_formatdatetime" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Kinds/kindRegistry.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_kinds_kindregistry", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1379747,6 +1380036,17 @@ "target": "remix_app_components_kinds_kindregistry_renderthing", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Kinds/kindRenderers.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_kinds_kindrenderers", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1380339,6 +1380639,17 @@ "target": "remix_app_components_kinds_kindrenderers_actionkindrenderer", "confidence_score": 0.5 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Kinds/kindRenderersCommerce.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_kinds_kindrendererscommerce", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1380659,6 +1380970,17 @@ "target": "remix_app_components_kinds_kindrendererscommerce_menurenderer", "confidence_score": 0.5 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Kinds/kindRenderersKnowledge.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_kinds_kindrenderersknowledge", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1380989,6 +1381311,17 @@ "target": "remix_app_components_kinds_kindrenderersknowledge_plantrenderer", "confidence_score": 0.5 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Kinds/kindRenderersMedia.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_kinds_kindrenderersmedia", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1381764,6 +1382097,17 @@ "target": "remix_app_components_kinds_kindrenderersmedia_richtextrenderer", "confidence_score": 0.5 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Kinds/kindRenderersPlanning.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_kinds_kindrenderersplanning", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1382105,6 +1382449,17 @@ "target": "remix_app_components_kinds_kindrenderersplanning_flightrenderer", "confidence_score": 0.5 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Kinds/kindRenderersSocial.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_kinds_kindrendererssocial", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1382553,6 +1382908,17 @@ "target": "remix_app_components_kinds_samplekindthings_samplekindthings", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Landing/BrutalButton.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_landing_brutalbutton", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1382617,6 +1382983,17 @@ "target": "remix_app_components_landing_brutalbutton_brutalbutton", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Landing/ConfettiCanvas.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_landing_confetticanvas", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1382842,6 +1383219,17 @@ "target": "remix_app_components_landing_confetti_burstatevent", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Landing/landingSections.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_landing_landingsections", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1383299,6 +1383687,17 @@ "target": "remix_app_components_landing_landingsections_landing_sections", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Layout/Main.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_layout_main", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1383494,6 +1383893,17 @@ "target": "remix_app_components_layout_main_main", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Layout/PageShell.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_layout_pageshell", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1383986,6 +1384396,17 @@ "target": "remix_app_components_layout_pageshell_pageheader", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Layout/TopSpacing.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_layout_topspacing", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1384018,6 +1384439,17 @@ "target": "remix_app_components_layout_topspacing_topspacing", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Login/Login.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_login_login", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1384379,6 +1384811,17 @@ "target": "remix_app_components_login_login_login", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Login/Register.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_login_register", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1384597,6 +1385040,17 @@ "target": "remix_app_components_login_register_register", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Lopu/LopuActivityBadge.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_lopu_lopuactivitybadge", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1385053,6 +1385507,17 @@ "target": "remix_app_components_lopu_lopuactivitybadge_lopuactivitybadge", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Lopu/LopuBalanceChip.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_lopu_lopubalancechip", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1385312,6 +1385777,17 @@ "target": "remix_app_components_lopu_lopubalancechip_lopubalancechip", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Lopu/LopuChatView.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_lopu_lopuchatview", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1386085,6 +1386561,17 @@ "target": "remix_app_components_lopu_lopuchatview_lopuchatview", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Lopu/LopuComposer.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_lopu_lopucomposer", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1386354,6 +1386841,17 @@ "source": "remix_app_components_lopu_lopucomposer_lopucomposer", "target": "remix_app_components_nav_drawer_usedrawer_useismobileviewport" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Lopu/LopuCreditsPanel.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_lopu_lopucreditspanel", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1386849,6 +1387347,17 @@ "target": "remix_app_components_lopu_lopucreditspanel_lopucreditssummary", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Lopu/LopuHost.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_lopu_lopuhost", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1387828,6 +1388337,17 @@ "target": "remix_app_components_lopu_lopuhost_lopuhost", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Lopu/LopuLivePreview.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_lopu_lopulivepreview", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1388199,6 +1388719,17 @@ "source": "remix_app_components_lopu_lopulivepreview_lopulivepreview", "target": "remix_app_components_lopu_loputurncore_live_preview_tools" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Lopu/LopuLockedState.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_lopu_lopulockedstate", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1388284,6 +1388815,17 @@ "target": "remix_app_components_lopu_uselopuaccount_lopulockreason", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Lopu/LopuMarkdown.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_lopu_lopumarkdown", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1388486,6 +1389028,17 @@ "source": "remix_app_components_lopu_lopumarkdown_codeblock", "target": "remix_app_components_lopu_loputurncore_describelopucodeblock" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Lopu/LopuModelPicker.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_lopu_lopumodelpicker", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1389024,6 +1389577,17 @@ "target": "remix_app_components_lopu_lopunavbutton_test_read", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Lopu/LopuNavButton.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_lopu_lopunavbutton", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1389133,6 +1389697,17 @@ "target": "remix_app_components_lopu_lopunavbutton_lopunavbutton", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Lopu/LopuPage.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_lopu_lopupage", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1389617,6 +1390192,17 @@ "target": "remix_app_components_lopu_lopupage_lopupage", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Lopu/LopuPositionSelect.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_lopu_lopupositionselect", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1389781,6 +1390367,17 @@ "target": "remix_app_components_lopu_lopupositionselect_lopupositionselect", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Lopu/LopuToolCard.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_lopu_loputoolcard", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1390156,6 +1390753,17 @@ "source": "remix_app_components_lopu_loputoolcard_loputoolcallrow", "target": "remix_app_components_lopu_loputurncore_toolrowsummary" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Lopu/LopuVoiceChat.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_lopu_lopuvoicechat", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1390188,6 +1390796,17 @@ "target": "remix_app_components_lopu_lopuvoicechat_lopuvoicechat", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Lopu/LopuVoiceControls.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_lopu_lopuvoicecontrols", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1399942,6 +1400561,17 @@ "target": "remix_app_components_lopu_notificationhistory_client_savelopuhistory", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Lopu/useLopu.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_lopu_uselopu", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1402500,6 +1403130,17 @@ "target": "remix_app_components_lopu_uselopuaccount_test_viewer", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Lopu/useLopuAccount.ts", + "source_location": "L19", + "weight": 1.0, + "source": "remix_app_components_lopu_uselopuaccount", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1404010,6 +1404651,17 @@ "source": "remix_app_components_lopu_uselopuchat_uselopuchat", "target": "remix_app_components_lopu_uselopuaccount_uselopuaccount" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Lopu/useLopuChat.ts", + "source_location": "L10", + "weight": 1.0, + "source": "remix_app_components_lopu_uselopuchat", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1404308,6 +1404960,17 @@ "source": "remix_app_components_lopu_uselopuchat_uselopuchat", "target": "remix_app_hooks_usecurrentuser_usecurrentuser" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Lopu/useLopuPosition.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_lopu_uselopuposition", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1404687,6 +1405350,17 @@ "target": "remix_app_components_lopu_uselopusettings_writelopuwindowgeometry", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Lopu/useLopuSettings.ts", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_lopu_uselopusettings", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1405814,6 +1406488,17 @@ "source": "remix_app_components_lopu_uselopusettings_uselopumodelcatalog", "target": "remix_app_hooks_useapi_useapi" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/MagicInput/MagicInput.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_magicinput_magicinput", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1405900,6 +1406585,17 @@ "target": "remix_app_components_magicinput_magicinput_magicinput", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Media/LinkedImageGallery.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_media_linkedimagegallery", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1406041,6 +1406737,17 @@ "target": "remix_app_components_media_mediagallerycore_linkedimageitemerror", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Media/MediaGallery.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_media_mediagallery", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1406367,6 +1407074,17 @@ "target": "remix_app_components_media_mediagallerycore_canonicallinkedimageurls", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Media/useMediaReorder.ts", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_media_usemediareorder", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1406437,6 +1407155,17 @@ "target": "remix_app_components_media_usemediareorder_usemediareorder", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Messenger/AgentComposerControls.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_messenger_agentcomposercontrols", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1406555,6 +1407284,17 @@ "target": "remix_app_components_messenger_agentcomposercontrols_agentcomposercontrols", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Messenger/AgentLiveActivity.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_messenger_agentliveactivity", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1406609,6 +1407349,17 @@ "target": "remix_app_components_messenger_agentliveactivity_agentliveactivity", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Messenger/AiConnectionsModal.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_messenger_aiconnectionsmodal", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1406849,6 +1407600,17 @@ "target": "remix_app_components_messenger_aiconnectionsmodal_aiconnectionsmodal", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Messenger/ChatDetailsDrawer.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_messenger_chatdetailsdrawer", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1407046,6 +1407808,17 @@ "target": "remix_app_components_messenger_chatdetailsdrawer_chatdetailsdrawer", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Messenger/ChatView.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_messenger_chatview", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1407559,6 +1408332,17 @@ "target": "remix_app_components_messenger_chatview_chatview", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Messenger/Composer.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_messenger_composer", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1407752,6 +1408536,17 @@ "source": "remix_app_components_messenger_composer_composer", "target": "remix_app_utils_useridentity_getuserdisplayname" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Messenger/CustomEmojiImage.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_messenger_customemojiimage", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1407838,6 +1408633,17 @@ "source": "remix_app_components_messenger_messagerow_messagerow", "target": "remix_app_components_messenger_customemojiimage_rendertextwithemojis" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Messenger/EmojiUploadModal.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_messenger_emojiuploadmodal", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1407957,6 +1408763,17 @@ "source": "remix_app_components_messenger_emojiuploadmodal_emojiuploadmodal", "target": "remix_app_hooks_usecurrentuser_usecurrentuser" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Messenger/InboxSidebar.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_messenger_inboxsidebar", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1408152,6 +1408969,17 @@ "target": "remix_app_components_messenger_inboxsidebar_inboxsidebar", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Messenger/MessageList.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_messenger_messagelist", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1408260,6 +1409088,17 @@ "target": "remix_app_components_messenger_messengertypes_messengermode", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Messenger/MessageRow.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_messenger_messagerow", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1408565,6 +1409404,17 @@ "source": "remix_app_components_messenger_messagerow_messagerow", "target": "remix_app_utils_useridentity_getuserdisplayname" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Messenger/MessengerEmojiPicker.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_messenger_messengeremojipicker", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1408684,6 +1409534,17 @@ "source": "remix_app_components_messenger_messengeremojipicker_messengeremojipicker", "target": "remix_app_hooks_usecurrentuser_usecurrentuser" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Messenger/MessengerModals.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_messenger_messengermodals", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1409102,6 +1409963,17 @@ "target": "remix_app_components_messenger_messengermodals_browsechannelsmodal", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Messenger/MessengerNotifications.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_messenger_messengernotifications", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1409287,6 +1410159,17 @@ "target": "remix_app_components_messenger_messengernotifications_messengerunreadbadge", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Messenger/MessengerPage.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_messenger_messengerpage", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1409660,6 +1410543,17 @@ "target": "remix_app_components_messenger_messengerpage_messengerpage", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Messenger/RequestsView.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_messenger_requestsview", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1409725,6 +1410619,17 @@ "target": "remix_app_components_messenger_usemessengerapi_messengerapi", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Messenger/SlackSidebar.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_messenger_slacksidebar", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1412215,6 +1413120,17 @@ "target": "remix_app_components_messenger_useagentsession_test_source", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Messenger/useAgentSession.ts", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_messenger_useagentsession", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1412287,6 +1413203,17 @@ "target": "remix_app_components_messenger_useagentsession_record", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Messenger/useMessengerApi.ts", + "source_location": "L4", + "weight": 1.0, + "source": "remix_app_components_messenger_usemessengerapi", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1412370,6 +1413297,17 @@ "source": "remix_app_components_messenger_usemessengerapi_usemessengerapi", "target": "remix_app_hooks_useasyncfetcher_useasyncfetcher" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/MongoDB/BsonValueEditor.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_mongodb_bsonvalueeditor", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1412563,6 +1413501,17 @@ "target": "remix_app_components_mongodb_bsonvalueeditor_bsonvalueeditor", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/MongoDB/FilterBuilder.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_mongodb_filterbuilder", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1412743,6 +1413692,17 @@ "target": "remix_app_components_mongodb_mongoendpointconfig", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/MongoDB/MongoEndpointConfig.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_mongodb_mongoendpointconfig", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1412984,6 +1413944,17 @@ "source": "remix_app_components_mongodb_mongoendpointconfig_mongoendpointconfig", "target": "remix_app_hooks_usecurrentuser_usecurrentuser" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/MongoDB/MongoStatus.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_mongodb_mongostatus", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1413102,6 +1414073,17 @@ "target": "remix_app_components_mongodb_mongostatus_mongostatus", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/MongoDB/PipelineBuilder.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_mongodb_pipelinebuilder", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1413198,6 +1414180,17 @@ "target": "remix_app_components_mongodb_pipelinebuilder_pipelinebuilder", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/MongoDB/Raw.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_mongodb_raw", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1413476,6 +1414469,17 @@ "target": "remix_app_components_mongodb_raw_raw", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/MongoDB/RawResults.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_mongodb_rawresults", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1413550,6 +1414554,17 @@ "target": "remix_app_components_mongodb_resultexport_tabulatemongoresults", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/MongoDB/mongodbStatusSections.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_mongodb_mongodbstatussections", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1414467,6 +1415482,17 @@ "target": "remix_app_components_mongodb_resultexport_tabulatemongoresults", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/NativeBridge/NativeBridgeHost.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_nativebridge_nativebridgehost", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1414532,6 +1415558,17 @@ "target": "remix_app_components_nativebridge_nativebridgehost_nativebridgehost", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Nav/Drawer/DesktopNodeControls.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_nav_drawer_desktopnodecontrols", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1414608,6 +1415645,17 @@ "target": "remix_app_components_nav_drawer_desktopnodecontrols_desktopnodecontrols", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Nav/Drawer/DrawerContent.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_nav_drawer_drawercontent", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1415001,6 +1416049,17 @@ "target": "remix_app_components_nav_drawer_drawercontent_drawercontent", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Nav/Drawer/DrawerSystem.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_nav_drawer_drawersystem", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1415219,6 +1416278,17 @@ "target": "remix_app_components_nav_drawer_drawersystem_drawersystem", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Nav/Drawer/DrawerTrigger.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_nav_drawer_drawertrigger", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1415284,6 +1416354,17 @@ "source": "remix_app_components_nav_drawer_drawertrigger_drawertrigger", "target": "remix_app_components_nav_drawer_usedrawer_useismobileviewport" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Nav/Drawer/EditorDrawerSection.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_nav_drawer_editordrawersection", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1415520,6 +1416601,17 @@ "source": "remix_app_components_nav_drawer_editordrawersection_editordrawersection", "target": "remix_app_components_thingtime_usethingtime_usethingtime" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Nav/Drawer/ElectronUpdateManager.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_nav_drawer_electronupdatemanager", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1415648,6 +1416740,17 @@ "target": "remix_app_components_nav_drawer_electronupdatemanager_electronupdatemanager", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Nav/Drawer/NavDrawer.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_nav_drawer_navdrawer", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1415745,6 +1416848,17 @@ "source": "remix_app_components_nav_drawer_navdrawer_navdrawer", "target": "remix_app_components_nav_drawer_usedrawer_usedrawer" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Nav/Drawer/ReorderableList.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_nav_drawer_reorderablelist", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1415795,6 +1416909,17 @@ "target": "remix_app_components_nav_drawer_reorderablelist_reorderablelistprops", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Nav/Drawer/UserSettingsModal.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_nav_drawer_usersettingsmodal", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1416554,6 +1417679,17 @@ "source": "remix_app_routes_docs_design_system_entries_navigationstories_drawerpanelstory", "target": "remix_app_components_nav_drawer_drawermenu_builddrawersubsections" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Nav/Drawer/useDrawer.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_nav_drawer_usedrawer", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1416971,6 +1418107,17 @@ "source": "remix_app_components_settings_settingspage_settingspage", "target": "remix_app_components_nav_drawer_usedrawer_usedrawer" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Nav/Footer.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_nav_footer", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1417146,6 +1418293,17 @@ "source": "remix_app_components_nav_footer_footer", "target": "remix_app_utils_useridentity_getuserdisplayname" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Nav/Nav.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_nav_nav", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1417417,6 +1418575,17 @@ "target": "remix_app_components_nav_nav_nav", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Nav/NotificationsBell.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_nav_notificationsbell", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1417581,6 +1418750,17 @@ "source": "remix_app_components_nav_notificationsbell_notificationsbell", "target": "remix_app_hooks_usecurrentuser_usecurrentuser" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Nav/ReactiveNav.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_nav_reactivenav", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1417602,6 +1418782,17 @@ "target": "remix_app_components_nav_reactiverightnav", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Nav/ReactiveRightNav.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_nav_reactiverightnav", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1417632,6 +1418823,17 @@ "target": "remix_app_components_nav_lopudrawerentry_test_read", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Notifications/NotificationRow.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_notifications_notificationrow", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1417882,6 +1419084,17 @@ "target": "remix_app_components_notifications_notificationrow_notificationrow", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Notifications/NotificationsPage.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_notifications_notificationspage", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1419136,6 +1420349,17 @@ "source": "remix_app_components_notifications_notificationcore_withnotificationtype", "target": "remix_app_schemas_registry_notificationcategoryof" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/OAuth/AuthorizePage.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_oauth_authorizepage", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1419328,6 +1420552,17 @@ "target": "remix_app_components_oauth_authorizepage_authorizepage", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Ode/odeSections.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_ode_odesections", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1419436,6 +1420671,17 @@ "target": "remix_app_components_ode_odesections_ode_sections", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Peers/DeploymentPeersPage.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_peers_deploymentpeerspage", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1419870,6 +1421116,17 @@ "target": "remix_app_components_peers_peerexplorer_searchvalue", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Profile/ActivityHeatmap.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_profile_activityheatmap", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1420186,6 +1421443,17 @@ "target": "remix_app_components_profile_activityheatmap_activityheatmap", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Profile/EditProfileModal.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_profile_editprofilemodal", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1420425,6 +1421693,17 @@ "target": "remix_app_components_profile_editprofilemodal_editprofilemodal", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Profile/ProfileMediaField.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_profile_profilemediafield", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1420606,6 +1421885,17 @@ "target": "remix_app_components_profile_profilemediafield_profilemediafield", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Profile/ProfilePage.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_profile_profilepage", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1421039,6 +1422329,17 @@ "target": "remix_app_components_profile_profilepage_profilepage", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Profile/RelationshipControls.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_profile_relationshipcontrols", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1421855,6 +1423156,17 @@ "target": "remix_app_components_profile_themetryoncore_opentryonrun", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/QuickSwitcher/QuickSwitcher.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_quickswitcher_quickswitcher", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1422411,6 +1423723,17 @@ "source": "remix_app_components_quickswitcher_quickswitchercore_pushquickrecent", "target": "remix_app_hooks_localcache_writelocalcache" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Rainbow/Rainbow.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_rainbow_rainbow", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1422662,6 +1423985,17 @@ "target": "remix_app_components_safety_safe_safe", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Saved/SavedPage.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_saved_savedpage", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1422900,6 +1424234,17 @@ "target": "remix_app_components_saved_savedpage_savedpage", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Schemas/MigrationsPanel.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_schemas_migrationspanel", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1423200,6 +1424545,17 @@ "target": "remix_app_components_schemas_migrationspanel_migrationspanel", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Schemas/SchemaBuilder.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_schemas_schemabuilder", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1423527,6 +1424883,17 @@ "target": "remix_app_components_schemas_schemabuilder_schemabuilder", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Schemas/SchemaDetailPage.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_schemas_schemadetailpage", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1424255,6 +1425622,17 @@ "target": "remix_app_components_schemas_schemathingform", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Schemas/SchemaThingForm.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_schemas_schemathingform", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1424552,6 +1425930,17 @@ "target": "remix_app_components_schemas_schemathingform_schemathingform", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Schemas/SchemasBrowsePage.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_schemas_schemasbrowsepage", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1425179,6 +1426568,17 @@ "target": "remix_app_components_schemas_schemasbrowsepage_schemasbrowsepage", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Schemas/SchemasPage.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_schemas_schemaspage", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1426153,6 +1427553,17 @@ "target": "remix_app_components_schemas_schemabrowsetypes_entrytosearchsource", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Search/SearchPage.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_search_searchpage", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1426948,6 +1428359,17 @@ "source": "remix_app_components_search_commandersearch_commandersearchresults", "target": "remix_app_components_things_thingicon_thingicon" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Search/searchBuilder.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_search_searchbuilder", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1427290,6 +1428712,17 @@ "target": "remix_app_components_search_searchtypes_searchthing", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Settings/AlgorithmManager.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_settings_algorithmmanager", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1427406,6 +1428839,17 @@ "target": "remix_app_components_settings_algorithmmanager_algorithmmanager", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Settings/LinkedDeployments.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_settings_linkeddeployments", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1427542,6 +1428986,17 @@ "target": "remix_app_components_settings_linkeddeployments_linkeddeployments", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Settings/MediaCacheSettings.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_settings_mediacachesettings", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1427684,6 +1429139,17 @@ "target": "remix_app_components_settings_mediacachesettings_mediacachesettings", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Settings/NotificationSettings.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_settings_notificationsettings", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1427920,6 +1429386,17 @@ "target": "remix_app_components_settings_notificationsettings_notificationsettingssection", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Settings/PasskeysManager.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_settings_passkeysmanager", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1428254,6 +1429731,17 @@ "source": "remix_app_components_settings_passkeysmanager_accountpasskeysmanager", "target": "remix_app_hooks_usepasskeys_usepasskeyauth" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Settings/SecureVault.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_settings_securevault", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1428388,6 +1429876,17 @@ "target": "remix_app_components_settings_securevault_securevault", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Settings/SettingsPage.tsx", + "source_location": "L4", + "weight": 1.0, + "source": "remix_app_components_settings_settingspage", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1428811,6 +1430310,17 @@ "target": "remix_app_components_settings_settingspage_settingspage", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Settings/SettingsSection.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_settings_settingssection", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1429006,6 +1430516,17 @@ "target": "remix_app_components_settings_settingssection_rainbowbutton", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Settings/TokenMinter.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_settings_tokenminter", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1429317,6 +1430838,17 @@ "source": "remix_app_components_settings_tokenminter_tokenminter", "target": "remix_app_hooks_useapi_useapi" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Settings/VaultReveal.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_settings_vaultreveal", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1429380,6 +1430912,17 @@ "source": "remix_app_components_settings_vaultreveal_vaultreveal", "target": "remix_app_hooks_usecurrentuser_usecurrentuser" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Settings/useLinkedDeployments.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_settings_uselinkeddeployments", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1429507,6 +1431050,17 @@ "source": "remix_app_components_settings_uselinkeddeployments_uselinkeddeployments", "target": "remix_app_hooks_useapi_useapi" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Sharing/ThingAudienceControl.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_sharing_thingaudiencecontrol", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1429901,6 +1431455,17 @@ "source": "remix_app_components_things_thingscore_thingsharelink", "target": "remix_app_components_sharing_audiencecore_sharepathforthing" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Skeleton/RainbowSkeleton.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_skeleton_rainbowskeleton", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1429922,6 +1431487,17 @@ "target": "remix_app_theme_rainbow", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Splash/Splash.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_splash_splash", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1429976,6 +1431552,17 @@ "target": "remix_app_components_splash_splash_splash", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Status/FooterStatusPanel.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_status_footerstatuspanel", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1430095,6 +1431682,17 @@ "target": "remix_app_components_vercel_vercelstatus_vercelstatus", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Status/ServiceStatus.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_status_servicestatus", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1430211,6 +1431809,17 @@ "source": "remix_app_components_status_servicestatus_servicestatus", "target": "remix_app_components_status_statusenvironment_getstatushref" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Status/StatusRefreshButton.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_status_statusrefreshbutton", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1430474,6 +1432083,17 @@ "source": "remix_app_components_vercel_vercelstatus_vercelstatus", "target": "remix_app_components_status_statusenvironment_getstatushref" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Status/statusSections.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_status_statussections", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1430651,6 +1432271,17 @@ "target": "remix_app_components_status_statussections_usevercelstatusdata", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Subscriptions/TierCard.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_subscriptions_tiercard", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1430701,6 +1432332,17 @@ "target": "remix_app_components_subscriptions_tiercard_tiercardtier", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Subscriptions/TierFeatureComparison.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_subscriptions_tierfeaturecomparison", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1430787,6 +1432429,17 @@ "source": "remix_app_components_subscriptions_tierfeaturecomparison_tierfeaturecomparison", "target": "remix_app_hooks_useapi_useapi" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Subspaces/CreateSubspaceModal.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_subspaces_createsubspacemodal", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1430927,6 +1432580,17 @@ "target": "remix_app_components_subspaces_createsubspacemodal_createsubspacemodal", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Subspaces/ModerationModals.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_subspaces_moderationmodals", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1431256,6 +1432920,17 @@ "target": "remix_app_components_subspaces_moderationmodals_banmodal", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Subspaces/SubspaceCard.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_subspaces_subspacecard", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1431408,6 +1433083,17 @@ "target": "remix_app_components_subspaces_subspacecard_subspacecard", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Subspaces/SubspaceModPage.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_subspaces_subspacemodpage", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports", "context": "import", @@ -1432238,6 +1433924,17 @@ "target": "remix_app_components_subspaces_subspacemodpage_subspacemodpage", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Subspaces/SubspacePage.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_subspaces_subspacepage", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1432726,6 +1434423,17 @@ "target": "remix_app_components_subspaces_subspacepage_subspacepage", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Subspaces/SubspacePreferencesSection.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_subspaces_subspacepreferencessection", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1432802,6 +1434510,17 @@ "source": "remix_app_components_subspaces_subspacepreferencessection_subspacepreferencessection", "target": "remix_app_components_subspaces_usesubspaceprefs_usesubspaceprefs" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Subspaces/SubspacesDirectoryPage.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_subspaces_subspacesdirectorypage", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1433753,6 +1435472,17 @@ "target": "remix_app_components_subspaces_subspacetypes_subspacefeedsort", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Subspaces/useSubspacePrefs.ts", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_subspaces_usesubspaceprefs", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1433975,6 +1435705,17 @@ "target": "remix_app_components_subspaces_usesubspaceprefs_subscribe", "confidence_score": 0.5 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/ThemeSettings/ThemeGallery.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_themesettings_themegallery", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1434115,6 +1435856,17 @@ "target": "remix_app_components_themesettings_themegallery_themegallery", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/ThemeSettings/ThemeHost.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_themesettings_themehost", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1434298,6 +1436050,17 @@ "target": "remix_app_components_themesettings_themehost_themehost", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/ThemeSettings/ThemeStudio.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_themesettings_themestudio", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1434586,6 +1436349,17 @@ "target": "remix_app_components_themesettings_themestudio_themestudio", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/ThemeSettings/controls.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_themesettings_controls", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1434712,6 +1436486,17 @@ "source": "remix_app_components_themesettings_controls_customisepanel", "target": "remix_app_hooks_usetttheme_usetttheme" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Things/FolderTree.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_things_foldertree", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1434948,6 +1436733,17 @@ "target": "remix_app_components_things_foldertree_foldertree", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Things/SensitiveThingReveal.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_things_sensitivethingreveal", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1435149,6 +1436945,17 @@ "target": "remix_app_components_things_sensitivethingreveal_sensitivethingreveal", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Things/ThingAttachmentDetail.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_things_thingattachmentdetail", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1435276,6 +1437083,17 @@ "target": "remix_app_components_things_thingattachmentdetail_thingattachmentdetail", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Things/ThingsDialogs.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_things_thingsdialogs", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports", "context": "import", @@ -1435665,6 +1437483,17 @@ "target": "remix_app_components_things_thingsdialogs_previewmodal", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Things/ThingsPage.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_things_thingspage", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports", "context": "import", @@ -1436373,6 +1438202,17 @@ "target": "remix_app_components_things_thingspage_thingspage", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Things/ThingsViews.tsx", + "source_location": "L4", + "weight": 1.0, + "source": "remix_app_components_things_thingsviews", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports", "context": "import", @@ -1438581,6 +1440421,17 @@ "target": "remix_app_components_things_thingsmenumodel_viewsubmenu", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Thingtime/ContextMenu/ThingContextMenu.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_thingtime_contextmenu_thingcontextmenu", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1438775,6 +1440626,17 @@ "target": "remix_app_components_thingtime_contextmenu_thingcontextmenu_thingcontextmenu", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Thingtime/ContextMenu/ThingContextMenuTrigger.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_thingtime_contextmenu_thingcontextmenutrigger", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1439335,6 +1441197,17 @@ "target": "remix_app_components_thingtime_contextmenu_contextmenumodel_buildthingcontextmenumodel", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Thingtime/ContextMenu/useThingContextMenu.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_thingtime_contextmenu_usethingcontextmenu", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1439421,6 +1441294,17 @@ "source": "remix_app_routes_docs_design_system_thingcontextmenustories_zonesstory", "target": "remix_app_components_thingtime_contextmenu_usethingcontextmenu_usethingcontextmenu" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Thingtime/EditorSplit.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_thingtime_editorsplit", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1440055,6 +1441939,17 @@ "target": "remix_app_components_thingtime_editorsplit_editorsplit", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Thingtime/ThingView.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_thingtime_thingview", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1440277,6 +1442172,17 @@ "target": "remix_app_components_thingtime_thingtime", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Thingtime/Thingtime.tsx", + "source_location": "L4", + "weight": 1.0, + "source": "remix_app_components_thingtime_thingtime", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1440546,6 +1442452,17 @@ "target": "remix_app_components_thingtime_thingtime_thingtime", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Thingtime/ThingtimeDemo.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_thingtime_thingtimedemo", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1440556,6 +1442473,17 @@ "target": "remix_app_components_thingtime_thingtimedemo_thingtimedemo", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Thingtime/ThingtimeURL.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_thingtime_thingtimeurl", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1440654,6 +1442582,17 @@ "target": "remix_app_components_thingtime_thingtimeurl_thingtimeurl", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Thingtime/concepts/FocusCardsViewer.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_thingtime_concepts_focuscardsviewer", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1440972,6 +1442911,17 @@ "target": "remix_app_components_thingtime_concepts_focuscardsviewer_focuscardsviewer", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Thingtime/concepts/FormSheetViewer.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_thingtime_concepts_formsheetviewer", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1441268,6 +1443218,17 @@ "target": "remix_app_components_thingtime_concepts_millercolumnsviewer", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Thingtime/concepts/MillerColumnsViewer.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_thingtime_concepts_millercolumnsviewer", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1441585,6 +1443546,17 @@ "target": "remix_app_components_thingtime_concepts_orbitcanvasviewer", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Thingtime/concepts/OrbitCanvasViewer.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_thingtime_concepts_orbitcanvasviewer", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1441914,6 +1443886,17 @@ "target": "remix_app_components_thingtime_concepts_outlinedocviewer", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Thingtime/concepts/OutlineDocViewer.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_thingtime_concepts_outlinedocviewer", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1442208,6 +1444191,17 @@ "target": "remix_app_components_thingtime_concepts_outlinedocviewer_outlinedocviewer", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Thingtime/concepts/conceptBits.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_thingtime_concepts_conceptbits", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1442453,6 +1444447,17 @@ "target": "remix_app_components_thingtime_concepts_conceptbits_deletebutton", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Thingtime/concepts/conceptData.ts", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_thingtime_concepts_conceptdata", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1443238,6 +1445243,17 @@ "target": "remix_app_components_thingtime_thingzones_getthingzoneboxes", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Thingtime/useThingtime.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_thingtime_usethingtime", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1443479,6 +1445495,17 @@ "source": "remix_app_routes_tsx_remix_app_routes_index", "target": "remix_app_components_thingtime_usethingtime_usethingtime" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/User/UserCard.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_user_usercard", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1443599,6 +1445626,17 @@ "target": "remix_app_components_user_usercard_usercard", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Vercel/VercelStatus.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_components_vercel_vercelstatus", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1443692,6 +1445730,17 @@ "target": "remix_app_components_vercel_vercelstatus_getprogressleft", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/VisualSettings/VisualSettingsHost.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_visualsettings_visualsettingshost", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1443766,6 +1445815,17 @@ "target": "remix_app_components_visualsettings_visualsettingshost_visualsettingshost", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Watch/WatchCodeField.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_watch_watchcodefield", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1443842,6 +1445902,17 @@ "target": "remix_app_components_watch_watchcodefield_watchcodefield", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Watch/WatchPairingPage.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_watch_watchpairingpage", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1443991,6 +1446062,17 @@ "target": "remix_app_components_watch_watchpairingpage_watchpairingpage", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Watch/WatchPendingApprovals.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_watch_watchpendingapprovals", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1444301,6 +1446383,17 @@ "target": "remix_app_components_watch_watchpendingcore_visiblewatchrequests", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/Welcome/welcomeSections.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_welcome_welcomesections", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1444464,6 +1446557,17 @@ "target": "remix_app_components_welcome_welcomesections_welcome_sections", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/rainbowText.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_components_rainbowtext", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1444507,6 +1446611,17 @@ "target": "remix_app_components_rainbowtext_rainbowtext", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/textAnimation1.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_textanimation1", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1444517,6 +1446632,17 @@ "target": "remix_app_components_textanimation1_textanimation1", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/components/tt/Button.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_components_tt_button", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1445774,6 +1447900,17 @@ "target": "remix_app_eggs_eggs_rainbowflash", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/embed/bridge.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_embed_bridge", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1447773,6 +1449910,17 @@ "target": "remix_app_embed_runtime_thingtimeembedruntime_renderchromestatus", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/entry.client.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_entry_client", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1447920,6 +1450068,17 @@ "target": "remix_app_global_types_d_window", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/globals/GlobalStyles.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_globals_globalstyles", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1450432,6 +1452591,17 @@ "target": "remix_app_hooks_thingsrequestpayload_buildthingcommentrequestpayload", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/hooks/useApi.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_hooks_useapi", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1450714,6 +1452884,17 @@ "source": "remix_app_routes_verify_email_verifyemail", "target": "remix_app_hooks_useapi_useapi" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/hooks/useAsyncFetcher.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_hooks_useasyncfetcher", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1450724,6 +1452905,17 @@ "target": "remix_app_hooks_useasyncfetcher_useasyncfetcher", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/hooks/useCommentDraft.ts", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_hooks_usecommentdraft", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1450940,6 +1453132,17 @@ "source": "remix_app_routes_welcome_welcome", "target": "remix_app_hooks_usecurrentuser_usecurrentuser" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/hooks/useFeedShortcuts.ts", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_hooks_usefeedshortcuts", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1451071,6 +1453274,17 @@ "target": "remix_app_hooks_usefeedshortcuts_iselementvisible", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/hooks/useOutsideTapClose.ts", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_hooks_useoutsidetapclose", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1451081,6 +1453295,17 @@ "target": "remix_app_hooks_useoutsidetapclose_useoutsidetapclose", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/hooks/usePasskeys.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_hooks_usepasskeys", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1451192,6 +1453417,17 @@ "target": "remix_app_hooks_usepasskeys_usepasskeyauth", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/hooks/usePath.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_hooks_usepath", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1451202,6 +1453438,17 @@ "target": "remix_app_hooks_usepath_usepath", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/hooks/useProps.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_hooks_useprops", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1451212,6 +1453459,17 @@ "target": "remix_app_hooks_useprops_useprops", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/hooks/useThings.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_hooks_usethings", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1451222,6 +1453480,17 @@ "target": "remix_app_hooks_usethings_usethings", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/hooks/useThingtimeMachine.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_hooks_usethingtimemachine", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1451367,6 +1453636,17 @@ "target": "remix_app_hooks_usethingtimemachine_newtimeline", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/hooks/useTrace.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_hooks_usetrace", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1451377,6 +1453657,17 @@ "target": "remix_app_hooks_usetrace_usetrace", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/hooks/useTtTheme.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_hooks_usetttheme", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1451472,6 +1453763,17 @@ "target": "remix_app_theme_customise_ttcustommap", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/hooks/useUuid.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_hooks_useuuid", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1451727,6 +1454029,17 @@ "target": "remix_app_root_data_server_rootdataresponse", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/root.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_app_root", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1451780,6 +1454093,17 @@ "target": "remix_app_root", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_routes_tsx_remix_app_routes_d47d44", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -1452203,6 +1454527,17 @@ "source": "remix_app_routes_rootloader", "target": "remix_app_utils_temporaryuserbootstrap_shouldbootstraptemporaryuser" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/$.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_routes_tsx_remix_app_routes_69924d", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1453317,17 +1455652,6 @@ "target": "remix_app_routes_api_v1_apps_storage_storage_loader", "confidence_score": 1.0 }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "remix/server/routes/[...].ts", - "source_location": "L2", - "weight": 1.0, - "source": "remix_server_routes", - "target": "remix_app_routes_api_v1_apps_storage_storage", - "confidence_score": 1.0 - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1454139,6 +1456463,677 @@ "target": "remix_app_routes_api_v1_chats_react_react_action", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/api/v1/mongodb/endpoint/_endpoint.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_routes_api_v1_mongodb_endpoint_endpoint", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/api/v1/mongodb/endpoints/_endpoints.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_routes_api_v1_mongodb_endpoints_endpoints", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/api/v1/mongodb/get-connection/_get-connection.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_routes_api_v1_mongodb_get_connection_get_connection", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/api/v1/mongodb/populate/_populate.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_routes_api_v1_mongodb_populate_populate", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/api/v1/mongodb/status/_status.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_routes_api_v1_mongodb_status_status", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/api/v1/template/_template.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_routes_api_v1_template_template", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/authorize.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_routes_authorize", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/branding/_index.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_branding_index", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/crypto.tsx", + "source_location": "L18", + "weight": 1.0, + "source": "remix_app_routes_crypto", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/api.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_api", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/ApiPlayground.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_apiplayground", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/ApiTryIt.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_apitryit", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/concepts/ConceptStories.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_concepts_conceptstories", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/concepts/index.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_concepts_index", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/design-system/BrutalButtonStories.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_design_system_brutalbuttonstories", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/design-system/BuilderBlocksStories.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_design_system_builderblocksstories", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/design-system/entries/AvatarIdentityStories.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_design_system_entries_avataridentitystories", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/design-system/entries/BrandMarkStories.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_design_system_entries_brandmarkstories", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/design-system/entries/ButtonsStories.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_design_system_entries_buttonsstories", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/design-system/entries/CardsAndSectionsStories.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_design_system_entries_cardsandsectionsstories", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/design-system/entries/ChipsAndBadgesStories.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_design_system_entries_chipsandbadgesstories", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/design-system/entries/ClearanceStories.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_design_system_entries_clearancestories", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/design-system/entries/IconStories.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_design_system_entries_iconstories", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/design-system/entries/InputsAndFormsStories.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_design_system_entries_inputsandformsstories", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/design-system/entries/ModalsAndPopoversStories.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_design_system_entries_modalsandpopoversstories", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/design-system/entries/NavigationStories.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_design_system_entries_navigationstories", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/design-system/entries/OptimisticRenderingStories.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_design_system_entries_optimisticrenderingstories", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/design-system/entries/RainbowMotionStories.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_design_system_entries_rainbowmotionstories", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/design-system/entries/ToastsStories.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_design_system_entries_toastsstories", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/design-system/entries/TouchA11yStories.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_design_system_entries_toucha11ystories", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/design-system/entries/TypographyAndSpacingStories.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_design_system_entries_typographyandspacingstories", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/design-system/FoundationsStories.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_design_system_foundationsstories", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/design-system/index.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_design_system_index", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/design-system/PageScaffoldStories.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_design_system_pagescaffoldstories", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/design-system/ThingContextMenuStories.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_design_system_thingcontextmenustories", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/DesignWorkspace.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_designworkspace", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/docsCode.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_docscode", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/DocsLayout.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_docslayout", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/DocsSearch.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_docssearch", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/embed.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_embed", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/index.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_routes_docs_index", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/mcp.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_docs_mcp", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/docs/useDocsAnchorScroll.ts", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_routes_docs_usedocsanchorscroll", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/login.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_login", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/media.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_media", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/migrations.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_migrations", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/p.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_p", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/post.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_post", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/rainbow.$.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_rainbow", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/register.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_register", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/tests.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_tests", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/themes.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_routes_themes", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/themes.gallery.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_routes_themes_gallery", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/thing.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_thing", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/vercel.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_vercel", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/verify-email.tsx", + "source_location": "L2", + "weight": 1.0, + "source": "remix_app_routes_verify_email", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/routes/watch.pair.tsx", + "source_location": "L1", + "weight": 1.0, + "source": "remix_app_routes_watch_pair", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/app/theme/icons.tsx", + "source_location": "L92", + "weight": 1.0, + "source": "remix_app_theme_icons", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "remix/package.json", + "source_location": "L165", + "weight": 1.0, + "context": "import", + "source": "remix_package_dependencies_react", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/tests/editor-rich-text.tsx", + "source_location": "L7", + "weight": 1.0, + "source": "remix_tests_editor_rich_text", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "remix/tests/media-cache.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "remix_tests_media_cache", + "target": "remix_app_routes_api_v1_chats_react_react", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1455152,17 +1458147,6 @@ "target": "remix_app_routes_api_v1_health_mongodb_mongodb_unavailablemongostatus", "confidence_score": 1.0 }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "remix/package.json", - "source_location": "L159", - "weight": 1.0, - "context": "import", - "source": "remix_package_dependencies_mongodb", - "target": "remix_app_routes_api_v1_health_mongodb_mongodb", - "confidence_score": 1.0 - }, { "relation": "calls", "context": "call", @@ -1455198,7 +1458182,7 @@ "relation": "imports", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L160", + "source_location": "L162", "weight": 1.0, "context": "import", "source": "remix_package_dependencies_nitro", @@ -1483235,7 +1486219,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L109", + "source_location": "L110", "weight": 1.0, "source": "remix_package", "target": "remix_package_dependencies", @@ -1483245,7 +1486229,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L182", + "source_location": "L184", "weight": 1.0, "source": "remix_package", "target": "remix_package_devdependencies", @@ -1483255,7 +1486239,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L209", + "source_location": "L211", "weight": 1.0, "source": "remix_package", "target": "remix_package_engines", @@ -1483945,7 +1486929,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L105", + "source_location": "L106", "weight": 1.0, "source": "remix_package_scripts", "target": "remix_package_scripts_test_moderation", @@ -1483985,7 +1486969,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L107", + "source_location": "L108", "weight": 1.0, "source": "remix_package_scripts", "target": "remix_package_scripts_test_passkeys", @@ -1484015,7 +1486999,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L103", + "source_location": "L104", "weight": 1.0, "source": "remix_package_scripts", "target": "remix_package_scripts_test_persist", @@ -1484065,7 +1487049,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L87", + "source_location": "L88", "weight": 1.0, "source": "remix_package_scripts", "target": "remix_package_scripts_test_schemas", @@ -1484085,7 +1487069,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L88", + "source_location": "L89", "weight": 1.0, "source": "remix_package_scripts", "target": "remix_package_scripts_test_settings", @@ -1484095,10 +1487079,10 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L89", + "source_location": "L87", "weight": 1.0, "source": "remix_package_scripts", - "target": "remix_package_scripts_test_storage", + "target": "remix_package_scripts_test_social_previews", "confidence_score": 1.0 }, { @@ -1484108,6 +1487092,16 @@ "source_location": "L90", "weight": 1.0, "source": "remix_package_scripts", + "target": "remix_package_scripts_test_storage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/package.json", + "source_location": "L91", + "weight": 1.0, + "source": "remix_package_scripts", "target": "remix_package_scripts_test_storage_recovery", "confidence_score": 1.0 }, @@ -1484115,7 +1487109,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L102", + "source_location": "L103", "weight": 1.0, "source": "remix_package_scripts", "target": "remix_package_scripts_test_subscriptions", @@ -1484125,7 +1487119,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L92", + "source_location": "L93", "weight": 1.0, "source": "remix_package_scripts", "target": "remix_package_scripts_test_subspaces", @@ -1484135,7 +1487129,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L91", + "source_location": "L92", "weight": 1.0, "source": "remix_package_scripts", "target": "remix_package_scripts_test_temporary_user", @@ -1484145,7 +1487139,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L94", + "source_location": "L95", "weight": 1.0, "source": "remix_package_scripts", "target": "remix_package_scripts_test_theme", @@ -1484155,7 +1487149,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L93", + "source_location": "L94", "weight": 1.0, "source": "remix_package_scripts", "target": "remix_package_scripts_test_things", @@ -1484165,7 +1487159,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L95", + "source_location": "L96", "weight": 1.0, "source": "remix_package_scripts", "target": "remix_package_scripts_test_typecheck_ratchet", @@ -1484185,7 +1487179,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L97", + "source_location": "L98", "weight": 1.0, "source": "remix_package_scripts", "target": "remix_package_scripts_test_vercel_config", @@ -1484195,7 +1487189,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L98", + "source_location": "L99", "weight": 1.0, "source": "remix_package_scripts", "target": "remix_package_scripts_test_vercel_root", @@ -1484205,7 +1487199,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L96", + "source_location": "L97", "weight": 1.0, "source": "remix_package_scripts", "target": "remix_package_scripts_test_vercel_status", @@ -1484215,7 +1487209,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L99", + "source_location": "L100", "weight": 1.0, "source": "remix_package_scripts", "target": "remix_package_scripts_test_web_ci_context", @@ -1484225,7 +1487219,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L100", + "source_location": "L101", "weight": 1.0, "source": "remix_package_scripts", "target": "remix_package_scripts_test_webpages", @@ -1484235,7 +1487229,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L101", + "source_location": "L102", "weight": 1.0, "source": "remix_package_scripts", "target": "remix_package_scripts_test_workflow_callers", @@ -1484275,7 +1487269,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L106", + "source_location": "L107", "weight": 1.0, "source": "remix_package_scripts", "target": "remix_package_scripts_verify_embed", @@ -1484315,7 +1487309,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L104", + "source_location": "L105", "weight": 1.0, "source": "remix_package_scripts", "target": "remix_package_scripts_verify_vercel_output", @@ -1484325,7 +1487319,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L110", + "source_location": "L111", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_anthropic_ai_sdk", @@ -1484335,7 +1487329,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L143", + "source_location": "L145", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_astronomy_engine", @@ -1484345,7 +1487339,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L111", + "source_location": "L112", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_aws_sdk_client_s3", @@ -1484355,7 +1487349,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L112", + "source_location": "L113", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_aws_sdk_client_sesv2", @@ -1484365,7 +1487359,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L113", + "source_location": "L114", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_aws_sdk_s3_request_presigner", @@ -1484375,7 +1487369,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L144", + "source_location": "L146", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_axios", @@ -1484385,7 +1487379,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L145", + "source_location": "L147", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_bcrypt", @@ -1484395,7 +1487389,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L114", + "source_location": "L115", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_chakra_ui_react", @@ -1484405,7 +1487399,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L115", + "source_location": "L116", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_chakra_ui_react_types", @@ -1484415,7 +1487409,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L146", + "source_location": "L148", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_draft_js", @@ -1484425,7 +1487419,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L116", + "source_location": "L117", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_editorjs_checklist", @@ -1484435,7 +1487429,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L117", + "source_location": "L118", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_editorjs_code", @@ -1484445,7 +1487439,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L118", + "source_location": "L119", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_editorjs_delimiter", @@ -1484455,7 +1487449,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L119", + "source_location": "L120", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_editorjs_editorjs", @@ -1484465,7 +1487459,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L120", + "source_location": "L121", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_editorjs_embed", @@ -1484475,7 +1487469,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L121", + "source_location": "L122", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_editorjs_header", @@ -1484485,7 +1487479,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L122", + "source_location": "L123", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_editorjs_inline_code", @@ -1484495,7 +1487489,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L123", + "source_location": "L124", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_editorjs_list", @@ -1484505,7 +1487499,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L124", + "source_location": "L125", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_editorjs_marker", @@ -1484515,7 +1487509,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L125", + "source_location": "L126", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_editorjs_quote", @@ -1484525,7 +1487519,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L126", + "source_location": "L127", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_editorjs_simple_image", @@ -1484535,7 +1487529,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L127", + "source_location": "L128", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_editorjs_table", @@ -1484545,7 +1487539,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L128", + "source_location": "L129", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_editorjs_underline", @@ -1484555,7 +1487549,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L129", + "source_location": "L130", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_editorjs_warning", @@ -1484565,7 +1487559,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L147", + "source_location": "L149", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_emojis_list", @@ -1484575,7 +1487569,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L148", + "source_location": "L150", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_emotion", @@ -1484585,7 +1487579,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L130", + "source_location": "L131", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_emotion_cache", @@ -1484595,7 +1487589,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L131", + "source_location": "L132", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_emotion_react", @@ -1484605,7 +1487599,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L132", + "source_location": "L133", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_emotion_server", @@ -1484615,7 +1487609,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L149", + "source_location": "L151", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_file_type", @@ -1484625,7 +1487619,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L150", + "source_location": "L152", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_flatted", @@ -1484635,7 +1487629,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L133", + "source_location": "L134", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_fortawesome_fontawesome_svg_core", @@ -1484645,7 +1487639,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L134", + "source_location": "L135", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_fortawesome_free_regular_svg_icons", @@ -1484655,7 +1487649,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L135", + "source_location": "L136", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_fortawesome_free_solid_svg_icons", @@ -1484665,7 +1487659,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L136", + "source_location": "L137", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_fortawesome_react_fontawesome", @@ -1484675,7 +1487669,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L151", + "source_location": "L153", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_fuse_js", @@ -1484685,7 +1487679,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L152", + "source_location": "L154", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_gradient_path", @@ -1484695,7 +1487689,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L153", + "source_location": "L155", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_hex_to_rgba", @@ -1484705,7 +1487699,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L154", + "source_location": "L156", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_isbot", @@ -1484715,7 +1487709,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L155", + "source_location": "L157", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_jose", @@ -1484725,7 +1487719,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L156", + "source_location": "L158", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_localforage", @@ -1484735,7 +1487729,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L157", + "source_location": "L159", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_lodash_es", @@ -1484745,7 +1487739,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L158", + "source_location": "L160", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_lucide_react", @@ -1484755,7 +1487749,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L137", + "source_location": "L138", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_monaco_editor_react", @@ -1484765,7 +1487759,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L159", + "source_location": "L161", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_mongodb", @@ -1484775,7 +1487769,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L160", + "source_location": "L162", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_nitro", @@ -1484785,7 +1487779,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L161", + "source_location": "L163", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_openai", @@ -1484795,7 +1487789,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L162", + "source_location": "L164", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_prismjs", @@ -1484805,7 +1487799,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L163", + "source_location": "L165", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_react", @@ -1484815,7 +1487809,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L164", + "source_location": "L166", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_react_click_away_listener", @@ -1484825,7 +1487819,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L165", + "source_location": "L167", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_react_contenteditable", @@ -1484835,7 +1487829,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L166", + "source_location": "L168", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_react_dom", @@ -1484845,7 +1487839,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L167", + "source_location": "L169", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_react_icons", @@ -1484855,7 +1487849,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L168", + "source_location": "L170", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_react_router", @@ -1484865,7 +1487859,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L169", + "source_location": "L171", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_react_simple_code_editor", @@ -1484875,7 +1487869,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L170", + "source_location": "L172", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_react_sticky", @@ -1484885,7 +1487879,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L171", + "source_location": "L173", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_react_sticky_el", @@ -1484895,7 +1487889,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L172", + "source_location": "L174", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_react_visibility_sensor", @@ -1484905,7 +1487899,17 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L173", + "source_location": "L139", + "weight": 1.0, + "source": "remix_package_dependencies", + "target": "remix_package_dependencies_resvg_resvg_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/package.json", + "source_location": "L175", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_rxjs", @@ -1484915,7 +1487919,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L174", + "source_location": "L176", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_sharp", @@ -1484925,7 +1487929,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L138", + "source_location": "L140", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_simplewebauthn_browser", @@ -1484935,7 +1487939,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L139", + "source_location": "L141", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_simplewebauthn_server", @@ -1484945,7 +1487949,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L175", + "source_location": "L177", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_sshpk", @@ -1484955,7 +1487959,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L176", + "source_location": "L178", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_tinygradient", @@ -1484965,7 +1487969,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L177", + "source_location": "L179", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_tldts", @@ -1484975,7 +1487979,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L178", + "source_location": "L180", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_unicode_emoji_json", @@ -1484985,7 +1487989,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L179", + "source_location": "L181", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_uuid", @@ -1484995,7 +1487999,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L140", + "source_location": "L142", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_vercel_analytics", @@ -1485005,7 +1488009,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L141", + "source_location": "L143", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_vercel_oidc_aws_credentials_provider", @@ -1485015,7 +1488019,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L142", + "source_location": "L144", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_vercel_sandbox", @@ -1485025,7 +1488029,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L180", + "source_location": "L182", "weight": 1.0, "source": "remix_package_dependencies", "target": "remix_package_dependencies_workflow", @@ -1485035,7 +1488039,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L183", + "source_location": "L185", "weight": 1.0, "source": "remix_package_devdependencies", "target": "remix_package_devdependencies_emotion_styled", @@ -1485045,7 +1488049,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L192", + "source_location": "L194", "weight": 1.0, "source": "remix_package_devdependencies", "target": "remix_package_devdependencies_eslint", @@ -1485055,7 +1488059,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L193", + "source_location": "L195", "weight": 1.0, "source": "remix_package_devdependencies", "target": "remix_package_devdependencies_eslint_config_prettier", @@ -1485065,7 +1488069,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L194", + "source_location": "L196", "weight": 1.0, "source": "remix_package_devdependencies", "target": "remix_package_devdependencies_eslint_loader", @@ -1485075,7 +1488079,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L195", + "source_location": "L197", "weight": 1.0, "source": "remix_package_devdependencies", "target": "remix_package_devdependencies_eslint_plugin_chakra_ui", @@ -1485085,7 +1488089,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L196", + "source_location": "L198", "weight": 1.0, "source": "remix_package_devdependencies", "target": "remix_package_devdependencies_eslint_plugin_hydrogen", @@ -1485095,7 +1488099,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L197", + "source_location": "L199", "weight": 1.0, "source": "remix_package_devdependencies", "target": "remix_package_devdependencies_eslint_plugin_prettier", @@ -1485105,7 +1488109,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L198", + "source_location": "L200", "weight": 1.0, "source": "remix_package_devdependencies", "target": "remix_package_devdependencies_eslint_plugin_react", @@ -1485115,7 +1488119,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L199", + "source_location": "L201", "weight": 1.0, "source": "remix_package_devdependencies", "target": "remix_package_devdependencies_eslint_plugin_react_hooks", @@ -1485125,7 +1488129,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L200", + "source_location": "L202", "weight": 1.0, "source": "remix_package_devdependencies", "target": "remix_package_devdependencies_eslint_plugin_simple_import_sort", @@ -1485135,7 +1488139,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L201", + "source_location": "L203", "weight": 1.0, "source": "remix_package_devdependencies", "target": "remix_package_devdependencies_eslint_plugin_unused_imports", @@ -1485145,7 +1488149,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L202", + "source_location": "L204", "weight": 1.0, "source": "remix_package_devdependencies", "target": "remix_package_devdependencies_framer_motion", @@ -1485155,7 +1488159,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L203", + "source_location": "L205", "weight": 1.0, "source": "remix_package_devdependencies", "target": "remix_package_devdependencies_prettier", @@ -1485165,7 +1488169,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L184", + "source_location": "L186", "weight": 1.0, "source": "remix_package_devdependencies", "target": "remix_package_devdependencies_remix_run_eslint_config", @@ -1485175,7 +1488179,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L185", + "source_location": "L187", "weight": 1.0, "source": "remix_package_devdependencies", "target": "remix_package_devdependencies_shopify_eslint_plugin", @@ -1485185,7 +1488189,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L204", + "source_location": "L206", "weight": 1.0, "source": "remix_package_devdependencies", "target": "remix_package_devdependencies_ts_node", @@ -1485195,7 +1488199,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L205", + "source_location": "L207", "weight": 1.0, "source": "remix_package_devdependencies", "target": "remix_package_devdependencies_tsx", @@ -1485205,7 +1488209,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L186", + "source_location": "L188", "weight": 1.0, "source": "remix_package_devdependencies", "target": "remix_package_devdependencies_types_eslint", @@ -1485215,7 +1488219,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L187", + "source_location": "L189", "weight": 1.0, "source": "remix_package_devdependencies", "target": "remix_package_devdependencies_types_node", @@ -1485225,7 +1488229,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L188", + "source_location": "L190", "weight": 1.0, "source": "remix_package_devdependencies", "target": "remix_package_devdependencies_types_react", @@ -1485235,7 +1488239,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L189", + "source_location": "L191", "weight": 1.0, "source": "remix_package_devdependencies", "target": "remix_package_devdependencies_types_react_dom", @@ -1485245,7 +1488249,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L206", + "source_location": "L208", "weight": 1.0, "source": "remix_package_devdependencies", "target": "remix_package_devdependencies_typescript", @@ -1485255,7 +1488259,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L190", + "source_location": "L192", "weight": 1.0, "source": "remix_package_devdependencies", "target": "remix_package_devdependencies_typescript_eslint_parser", @@ -1485265,7 +1488269,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L207", + "source_location": "L209", "weight": 1.0, "source": "remix_package_devdependencies", "target": "remix_package_devdependencies_vite", @@ -1485275,7 +1488279,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L191", + "source_location": "L193", "weight": 1.0, "source": "remix_package_devdependencies", "target": "remix_package_devdependencies_vitejs_plugin_react", @@ -1485285,7 +1488289,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/package.json", - "source_location": "L210", + "source_location": "L212", "weight": 1.0, "source": "remix_package_engines", "target": "remix_package_engines_node", @@ -1487419,6 +1490423,36 @@ "target": "remix_scripts_generate_branding_assets_mulberry32", "confidence_score": 1.0 }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/scripts/generate-social-card-font.mjs", + "source_location": "L23", + "weight": 1.0, + "source": "remix_scripts_generate_social_card_font", + "target": "remix_scripts_generate_social_card_font_chunk", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/scripts/generate-social-card-font.mjs", + "source_location": "L29", + "weight": 1.0, + "source": "remix_scripts_generate_social_card_font", + "target": "remix_scripts_generate_social_card_font_entries", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/scripts/generate-social-card-font.mjs", + "source_location": "L20", + "weight": 1.0, + "source": "remix_scripts_generate_social_card_font", + "target": "remix_scripts_generate_social_card_font_faces", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1487479,6 +1490513,36 @@ "target": "remix_scripts_patch_vercel_output_serverfallbackroute", "confidence_score": 1.0 }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/scripts/patch-vercel-output.mjs", + "source_location": "L24", + "weight": 1.0, + "source": "remix_scripts_patch_vercel_output", + "target": "remix_scripts_patch_vercel_output_socialcardheaders", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/scripts/patch-vercel-output.mjs", + "source_location": "L36", + "weight": 1.0, + "source": "remix_scripts_patch_vercel_output", + "target": "remix_scripts_patch_vercel_output_socialcardroute", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/scripts/patch-vercel-output.mjs", + "source_location": "L28", + "weight": 1.0, + "source": "remix_scripts_patch_vercel_output", + "target": "remix_scripts_patch_vercel_output_socialmetaroute", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1489727,7 +1492791,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L139", + "source_location": "L150", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", "target": "remix_scripts_verify_vercel_output_apiindex", @@ -1489737,7 +1492801,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L93", + "source_location": "L104", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", "target": "remix_scripts_verify_vercel_output_appentrytag", @@ -1489747,7 +1492811,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L60", + "source_location": "L71", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", "target": "remix_scripts_verify_vercel_output_appscriptsources", @@ -1489757,7 +1492821,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L232", + "source_location": "L246", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", "target": "remix_scripts_verify_vercel_output_authorizeheadersindex", @@ -1489787,7 +1492851,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L247", + "source_location": "L261", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", "target": "remix_scripts_verify_vercel_output_cspheadersindex", @@ -1489797,7 +1492861,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L301", + "source_location": "L315", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", "target": "remix_scripts_verify_vercel_output_designbundleconnectsources", @@ -1489807,7 +1492871,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L302", + "source_location": "L316", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", "target": "remix_scripts_verify_vercel_output_designbundlesandboxtokens", @@ -1489817,7 +1492881,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L300", + "source_location": "L314", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", "target": "remix_scripts_verify_vercel_output_designbundlescriptsources", @@ -1489827,7 +1492891,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L259", + "source_location": "L273", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", "target": "remix_scripts_verify_vercel_output_designbundlesheadersindex", @@ -1489837,7 +1492901,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L141", + "source_location": "L152", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", "target": "remix_scripts_verify_vercel_output_directindex", @@ -1489877,7 +1492941,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L105", + "source_location": "L116", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", "target": "remix_scripts_verify_vercel_output_embedsourcemapannotation", @@ -1489887,7 +1492951,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L32", + "source_location": "L33", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", "target": "remix_scripts_verify_vercel_output_emojicreaterequirepattern", @@ -1489897,7 +1492961,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L19", + "source_location": "L20", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", "target": "remix_scripts_verify_vercel_output_filesbelow", @@ -1489907,7 +1492971,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L138", + "source_location": "L149", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", "target": "remix_scripts_verify_vercel_output_filesystemindex", @@ -1489917,7 +1492981,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L45", + "source_location": "L56", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", "target": "remix_scripts_verify_vercel_output_getdirectivesources", @@ -1489927,7 +1492991,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L132", + "source_location": "L143", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", "target": "remix_scripts_verify_vercel_output_hasfilesystemroute", @@ -1489947,7 +1493011,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L70", + "source_location": "L81", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", "target": "remix_scripts_verify_vercel_output_inlineexecutablescripts", @@ -1489957,107 +1493021,107 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L145", + "source_location": "L286", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", - "target": "remix_scripts_verify_vercel_output_ispermalinksrc", + "target": "remix_scripts_verify_vercel_output_mcplabheadersindex", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L272", + "source_location": "L304", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", - "target": "remix_scripts_verify_vercel_output_mcplabheadersindex", + "target": "remix_scripts_verify_vercel_output_mcplabscriptsources", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L290", + "source_location": "L103", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", - "target": "remix_scripts_verify_vercel_output_mcplabscriptsources", + "target": "remix_scripts_verify_vercel_output_previewfreshnessindex", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L146", + "source_location": "L12", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", - "target": "remix_scripts_verify_vercel_output_postpermalinkindex", + "target": "remix_scripts_verify_vercel_output_previewfreshnessscript", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L92", + "source_location": "L9", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", - "target": "remix_scripts_verify_vercel_output_previewfreshnessindex", + "target": "remix_scripts_verify_vercel_output_readjson", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L12", + "source_location": "L151", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", - "target": "remix_scripts_verify_vercel_output_previewfreshnessscript", + "target": "remix_scripts_verify_vercel_output_rootindex", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L147", + "source_location": "L164", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", - "target": "remix_scripts_verify_vercel_output_profilepermalinkindex", + "target": "remix_scripts_verify_vercel_output_serverfallbackindex", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L9", + "source_location": "L159", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", - "target": "remix_scripts_verify_vercel_output_readjson", + "target": "remix_scripts_verify_vercel_output_socialcardindex", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L140", + "source_location": "L160", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", - "target": "remix_scripts_verify_vercel_output_rootindex", + "target": "remix_scripts_verify_vercel_output_socialmetaindex", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L153", + "source_location": "L163", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", - "target": "remix_scripts_verify_vercel_output_serverfallbackindex", + "target": "remix_scripts_verify_vercel_output_socialrouteindexes", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L142", + "source_location": "L153", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", "target": "remix_scripts_verify_vercel_output_spaindex", @@ -1490067,7 +1493131,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L38", + "source_location": "L39", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", "target": "remix_scripts_verify_vercel_output_tracedemojiasset", @@ -1490077,7 +1493141,27 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L35", + "source_location": "L49", + "weight": 1.0, + "source": "remix_scripts_verify_vercel_output", + "target": "remix_scripts_verify_vercel_output_tracedresvgnativepackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/scripts/verify-vercel-output.mjs", + "source_location": "L18", + "weight": 1.0, + "source": "remix_scripts_verify_vercel_output", + "target": "remix_scripts_verify_vercel_output_tracedserverpackage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/scripts/verify-vercel-output.mjs", + "source_location": "L36", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", "target": "remix_scripts_verify_vercel_output_unresolvedemojilookup", @@ -1490087,7 +1493171,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/scripts/verify-vercel-output.mjs", - "source_location": "L148", + "source_location": "L154", "weight": 1.0, "source": "remix_scripts_verify_vercel_output", "target": "remix_scripts_verify_vercel_output_wellknowndiscoveryindex", @@ -1495511,7 +1498595,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L4003", + "source_location": "L4019", "weight": 1.0, "source": "remix_changelog", "target": "prs_13_codex_fix_hydration_mongodb_thingtime_defaults_codex_fix_hydration_and_footer_status_updates", @@ -1495801,7 +1498885,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3928", + "source_location": "L3944", "weight": 1.0, "source": "remix_changelog", "target": "prs_16_resolve_main_into_thingtime_dev_branch", @@ -1496271,7 +1499355,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3154", + "source_location": "L3170", "weight": 1.0, "source": "remix_changelog", "target": "prs_172_followers_friends_notifications_views_4fcfcf_followers_friends_notifications_views", @@ -1496371,7 +1499455,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3191", + "source_location": "L3207", "weight": 1.0, "source": "remix_changelog", "target": "prs_174_thingtime_messenger_platform_thingtime_messenger_spaces_chats", @@ -1496491,7 +1499575,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L1265", + "source_location": "L1281", "weight": 1.0, "source": "remix_changelog", "target": "prs_180_claude_user_birthday_scope_account_birthday_private_field_exact_scope", @@ -1496601,7 +1499685,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3073", + "source_location": "L3089", "weight": 1.0, "source": "remix_changelog", "target": "prs_183_codex_ai_rebase_stack_resolver_add_automatic_ai_rebase_support_for_pr_stacks", @@ -1496671,7 +1499755,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L2817", + "source_location": "L2833", "weight": 1.0, "source": "remix_changelog", "target": "prs_190_claude_github_action_pr_promotion_c65173_per_feature_develop_main_promotion_prs_with_stacks", @@ -1496891,7 +1499975,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L2451", + "source_location": "L2467", "weight": 1.0, "source": "remix_changelog", "target": "prs_201_codex_s3_post_attachments_add_private_s3_post_attachments_with_tier_accounting", @@ -1497031,7 +1500115,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L2803", + "source_location": "L2819", "weight": 1.0, "source": "remix_changelog", "target": "prs_206_codex_harden_feature_promoter_keep_feature_promotion_running_across_historical_git_failures", @@ -1497101,7 +1500185,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L2768", + "source_location": "L2784", "weight": 1.0, "source": "remix_changelog", "target": "prs_207_codex_fix_promoter_empty_pick_detection_distinguish_empty_promotion_cherry_picks_safely", @@ -1497151,7 +1500235,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L2758", + "source_location": "L2774", "weight": 1.0, "source": "remix_changelog", "target": "prs_210_promote_actions_control_plane_rollup", @@ -1497321,7 +1500405,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L2714", + "source_location": "L2730", "weight": 1.0, "source": "remix_changelog", "target": "prs_212_codex_develop_pr_previews_add_secure_develop_target_pr_previews", @@ -1497391,7 +1500475,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L2699", + "source_location": "L2715", "weight": 1.0, "source": "remix_changelog", "target": "prs_213_codex_auto_resolve_promotion_conflicts_automatically_resolve_promotion_creation_conflicts", @@ -1497531,7 +1500615,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L2647", + "source_location": "L2663", "weight": 1.0, "source": "remix_changelog", "target": "prs_222_codex_typecheck_ratchet_warning_main_ci_make_typecheck_ratchet_warning_only", @@ -1497641,7 +1500725,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L2423", + "source_location": "L2439", "weight": 1.0, "source": "remix_changelog", "target": "prs_232_codex_media_gallery_profile_attachments_add_media_galleries_and_managed_profile_attachments", @@ -1497751,7 +1500835,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L2613", + "source_location": "L2629", "weight": 1.0, "source": "remix_changelog", "target": "prs_233_codex_fix_develop_preview_dns_gate", @@ -1497811,7 +1500895,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L2329", + "source_location": "L2345", "weight": 1.0, "source": "remix_changelog", "target": "prs_237_codex_conversation_media_attachments_add_media_attachments_across_conversations", @@ -1497911,7 +1500995,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3896", + "source_location": "L3912", "weight": 1.0, "source": "remix_changelog", "target": "prs_24_codex_migrate_remix_to_nitro_migrate_remix_app_to_nitro_and_react_router", @@ -1497991,7 +1501075,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3882", + "source_location": "L3898", "weight": 1.0, "source": "remix_changelog", "target": "prs_26_codex_migrate_remix_to_nitro_add_environment_aware_footer_status_checks", @@ -1498061,7 +1501145,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L2541", + "source_location": "L2557", "weight": 1.0, "source": "remix_changelog", "target": "prs_263_codex_commander_cross_platform_add_cross_platform_commander_launcher", @@ -1499141,7 +1502225,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3690", + "source_location": "L3706", "weight": 1.0, "source": "remix_changelog", "target": "prs_30_codex_ios_deployment_url_picker_add_ios_web_destination_picker", @@ -1499301,7 +1502385,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L2243", + "source_location": "L2259", "weight": 1.0, "source": "remix_changelog", "target": "prs_308_claude_nsfw_tos_media_moderation_nsfw_tos_media_moderation_pipeline", @@ -1499551,7 +1502635,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3678", + "source_location": "L3694", "weight": 1.0, "source": "remix_changelog", "target": "prs_32_claude_vigilant_moser_design_refactor_theming", @@ -1499931,7 +1503015,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L1278", + "source_location": "L1294", "weight": 1.0, "source": "remix_changelog", "target": "prs_388_claude_fallback_model_selection_0281b1_unlimited_ai_model_waterfall_claude_openai_catalog", @@ -1500241,7 +1503325,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3634", + "source_location": "L3650", "weight": 1.0, "source": "remix_changelog", "target": "prs_40_claude_feed_algorithms_profile_516506_feed_personal_algorithms_profiles_settings", @@ -1500391,7 +1503475,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3599", + "source_location": "L3615", "weight": 1.0, "source": "remix_changelog", "target": "prs_42_codex_electron_remix_app_add_electron_desktop_app_shell", @@ -1500551,7 +1503635,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L1182", + "source_location": "L1198", "weight": 1.0, "source": "remix_changelog", "target": "prs_436_codex_graphify_snapshot_routing_make_graphify_output_conflict_free", @@ -1500611,7 +1503695,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L1039", + "source_location": "L1055", "weight": 1.0, "source": "remix_changelog", "target": "prs_482_codex_limitless_mcp_make_thingtime_mcp_limitless_composable_and_safe", @@ -1500901,7 +1503985,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L1112", + "source_location": "L1128", "weight": 1.0, "source": "remix_changelog", "target": "prs_487_codex_feature_stack_merge_control_add_verified_multi_target_feature_stacks", @@ -1500951,7 +1504035,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L1113", + "source_location": "L1129", "weight": 1.0, "source": "remix_changelog", "target": "prs_489_codex_feature_stack_main_add_verified_multi_target_feature_stacks", @@ -1501121,7 +1504205,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L1092", + "source_location": "L1108", "weight": 1.0, "source": "remix_changelog", "target": "prs_498_codex_feature_stack_saved_workflows_saved_multi_target_feature_stacks", @@ -1501291,7 +1504375,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3768", + "source_location": "L3784", "weight": 1.0, "source": "remix_changelog", "target": "prs_53_claude_nested_data_viewer_concepts_1ebbbe_nested_data_viewer_concepts_kind_renderers", @@ -1501561,7 +1504645,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L912", + "source_location": "L928", "weight": 1.0, "source": "remix_changelog", "target": "prs_550_codex_feature_stack_lifecycle_main_feature_stack_run_controls", @@ -1501621,7 +1504705,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3579", + "source_location": "L3595", "weight": 1.0, "source": "remix_changelog", "target": "prs_57_codex_thingtime_embed_sdk_share_thingtime_through_a_single_file_embed_sdk", @@ -1501931,7 +1505015,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3571", + "source_location": "L3587", "weight": 1.0, "source": "remix_changelog", "target": "prs_59_claude_unified_thing_crystal_schemas_everything_is_a_thing", @@ -1502251,7 +1505335,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L555", + "source_location": "L571", "weight": 1.0, "source": "remix_changelog", "target": "prs_597_codex_preview_pr_environment_links_publish_multi_environment_preview_links_on_prs", @@ -1502321,7 +1505405,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L560", + "source_location": "L576", "weight": 1.0, "source": "remix_changelog", "target": "prs_601_codex_fix_image_upload_migrations_storage_migration_readiness", @@ -1502437,6 +1505521,96 @@ "target": "prs_604_codex_admin_preview_thin_dispatch_validation", "confidence_score": 1.0 }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "PRs/607-codex-rich-link-previews--rich-route-aware-thingtime-link-previews.md", + "source_location": "L1", + "weight": 1.0, + "source": "prs_607_codex_rich_link_previews_rich_route_aware_thingtime_link_previews", + "target": "prs_607_codex_rich_link_previews_rich_route_aware_thingtime_link_previews_pr_607_rich_route_aware_thingtime_link_previews", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "PRs/607-codex-rich-link-previews--rich-route-aware-thingtime-link-previews.md", + "source_location": "L106", + "weight": 1.0, + "source": "prs_607_codex_rich_link_previews_rich_route_aware_thingtime_link_previews_pr_607_rich_route_aware_thingtime_link_previews", + "target": "prs_607_codex_rich_link_previews_rich_route_aware_thingtime_link_previews_follow_ups_not_blocking", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "PRs/607-codex-rich-link-previews--rich-route-aware-thingtime-link-previews.md", + "source_location": "L57", + "weight": 1.0, + "source": "prs_607_codex_rich_link_previews_rich_route_aware_thingtime_link_previews_pr_607_rich_route_aware_thingtime_link_previews", + "target": "prs_607_codex_rich_link_previews_rich_route_aware_thingtime_link_previews_fonts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "PRs/607-codex-rich-link-previews--rich-route-aware-thingtime-link-previews.md", + "source_location": "L77", + "weight": 1.0, + "source": "prs_607_codex_rich_link_previews_rich_route_aware_thingtime_link_previews_pr_607_rich_route_aware_thingtime_link_previews", + "target": "prs_607_codex_rich_link_previews_rich_route_aware_thingtime_link_previews_layout_is_measured_not_counted", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "PRs/607-codex-rich-link-previews--rich-route-aware-thingtime-link-previews.md", + "source_location": "L3", + "weight": 1.0, + "source": "prs_607_codex_rich_link_previews_rich_route_aware_thingtime_link_previews_pr_607_rich_route_aware_thingtime_link_previews", + "target": "prs_607_codex_rich_link_previews_rich_route_aware_thingtime_link_previews_outcome", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "PRs/607-codex-rich-link-previews--rich-route-aware-thingtime-link-previews.md", + "source_location": "L31", + "weight": 1.0, + "source": "prs_607_codex_rich_link_previews_rich_route_aware_thingtime_link_previews_pr_607_rich_route_aware_thingtime_link_previews", + "target": "prs_607_codex_rich_link_previews_rich_route_aware_thingtime_link_previews_safety_boundaries", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "PRs/607-codex-rich-link-previews--rich-route-aware-thingtime-link-previews.md", + "source_location": "L18", + "weight": 1.0, + "source": "prs_607_codex_rich_link_previews_rich_route_aware_thingtime_link_previews_pr_607_rich_route_aware_thingtime_link_previews", + "target": "prs_607_codex_rich_link_previews_rich_route_aware_thingtime_link_previews_surfaces", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "PRs/607-codex-rich-link-previews--rich-route-aware-thingtime-link-previews.md", + "source_location": "L96", + "weight": 1.0, + "source": "prs_607_codex_rich_link_previews_rich_route_aware_thingtime_link_previews_pr_607_rich_route_aware_thingtime_link_previews", + "target": "prs_607_codex_rich_link_previews_rich_route_aware_thingtime_link_previews_validation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "PRs/607-codex-rich-link-previews--rich-route-aware-thingtime-link-previews.md", + "source_location": "L87", + "weight": 1.0, + "source": "prs_607_codex_rich_link_previews_rich_route_aware_thingtime_link_previews_pr_607_rich_route_aware_thingtime_link_previews", + "target": "prs_607_codex_rich_link_previews_rich_route_aware_thingtime_link_previews_vercel_routing", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1502681,7 +1505855,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L353", + "source_location": "L369", "weight": 1.0, "source": "remix_changelog", "target": "prs_627_codex_recovery_release_sync_github_catalogue_and_installer", @@ -1502751,7 +1505925,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3538", + "source_location": "L3554", "weight": 1.0, "source": "remix_changelog", "target": "prs_63_claude_search_page_mongodb_query_154eb4_search_page_query_builder_ranked_text_search_by_schema", @@ -1502921,7 +1506095,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3547", + "source_location": "L3563", "weight": 1.0, "source": "remix_changelog", "target": "prs_64_codex_mongodb_query_builder_add_no_code_mongodb_query_workbench", @@ -1503221,7 +1506395,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L334", + "source_location": "L350", "weight": 1.0, "source": "remix_changelog", "target": "prs_652_codex_commander_app_name_ranking_complete_search_catalogues_and_pin_toggle", @@ -1503321,7 +1506495,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L330", + "source_location": "L346", "weight": 1.0, "source": "remix_changelog", "target": "prs_657_codex_commander_main_fixes_search_and_network_repairs", @@ -1503571,7 +1506745,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L2296", + "source_location": "L2312", "weight": 1.0, "source": "remix_changelog", "target": "prs_68_codex_thingtime_mcp_desktop_connectors_add_consent_first_thingtime_mcp_desktop_chat_bridge", @@ -1504141,7 +1507315,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L1486", + "source_location": "L1502", "weight": 1.0, "source": "remix_changelog", "target": "prs_74_claude_batch_collection_things_migration_batch_collection_to_things_migration_per_page", @@ -1504221,7 +1507395,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L1773", + "source_location": "L1789", "weight": 1.0, "source": "remix_changelog", "target": "prs_92_claude_cross_tab_thingtime_sync_s4_cross_tab_sync_for_persisted_thingtime_state", @@ -1504321,7 +1507495,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3306", + "source_location": "L3322", "weight": 1.0, "source": "remix_changelog", "target": "prs_99_claude_eval_csp_hardening_persisted_state_csp_register_body_cap", @@ -1505901,7 +1509075,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L3512", + "source_location": "L3539", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_account_birthday_profile_birthday_scope_api_utils_auth_birthday_ts_api_v1_oauth_userinfo", @@ -1505911,7 +1509085,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L5301", + "source_location": "L5328", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_actions_actions_remix_app_api_utils_actions_api_v1_actions_run_api_v1_actions_runs", @@ -1505921,7 +1509095,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L3919", + "source_location": "L3946", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_admin_ci_control_plane_admin_ci_control_api_utils_cicontrol", @@ -1505931,7 +1509105,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L3755", + "source_location": "L3782", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_admin_dashboard_subscription_tiers_ownership_links_admin_api_utils_subscriptions_api_utils_accounts_accountlinks_ts", @@ -1505961,7 +1509135,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L2925", + "source_location": "L2952", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_admin_migrations_collection_generations_remix_app_components_schemas_migrationspanel_tsx", @@ -1505971,7 +1509145,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L2290", + "source_location": "L2317", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_ai_merge_conflict_resolver_github_workflows_resolve_pr_conflicts_yml", @@ -1505981,7 +1509155,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L3387", + "source_location": "L3414", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_api_docs_try_it_runner_remix_app_routes_docs_apitryit_tsx_api_tsx", @@ -1505991,7 +1509165,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L4171", + "source_location": "L4198", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_app_owner_storage_manager_apps_manage_api_utils_apps_appstoragemanagement_ts", @@ -1506001,7 +1509175,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L5616", + "source_location": "L5643", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_app_suites_pokeworld_starsalign_remix_app_schemas_appsuites_p_pokeworld_p_starsalign", @@ -1506011,7 +1509185,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L732", + "source_location": "L759", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_apple_watch_notifications", @@ -1506021,7 +1509195,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L931", + "source_location": "L958", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_branding_page_remix_app_routes_branding_index_tsx_remix_app_components_branding", @@ -1506031,7 +1509205,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L487", + "source_location": "L514", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_canonical_ai_instruction_links_ai_all_md", @@ -1506051,7 +1509225,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L3858", + "source_location": "L3885", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_ci_control_plane_storage_cicontrol_satellite_retention_relocation_index_rebuild", @@ -1506061,7 +1509235,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L3126", + "source_location": "L3153", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_commander_desktop_launcher", @@ -1506071,7 +1509245,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L5612", + "source_location": "L5639", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_commander_emoji_paste_recovery", @@ -1506081,7 +1509255,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L2759", + "source_location": "L2786", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_commander_palette_remix_app_components_commander_commanderv2_tsx_commandercommands_ts_commandershortcut_ts", @@ -1506091,7 +1509265,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L5253", + "source_location": "L5280", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_components_components_remix_app_components_componentslibrary_api_v1_components_browse_api_v1_admin_components_seed", @@ -1506101,7 +1509275,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L962", + "source_location": "L989", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_composer_thingtime_tab_remix_app_components_feed_postcomposer_tsx", @@ -1506111,7 +1509285,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L2238", + "source_location": "L2265", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_content_addressed_graphify_snapshots_scripts_graphify", @@ -1506121,7 +1509295,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L3249", + "source_location": "L3276", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_cross_tab_thingtime_sync_remix_app_providers_thingtimesyncchannel_ts", @@ -1506131,7 +1509305,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L2683", + "source_location": "L2710", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_data_crystals_nesting_depth_remix_app_schemas_registry_ts", @@ -1506141,7 +1509315,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L5653", + "source_location": "L5680", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_dedicated_live_pages_every_card_opens_one_components_key_builder_demos_slug_schemas_key_thing_id_actions_id", @@ -1506161,7 +1509335,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L5378", + "source_location": "L5405", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_design_system_builder_builder_p_id_docs_design_system_remix_app_components_builder_api_v1_webpages_resolve_api_v1_admin_webpages_seed", @@ -1506171,7 +1509345,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L556", + "source_location": "L583", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_develop_target_vercel_pr_previews", @@ -1506181,7 +1509355,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L3029", + "source_location": "L3056", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_docs_code_windows_embed_sdk_preview_remix_app_routes_docs_docscode_tsx_remix_app_routes_docs_embed_tsx", @@ -1506191,7 +1509365,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L3349", + "source_location": "L3376", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_docs_search_remix_app_routes_docs_docssearch_tsx_docssearchindex_ts", @@ -1506201,7 +1509375,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L2174", + "source_location": "L2201", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_drawer_navigation_settings_remix_app_components_nav_drawer", @@ -1506211,7 +1509385,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L1416", + "source_location": "L1443", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_editor_js_rich_text_styles", @@ -1506221,7 +1509395,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L1389", + "source_location": "L1416", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_editor_windows_layer_system_remix_app_components_thingtime_editorsplit_tsx", @@ -1506231,7 +1509405,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L465", + "source_location": "L492", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_emailed_link_origin_trust_remix_app_api_utils_auth_apporigin_ts", @@ -1506241,7 +1509415,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L5133", + "source_location": "L5160", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_explore_trending_remix_app_components_explore_explorepage_tsx_remix_app_api_utils_things_trending_ts", @@ -1506251,7 +1509425,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L5192", + "source_location": "L5219", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_feed_keyboard_shortcuts_remix_app_hooks_usefeedshortcuts_ts_feed_explore", @@ -1506261,7 +1509435,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L5209", + "source_location": "L5236", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_feed_on_this_day_memories_remix_app_components_feed_memoriescard_tsx_feed", @@ -1506271,7 +1509445,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L2737", + "source_location": "L2764", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_feed_profile_advanced_filters_remix_app_components_feed_advancedfilters_tsx", @@ -1506281,7 +1509455,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L1482", + "source_location": "L1509", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_feed_thing_rendering_remix_app_components_thingtime_thingview_tsx", @@ -1506291,7 +1509465,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L2873", + "source_location": "L2900", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_hashtags_tag_chips_remix_app_components_feed_hashtags_ts_postcard_tsx_postcomposer_tsx", @@ -1506301,7 +1509475,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L3101", + "source_location": "L3128", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_installed_app_login_with_thingtime_loopback_pkce", @@ -1506311,7 +1509485,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L693", + "source_location": "L720", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_ios_web_destination_drawer", @@ -1506331,7 +1509505,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L4869", + "source_location": "L4896", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_linked_deployments_settings_linked_deployments_api_utils_deployments_api_v1_deployment_links", @@ -1506351,7 +1509525,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L5773", + "source_location": "L5800", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_lopu_ai_assistant_lopu_floating_launcher_remix_app_components_lopu_api_v1_lopu_chats_api_v1_ai_models", @@ -1506361,7 +1509535,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L535", + "source_location": "L562", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_lopu_codeql_all_branch_listener", @@ -1506371,7 +1509545,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L2596", + "source_location": "L2623", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_lopu_internal_pr_stack_rebase_engine_protected_github_actions_implementation", @@ -1506381,7 +1509555,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L2155", + "source_location": "L2182", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_lopu_toast_placement_remix_app_components_lopu_lopuposition_ts_uselopuposition_tsx", @@ -1506401,7 +1509575,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L545", + "source_location": "L572", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_lopu_wildcard_all_branch_maintenance", @@ -1506411,7 +1509585,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L1278", + "source_location": "L1305", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_media_thing_pages_masonry_lightbox_media_id_annotate_remix_app_components_attachments_remix_app_routes_media_tsx", @@ -1506421,7 +1509595,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L2891", + "source_location": "L2918", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_mentions_remix_app_utils_mentions_ts_mentionautocomplete_tsx_api_utils_notifications_mentions_ts", @@ -1506431,7 +1509605,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L4731", + "source_location": "L4758", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_messenger_chats_communities_custom_emojis_remix_app_components_messenger_api_v1_chats_api_utils_messenger", @@ -1506441,7 +1509615,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L3301", + "source_location": "L3328", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_mongodb_data_endpoint_mongodb_status_remix_app_components_mongodb_mongoendpointconfig_tsx", @@ -1506451,7 +1509625,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L1472", + "source_location": "L1499", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_multi_editor_focus_remix_app_components_editor_longtexteditor_tsx", @@ -1506471,7 +1509645,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L4356", + "source_location": "L4383", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_notification_history_notifications_remix_app_components_notifications_api_utils_notifications_listquery_ts", @@ -1506481,7 +1509655,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L4297", + "source_location": "L4324", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_notifications_api_utils_notifications_notifications_ts_api_v1_notifications_nav_bell", @@ -1506501,7 +1509675,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L4240", + "source_location": "L4267", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_password_hasher_crypto_password_hasher_panel_api_utils_crypto_passwordhasher_server_ts", @@ -1506511,7 +1509685,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L2384", + "source_location": "L2411", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_per_feature_develop_main_promoter_protected_github_scripts_promote_features_to_main_mjs", @@ -1506521,7 +1509695,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L3075", + "source_location": "L3102", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_persisted_state_codec_remix_app_providers_thingtimeserialization_ts", @@ -1506531,7 +1509705,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L5596", + "source_location": "L5623", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_persistent_media_and_progressive_image_regression", @@ -1506541,7 +1509715,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L1558", + "source_location": "L1585", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_poll_voting_remix_app_api_utils_things_vote_ts_pollrenderer", @@ -1506551,7 +1509725,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L996", + "source_location": "L1023", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_post_and_comment_attachments_remix_app_components_attachments", @@ -1506561,7 +1509735,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L2058", + "source_location": "L2085", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_post_engagement_row_comment_threads_remix_app_components_feed_postcard_tsx", @@ -1506571,7 +1509745,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L1540", + "source_location": "L1567", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_post_interactions_inherit_chains_remix_app_api_utils_things_things_ts", @@ -1506581,7 +1509755,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L4410", + "source_location": "L4437", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_post_views_api_utils_things_views_ts_api_v1_things_views_useviewtracking", @@ -1506591,7 +1509765,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L2514", + "source_location": "L2541", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_pr_conflict_resolver_model_waterfall_remix_app_components_admin", @@ -1506601,7 +1509775,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L1357", + "source_location": "L1384", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_profile_avatar_and_banner_media_remix_app_components_profile", @@ -1506611,7 +1509785,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L2201", + "source_location": "L2228", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_profile_page_remix_app_components_profile_profilepage_tsx", @@ -1506621,7 +1509795,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L5180", + "source_location": "L5207", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_public_posts_atom_feed_remix_app_api_utils_things_rss_ts_get_api_v1_things_rss", @@ -1506641,7 +1509815,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L5236", + "source_location": "L5263", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_quick_switcher_remix_app_components_quickswitcher_global_k", @@ -1506651,7 +1509825,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L4203", + "source_location": "L4230", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_rate_limiting_index_ensure_reliability_api_utils_ratelimit_enforce_ts_api_utils_mongodb_collections_ts", @@ -1506661,7 +1509835,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L3068", + "source_location": "L3095", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_register_request_body_cap_remix_app_routes_api_v1_auth_register_register_tsx", @@ -1506671,7 +1509845,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L496", + "source_location": "L523", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_repository_root_vercel_builds", @@ -1506681,7 +1509855,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L2219", + "source_location": "L2246", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_required_web_ci_contexts_github_workflows_web_ci_yml", @@ -1506691,7 +1509865,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L3531", + "source_location": "L3558", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_sandbox_tokens_api_v1_oauth_sandbox_api_utils_apps_sandbox_ts", @@ -1506701,7 +1509875,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L5153", + "source_location": "L5180", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_saved_library_remix_app_components_saved_savedpage_tsx_remix_app_api_utils_things_saved_ts_get_api_v1_things_saved", @@ -1506711,7 +1509885,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L2801", + "source_location": "L2828", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_search_page_remix_app_components_search_searchpage_tsx", @@ -1506721,7 +1509895,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L3416", + "source_location": "L3443", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_shared_app_data_api_v1_app_data_shared_api_utils_apps_appdata_ts", @@ -1506731,7 +1509905,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L2194", + "source_location": "L2221", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_shared_page_shell_footer_remix_app_components_layout_main_tsx_remix_app_components_nav_footer_tsx", @@ -1506741,7 +1509915,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L3041", + "source_location": "L3068", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_single_file_embed_bundle_remix_vite_embed_config_ts_remix_scripts_verify_embed_bundle_mjs", @@ -1506751,7 +1509925,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L4272", + "source_location": "L4299", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_social_graph_follows_friends_api_utils_users_social_ts_api_v1_users_follow_friend_relationships_connections", @@ -1506764,14 +1509938,14 @@ "source_location": "L428", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", - "target": "testing_social_meta_link_unfurls_remix_app_api_utils_meta_socialmeta_ts", + "target": "testing_social_meta_link_unfurls_remix_app_api_utils_meta_socialmeta_ts_socialpreview_ts_socialcard_ts", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L1595", + "source_location": "L1622", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_subspaces_remix_app_components_subspaces_remix_app_api_utils_subspaces_api_v1_subspaces", @@ -1506781,7 +1509955,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L2019", + "source_location": "L2046", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_thing_context_menu_remix_app_components_thingtime_contextmenu", @@ -1506791,7 +1509965,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L2032", + "source_location": "L2059", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_things_duplicate_remix_app_components_things_thingspage_tsx_thingsmenumodel_ts", @@ -1506801,7 +1509975,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L4939", + "source_location": "L4966", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_things_page_things_remix_app_components_things_api_v1_things_bulk", @@ -1506811,7 +1509985,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L4435", + "source_location": "L4462", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_thingtime_desktop_mesh_packaging_electron_mcp_macos_thingtimenode", @@ -1506821,7 +1509995,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L3579", + "source_location": "L3606", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_token_minter_personal_access_tokens_remix_app_components_settings_tokenminter_tsx_api_utils_auth_pattokens_ts", @@ -1506831,7 +1510005,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L1990", + "source_location": "L2017", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_up_down_votes_remix_app_api_utils_things_updown_ts_remix_app_components_feed_updowncontrol_tsx", @@ -1506851,7 +1510025,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L914", + "source_location": "L941", "weight": 1.0, "source": "testing_testing_md_per_area_manual_test_checklists", "target": "testing_worktree_dependency_bootstrap_remix_scripts_ensure_dependencies_js", @@ -1506861,7 +1510035,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L5563", + "source_location": "L5590", "weight": 1.0, "source": "testing_design_system_builder_builder_p_id_docs_design_system_remix_app_components_builder_api_v1_webpages_resolve_api_v1_admin_webpages_seed", "target": "testing_recovery_cards_build_ids_and_app_selection", @@ -1506871,7 +1510045,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L5963", + "source_location": "L5990", "weight": 1.0, "source": "testing_lopu_ai_assistant_lopu_floating_launcher_remix_app_components_lopu_api_v1_lopu_chats_api_v1_ai_models", "target": "testing_lopu_verified_access_credits_client_prs_lopu_verified_credits_design_md_4", @@ -1506881,7 +1510055,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L5953", + "source_location": "L5980", "weight": 1.0, "source": "testing_lopu_ai_assistant_lopu_floating_launcher_remix_app_components_lopu_api_v1_lopu_chats_api_v1_ai_models", "target": "testing_pr_592_integration_regression", @@ -1506891,7 +1510065,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L5956", + "source_location": "L5983", "weight": 1.0, "source": "testing_lopu_ai_assistant_lopu_floating_launcher_remix_app_components_lopu_api_v1_lopu_chats_api_v1_ai_models", "target": "testing_shared_rich_text_surfaces_pr_635", @@ -1506901,7 +1510075,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L6021", + "source_location": "L6048", "weight": 1.0, "source": "testing_lopu_verified_access_credits_client_prs_lopu_verified_credits_design_md_4", "target": "testing_money_invariants_server_regressions_fixer_round_1", @@ -1506911,7 +1510085,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "TESTING.md", - "source_location": "L6074", + "source_location": "L6101", "weight": 1.0, "source": "testing_index_consolidation_regression_checks", "target": "testing_desktop_permission_recovery", @@ -1509591,7 +1512765,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3578", + "source_location": "L3594", "weight": 1.0, "source": "remix_changelog", "target": "docs_thingtime_embed", @@ -1510231,7 +1513405,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3676", + "source_location": "L3692", "weight": 1.0, "source": "remix_changelog", "target": "docs_design_design_language", @@ -1511521,7 +1514695,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L4075", + "source_location": "L4091", "weight": 1.0, "source": "remix_changelog_changelog", "target": "remix_changelog_1_0_0_yyyy_mm_dd", @@ -1511541,7 +1514715,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L885", + "source_location": "L901", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_2026_08_24_action_thing_v1_declarative_capability_bounded_programs", @@ -1511551,7 +1514725,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L865", + "source_location": "L881", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_2026_08_25_action_thing_v1_builder_ttaction_closure_used_by_v2_design", @@ -1511561,7 +1514735,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L850", + "source_location": "L866", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_2026_08_25_action_thing_v1_security_review_private_minting_trust_boundary_delegated_resolution", @@ -1511571,7 +1514745,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L768", + "source_location": "L784", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_2026_08_30_design_system_alignment_block_based_site_builder_claude_ai", @@ -1511581,7 +1514755,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L822", + "source_location": "L838", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_2026_08_31_bounded_graphify_snapshot_retention", @@ -1511591,7 +1514765,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L735", + "source_location": "L751", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_2026_08_31_builder_round_4_figma_layer_styling_wysiwyg_layout_fixes_claude_ai", @@ -1511601,7 +1514775,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L707", + "source_location": "L723", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_2026_08_31_builder_round_5_media_drop_paste_everywhere_figma_parity_controls_resizable_drawer_claude_ai", @@ -1511611,7 +1514785,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L683", + "source_location": "L699", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_2026_09_01_builder_round_6_true_wysiwyg_canvas_inline_editor_js_wrap_with_block_claude_ai", @@ -1511621,7 +1514795,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L659", + "source_location": "L675", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_2026_09_01_builder_round_8_saved_media_lifecycle_17_finding_review_batch_claude_ai", @@ -1511631,7 +1514805,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L802", + "source_location": "L818", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_2026_09_01_chatgpt_oauth_production_credential_vault", @@ -1511641,7 +1514815,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L814", + "source_location": "L830", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_2026_09_01_production_search_server_bundle_repair", @@ -1511651,7 +1514825,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L807", + "source_location": "L823", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_2026_09_01_self_draining_moderation_safety_sweep", @@ -1511661,7 +1514835,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L599", + "source_location": "L615", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_2026_09_02_app_suites_pokeworld_starsalign_on_thingtime_claude_ai", @@ -1511671,17 +1514845,17 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L640", + "source_location": "L656", "weight": 1.0, "source": "remix_changelog_unreleased", - "target": "remix_changelog_2026_09_02_app_suites_pokeworld_starsalign_on_thingtime_claude_ai_640", + "target": "remix_changelog_2026_09_02_app_suites_pokeworld_starsalign_on_thingtime_claude_ai_656", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L618", + "source_location": "L634", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_2026_09_02_ci_telemetry_satellite_things_index_storage_reclaim_pr_583_claude_ai", @@ -1511691,7 +1514865,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L293", + "source_location": "L309", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_2026_09_02_lopu_toast_position_setting_notifications_history_page_claude_ai", @@ -1511701,7 +1514875,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L578", + "source_location": "L594", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_2026_09_03_every_card_opens_a_dedicated_live_page_claude_ai", @@ -1511711,7 +1514885,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L570", + "source_location": "L586", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_2026_09_03_host_native_thingtime_login_bootstrap_codex_ai", @@ -1511721,7 +1514895,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L479", + "source_location": "L495", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_2026_09_03_lopu_ai_assistant_streamed_chat_tools_live_builder_patches_pr_592_claude_ai", @@ -1511731,7 +1514905,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L519", + "source_location": "L535", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_2026_09_03_lopu_voice_live_activities_personal_secure_vault_codex_ai", @@ -1511741,7 +1514915,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L542", + "source_location": "L558", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_2026_09_03_multi_environment_pr_preview_links_codex_ai", @@ -1511761,7 +1514935,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L557", + "source_location": "L573", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_2026_09_03_storage_migration_readiness_and_api_sweep_correction_codex_ai", @@ -1511801,7 +1514975,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L360", + "source_location": "L376", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_2026_09_04_lopu_direct_voice_reconciled_provider_models_pr_592_claude_ai", @@ -1511811,7 +1514985,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L394", + "source_location": "L410", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_2026_09_04_lopu_wave_2_hardening_server_verified_confirmations_json_fences_deterministic_provider_choice_pr_592_claude_ai", @@ -1511821,7 +1514995,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L430", + "source_location": "L446", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_2026_09_04_lopu_wave_2_voice_in_the_chat_page_your_own_providers_design_pass_navbar_pr_592_claude_ai", @@ -1511837,6 +1515011,16 @@ "target": "remix_changelog_2026_09_04_resilient_watch_pairing_and_saved_recording_chooser_codex_ai", "confidence_score": 1.0 }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "remix/CHANGELOG.md", + "source_location": "L293", + "weight": 1.0, + "source": "remix_changelog_unreleased", + "target": "remix_changelog_2026_09_04_rich_public_link_previews_codex_ai", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -1511911,7 +1515095,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L1081", + "source_location": "L1097", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_added", @@ -1511921,97 +1515105,97 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L1254", + "source_location": "L1270", "weight": 1.0, "source": "remix_changelog_unreleased", - "target": "remix_changelog_added_1254", + "target": "remix_changelog_added_1270", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L1889", + "source_location": "L1905", "weight": 1.0, "source": "remix_changelog_unreleased", - "target": "remix_changelog_added_1889", + "target": "remix_changelog_added_1905", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L2070", + "source_location": "L2086", "weight": 1.0, "source": "remix_changelog_unreleased", - "target": "remix_changelog_added_2070", + "target": "remix_changelog_added_2086", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L2231", + "source_location": "L2247", "weight": 1.0, "source": "remix_changelog_unreleased", - "target": "remix_changelog_added_2231", + "target": "remix_changelog_added_2247", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L2332", + "source_location": "L2348", "weight": 1.0, "source": "remix_changelog_unreleased", - "target": "remix_changelog_added_2332", + "target": "remix_changelog_added_2348", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L2966", + "source_location": "L2982", "weight": 1.0, "source": "remix_changelog_unreleased", - "target": "remix_changelog_added_2966", + "target": "remix_changelog_added_2982", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3482", + "source_location": "L3498", "weight": 1.0, "source": "remix_changelog_unreleased", - "target": "remix_changelog_added_3482", + "target": "remix_changelog_added_3498", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3884", + "source_location": "L3900", "weight": 1.0, "source": "remix_changelog_unreleased", - "target": "remix_changelog_added_3884", + "target": "remix_changelog_added_3900", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L4005", + "source_location": "L4021", "weight": 1.0, "source": "remix_changelog_unreleased", - "target": "remix_changelog_added_4005", + "target": "remix_changelog_added_4021", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L896", + "source_location": "L912", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_changed", @@ -1512021,67 +1515205,67 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L1172", + "source_location": "L1188", "weight": 1.0, "source": "remix_changelog_unreleased", - "target": "remix_changelog_changed_1172", + "target": "remix_changelog_changed_1188", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3414", + "source_location": "L3430", "weight": 1.0, "source": "remix_changelog_unreleased", - "target": "remix_changelog_changed_3414", + "target": "remix_changelog_changed_3430", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3732", + "source_location": "L3748", "weight": 1.0, "source": "remix_changelog_unreleased", - "target": "remix_changelog_changed_3732", + "target": "remix_changelog_changed_3748", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3898", + "source_location": "L3914", "weight": 1.0, "source": "remix_changelog_unreleased", - "target": "remix_changelog_changed_3898", + "target": "remix_changelog_changed_3914", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3941", + "source_location": "L3957", "weight": 1.0, "source": "remix_changelog_unreleased", - "target": "remix_changelog_changed_3941", + "target": "remix_changelog_changed_3957", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L4016", + "source_location": "L4032", "weight": 1.0, "source": "remix_changelog_unreleased", - "target": "remix_changelog_changed_4016", + "target": "remix_changelog_changed_4032", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L830", + "source_location": "L846", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_fixed", @@ -1512091,77 +1515275,77 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L1488", + "source_location": "L1504", "weight": 1.0, "source": "remix_changelog_unreleased", - "target": "remix_changelog_fixed_1488", + "target": "remix_changelog_fixed_1504", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L2272", + "source_location": "L2288", "weight": 1.0, "source": "remix_changelog_unreleased", - "target": "remix_changelog_fixed_2272", + "target": "remix_changelog_fixed_2288", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L2468", + "source_location": "L2484", "weight": 1.0, "source": "remix_changelog_unreleased", - "target": "remix_changelog_fixed_2468", + "target": "remix_changelog_fixed_2484", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3294", + "source_location": "L3310", "weight": 1.0, "source": "remix_changelog_unreleased", - "target": "remix_changelog_fixed_3294", + "target": "remix_changelog_fixed_3310", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3751", + "source_location": "L3767", "weight": 1.0, "source": "remix_changelog_unreleased", - "target": "remix_changelog_fixed_3751", + "target": "remix_changelog_fixed_3767", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3930", + "source_location": "L3946", "weight": 1.0, "source": "remix_changelog_unreleased", - "target": "remix_changelog_fixed_3930", + "target": "remix_changelog_fixed_3946", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L4054", + "source_location": "L4070", "weight": 1.0, "source": "remix_changelog_unreleased", - "target": "remix_changelog_fixed_4054", + "target": "remix_changelog_fixed_4070", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L1442", + "source_location": "L1458", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_performance", @@ -1512171,37 +1515355,37 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L1837", + "source_location": "L1853", "weight": 1.0, "source": "remix_changelog_unreleased", - "target": "remix_changelog_performance_1837", + "target": "remix_changelog_performance_1853", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L2018", + "source_location": "L2034", "weight": 1.0, "source": "remix_changelog_unreleased", - "target": "remix_changelog_performance_2018", + "target": "remix_changelog_performance_2034", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3211", + "source_location": "L3227", "weight": 1.0, "source": "remix_changelog_unreleased", - "target": "remix_changelog_performance_3211", + "target": "remix_changelog_performance_3227", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L4000", + "source_location": "L4016", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_pr_13_remix_hydration_vercel_status_and_deployment_hygiene", @@ -1512211,7 +1515395,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3925", + "source_location": "L3941", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_pr_16_auth_and_lopu_hardening", @@ -1512221,7 +1515405,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3893", + "source_location": "L3909", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_pr_24_nitro_react_router_migration", @@ -1512231,7 +1515415,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L3879", + "source_location": "L3895", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_pr_26_environment_aware_footer_status_checks", @@ -1512241,7 +1515425,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L1137", + "source_location": "L1153", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_security", @@ -1512251,27 +1515435,27 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L2158", + "source_location": "L2174", "weight": 1.0, "source": "remix_changelog_unreleased", - "target": "remix_changelog_security_2158", + "target": "remix_changelog_security_2174", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L2951", + "source_location": "L2967", "weight": 1.0, "source": "remix_changelog_unreleased", - "target": "remix_changelog_security_2951", + "target": "remix_changelog_security_2967", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "remix/CHANGELOG.md", - "source_location": "L4065", + "source_location": "L4081", "weight": 1.0, "source": "remix_changelog_unreleased", "target": "remix_changelog_verified", @@ -1515042,5 +1518226,5 @@ "source_file": "docs/graphify-content-addressed-snapshots.md" } ], - "built_at_commit": "6b7ee830c3378c3da8534c0b0517498e61e17db5" + "built_at_commit": "ee47ac7687fc7c7b773b728131a96ef4a4610996" } \ No newline at end of file diff --git a/graphify-out/snapshots/v1/4ddaafa1a7274b70d85fb051c2202466dc9a78691cf8eaa8d532756d22eac0e3/b79e5f1f088efb7dc1de552d6c40ff6d0e8976988261934134648bb5fdb30db1/manifest.json b/graphify-out/snapshots/v1/96364f533539f7e0a309f8170f65e72edfa29a2a8670c1e5ac758257ff7c8372/7e6b7dbc2c48b212ec1c9e897971a814765e541a14f737ee90d1ba2cf1a6fb39/manifest.json similarity index 83% rename from graphify-out/snapshots/v1/4ddaafa1a7274b70d85fb051c2202466dc9a78691cf8eaa8d532756d22eac0e3/b79e5f1f088efb7dc1de552d6c40ff6d0e8976988261934134648bb5fdb30db1/manifest.json rename to graphify-out/snapshots/v1/96364f533539f7e0a309f8170f65e72edfa29a2a8670c1e5ac758257ff7c8372/7e6b7dbc2c48b212ec1c9e897971a814765e541a14f737ee90d1ba2cf1a6fb39/manifest.json index 8e4e06401f..1a49748e8d 100644 --- a/graphify-out/snapshots/v1/4ddaafa1a7274b70d85fb051c2202466dc9a78691cf8eaa8d532756d22eac0e3/b79e5f1f088efb7dc1de552d6c40ff6d0e8976988261934134648bb5fdb30db1/manifest.json +++ b/graphify-out/snapshots/v1/96364f533539f7e0a309f8170f65e72edfa29a2a8670c1e5ac758257ff7c8372/7e6b7dbc2c48b212ec1c9e897971a814765e541a14f737ee90d1ba2cf1a6fb39/manifest.json @@ -5,1262 +5,1262 @@ "semantic_hash": "b9fed5ba36a6dcf60eca8606067ca747" }, ".claude/settings.json": { - "mtime": 1788939899.6947281, + "mtime": 1788947732.0732772, "ast_hash": "e1073342e958ac9f00716938c8f165e3", "semantic_hash": "e1073342e958ac9f00716938c8f165e3" }, ".codex/hooks.json": { - "mtime": 1788939899.6956577, + "mtime": 1788947732.074031, "ast_hash": "64d1ded9263ec58e53f941a5a8cbb70c", "semantic_hash": "64d1ded9263ec58e53f941a5a8cbb70c" }, ".eslintrc.json": { - "mtime": 1788939899.6961584, + "mtime": 1788947732.074031, "ast_hash": "9b8be5ef96ddd69ecd1ddc1554c61a88", "semantic_hash": "9b8be5ef96ddd69ecd1ddc1554c61a88" }, ".prettierrc.js": { - "mtime": 1788939899.7040238, + "mtime": 1788947732.074611, "ast_hash": "957a9d8b4abad479fccf834840f4f673", "semantic_hash": "957a9d8b4abad479fccf834840f4f673" }, "docs/design/claude-design-mockup-v1/source/support.js": { - "mtime": 1788939900.0943024, + "mtime": 1788947732.2032762, "ast_hash": "5d03065df5441f0c24f990fac9a018dd", "semantic_hash": "5d03065df5441f0c24f990fac9a018dd" }, "docs/design/claude-design-mockup-v2-fable/ds/react-dom.js": { - "mtime": 1788939900.094982, + "mtime": 1788947732.204358, "ast_hash": "c1b9b966eaf9ca3cf4ce5b8b4b270c3c", "semantic_hash": "c1b9b966eaf9ca3cf4ce5b8b4b270c3c" }, "docs/design/claude-design-mockup-v2-fable/ds/react.js": { - "mtime": 1788939900.0987897, + "mtime": 1788947732.207276, "ast_hash": "48a0a0ecf3e98c61806d87ab1e4bbc83", "semantic_hash": "48a0a0ecf3e98c61806d87ab1e4bbc83" }, "docs/design/claude-design-mockup-v2-fable/ds/thingtime-bundle.js": { - "mtime": 1788939900.101213, + "mtime": 1788947732.2102761, "ast_hash": "641368403e89f91430f7e8b1bb17d35b", "semantic_hash": "641368403e89f91430f7e8b1bb17d35b" }, "docs/design/claude-design-mockup-v2-fable/ds/tt-elements.js": { - "mtime": 1788939900.1014245, + "mtime": 1788947732.2102761, "ast_hash": "cb82906dc263788308da36ef99927834", "semantic_hash": "cb82906dc263788308da36ef99927834" }, "docs/design/claude-design-mockup-v2-fable/support.js": { - "mtime": 1788939900.1076496, + "mtime": 1788947732.218276, "ast_hash": "5d03065df5441f0c24f990fac9a018dd", "semantic_hash": "5d03065df5441f0c24f990fac9a018dd" }, "docs/design/inline-dc.py": { - "mtime": 1788939900.1077707, + "mtime": 1788947732.218276, "ast_hash": "63cf6fdbe9995896b07b92a6a5df30d4", "semantic_hash": "63cf6fdbe9995896b07b92a6a5df30d4" }, "docs/design/thingtime-app/ds/react-dom.js": { - "mtime": 1788939900.1082518, + "mtime": 1788947732.2192762, "ast_hash": "c1b9b966eaf9ca3cf4ce5b8b4b270c3c", "semantic_hash": "c1b9b966eaf9ca3cf4ce5b8b4b270c3c" }, "docs/design/thingtime-app/ds/react.js": { - "mtime": 1788939900.1103303, + "mtime": 1788947732.222276, "ast_hash": "48a0a0ecf3e98c61806d87ab1e4bbc83", "semantic_hash": "48a0a0ecf3e98c61806d87ab1e4bbc83" }, "docs/design/thingtime-app/ds/thingtime-bundle.js": { - "mtime": 1788939900.112723, + "mtime": 1788947732.225276, "ast_hash": "641368403e89f91430f7e8b1bb17d35b", "semantic_hash": "641368403e89f91430f7e8b1bb17d35b" }, "docs/design/thingtime-app/ds/tt-elements.js": { - "mtime": 1788939900.11296, + "mtime": 1788947732.225276, "ast_hash": "cb82906dc263788308da36ef99927834", "semantic_hash": "cb82906dc263788308da36ef99927834" }, "docs/design/thingtime-app/support.js": { - "mtime": 1788939900.115258, + "mtime": 1788947732.226276, "ast_hash": "5d03065df5441f0c24f990fac9a018dd", "semantic_hash": "5d03065df5441f0c24f990fac9a018dd" }, "docs/design/thingtime-directions/ds/react-dom.js": { - "mtime": 1788939900.1157084, + "mtime": 1788947732.227408, "ast_hash": "c1b9b966eaf9ca3cf4ce5b8b4b270c3c", "semantic_hash": "c1b9b966eaf9ca3cf4ce5b8b4b270c3c" }, "docs/design/thingtime-directions/ds/react.js": { - "mtime": 1788939900.1192076, + "mtime": 1788947732.230276, "ast_hash": "48a0a0ecf3e98c61806d87ab1e4bbc83", "semantic_hash": "48a0a0ecf3e98c61806d87ab1e4bbc83" }, "docs/design/thingtime-directions/ds/thingtime-bundle.js": { - "mtime": 1788939900.1218235, + "mtime": 1788947732.233276, "ast_hash": "641368403e89f91430f7e8b1bb17d35b", "semantic_hash": "641368403e89f91430f7e8b1bb17d35b" }, "docs/design/thingtime-directions/ds/tt-elements.js": { - "mtime": 1788939900.1220226, + "mtime": 1788947732.233276, "ast_hash": "cb82906dc263788308da36ef99927834", "semantic_hash": "cb82906dc263788308da36ef99927834" }, "docs/design/thingtime-directions/support.js": { - "mtime": 1788939900.1241102, + "mtime": 1788947732.241276, "ast_hash": "5d03065df5441f0c24f990fac9a018dd", "semantic_hash": "5d03065df5441f0c24f990fac9a018dd" }, "docs/design/thingtime-landing-1a-classic-centered/ds/react-dom.js": { - "mtime": 1788939900.124425, + "mtime": 1788947732.2423804, "ast_hash": "c1b9b966eaf9ca3cf4ce5b8b4b270c3c", "semantic_hash": "c1b9b966eaf9ca3cf4ce5b8b4b270c3c" }, "docs/design/thingtime-landing-1a-classic-centered/ds/react.js": { - "mtime": 1788939900.1281817, + "mtime": 1788947732.245276, "ast_hash": "48a0a0ecf3e98c61806d87ab1e4bbc83", "semantic_hash": "48a0a0ecf3e98c61806d87ab1e4bbc83" }, "docs/design/thingtime-landing-1a-classic-centered/ds/thingtime-bundle.js": { - "mtime": 1788939900.1313624, + "mtime": 1788947732.2482758, "ast_hash": "641368403e89f91430f7e8b1bb17d35b", "semantic_hash": "641368403e89f91430f7e8b1bb17d35b" }, "docs/design/thingtime-landing-1a-classic-centered/ds/tt-elements.js": { - "mtime": 1788939900.1315851, + "mtime": 1788947732.2482758, "ast_hash": "cb82906dc263788308da36ef99927834", "semantic_hash": "cb82906dc263788308da36ef99927834" }, "docs/design/thingtime-landing-1a-classic-centered/support.js": { - "mtime": 1788939900.1345804, + "mtime": 1788947732.2502759, "ast_hash": "5d03065df5441f0c24f990fac9a018dd", "semantic_hash": "5d03065df5441f0c24f990fac9a018dd" }, "docs/design/thingtime-landing-1b-product-split/ds/react-dom.js": { - "mtime": 1788939900.1349986, + "mtime": 1788947732.2512758, "ast_hash": "c1b9b966eaf9ca3cf4ce5b8b4b270c3c", "semantic_hash": "c1b9b966eaf9ca3cf4ce5b8b4b270c3c" }, "docs/design/thingtime-landing-1b-product-split/ds/react.js": { - "mtime": 1788939900.137372, + "mtime": 1788947732.2542758, "ast_hash": "48a0a0ecf3e98c61806d87ab1e4bbc83", "semantic_hash": "48a0a0ecf3e98c61806d87ab1e4bbc83" }, "docs/design/thingtime-landing-1b-product-split/ds/thingtime-bundle.js": { - "mtime": 1788939900.1391766, + "mtime": 1788947732.2572758, "ast_hash": "641368403e89f91430f7e8b1bb17d35b", "semantic_hash": "641368403e89f91430f7e8b1bb17d35b" }, "docs/design/thingtime-landing-1b-product-split/ds/tt-elements.js": { - "mtime": 1788939900.1394026, + "mtime": 1788947732.2572758, "ast_hash": "cb82906dc263788308da36ef99927834", "semantic_hash": "cb82906dc263788308da36ef99927834" }, "docs/design/thingtime-landing-1b-product-split/support.js": { - "mtime": 1788939900.1431646, + "mtime": 1788947732.2582757, "ast_hash": "5d03065df5441f0c24f990fac9a018dd", "semantic_hash": "5d03065df5441f0c24f990fac9a018dd" }, "docs/design/thingtime-landing-1c-crowdfund-campaign/ds/react-dom.js": { - "mtime": 1788939900.1435075, + "mtime": 1788947732.2593954, "ast_hash": "c1b9b966eaf9ca3cf4ce5b8b4b270c3c", "semantic_hash": "c1b9b966eaf9ca3cf4ce5b8b4b270c3c" }, "docs/design/thingtime-landing-1c-crowdfund-campaign/ds/react.js": { - "mtime": 1788939900.1466157, + "mtime": 1788947732.2622757, "ast_hash": "48a0a0ecf3e98c61806d87ab1e4bbc83", "semantic_hash": "48a0a0ecf3e98c61806d87ab1e4bbc83" }, "docs/design/thingtime-landing-1c-crowdfund-campaign/ds/thingtime-bundle.js": { - "mtime": 1788939900.149459, + "mtime": 1788947732.2652757, "ast_hash": "641368403e89f91430f7e8b1bb17d35b", "semantic_hash": "641368403e89f91430f7e8b1bb17d35b" }, "docs/design/thingtime-landing-1c-crowdfund-campaign/ds/tt-elements.js": { - "mtime": 1788939900.1499906, + "mtime": 1788947732.2652757, "ast_hash": "cb82906dc263788308da36ef99927834", "semantic_hash": "cb82906dc263788308da36ef99927834" }, "docs/design/thingtime-landing-1c-crowdfund-campaign/support.js": { - "mtime": 1788939900.1522772, + "mtime": 1788947732.2662756, "ast_hash": "5d03065df5441f0c24f990fac9a018dd", "semantic_hash": "5d03065df5441f0c24f990fac9a018dd" }, "docs/design/thingtime-landing-1d-developer-first/ds/react-dom.js": { - "mtime": 1788939900.1530693, + "mtime": 1788947732.2673066, "ast_hash": "c1b9b966eaf9ca3cf4ce5b8b4b270c3c", "semantic_hash": "c1b9b966eaf9ca3cf4ce5b8b4b270c3c" }, "docs/design/thingtime-landing-1d-developer-first/ds/react.js": { - "mtime": 1788939900.1554108, + "mtime": 1788947732.2702756, "ast_hash": "48a0a0ecf3e98c61806d87ab1e4bbc83", "semantic_hash": "48a0a0ecf3e98c61806d87ab1e4bbc83" }, "docs/design/thingtime-landing-1d-developer-first/ds/thingtime-bundle.js": { - "mtime": 1788939900.1577754, + "mtime": 1788947732.2732756, "ast_hash": "641368403e89f91430f7e8b1bb17d35b", "semantic_hash": "641368403e89f91430f7e8b1bb17d35b" }, "docs/design/thingtime-landing-1d-developer-first/ds/tt-elements.js": { - "mtime": 1788939900.1580648, + "mtime": 1788947732.2732756, "ast_hash": "cb82906dc263788308da36ef99927834", "semantic_hash": "cb82906dc263788308da36ef99927834" }, "docs/design/thingtime-landing-1d-developer-first/support.js": { - "mtime": 1788939900.161457, + "mtime": 1788947732.2742758, "ast_hash": "5d03065df5441f0c24f990fac9a018dd", "semantic_hash": "5d03065df5441f0c24f990fac9a018dd" }, "docs/design/thingtime-landing-1e-typographic-story/ds/react-dom.js": { - "mtime": 1788939900.1617675, + "mtime": 1788947732.2751837, "ast_hash": "c1b9b966eaf9ca3cf4ce5b8b4b270c3c", "semantic_hash": "c1b9b966eaf9ca3cf4ce5b8b4b270c3c" }, "docs/design/thingtime-landing-1e-typographic-story/ds/react.js": { - "mtime": 1788939900.1649833, + "mtime": 1788947732.2782757, "ast_hash": "48a0a0ecf3e98c61806d87ab1e4bbc83", "semantic_hash": "48a0a0ecf3e98c61806d87ab1e4bbc83" }, "docs/design/thingtime-landing-1e-typographic-story/ds/thingtime-bundle.js": { - "mtime": 1788939900.1669707, + "mtime": 1788947732.2812757, "ast_hash": "641368403e89f91430f7e8b1bb17d35b", "semantic_hash": "641368403e89f91430f7e8b1bb17d35b" }, "docs/design/thingtime-landing-1e-typographic-story/ds/tt-elements.js": { - "mtime": 1788939900.1672301, + "mtime": 1788947732.2812757, "ast_hash": "cb82906dc263788308da36ef99927834", "semantic_hash": "cb82906dc263788308da36ef99927834" }, "docs/design/thingtime-landing-1e-typographic-story/support.js": { - "mtime": 1788939900.169391, + "mtime": 1788947732.2822757, "ast_hash": "5d03065df5441f0c24f990fac9a018dd", "semantic_hash": "5d03065df5441f0c24f990fac9a018dd" }, "docs/design/thingtime-landing-1f-ecosystem-map/ds/react-dom.js": { - "mtime": 1788939900.1697333, + "mtime": 1788947732.2830286, "ast_hash": "c1b9b966eaf9ca3cf4ce5b8b4b270c3c", "semantic_hash": "c1b9b966eaf9ca3cf4ce5b8b4b270c3c" }, "docs/design/thingtime-landing-1f-ecosystem-map/ds/react.js": { - "mtime": 1788939900.171781, + "mtime": 1788947732.2862756, "ast_hash": "48a0a0ecf3e98c61806d87ab1e4bbc83", "semantic_hash": "48a0a0ecf3e98c61806d87ab1e4bbc83" }, "docs/design/thingtime-landing-1f-ecosystem-map/ds/thingtime-bundle.js": { - "mtime": 1788939900.1747034, + "mtime": 1788947732.2882755, "ast_hash": "641368403e89f91430f7e8b1bb17d35b", "semantic_hash": "641368403e89f91430f7e8b1bb17d35b" }, "docs/design/thingtime-landing-1f-ecosystem-map/ds/tt-elements.js": { - "mtime": 1788939900.1751835, + "mtime": 1788947732.2882755, "ast_hash": "cb82906dc263788308da36ef99927834", "semantic_hash": "cb82906dc263788308da36ef99927834" }, "docs/design/thingtime-landing-1f-ecosystem-map/support.js": { - "mtime": 1788939900.1779628, + "mtime": 1788947732.2902756, "ast_hash": "5d03065df5441f0c24f990fac9a018dd", "semantic_hash": "5d03065df5441f0c24f990fac9a018dd" }, "docs/design/thingtime-landing-1g-magic-path-bar/ds/react-dom.js": { - "mtime": 1788939900.1782541, + "mtime": 1788947732.2909923, "ast_hash": "c1b9b966eaf9ca3cf4ce5b8b4b270c3c", "semantic_hash": "c1b9b966eaf9ca3cf4ce5b8b4b270c3c" }, "docs/design/thingtime-landing-1g-magic-path-bar/ds/react.js": { - "mtime": 1788939900.1807988, + "mtime": 1788947732.2942755, "ast_hash": "48a0a0ecf3e98c61806d87ab1e4bbc83", "semantic_hash": "48a0a0ecf3e98c61806d87ab1e4bbc83" }, "docs/design/thingtime-landing-1g-magic-path-bar/ds/thingtime-bundle.js": { - "mtime": 1788939900.1843295, + "mtime": 1788947732.2962756, "ast_hash": "641368403e89f91430f7e8b1bb17d35b", "semantic_hash": "641368403e89f91430f7e8b1bb17d35b" }, "docs/design/thingtime-landing-1g-magic-path-bar/ds/tt-elements.js": { - "mtime": 1788939900.185005, + "mtime": 1788947732.2962756, "ast_hash": "cb82906dc263788308da36ef99927834", "semantic_hash": "cb82906dc263788308da36ef99927834" }, "docs/design/thingtime-landing-1g-magic-path-bar/support.js": { - "mtime": 1788939900.1878145, + "mtime": 1788947732.2982755, "ast_hash": "5d03065df5441f0c24f990fac9a018dd", "semantic_hash": "5d03065df5441f0c24f990fac9a018dd" }, "docs/design/thingtime-landing-1h-ultra-minimal-voxel/ds/react-dom.js": { - "mtime": 1788939900.1881979, + "mtime": 1788947732.298921, "ast_hash": "c1b9b966eaf9ca3cf4ce5b8b4b270c3c", "semantic_hash": "c1b9b966eaf9ca3cf4ce5b8b4b270c3c" }, "docs/design/thingtime-landing-1h-ultra-minimal-voxel/ds/react.js": { - "mtime": 1788939900.1912568, + "mtime": 1788947732.3022754, "ast_hash": "48a0a0ecf3e98c61806d87ab1e4bbc83", "semantic_hash": "48a0a0ecf3e98c61806d87ab1e4bbc83" }, "docs/design/thingtime-landing-1h-ultra-minimal-voxel/ds/thingtime-bundle.js": { - "mtime": 1788939900.1957786, + "mtime": 1788947732.3042755, "ast_hash": "641368403e89f91430f7e8b1bb17d35b", "semantic_hash": "641368403e89f91430f7e8b1bb17d35b" }, "docs/design/thingtime-landing-1h-ultra-minimal-voxel/ds/tt-elements.js": { - "mtime": 1788939900.1969602, + "mtime": 1788947732.3042755, "ast_hash": "cb82906dc263788308da36ef99927834", "semantic_hash": "cb82906dc263788308da36ef99927834" }, "docs/design/thingtime-landing-1h-ultra-minimal-voxel/support.js": { - "mtime": 1788939900.2028859, + "mtime": 1788947732.3062754, "ast_hash": "5d03065df5441f0c24f990fac9a018dd", "semantic_hash": "5d03065df5441f0c24f990fac9a018dd" }, "docs/design/thingtime-launch-celebration/ds/react-dom.js": { - "mtime": 1788939900.2036033, + "mtime": 1788947732.306835, "ast_hash": "c1b9b966eaf9ca3cf4ce5b8b4b270c3c", "semantic_hash": "c1b9b966eaf9ca3cf4ce5b8b4b270c3c" }, "docs/design/thingtime-launch-celebration/ds/react.js": { - "mtime": 1788939900.2065802, + "mtime": 1788947732.3102753, "ast_hash": "48a0a0ecf3e98c61806d87ab1e4bbc83", "semantic_hash": "48a0a0ecf3e98c61806d87ab1e4bbc83" }, "docs/design/thingtime-launch-celebration/ds/thingtime-bundle.js": { - "mtime": 1788939900.2097287, + "mtime": 1788947732.3122754, "ast_hash": "641368403e89f91430f7e8b1bb17d35b", "semantic_hash": "641368403e89f91430f7e8b1bb17d35b" }, "docs/design/thingtime-launch-celebration/ds/tt-elements.js": { - "mtime": 1788939900.2103274, + "mtime": 1788947732.3122754, "ast_hash": "cb82906dc263788308da36ef99927834", "semantic_hash": "cb82906dc263788308da36ef99927834" }, "docs/design/thingtime-launch-celebration/support.js": { - "mtime": 1788939900.2140157, + "mtime": 1788947732.3142755, "ast_hash": "5d03065df5441f0c24f990fac9a018dd", "semantic_hash": "5d03065df5441f0c24f990fac9a018dd" }, "ecosystem.config.js": { - "mtime": 1788939900.220701, + "mtime": 1788947732.3142755, "ast_hash": "631928c2b911f22f5614e62a253f0bab", "semantic_hash": "631928c2b911f22f5614e62a253f0bab" }, "iOS/Thingtime/App/ThingtimeApp.swift": { - "mtime": 1788939900.967823, + "mtime": 1788947732.4838178, "ast_hash": "7f5972ca3119ba238cb9f6ccbd6b0395", "semantic_hash": "7f5972ca3119ba238cb9f6ccbd6b0395" }, "iOS/Thingtime/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json": { - "mtime": 1788939900.9691586, + "mtime": 1788947732.484759, "ast_hash": "6400acf14920867079fa72f5e5432c83", "semantic_hash": "6400acf14920867079fa72f5e5432c83" }, "iOS/Thingtime/Resources/Assets.xcassets/Contents.json": { - "mtime": 1788939900.9695866, + "mtime": 1788947732.4848702, "ast_hash": "9deb2ada1cc834bbebf8bbad9c8978a1", "semantic_hash": "9deb2ada1cc834bbebf8bbad9c8978a1" }, "iOS/Thingtime/Web/ThingtimeWebDestination.swift": { - "mtime": 1788939900.9706373, + "mtime": 1788947732.4851289, "ast_hash": "b5f431e74ed1d59f9058f1d1fdcfe093", "semantic_hash": "b5f431e74ed1d59f9058f1d1fdcfe093" }, "iOS/Thingtime/Web/ThingtimeWebView.swift": { - "mtime": 1788939900.9708138, + "mtime": 1788947732.485274, "ast_hash": "df6d1251e54627ca5db6dc65eedfca11", "semantic_hash": "df6d1251e54627ca5db6dc65eedfca11" }, "iOS/Thingtime/Web/WebView.swift": { - "mtime": 1788939900.9711807, + "mtime": 1788947732.485274, "ast_hash": "ae4e0f459036d4e4e23123374b27a91c", "semantic_hash": "ae4e0f459036d4e4e23123374b27a91c" }, "iOS/ThingtimeTests/ThingtimeWebDestinationTests.swift": { - "mtime": 1788939900.9727778, + "mtime": 1788947732.4857883, "ast_hash": "23b5895f4a187b99ebb2829ced883376", "semantic_hash": "23b5895f4a187b99ebb2829ced883376" }, "iOS/scripts/_xcode-common.sh": { - "mtime": 1788939900.9819798, + "mtime": 1788947732.4875176, "ast_hash": "a0ba94e8c081700c3abc7ea88f62c5d4", "semantic_hash": "a0ba94e8c081700c3abc7ea88f62c5d4" }, "iOS/scripts/bootstrap.sh": { - "mtime": 1788939900.9820745, + "mtime": 1788947732.487779, "ast_hash": "d587f9d58a6acc58239afc8df21792c4", "semantic_hash": "d587f9d58a6acc58239afc8df21792c4" }, "iOS/scripts/build.sh": { - "mtime": 1788939900.9821546, + "mtime": 1788947732.487779, "ast_hash": "b9e11255ea0b209a92286e08b37b28ce", "semantic_hash": "b9e11255ea0b209a92286e08b37b28ce" }, "iOS/scripts/test.sh": { - "mtime": 1788939900.9822307, + "mtime": 1788947732.487779, "ast_hash": "9405519e7a2c14bf28b547df8adff278", "semantic_hash": "9405519e7a2c14bf28b547df8adff278" }, "iOS/scripts/testflight-beta.sh": { - "mtime": 1788939900.982311, + "mtime": 1788947732.487779, "ast_hash": "c0286e4042d72f863087d4901784ddea", "semantic_hash": "c0286e4042d72f863087d4901784ddea" }, "lopu/ecosystem.config.js": { - "mtime": 1788939900.9846756, + "mtime": 1788947732.4884589, "ast_hash": "64c2b07d331998b2c65b62239b1c081c", "semantic_hash": "64c2b07d331998b2c65b62239b1c081c" }, "lopu/package.json": { - "mtime": 1788939900.9879606, + "mtime": 1788947732.4886327, "ast_hash": "67b60b23c6fa33825ab216f43a2436f4", "semantic_hash": "67b60b23c6fa33825ab216f43a2436f4" }, "lopu/src/index.js": { - "mtime": 1788939900.9885938, + "mtime": 1788947732.4886327, "ast_hash": "7a9487375978d8001acd93869df362b0", "semantic_hash": "7a9487375978d8001acd93869df362b0" }, "package.json": { - "mtime": 1788939901.0346336, + "mtime": 1788947732.495274, "ast_hash": "09b662d0990b61c2dc3e71b706d4dabe", "semantic_hash": "09b662d0990b61c2dc3e71b706d4dabe" }, "remix/.ds-entry.tsx": { - "mtime": 1788939901.0358634, + "mtime": 1788947732.4957223, "ast_hash": "0fc08d01f313736a4db7011bb80ba036", "semantic_hash": "0fc08d01f313736a4db7011bb80ba036" }, "remix/.eslintrc.json": { - "mtime": 1788939901.036014, + "mtime": 1788947732.4962363, "ast_hash": "75993b3e63994e832f4d692d243ac6ec", "semantic_hash": "75993b3e63994e832f4d692d243ac6ec" }, "remix/.prettierrc.js": { - "mtime": 1788939901.0367336, + "mtime": 1788947732.4962363, "ast_hash": "24432b1434c13a05ae8d0aa0b2f5def9", "semantic_hash": "24432b1434c13a05ae8d0aa0b2f5def9" }, "remix/app.env.d.ts": { - "mtime": 1788939901.0385299, + "mtime": 1788947732.4972742, "ast_hash": "ce2248f350df6376d4b2ea8f4972d139", "semantic_hash": "ce2248f350df6376d4b2ea8f4972d139" }, "remix/app/Providers/Chakra/ChakraWrapper.tsx": { - "mtime": 1788939901.0387774, + "mtime": 1788947732.4977233, "ast_hash": "8dd99329bf696ae6b86c27e82d530860", "semantic_hash": "8dd99329bf696ae6b86c27e82d530860" }, "remix/app/Providers/Chakra/Components/Button.tsx": { - "mtime": 1788939901.0389533, + "mtime": 1788947732.497821, "ast_hash": "5ef4bb58fd799796c9d4d4861b5fe665", "semantic_hash": "5ef4bb58fd799796c9d4d4861b5fe665" }, "remix/app/Providers/Chakra/colors.tsx": { - "mtime": 1788939901.039353, + "mtime": 1788947732.497821, "ast_hash": "544252f0a30c8a771a1f23a5abd9e0b3", "semantic_hash": "544252f0a30c8a771a1f23a5abd9e0b3" }, "remix/app/Providers/Chakra/createEmotionCache.ts": { - "mtime": 1788939901.0397456, + "mtime": 1788947732.497821, "ast_hash": "5836fafe61ff26de3cc31cabb5b77aac", "semantic_hash": "5836fafe61ff26de3cc31cabb5b77aac" }, "remix/app/Providers/Chakra/emotionContext.ts": { - "mtime": 1788939901.0398831, + "mtime": 1788947732.497821, "ast_hash": "dad42754b343818f44da8fad307a73fa", "semantic_hash": "dad42754b343818f44da8fad307a73fa" }, "remix/app/Providers/Chakra/space.tsx": { - "mtime": 1788939901.0400565, + "mtime": 1788947732.497821, "ast_hash": "6d4866bb3986cf43b8cd72a7071263e9", "semantic_hash": "6d4866bb3986cf43b8cd72a7071263e9" }, "remix/app/Providers/Chakra/theme.tsx": { - "mtime": 1788939901.041272, + "mtime": 1788947732.497821, "ast_hash": "656bf0724c54255a5ecd68720aee4ee8", "semantic_hash": "656bf0724c54255a5ecd68720aee4ee8" }, "remix/app/Providers/Thingtime/ThingtimeDefaults.tsx": { - "mtime": 1788939901.041575, + "mtime": 1788947732.497821, "ast_hash": "60cd24993354681f8cc4c7e6babbab79", "semantic_hash": "60cd24993354681f8cc4c7e6babbab79" }, "remix/app/Providers/Thingtime/defaults/cmdWatcher.ts": { - "mtime": 1788939901.0439618, + "mtime": 1788947732.4983323, "ast_hash": "4a9346609db2ffbb77bffd37402b7531", "semantic_hash": "4a9346609db2ffbb77bffd37402b7531" }, "remix/app/Providers/ThingtimeProvider.tsx": { - "mtime": 1788939901.0444324, + "mtime": 1788947732.4983323, "ast_hash": "e682bcc5078c2637790a6252e90423e1", "semantic_hash": "e682bcc5078c2637790a6252e90423e1" }, "remix/app/api/cookies.ts": { - "mtime": 1788939901.0477836, + "mtime": 1788947732.4983323, "ast_hash": "e60e73826a902343ad05812267af77a6", "semantic_hash": "e60e73826a902343ad05812267af77a6" }, "remix/app/api/http.ts": { - "mtime": 1788939901.0478728, + "mtime": 1788947732.4991639, "ast_hash": "77fa5b2685bfd0967826aeaf86a6da44", "semantic_hash": "77fa5b2685bfd0967826aeaf86a6da44" }, "remix/app/api/utils/auth/authCookie.ts": { - "mtime": 1788939901.083095, + "mtime": 1788947732.514274, "ast_hash": "2ce2078796516d975c84f79148731f02", "semantic_hash": "2ce2078796516d975c84f79148731f02" }, "remix/app/api/utils/auth/devVerification.ts": { - "mtime": 1788939901.0834773, + "mtime": 1788947732.514274, "ast_hash": "a02fb31201ad9cf9d435523912960e52", "semantic_hash": "a02fb31201ad9cf9d435523912960e52" }, "remix/app/api/utils/auth/email.ts": { - "mtime": 1788939901.083609, + "mtime": 1788947732.514274, "ast_hash": "c5aad5c00167d7ed89a21a99fd436aa6", "semantic_hash": "c5aad5c00167d7ed89a21a99fd436aa6" }, "remix/app/api/utils/auth/emailVerifications.ts": { - "mtime": 1788939901.0836883, + "mtime": 1788947732.514274, "ast_hash": "032362345ccb3e72aefd16944943f6ae", "semantic_hash": "032362345ccb3e72aefd16944943f6ae" }, "remix/app/api/utils/auth/getCurrentUser.ts": { - "mtime": 1788939901.0841103, + "mtime": 1788947732.514274, "ast_hash": "36b3874669d34084f550994a13ff587f", "semantic_hash": "36b3874669d34084f550994a13ff587f" }, "remix/app/api/utils/auth/jwt.ts": { - "mtime": 1788939901.0842397, + "mtime": 1788947732.514274, "ast_hash": "7233925a106e6483185f627dd3534b82", "semantic_hash": "7233925a106e6483185f627dd3534b82" }, "remix/app/api/utils/auth/loginUser.ts": { - "mtime": 1788943126.4320045, + "mtime": 1788948107.3944938, "ast_hash": "d93159879b283a890f58d825bfe18dc4", "semantic_hash": "" }, "remix/app/api/utils/auth/registerUser.ts": { - "mtime": 1788943126.4342742, + "mtime": 1788948107.3944938, "ast_hash": "56b8ac0775b9304299c74226494d6692", "semantic_hash": "" }, "remix/app/api/utils/auth/serviceAccounts.ts": { - "mtime": 1788939901.0858712, + "mtime": 1788947732.5152738, "ast_hash": "6cd6e28e76c7fa95fff5001ab63ffdb4", "semantic_hash": "6cd6e28e76c7fa95fff5001ab63ffdb4" }, "remix/app/api/utils/auth/sessions.ts": { - "mtime": 1788939901.0860279, + "mtime": 1788947732.5152738, "ast_hash": "90cf010b8edae1d42d1c54a2d2f1f39a", "semantic_hash": "90cf010b8edae1d42d1c54a2d2f1f39a" }, "remix/app/api/utils/auth/users.ts": { - "mtime": 1788939901.0889916, + "mtime": 1788947732.516274, "ast_hash": "fae3d91ac942a33f61db1a06c08172b9", "semantic_hash": "fae3d91ac942a33f61db1a06c08172b9" }, "remix/app/api/utils/crypto/cryptoTools.server.ts": { - "mtime": 1788939901.0990999, + "mtime": 1788947732.5207534, "ast_hash": "6875050c2f602da99e34900adfae5b23", "semantic_hash": "6875050c2f602da99e34900adfae5b23" }, "remix/app/api/utils/health/statusTarget.ts": { - "mtime": 1788939901.1165051, + "mtime": 1788947732.523274, "ast_hash": "69460feb4e824c95e54ffe823fa9e025", "semantic_hash": "69460feb4e824c95e54ffe823fa9e025" }, "remix/app/api/utils/lopu/fallbacks.ts": { - "mtime": 1788939901.1276197, + "mtime": 1788947732.5252738, "ast_hash": "c3fdb61415abd0a31b69381488a12d0c", "semantic_hash": "c3fdb61415abd0a31b69381488a12d0c" }, "remix/app/api/utils/lopu/musing.ts": { - "mtime": 1788939901.1287243, + "mtime": 1788947732.5262737, "ast_hash": "7bdee8ed09572da064dc78441831a1fd", "semantic_hash": "7bdee8ed09572da064dc78441831a1fd" }, "remix/app/api/utils/lopu/rateLimit.ts": { - "mtime": 1788939901.129473, + "mtime": 1788947732.5262737, "ast_hash": "b3e63b849b85a9614e8d562b148d279b", "semantic_hash": "b3e63b849b85a9614e8d562b148d279b" }, "remix/app/api/utils/mongodb/collections.ts": { - "mtime": 1788939901.156716, + "mtime": 1788947732.5382738, "ast_hash": "9843de869c7a670b43d29c857898557f", "semantic_hash": "9843de869c7a670b43d29c857898557f" }, "remix/app/api/utils/mongodb/config.ts": { - "mtime": 1788939901.157164, + "mtime": 1788947732.5382738, "ast_hash": "9f91c0e8d39c89043571f4b99d173093", "semantic_hash": "9f91c0e8d39c89043571f4b99d173093" }, "remix/app/api/utils/mongodb/mongodb.ts": { - "mtime": 1788939901.1583297, + "mtime": 1788947732.5382738, "ast_hash": "b2a8e1a9ea9866d689d2c8652d19cf11", "semantic_hash": "b2a8e1a9ea9866d689d2c8652d19cf11" }, "remix/app/api/utils/mongodb/objectId.ts": { - "mtime": 1788939901.1589255, + "mtime": 1788947732.5382738, "ast_hash": "501c01c3b816e9d7e919ce6b52d5273f", "semantic_hash": "501c01c3b816e9d7e919ce6b52d5273f" }, "remix/app/api/utils/mongodb/status.ts": { - "mtime": 1788939901.1603012, + "mtime": 1788947732.5392737, "ast_hash": "83e5e1c72a6ca0c9f187cde0fa56a642", "semantic_hash": "83e5e1c72a6ca0c9f187cde0fa56a642" }, "remix/app/api/utils/userGenerateJWT.ts": { - "mtime": 1788939901.183078, + "mtime": 1788947732.5462737, "ast_hash": "21dd8f01ff5c6a96e7a19be06dbc9ec4", "semantic_hash": "21dd8f01ff5c6a96e7a19be06dbc9ec4" }, "remix/app/api/utils/vercel/status.ts": { - "mtime": 1788939901.184208, + "mtime": 1788947732.5476372, "ast_hash": "a323b7400de31043a617dcb9ab8d6bf8", "semantic_hash": "a323b7400de31043a617dcb9ab8d6bf8" }, "remix/app/components/API/Submit.tsx": { - "mtime": 1788939901.18876, + "mtime": 1788947732.548814, "ast_hash": "e902d59613175d496acfb137456e74f3", "semantic_hash": "e902d59613175d496acfb137456e74f3" }, "remix/app/components/API/Test.tsx": { - "mtime": 1788939901.1888428, + "mtime": 1788947732.5488782, "ast_hash": "9c663697db68de4ef281272f7929db22", "semantic_hash": "9c663697db68de4ef281272f7929db22" }, "remix/app/components/Branding/Branding.tsx": { - "mtime": 1788939901.2071004, + "mtime": 1788947732.5546892, "ast_hash": "805a7ade07635d115605e57dfed7869c", "semantic_hash": "805a7ade07635d115605e57dfed7869c" }, "remix/app/components/Branding/Logo.tsx": { - "mtime": 1788939901.207185, + "mtime": 1788947732.5546892, "ast_hash": "f07a52732008a2ddd15678b11b744457", "semantic_hash": "f07a52732008a2ddd15678b11b744457" }, "remix/app/components/Branding/LogoOld2.tsx": { - "mtime": 1788939901.2073224, + "mtime": 1788947732.5546892, "ast_hash": "31b09c50d7247b6e515c726de5b4dc5f", "semantic_hash": "31b09c50d7247b6e515c726de5b4dc5f" }, "remix/app/components/Branding/LogoOld3.tsx": { - "mtime": 1788939901.2073982, + "mtime": 1788947732.5546892, "ast_hash": "953d2e88bbd4d7cc30dac0fb8922a4b8", "semantic_hash": "953d2e88bbd4d7cc30dac0fb8922a4b8" }, "remix/app/components/Buttons/Attention.tsx": { - "mtime": 1788939901.2160158, + "mtime": 1788947732.5572736, "ast_hash": "fa475038ef6c7bd0894c01ce242eebcd", "semantic_hash": "fa475038ef6c7bd0894c01ce242eebcd" }, "remix/app/components/Buttons/Hamburger.tsx": { - "mtime": 1788939901.2160938, + "mtime": 1788947732.5579274, "ast_hash": "b7a6420ffcb651b959926210ed47ed3d", "semantic_hash": "b7a6420ffcb651b959926210ed47ed3d" }, "remix/app/components/Commander/CommanderV1Deprecated.tsx": { - "mtime": 1788939901.216265, + "mtime": 1788947732.5579274, "ast_hash": "a4d3bc593f99aa708f82dd9ea26ef186", "semantic_hash": "a4d3bc593f99aa708f82dd9ea26ef186" }, "remix/app/components/Commander/CommanderV2.tsx": { - "mtime": 1788939901.2164369, + "mtime": 1788947732.5580876, "ast_hash": "a88c1d625067f58f3ac187b006b29fc3", "semantic_hash": "a88c1d625067f58f3ac187b006b29fc3" }, "remix/app/components/DevKit/DevKit.tsx": { - "mtime": 1788939901.2212052, + "mtime": 1788947732.5592735, "ast_hash": "95842adc382054a3aa6bbe99fd174fc7", "semantic_hash": "95842adc382054a3aa6bbe99fd174fc7" }, "remix/app/components/Editor/Editor.tsx": { - "mtime": 1788939901.229508, + "mtime": 1788947732.5612736, "ast_hash": "67d6ccacbf662a9d7ee03996610cc6fd", "semantic_hash": "67d6ccacbf662a9d7ee03996610cc6fd" }, "remix/app/components/Icon/Icon.tsx": { - "mtime": 1788939901.246887, + "mtime": 1788947732.5672736, "ast_hash": "f9b42c21024591b1022f9038cd9e8681", "semantic_hash": "f9b42c21024591b1022f9038cd9e8681" }, "remix/app/components/Layout/Main.tsx": { - "mtime": 1788939901.250456, + "mtime": 1788947732.5696115, "ast_hash": "9eb6789dee4836da8da1ed9e5df42623", "semantic_hash": "9eb6789dee4836da8da1ed9e5df42623" }, "remix/app/components/Layout/TopSpacing.tsx": { - "mtime": 1788939901.2506137, + "mtime": 1788947732.5699584, "ast_hash": "45e853deebd1ee014ea082cf7d94ec83", "semantic_hash": "45e853deebd1ee014ea082cf7d94ec83" }, "remix/app/components/Login/Login.tsx": { - "mtime": 1788939901.2507682, + "mtime": 1788947732.5699584, "ast_hash": "02b27bd6b341f0d6480fef55fd3081e4", "semantic_hash": "02b27bd6b341f0d6480fef55fd3081e4" }, "remix/app/components/Login/Register.tsx": { - "mtime": 1788939901.2508821, + "mtime": 1788947732.5701847, "ast_hash": "ada1b6175a23f23ed76bb7deab8c36ad", "semantic_hash": "ada1b6175a23f23ed76bb7deab8c36ad" }, "remix/app/components/Lopu/useLopu.tsx": { - "mtime": 1788943126.4394422, + "mtime": 1788948107.3974938, "ast_hash": "11ac034be9c614d3e98f4761d4333a39", "semantic_hash": "" }, "remix/app/components/MagicInput/MagicInput.tsx": { - "mtime": 1788939901.261183, + "mtime": 1788947732.5732734, "ast_hash": "d92c5bf2257c9936ca1d0e01b1d50801", "semantic_hash": "d92c5bf2257c9936ca1d0e01b1d50801" }, "remix/app/components/MongoDB/MongoStatus.tsx": { - "mtime": 1788939901.270076, + "mtime": 1788947732.576963, "ast_hash": "a11bdd30856f92f011f40c79e80efdca", "semantic_hash": "a11bdd30856f92f011f40c79e80efdca" }, "remix/app/components/MongoDB/Raw.tsx": { - "mtime": 1788939901.2716625, + "mtime": 1788947732.576963, "ast_hash": "19fddb7638ae7ee4d50ede0ccbafdd39", "semantic_hash": "19fddb7638ae7ee4d50ede0ccbafdd39" }, "remix/app/components/MongoDB/RawResults.tsx": { - "mtime": 1788939901.271866, + "mtime": 1788947732.5772734, "ast_hash": "1f8ee300ad9ee8f96740071d6f3e53a4", "semantic_hash": "1f8ee300ad9ee8f96740071d6f3e53a4" }, "remix/app/components/NativeBridge/NativeBridgeHost.tsx": { - "mtime": 1788939901.2726114, + "mtime": 1788947732.5772734, "ast_hash": "81c9cb1c09c7e0dde734fd9c8177d09a", "semantic_hash": "81c9cb1c09c7e0dde734fd9c8177d09a" }, "remix/app/components/Nav/Footer.tsx": { - "mtime": 1788939901.2751155, + "mtime": 1788947732.5782735, "ast_hash": "2c52c870d0562085f2a4dfd71d8bce02", "semantic_hash": "2c52c870d0562085f2a4dfd71d8bce02" }, "remix/app/components/Nav/Nav.tsx": { - "mtime": 1788939901.275316, + "mtime": 1788947732.5782735, "ast_hash": "1165d461419243edd44a66586ecc3d24", "semantic_hash": "1165d461419243edd44a66586ecc3d24" }, "remix/app/components/Nav/ReactiveNav.tsx": { - "mtime": 1788939901.2755306, + "mtime": 1788947732.5782735, "ast_hash": "754772c54e9898c3ba24d30783829efb", "semantic_hash": "754772c54e9898c3ba24d30783829efb" }, "remix/app/components/Nav/ReactiveRightNav.tsx": { - "mtime": 1788939901.2756202, + "mtime": 1788947732.5782735, "ast_hash": "a7d22a7a4eeecf0650b8a28595ccedba", "semantic_hash": "a7d22a7a4eeecf0650b8a28595ccedba" }, "remix/app/components/Rainbow/Rainbow.tsx": { - "mtime": 1788939901.2929814, + "mtime": 1788947732.5810454, "ast_hash": "cce5517efe9b1c733877b4fa1eaf0672", "semantic_hash": "cce5517efe9b1c733877b4fa1eaf0672" }, "remix/app/components/Safety/Safe.tsx": { - "mtime": 1788939901.2946684, + "mtime": 1788947732.5810454, "ast_hash": "e3cf4bdd8c27e70c6618dbb30094459d", "semantic_hash": "e3cf4bdd8c27e70c6618dbb30094459d" }, "remix/app/components/Skeleton/RainbowSkeleton.tsx": { - "mtime": 1788939901.3046377, + "mtime": 1788947732.5838966, "ast_hash": "70d0800e7bf1f4cd8d348b29b891d00a", "semantic_hash": "70d0800e7bf1f4cd8d348b29b891d00a" }, "remix/app/components/Splash/Splash.tsx": { - "mtime": 1788939901.3047602, + "mtime": 1788947732.5838966, "ast_hash": "5e886f72922842634e6707679be7683c", "semantic_hash": "5e886f72922842634e6707679be7683c" }, "remix/app/components/Status/FooterStatusPanel.tsx": { - "mtime": 1788939901.3051744, + "mtime": 1788947732.5838966, "ast_hash": "b6e4c7f0f5876db00b8223620a49f2fa", "semantic_hash": "b6e4c7f0f5876db00b8223620a49f2fa" }, "remix/app/components/Status/ServiceStatus.tsx": { - "mtime": 1788939901.3079066, + "mtime": 1788947732.5842972, "ast_hash": "ee0510c21b87156bd4cc70bf26b88768", "semantic_hash": "ee0510c21b87156bd4cc70bf26b88768" }, "remix/app/components/Status/StatusRefreshButton.tsx": { - "mtime": 1788939901.312828, + "mtime": 1788947732.5842972, "ast_hash": "304426a67478217aac62dbbb6714a8e5", "semantic_hash": "304426a67478217aac62dbbb6714a8e5" }, "remix/app/components/Status/statusEnvironment.ts": { - "mtime": 1788939901.313083, + "mtime": 1788947732.5842972, "ast_hash": "92d444e302d23d08505fc8d2c8624a24", "semantic_hash": "92d444e302d23d08505fc8d2c8624a24" }, "remix/app/components/Thingtime/Thingtime.tsx": { - "mtime": 1788939901.3300452, + "mtime": 1788947732.5882733, "ast_hash": "b3e70a3b66269b9c255335125412742c", "semantic_hash": "b3e70a3b66269b9c255335125412742c" }, "remix/app/components/Thingtime/ThingtimeDemo.tsx": { - "mtime": 1788939901.330172, + "mtime": 1788947732.5882733, "ast_hash": "e3a02ac24915aae0a1689629a928b1d3", "semantic_hash": "e3a02ac24915aae0a1689629a928b1d3" }, "remix/app/components/Thingtime/ThingtimeURL.tsx": { - "mtime": 1788939901.3302782, + "mtime": 1788947732.5882733, "ast_hash": "ea572d341adcd770d41134030df10613", "semantic_hash": "ea572d341adcd770d41134030df10613" }, "remix/app/components/Thingtime/useThingtime.tsx": { - "mtime": 1788939901.3325038, + "mtime": 1788947732.5892735, "ast_hash": "3ad3729f44162b660d316ae22faf4976", "semantic_hash": "3ad3729f44162b660d316ae22faf4976" }, "remix/app/components/User/UserCard.tsx": { - "mtime": 1788939901.3326447, + "mtime": 1788947732.5892735, "ast_hash": "a8b5253886172ceaac04dce520e10e1e", "semantic_hash": "a8b5253886172ceaac04dce520e10e1e" }, "remix/app/components/Vercel/VercelStatus.tsx": { - "mtime": 1788939901.3328598, + "mtime": 1788947732.5892735, "ast_hash": "ed50476cad8b5a958dc914093240c89a", "semantic_hash": "ed50476cad8b5a958dc914093240c89a" }, "remix/app/components/rainbowText.tsx": { - "mtime": 1788939901.3377306, + "mtime": 1788947732.5902734, "ast_hash": "76af21992d23eee08ce76c82eb7ba7f5", "semantic_hash": "76af21992d23eee08ce76c82eb7ba7f5" }, "remix/app/components/textAnimation1.tsx": { - "mtime": 1788939901.3378692, + "mtime": 1788947732.5902734, "ast_hash": "d736a954529e994e502ecf2c612c6725", "semantic_hash": "d736a954529e994e502ecf2c612c6725" }, "remix/app/components/tt/Button.tsx": { - "mtime": 1788939901.3382168, + "mtime": 1788947732.5902734, "ast_hash": "8548ea20a193588fbb8f19e34d382f71", "semantic_hash": "8548ea20a193588fbb8f19e34d382f71" }, "remix/app/components/tt/index.ts": { - "mtime": 1788939901.3382998, + "mtime": 1788947732.5906265, "ast_hash": "f55f91c00022d66a7c6ff9a0e1f59103", "semantic_hash": "f55f91c00022d66a7c6ff9a0e1f59103" }, "remix/app/cookies.server.ts": { - "mtime": 1788939901.3383849, + "mtime": 1788947732.5906265, "ast_hash": "d7998e1d5926708308858995f06bf98f", "semantic_hash": "d7998e1d5926708308858995f06bf98f" }, "remix/app/entry.client.tsx": { - "mtime": 1788939901.3467364, + "mtime": 1788947732.5936208, "ast_hash": "4c4da32766915111115f0a850f1735af", "semantic_hash": "4c4da32766915111115f0a850f1735af" }, "remix/app/functions/safe.tsx": { - "mtime": 1788939901.3476367, + "mtime": 1788947732.5936208, "ast_hash": "14c524ac66176d226456110431dd5c50", "semantic_hash": "14c524ac66176d226456110431dd5c50" }, "remix/app/functions/sanitise.tsx": { - "mtime": 1788939901.3477333, + "mtime": 1788947732.5940914, "ast_hash": "b4ce927dfb673ae10a1efaf7359f80c3", "semantic_hash": "b4ce927dfb673ae10a1efaf7359f80c3" }, "remix/app/global-types.d.ts": { - "mtime": 1788939901.347818, + "mtime": 1788947732.5940914, "ast_hash": "7f1938dd65767c801825fc721151adbf", "semantic_hash": "7f1938dd65767c801825fc721151adbf" }, "remix/app/globals/GlobalStyles.tsx": { - "mtime": 1788939901.3479822, + "mtime": 1788947732.5940914, "ast_hash": "a495b8c1d2c1f7501e21323057104709", "semantic_hash": "a495b8c1d2c1f7501e21323057104709" }, "remix/app/gp/GradientPath.js": { - "mtime": 1788939901.34811, + "mtime": 1788947732.5940914, "ast_hash": "6655c69835eedb9a2a4379f09f603263", "semantic_hash": "6655c69835eedb9a2a4379f09f603263" }, "remix/app/gp/Sample.js": { - "mtime": 1788939901.3481863, + "mtime": 1788947732.5943265, "ast_hash": "ba179168c250b9dd8c22d6f2ed5e4ef3", "semantic_hash": "ba179168c250b9dd8c22d6f2ed5e4ef3" }, "remix/app/gp/Segment.js": { - "mtime": 1788939901.3482604, + "mtime": 1788947732.5943265, "ast_hash": "291e6bcbac7d90b8e06c1ec9b685e15b", "semantic_hash": "291e6bcbac7d90b8e06c1ec9b685e15b" }, "remix/app/gp/_constants.js": { - "mtime": 1788939901.348331, + "mtime": 1788947732.5943265, "ast_hash": "bc5e68237ed6a9ab0b352506ce8a9534", "semantic_hash": "bc5e68237ed6a9ab0b352506ce8a9534" }, "remix/app/gp/_data.js": { - "mtime": 1788939901.3484383, + "mtime": 1788947732.5943265, "ast_hash": "5e4e3751c26872d86239f47b4db8db0a", "semantic_hash": "5e4e3751c26872d86239f47b4db8db0a" }, "remix/app/gp/_utils.js": { - "mtime": 1788939901.348523, + "mtime": 1788947732.5943265, "ast_hash": "02f63d448e9f48b5f8f26b0278adeb3e", "semantic_hash": "02f63d448e9f48b5f8f26b0278adeb3e" }, "remix/app/gp/index.js": { - "mtime": 1788939901.34859, + "mtime": 1788947732.5943265, "ast_hash": "2c876691ea163b0306ebf575cf88e1b4", "semantic_hash": "2c876691ea163b0306ebf575cf88e1b4" }, "remix/app/hooks/useApi.tsx": { - "mtime": 1788943126.453786, + "mtime": 1788948107.4014938, "ast_hash": "ac515e28b5765cd62ab70b447b3ab246", "semantic_hash": "" }, "remix/app/hooks/useAsyncFetcher.tsx": { - "mtime": 1788939901.35068, + "mtime": 1788947732.5952733, "ast_hash": "6e09d080ffb5c253c05e6ecd04347282", "semantic_hash": "6e09d080ffb5c253c05e6ecd04347282" }, "remix/app/hooks/useCurrentUser.tsx": { - "mtime": 1788939901.3512475, + "mtime": 1788947732.5952733, "ast_hash": "990dddf7538e13c3042824dce3b42b68", "semantic_hash": "990dddf7538e13c3042824dce3b42b68" }, "remix/app/hooks/usePath.tsx": { - "mtime": 1788939901.3516898, + "mtime": 1788947732.5952733, "ast_hash": "e0f464276f7906511d171e4712167f3d", "semantic_hash": "e0f464276f7906511d171e4712167f3d" }, "remix/app/hooks/useProps.tsx": { - "mtime": 1788939901.3542385, + "mtime": 1788947732.5952733, "ast_hash": "2643b6f24fdb80ba312053ae01b3fa33", "semantic_hash": "2643b6f24fdb80ba312053ae01b3fa33" }, "remix/app/hooks/useThings.tsx": { - "mtime": 1788939901.3578181, + "mtime": 1788947732.5952733, "ast_hash": "0b02a00fb00355c03fd6f53b77d3754d", "semantic_hash": "0b02a00fb00355c03fd6f53b77d3754d" }, "remix/app/hooks/useThingtimeMachine.tsx": { - "mtime": 1788939901.3581312, + "mtime": 1788947732.5952733, "ast_hash": "1fdf72a062da626add569d38a2994b90", "semantic_hash": "1fdf72a062da626add569d38a2994b90" }, "remix/app/hooks/useTrace.tsx": { - "mtime": 1788939901.3583124, + "mtime": 1788947732.5952733, "ast_hash": "3ad9146a76bae7fee252439633fe5f41", "semantic_hash": "3ad9146a76bae7fee252439633fe5f41" }, "remix/app/hooks/useUuid.tsx": { - "mtime": 1788939901.3585405, + "mtime": 1788947732.5952733, "ast_hash": "c4054b1dfdb64ee989f94d84a82f34b0", "semantic_hash": "c4054b1dfdb64ee989f94d84a82f34b0" }, "remix/app/root-data.server.ts": { - "mtime": 1788939901.358752, + "mtime": 1788947732.5952733, "ast_hash": "71279f34d52ac9a7597a43944321b315", "semantic_hash": "71279f34d52ac9a7597a43944321b315" }, "remix/app/root.tsx": { - "mtime": 1788939901.3590634, + "mtime": 1788947732.5952733, "ast_hash": "47a4ceb87571530d1bd2fb65b72d75b2", "semantic_hash": "47a4ceb87571530d1bd2fb65b72d75b2" }, "remix/app/routes.tsx": { - "mtime": 1788939901.3592043, + "mtime": 1788947732.5952733, "ast_hash": "4b30e1eff943f601ee615a35865c2628", "semantic_hash": "4b30e1eff943f601ee615a35865c2628" }, "remix/app/routes/$.tsx": { - "mtime": 1788939901.3593218, + "mtime": 1788947732.5962734, "ast_hash": "f24225f1e21a465081755d2d056b36d6", "semantic_hash": "f24225f1e21a465081755d2d056b36d6" }, "remix/app/routes/_index.tsx": { - "mtime": 1788939901.3593931, + "mtime": 1788947732.5965421, "ast_hash": "88fac82c234978a4bf7e04cc7cded8df", "semantic_hash": "88fac82c234978a4bf7e04cc7cded8df" }, "remix/app/routes/api/v1/auth/jwks/_jwks.tsx": { - "mtime": 1788939901.3836236, + "mtime": 1788947732.6022732, "ast_hash": "1ab5820e3134f7750b2b84d5cb0e85f4", "semantic_hash": "1ab5820e3134f7750b2b84d5cb0e85f4" }, "remix/app/routes/api/v1/auth/logout/_logout.tsx": { - "mtime": 1788943126.454177, + "mtime": 1788948107.4014938, "ast_hash": "9b362d0a290bf2664c910d92e4864e46", "semantic_hash": "" }, "remix/app/routes/api/v1/auth/me/_me.tsx": { - "mtime": 1788939901.3841174, + "mtime": 1788947732.6022732, "ast_hash": "e94d06f633eff013ffca0a2f6b3b4adf", "semantic_hash": "e94d06f633eff013ffca0a2f6b3b4adf" }, "remix/app/routes/api/v1/auth/register/_register.tsx": { - "mtime": 1788939901.3935838, + "mtime": 1788947732.6032877, "ast_hash": "62cfc98763fb0661e474214293f8b199", "semantic_hash": "62cfc98763fb0661e474214293f8b199" }, "remix/app/routes/api/v1/auth/resend-verification/_resend-verification.tsx": { - "mtime": 1788939901.3938704, + "mtime": 1788947732.6032877, "ast_hash": "c56c9cdefdd8b79a1591aa32a6c18ffe", "semantic_hash": "c56c9cdefdd8b79a1591aa32a6c18ffe" }, "remix/app/routes/api/v1/auth/verify-email/_verify-email.tsx": { - "mtime": 1788939901.3980286, + "mtime": 1788947732.6032877, "ast_hash": "e8c23208e76ed709abdad9d7f81a45b5", "semantic_hash": "e8c23208e76ed709abdad9d7f81a45b5" }, "remix/app/routes/api/v1/crypto/_crypto.tsx": { - "mtime": 1788939901.4006643, + "mtime": 1788947732.6052732, "ast_hash": "c46ffc2834e296c323211c17903afcc3", "semantic_hash": "c46ffc2834e296c323211c17903afcc3" }, "remix/app/routes/api/v1/health/frontend/_frontend.tsx": { - "mtime": 1788939901.4100363, + "mtime": 1788947732.607874, "ast_hash": "309f2a464eec6d0bf8867d39b2c8874b", "semantic_hash": "309f2a464eec6d0bf8867d39b2c8874b" }, "remix/app/routes/api/v1/health/mongodb/_mongodb.tsx": { - "mtime": 1788939901.41061, + "mtime": 1788947732.607874, "ast_hash": "e03e9dd616eb380a9fea2fb20cd18675", "semantic_hash": "e03e9dd616eb380a9fea2fb20cd18675" }, "remix/app/routes/api/v1/health/nitro/_nitro.tsx": { - "mtime": 1788939901.4109561, + "mtime": 1788947732.607874, "ast_hash": "e66e93e19ac43cc34280ea1ca94ccdcd", "semantic_hash": "e66e93e19ac43cc34280ea1ca94ccdcd" }, "remix/app/routes/api/v1/health/vercel/_vercel.tsx": { - "mtime": 1788939901.4112988, + "mtime": 1788947732.607874, "ast_hash": "a894c8d639cddbca6a53d79e0c4222ef", "semantic_hash": "a894c8d639cddbca6a53d79e0c4222ef" }, "remix/app/routes/api/v1/login/_login.tsx": { - "mtime": 1788939901.4153504, + "mtime": 1788947732.6089263, "ast_hash": "3ff6c361da16e614c3a1bb1f1ed01a5d", "semantic_hash": "3ff6c361da16e614c3a1bb1f1ed01a5d" }, "remix/app/routes/api/v1/lopu/musing/_musing.tsx": { - "mtime": 1788939901.4177608, + "mtime": 1788947732.609395, "ast_hash": "8234c99eb380c75d399fc01b63449ac8", "semantic_hash": "8234c99eb380c75d399fc01b63449ac8" }, "remix/app/routes/api/v1/mongodb/get-connection/_get-connection.tsx": { - "mtime": 1788939901.4217284, + "mtime": 1788947732.6102939, "ast_hash": "1e10ae05b2e351467d0e6fba8bd64f8e", "semantic_hash": "1e10ae05b2e351467d0e6fba8bd64f8e" }, "remix/app/routes/api/v1/mongodb/populate/_populate.tsx": { - "mtime": 1788939901.4219484, + "mtime": 1788947732.6102939, "ast_hash": "0b084b503b4082742875c4c92e9efc34", "semantic_hash": "0b084b503b4082742875c4c92e9efc34" }, "remix/app/routes/api/v1/mongodb/raw-results/_raw-results.tsx": { - "mtime": 1788939901.4223006, + "mtime": 1788947732.6102939, "ast_hash": "7418a75cc49c5c5ed47d91e4997827e2", "semantic_hash": "7418a75cc49c5c5ed47d91e4997827e2" }, "remix/app/routes/api/v1/mongodb/status-data/_status-data.tsx": { - "mtime": 1788939901.4227276, + "mtime": 1788947732.6102939, "ast_hash": "07744974ad75291f816c7790c400004f", "semantic_hash": "07744974ad75291f816c7790c400004f" }, "remix/app/routes/api/v1/mongodb/status/_status.tsx": { - "mtime": 1788939901.42288, + "mtime": 1788947732.6102939, "ast_hash": "04fbb5b17fe72734fa42c2b07795700a", "semantic_hash": "04fbb5b17fe72734fa42c2b07795700a" }, "remix/app/routes/api/v1/template/_template.tsx": { - "mtime": 1788939901.4308038, + "mtime": 1788947732.614273, "ast_hash": "a02c07749429458b698fc84abdfbc91f", "semantic_hash": "a02c07749429458b698fc84abdfbc91f" }, "remix/app/routes/api/v1/vercel/deployments/_deployments.tsx": { - "mtime": 1788939901.4394138, + "mtime": 1788947732.6177938, "ast_hash": "69ed8955bd6bc3e9fe241de91ef3c965", "semantic_hash": "69ed8955bd6bc3e9fe241de91ef3c965" }, "remix/app/routes/api/v1/vercel/status-data/_status-data.tsx": { - "mtime": 1788939901.4400795, + "mtime": 1788947732.6177938, "ast_hash": "191d459268f0c95a641fa2665cd76af3", "semantic_hash": "191d459268f0c95a641fa2665cd76af3" }, "remix/app/routes/api/v1/vercel/status/_status.tsx": { - "mtime": 1788939901.440377, + "mtime": 1788947732.6177938, "ast_hash": "745c9c9403a4ea6ef64fe430f5b07815", "semantic_hash": "745c9c9403a4ea6ef64fe430f5b07815" }, "remix/app/routes/branding/_index.tsx": { - "mtime": 1788939901.4441414, + "mtime": 1788947732.6186283, "ast_hash": "a1ea891b97dc864d6a417eb82ae707af", "semantic_hash": "a1ea891b97dc864d6a417eb82ae707af" }, "remix/app/routes/branding_old.tsx": { - "mtime": 1788939901.444221, + "mtime": 1788947732.6186283, "ast_hash": "05ba2dedac3803800db2c419e12a90ac", "semantic_hash": "05ba2dedac3803800db2c419e12a90ac" }, "remix/app/routes/crypto.tsx": { - "mtime": 1788939901.4446757, + "mtime": 1788947732.6186283, "ast_hash": "565547546b0b8f53e4e9836c9496405f", "semantic_hash": "565547546b0b8f53e4e9836c9496405f" }, "remix/app/routes/login.tsx": { - "mtime": 1788939901.467339, + "mtime": 1788947732.624273, "ast_hash": "b8a7a8f7c35d8dbe52e84d3677336344", "semantic_hash": "b8a7a8f7c35d8dbe52e84d3677336344" }, "remix/app/routes/mongodb-status.tsx": { - "mtime": 1788939901.468086, + "mtime": 1788947732.624273, "ast_hash": "4a389638bcc3fae3a05016c02bade47d", "semantic_hash": "4a389638bcc3fae3a05016c02bade47d" }, "remix/app/routes/ode.tsx": { - "mtime": 1788939901.4682324, + "mtime": 1788947732.624273, "ast_hash": "28a35a421174861d5c2382fed29153b7", "semantic_hash": "28a35a421174861d5c2382fed29153b7" }, "remix/app/routes/profile.tsx": { - "mtime": 1788939901.4686453, + "mtime": 1788947732.624273, "ast_hash": "12b57f141c735d08a46a3e8843859a58", "semantic_hash": "12b57f141c735d08a46a3e8843859a58" }, "remix/app/routes/rainbow.$.tsx": { - "mtime": 1788939901.468717, + "mtime": 1788947732.624273, "ast_hash": "13d0846b395509fc618a32165f2d75a1", "semantic_hash": "13d0846b395509fc618a32165f2d75a1" }, "remix/app/routes/raw.tsx": { - "mtime": 1788939901.4687889, + "mtime": 1788947732.624273, "ast_hash": "660441b3c0d17743510ec3584b91e1e0", "semantic_hash": "660441b3c0d17743510ec3584b91e1e0" }, "remix/app/routes/register.tsx": { - "mtime": 1788939901.4688556, + "mtime": 1788947732.624273, "ast_hash": "ba342619949bac1df60eeac18a5fe049", "semantic_hash": "ba342619949bac1df60eeac18a5fe049" }, "remix/app/routes/status.tsx": { - "mtime": 1788939901.4695296, + "mtime": 1788947732.624273, "ast_hash": "8e275ea37e1fa71babae6d9f81789c4a", "semantic_hash": "8e275ea37e1fa71babae6d9f81789c4a" }, "remix/app/routes/vercel.tsx": { - "mtime": 1788939901.4715068, + "mtime": 1788947732.625273, "ast_hash": "74f3170bc6a1e3526387b094902fe5db", "semantic_hash": "74f3170bc6a1e3526387b094902fe5db" }, "remix/app/routes/welcome.tsx": { - "mtime": 1788939901.472499, + "mtime": 1788947732.625273, "ast_hash": "826ea265da39d3c5b1e2c5dabcc55156", "semantic_hash": "826ea265da39d3c5b1e2c5dabcc55156" }, "remix/app/scripts/mongodb/data/users.ts": { - "mtime": 1788939901.4807665, + "mtime": 1788947732.6300144, "ast_hash": "87af398efb99622f91227ad89e1c6968", "semantic_hash": "87af398efb99622f91227ad89e1c6968" }, "remix/app/scripts/mongodb/setup.ts": { - "mtime": 1788939901.4808729, + "mtime": 1788947732.630273, "ast_hash": "8bb33f0229c09df4c115268748b111cf", "semantic_hash": "8bb33f0229c09df4c115268748b111cf" }, "remix/app/sessions.ts": { - "mtime": 1788939901.480947, + "mtime": 1788947732.630273, "ast_hash": "a6d322115f5106640cff45a55f6d591d", "semantic_hash": "a6d322115f5106640cff45a55f6d591d" }, "remix/app/smarts/index.tsx": { - "mtime": 1788939901.4811842, + "mtime": 1788947732.630273, "ast_hash": "c8f728727dd96544ee265fd0e3bc4a72", "semantic_hash": "c8f728727dd96544ee265fd0e3bc4a72" }, "remix/app/utils/index.ts": { - "mtime": 1788939901.487228, + "mtime": 1788947732.632273, "ast_hash": "f1a6ff938efc519e30afc4d0fb832fdd", "semantic_hash": "f1a6ff938efc519e30afc4d0fb832fdd" }, "remix/app/utils/nativeBridge.ts": { - "mtime": 1788939901.4881136, + "mtime": 1788947732.632273, "ast_hash": "c64df66b18e07a8201e80def07e7cceb", "semantic_hash": "c64df66b18e07a8201e80def07e7cceb" }, "remix/ecosystem.config.js": { - "mtime": 1788939901.4905562, + "mtime": 1788947732.632273, "ast_hash": "a3d225b37e5a348b268a63fff5c0b7e7", "semantic_hash": "a3d225b37e5a348b268a63fff5c0b7e7" }, "remix/nitro.config.ts": { - "mtime": 1788939902.5044801, + "mtime": 1788947732.647273, "ast_hash": "8c0f0842594c369b049899d944ac2b46", "semantic_hash": "8c0f0842594c369b049899d944ac2b46" }, "remix/package.json": { - "mtime": 1788943126.4617908, - "ast_hash": "0a65344041fc8987ba59f7591db5ece1", + "mtime": 1788948107.4034936, + "ast_hash": "b19d8267acd568903d4db258b5ae3c12", "semantic_hash": "" }, "remix/public/manifest.json": { - "mtime": 1788939902.6295698, + "mtime": 1788947732.6752727, "ast_hash": "b58fcfa7628c9205cb11a1b2c3e8f99a", "semantic_hash": "b58fcfa7628c9205cb11a1b2c3e8f99a" }, "remix/scripts/dev.mjs": { - "mtime": 1788939902.6390874, + "mtime": 1788947732.6762726, "ast_hash": "b28bbee0cfed9e9f754ed1825282c75e", "semantic_hash": "b28bbee0cfed9e9f754ed1825282c75e" }, "remix/scripts/ensure-bcrypt-binding.js": { - "mtime": 1788939902.6396406, + "mtime": 1788947732.6762726, "ast_hash": "33c41e5c78a7edd4008ff2e5107fbf31", "semantic_hash": "33c41e5c78a7edd4008ff2e5107fbf31" }, "remix/scripts/patch-vercel-output.mjs": { - "mtime": 1788939902.6403043, - "ast_hash": "4305f7bdf46dc9f92f70fd5e63ebda0a", - "semantic_hash": "4305f7bdf46dc9f92f70fd5e63ebda0a" + "mtime": 1788947732.6762726, + "ast_hash": "c0e3acce5b1f11ac93010bc7c7a8bbcc", + "semantic_hash": "" }, "remix/scripts/pre-dev.sh": { - "mtime": 1788939902.6404066, + "mtime": 1788947732.6762726, "ast_hash": "6a0ec4c3fe550da587825ca0a043e3ff", "semantic_hash": "6a0ec4c3fe550da587825ca0a043e3ff" }, "remix/scripts/sync-nitro-template.mjs": { - "mtime": 1788939902.642644, + "mtime": 1788947732.6762726, "ast_hash": "8c7be181590daceb9245603573f4166e", "semantic_hash": "8c7be181590daceb9245603573f4166e" }, "remix/scripts/verify-vercel-output.mjs": { - "mtime": 1788939902.6582365, - "ast_hash": "7e3f7e8de0ac5f37bf3a3df611f84b15", - "semantic_hash": "7e3f7e8de0ac5f37bf3a3df611f84b15" + "mtime": 1788947732.6792727, + "ast_hash": "033e46f120d2f9cfd319a5c4082a2eb5", + "semantic_hash": "" }, "remix/server/routes/[...].ts": { - "mtime": 1788939902.6611423, - "ast_hash": "2e9c804284ca040aecb2564cf47b1858", - "semantic_hash": "2e9c804284ca040aecb2564cf47b1858" + "mtime": 1788947732.6810174, + "ast_hash": "1f7fcef2e1f0dc03dde4cbab77898956", + "semantic_hash": "" }, "remix/server/routes/api/[...].ts": { - "mtime": 1788943126.4630108, + "mtime": 1788948107.4034936, "ast_hash": "fb130fc7d32eff651d91fbcc93bd4b58", "semantic_hash": "" }, "remix/server/routes/api/root-data.get.ts": { - "mtime": 1788939902.6621196, + "mtime": 1788947732.6813657, "ast_hash": "00f736f9a3f882e44903ef1ec754021e", "semantic_hash": "00f736f9a3f882e44903ef1ec754021e" }, "remix/server/routes/index.ts": { - "mtime": 1788939902.6634185, + "mtime": 1788947732.6813657, "ast_hash": "e2dfde6148ff63e74b9d81f586c76255", "semantic_hash": "e2dfde6148ff63e74b9d81f586c76255" }, "remix/tsconfig.json": { - "mtime": 1788939902.6694803, + "mtime": 1788947732.6817832, "ast_hash": "31384afdefa4facbf9e4f2a175d5bfd2", "semantic_hash": "31384afdefa4facbf9e4f2a175d5bfd2" }, "remix/vite.config.ts": { - "mtime": 1788941673.3520596, + "mtime": 1788948107.4034936, "ast_hash": "4b25dc949b1b849760638991dfa78b40", "semantic_hash": "" }, "tsconfig.json": { - "mtime": 1788939902.6778688, + "mtime": 1788947732.6832197, "ast_hash": "6f47150939eacf6d3a89a87289013ea3", "semantic_hash": "6f47150939eacf6d3a89a87289013ea3" }, @@ -1270,11263 +1270,11303 @@ "semantic_hash": "de63b8701fffda4515807918808155f8" }, "DECISIONS.md": { - "mtime": 1788939899.9820395, + "mtime": 1788947732.1628764, "ast_hash": "1d92d5d8291a1a1476d1c31b7ec95e91", "semantic_hash": "1d92d5d8291a1a1476d1c31b7ec95e91" }, "FUNDAMENTALS.md": { - "mtime": 1788943126.1499345, + "mtime": 1788948107.3384943, "ast_hash": "4915446c2cd902ab5fa2529155574f52", "semantic_hash": "" }, "README.md": { - "mtime": 1788942002.061566, + "mtime": 1788948107.3394942, "ast_hash": "2c1891366da1133d4ff41cd266c92e5b", "semantic_hash": "" }, "VERCEL_DEPLOYMENTS.md": { - "mtime": 1788939900.0697916, + "mtime": 1788947732.1952763, "ast_hash": "90c3c9e02b48a87c69ca1f2c25ddfa37", "semantic_hash": "90c3c9e02b48a87c69ca1f2c25ddfa37" }, "docs/Use Cases/car.md": { - "mtime": 1788939900.084495, + "mtime": 1788947732.197804, "ast_hash": "b4f1086b696aeb835644e14a78daaef4", "semantic_hash": "b4f1086b696aeb835644e14a78daaef4" }, "docs/Use Cases/tools.md": { - "mtime": 1788939900.0845704, + "mtime": 1788947732.19786, "ast_hash": "2696643b2369d088bdbbdc722650dd3d", "semantic_hash": "2696643b2369d088bdbbdc722650dd3d" }, "docs/design/README.md": { - "mtime": 1788939900.0903883, + "mtime": 1788947732.2001495, "ast_hash": "58f1d6b18f88f2a9218d111b043c51bb", "semantic_hash": "58f1d6b18f88f2a9218d111b043c51bb" }, "docs/design/claude-design-mockup-v1/README.md": { - "mtime": 1788939900.0905097, + "mtime": 1788947732.2001495, "ast_hash": "54d39e65697dc7566da68eb74f4bc26a", "semantic_hash": "54d39e65697dc7566da68eb74f4bc26a" }, "docs/design/claude-design-mockup-v1/index.html": { - "mtime": 1788939900.0933123, + "mtime": 1788947732.2012763, "ast_hash": "653083ce77936926c8da6600b4bbcf07", "semantic_hash": "653083ce77936926c8da6600b4bbcf07" }, "docs/design/claude-design-mockup-v1/questionnaire.md": { - "mtime": 1788939900.0934896, + "mtime": 1788947732.2012763, "ast_hash": "7603cb6044d894296d162c1be7ffb580", "semantic_hash": "7603cb6044d894296d162c1be7ffb580" }, "docs/design/claude-design-mockup-v1/source/Thingtime.dc.html": { - "mtime": 1788939900.0939178, + "mtime": 1788947732.2032762, "ast_hash": "39b98b8968f41939d26da392b205e763", "semantic_hash": "39b98b8968f41939d26da392b205e763" }, "docs/design/claude-design-mockup-v2-fable/Thingtime Landing.dc.html": { - "mtime": 1788939900.0947843, + "mtime": 1788947732.2032762, "ast_hash": "d2ea14dd1fba0b56bdff73b1ce33a4f8", "semantic_hash": "d2ea14dd1fba0b56bdff73b1ce33a4f8" }, "docs/design/claude-design-mockup-v2-fable/index.html": { - "mtime": 1788939900.1071084, + "mtime": 1788947732.218276, "ast_hash": "b30bdffa46a0292feeff05a908b7cfa2", "semantic_hash": "b30bdffa46a0292feeff05a908b7cfa2" }, "docs/design/claude-design-mockup-v2-fable/questionnaire.md": { - "mtime": 1788939900.1074455, + "mtime": 1788947732.218276, "ast_hash": "a9051d48255d35360bdc1d6aea17464a", "semantic_hash": "a9051d48255d35360bdc1d6aea17464a" }, "docs/design/thingtime-app/Thingtime App.dc.html": { - "mtime": 1788939900.108141, + "mtime": 1788947732.2192762, "ast_hash": "7e0efe24a5615d405170f2d361844254", "semantic_hash": "7e0efe24a5615d405170f2d361844254" }, "docs/design/thingtime-app/index.html": { - "mtime": 1788939900.1147628, + "mtime": 1788947732.226276, "ast_hash": "b6fcbd95b5d8b32c7d9bf1c1756b8566", "semantic_hash": "b6fcbd95b5d8b32c7d9bf1c1756b8566" }, "docs/design/thingtime-directions/README.md": { - "mtime": 1788939900.1154435, + "mtime": 1788947732.226276, "ast_hash": "0e4b97ca188720dd26c40001a2905016", "semantic_hash": "0e4b97ca188720dd26c40001a2905016" }, "docs/design/thingtime-directions/Thingtime Directions.dc.html": { - "mtime": 1788939900.1155763, + "mtime": 1788947732.227408, "ast_hash": "84dffe009ffba174dde9683c67381366", "semantic_hash": "84dffe009ffba174dde9683c67381366" }, "docs/design/thingtime-directions/index.html": { - "mtime": 1788939900.12374, + "mtime": 1788947732.241276, "ast_hash": "5f85da7ac905b3383a494bc0f0afdea8", "semantic_hash": "5f85da7ac905b3383a494bc0f0afdea8" }, "docs/design/thingtime-landing-1a-classic-centered/Thingtime Landing 1A.dc.html": { - "mtime": 1788939900.124313, + "mtime": 1788947732.241276, "ast_hash": "188037371700c976011e34695728ea97", "semantic_hash": "188037371700c976011e34695728ea97" }, "docs/design/thingtime-landing-1a-classic-centered/index.html": { - "mtime": 1788939900.1340947, + "mtime": 1788947732.2502759, "ast_hash": "7734cf8eaf6e01286ed59cf23d9b0779", "semantic_hash": "7734cf8eaf6e01286ed59cf23d9b0779" }, "docs/design/thingtime-landing-1b-product-split/Thingtime Landing 1B.dc.html": { - "mtime": 1788939900.1348577, + "mtime": 1788947732.2502759, "ast_hash": "92f11cd2f24572aecd7fa77deb5050a3", "semantic_hash": "92f11cd2f24572aecd7fa77deb5050a3" }, "docs/design/thingtime-landing-1b-product-split/index.html": { - "mtime": 1788939900.142585, + "mtime": 1788947732.2582757, "ast_hash": "b43e31506c97a30319f3920cf16a49ef", "semantic_hash": "b43e31506c97a30319f3920cf16a49ef" }, "docs/design/thingtime-landing-1c-crowdfund-campaign/Thingtime Landing 1C.dc.html": { - "mtime": 1788939900.1433818, + "mtime": 1788947732.2582757, "ast_hash": "0eb1fbcc968051680b0944f668a1b702", "semantic_hash": "0eb1fbcc968051680b0944f668a1b702" }, "docs/design/thingtime-landing-1c-crowdfund-campaign/index.html": { - "mtime": 1788939900.1516879, + "mtime": 1788947732.2662756, "ast_hash": "fe5d06a711bd818c7feb4a1c1fa40d1f", "semantic_hash": "fe5d06a711bd818c7feb4a1c1fa40d1f" }, "docs/design/thingtime-landing-1d-developer-first/Thingtime Landing 1D.dc.html": { - "mtime": 1788939900.1529353, + "mtime": 1788947732.2662756, "ast_hash": "94759489ed14f8b4cf581fe27d454b06", "semantic_hash": "94759489ed14f8b4cf581fe27d454b06" }, "docs/design/thingtime-landing-1d-developer-first/index.html": { - "mtime": 1788939900.161023, + "mtime": 1788947732.2742758, "ast_hash": "66141bc411c6f9e273a898cc86a1918d", "semantic_hash": "66141bc411c6f9e273a898cc86a1918d" }, "docs/design/thingtime-landing-1e-typographic-story/Thingtime Landing 1E.dc.html": { - "mtime": 1788939900.1616461, + "mtime": 1788947732.2742758, "ast_hash": "379b15972b566290c8d846e78a72e7d2", "semantic_hash": "379b15972b566290c8d846e78a72e7d2" }, "docs/design/thingtime-landing-1e-typographic-story/index.html": { - "mtime": 1788939900.168776, + "mtime": 1788947732.2822757, "ast_hash": "6bbdce830003309319814fa91af0a4e6", "semantic_hash": "6bbdce830003309319814fa91af0a4e6" }, "docs/design/thingtime-landing-1f-ecosystem-map/Thingtime Landing 1F.dc.html": { - "mtime": 1788939900.1695988, + "mtime": 1788947732.2822757, "ast_hash": "61616e776ac49e64f4686763e9df0c3a", "semantic_hash": "61616e776ac49e64f4686763e9df0c3a" }, "docs/design/thingtime-landing-1f-ecosystem-map/index.html": { - "mtime": 1788939900.1769912, + "mtime": 1788947732.2902756, "ast_hash": "8f9a4568c37ece0f297bdc3e6094a556", "semantic_hash": "8f9a4568c37ece0f297bdc3e6094a556" }, "docs/design/thingtime-landing-1g-magic-path-bar/Thingtime Landing 1G.dc.html": { - "mtime": 1788939900.1781268, + "mtime": 1788947732.2902756, "ast_hash": "85fe69b4c0dc294786e5563bbda9aba5", "semantic_hash": "85fe69b4c0dc294786e5563bbda9aba5" }, "docs/design/thingtime-landing-1g-magic-path-bar/index.html": { - "mtime": 1788939900.1865988, + "mtime": 1788947732.2982755, "ast_hash": "5035496ee14beceba441ba580881f35b", "semantic_hash": "5035496ee14beceba441ba580881f35b" }, "docs/design/thingtime-landing-1h-ultra-minimal-voxel/Thingtime Landing 1H.dc.html": { - "mtime": 1788939900.1880598, + "mtime": 1788947732.2982755, "ast_hash": "15627bb17a035e42b7d55ddaddacc511", "semantic_hash": "15627bb17a035e42b7d55ddaddacc511" }, "docs/design/thingtime-landing-1h-ultra-minimal-voxel/index.html": { - "mtime": 1788939900.2018054, + "mtime": 1788947732.3052754, "ast_hash": "5c4da8eacb9d20fc7aae2c45f1692425", "semantic_hash": "5c4da8eacb9d20fc7aae2c45f1692425" }, "docs/design/thingtime-launch-celebration/README.md": { - "mtime": 1788939900.2032902, + "mtime": 1788947732.3062754, "ast_hash": "a46d6cc817658cd953548711a867c763", "semantic_hash": "a46d6cc817658cd953548711a867c763" }, "docs/design/thingtime-launch-celebration/Thingtime Launch Celebration.dc.html": { - "mtime": 1788939900.2034795, + "mtime": 1788947732.306835, "ast_hash": "2c0635d620490e55850206c6013b1e8f", "semantic_hash": "2c0635d620490e55850206c6013b1e8f" }, "docs/design/thingtime-launch-celebration/index.html": { - "mtime": 1788939900.2126977, + "mtime": 1788947732.3142755, "ast_hash": "172d7fdc887bf9658af2bb4e3ec54706", "semantic_hash": "172d7fdc887bf9658af2bb4e3ec54706" }, "iOS/AGENTS.md": { - "mtime": 1788939900.963421, + "mtime": 1788947732.4830973, "ast_hash": "3a0ec1e896de674b924ab4e7b59a50da", "semantic_hash": "3a0ec1e896de674b924ab4e7b59a50da" }, "iOS/CLAUDE.md": { - "mtime": 1788939900.9636104, + "mtime": 1788947732.4830973, "ast_hash": "37cac14b33f5b165ca305b5a12fbd0b1", "semantic_hash": "37cac14b33f5b165ca305b5a12fbd0b1" }, "iOS/README.md": { - "mtime": 1788939900.9664233, + "mtime": 1788947732.4833586, "ast_hash": "280a15ef499d1ede90386cffb83f2cc6", "semantic_hash": "280a15ef499d1ede90386cffb83f2cc6" }, "iOS/fastlane/README.md": { - "mtime": 1788939900.9816482, + "mtime": 1788947732.4875176, "ast_hash": "e9065834cd91a8cb309ba920944ff112", "semantic_hash": "e9065834cd91a8cb309ba920944ff112" }, "iOS/project.yml": { - "mtime": 1788939900.9818356, + "mtime": 1788947732.4875176, "ast_hash": "b5f069f74482e23f68be6cab4eb53562", "semantic_hash": "b5f069f74482e23f68be6cab4eb53562" }, "remix/CHANGELOG.md": { - "mtime": 1788943145.464184, - "ast_hash": "31943743c7625398100e4318ffcf5dfd", + "mtime": 1788948107.393494, + "ast_hash": "8a519a72bcfa440176685c89aa7e38d0", "semantic_hash": "" }, "remix/README.md": { - "mtime": 1788939901.038437, + "mtime": 1788947732.4972742, "ast_hash": "c9082b33736b81c64b045b7e682a1163", "semantic_hash": "c9082b33736b81c64b045b7e682a1163" }, "remix/index.html": { - "mtime": 1788939902.504387, + "mtime": 1788947732.646273, "ast_hash": "20a894825534b8ab782819adc75755be", "semantic_hash": "20a894825534b8ab782819adc75755be" }, "remix/pnpm-workspace.yaml": { - "mtime": 1788939902.5086753, + "mtime": 1788947732.648273, "ast_hash": "4df9c87eae3419a950c1f120b8bec539", "semantic_hash": "4df9c87eae3419a950c1f120b8bec539" }, "remix/public/favicon_import.html": { - "mtime": 1788939902.580077, + "mtime": 1788947732.6712728, "ast_hash": "193aabfa891ee610b0b7e6e38690aac9", "semantic_hash": "193aabfa891ee610b0b7e6e38690aac9" }, "iOS/Thingtime/Resources/Assets.xcassets/AppIcon.appiconset/icon-1024.png": { - "mtime": 1788939900.9693022, + "mtime": 1788947732.4848702, "ast_hash": "954fa066283c6b60bee3a97ea406dcbd", "semantic_hash": "954fa066283c6b60bee3a97ea406dcbd" }, "remix/public/Group 100.png": { - "mtime": 1788939902.50908, + "mtime": 1788947732.6491938, "ast_hash": "ef483cd4d2023a37d8afc0daecdf2682", "semantic_hash": "ef483cd4d2023a37d8afc0daecdf2682" }, "remix/public/Group 99.png": { - "mtime": 1788939902.509201, + "mtime": 1788947732.6491938, "ast_hash": "68a703f69ff292cbd712e2ef14389689", "semantic_hash": "68a703f69ff292cbd712e2ef14389689" }, "remix/public/android-icon-144x144.png": { - "mtime": 1788939902.5106158, + "mtime": 1788947732.6491938, "ast_hash": "60530fa99681b1de4398167446af8830", "semantic_hash": "60530fa99681b1de4398167446af8830" }, "remix/public/android-icon-192x192.png": { - "mtime": 1788939902.5107253, + "mtime": 1788947732.6491938, "ast_hash": "5597b7e33da799fc9c3557ccf5c26968", "semantic_hash": "5597b7e33da799fc9c3557ccf5c26968" }, "remix/public/android-icon-36x36.png": { - "mtime": 1788939902.5110104, + "mtime": 1788947732.6491938, "ast_hash": "8fccd32e6ba6c83fe112ae5e47907d99", "semantic_hash": "8fccd32e6ba6c83fe112ae5e47907d99" }, "remix/public/android-icon-48x48.png": { - "mtime": 1788939902.5111198, + "mtime": 1788947732.6491938, "ast_hash": "a8312beefb7a171fbf451129f53bd03c", "semantic_hash": "a8312beefb7a171fbf451129f53bd03c" }, "remix/public/android-icon-72x72.png": { - "mtime": 1788939902.5111947, + "mtime": 1788947732.649273, "ast_hash": "8aad85ca71312e2b95fe57fb998bd369", "semantic_hash": "8aad85ca71312e2b95fe57fb998bd369" }, "remix/public/android-icon-96x96.png": { - "mtime": 1788939902.51128, + "mtime": 1788947732.649273, "ast_hash": "d5a5095ed62b33388273808e0c9c2601", "semantic_hash": "d5a5095ed62b33388273808e0c9c2601" }, "remix/public/anti-displacement.svg": { - "mtime": 1788939902.5113611, + "mtime": 1788947732.649273, "ast_hash": "1f759aa95e79871da11f7652686dafb8", "semantic_hash": "1f759aa95e79871da11f7652686dafb8" }, "remix/public/apple-icon-114x114.png": { - "mtime": 1788939902.5114896, + "mtime": 1788947732.649273, "ast_hash": "8a7ff812fe618f939766ea1282302d52", "semantic_hash": "8a7ff812fe618f939766ea1282302d52" }, "remix/public/apple-icon-120x120.png": { - "mtime": 1788939902.5115764, + "mtime": 1788947732.649273, "ast_hash": "d95897e81e3ea20ff5c745adf45b7717", "semantic_hash": "d95897e81e3ea20ff5c745adf45b7717" }, "remix/public/apple-icon-144x144.png": { - "mtime": 1788939902.51185, + "mtime": 1788947732.649273, "ast_hash": "60530fa99681b1de4398167446af8830", "semantic_hash": "60530fa99681b1de4398167446af8830" }, "remix/public/apple-icon-152x152.png": { - "mtime": 1788939902.512395, + "mtime": 1788947732.649273, "ast_hash": "fa122cb35e5cc0f93bd89964799688a0", "semantic_hash": "fa122cb35e5cc0f93bd89964799688a0" }, "remix/public/apple-icon-180x180.png": { - "mtime": 1788939902.5124755, + "mtime": 1788947732.649273, "ast_hash": "6e14eddb468de0d5aec93a59b45aa688", "semantic_hash": "6e14eddb468de0d5aec93a59b45aa688" }, "remix/public/apple-icon-57x57.png": { - "mtime": 1788939902.5125573, + "mtime": 1788947732.649273, "ast_hash": "4d3f70a2bed684a4d7939a67f9742d03", "semantic_hash": "4d3f70a2bed684a4d7939a67f9742d03" }, "remix/public/apple-icon-60x60.png": { - "mtime": 1788939902.5126882, + "mtime": 1788947732.649273, "ast_hash": "44b1d9d3edaa73d190eafd8f3c4b415f", "semantic_hash": "44b1d9d3edaa73d190eafd8f3c4b415f" }, "remix/public/apple-icon-72x72.png": { - "mtime": 1788939902.5129356, + "mtime": 1788947732.649273, "ast_hash": "8aad85ca71312e2b95fe57fb998bd369", "semantic_hash": "8aad85ca71312e2b95fe57fb998bd369" }, "remix/public/apple-icon-76x76.png": { - "mtime": 1788939902.5131016, + "mtime": 1788947732.649273, "ast_hash": "f55b58aaee8083d8fc60d833d9a5212b", "semantic_hash": "f55b58aaee8083d8fc60d833d9a5212b" }, "remix/public/apple-icon-precomposed.png": { - "mtime": 1788939902.5132844, + "mtime": 1788947732.649273, "ast_hash": "5597b7e33da799fc9c3557ccf5c26968", "semantic_hash": "5597b7e33da799fc9c3557ccf5c26968" }, "remix/public/apple-icon.png": { - "mtime": 1788939902.5134816, + "mtime": 1788947732.649273, "ast_hash": "5597b7e33da799fc9c3557ccf5c26968", "semantic_hash": "5597b7e33da799fc9c3557ccf5c26968" }, "remix/public/branding/thingtime-horizontal.svg": { - "mtime": 1788939902.5426874, + "mtime": 1788947732.655273, "ast_hash": "b3d500661cf6a8e77e0bbddf718fcaf2", "semantic_hash": "b3d500661cf6a8e77e0bbddf718fcaf2" }, "remix/public/deformmap.png": { - "mtime": 1788939902.5434296, + "mtime": 1788947732.655273, "ast_hash": "677cbd16d0742239f49207fa3fb0b753", "semantic_hash": "677cbd16d0742239f49207fa3fb0b753" }, "remix/public/displacement-gradient-2.svg": { - "mtime": 1788939902.5620034, + "mtime": 1788947732.6642728, "ast_hash": "1cda8ecf98d05ae39184bfb6bd054fbc", "semantic_hash": "1cda8ecf98d05ae39184bfb6bd054fbc" }, "remix/public/displacement-gradient.svg": { - "mtime": 1788939902.57333, + "mtime": 1788947732.6702728, "ast_hash": "21703a4418aed867760d57d53828e32e", "semantic_hash": "21703a4418aed867760d57d53828e32e" }, "remix/public/displacement.svg": { - "mtime": 1788939902.5777745, + "mtime": 1788947732.6702728, "ast_hash": "a5572366d113cab2d95895cc3227b87f", "semantic_hash": "a5572366d113cab2d95895cc3227b87f" }, "remix/public/favicon-16x16.png": { - "mtime": 1788939902.5793462, + "mtime": 1788947732.6709688, "ast_hash": "42eca76e510e034fb9654531191dd75e", "semantic_hash": "42eca76e510e034fb9654531191dd75e" }, "remix/public/favicon-32x32.png": { - "mtime": 1788939902.5794199, + "mtime": 1788947732.6709688, "ast_hash": "31dd2e879afa14b4c94c925c4026c628", "semantic_hash": "31dd2e879afa14b4c94c925c4026c628" }, "remix/public/favicon-96x96.png": { - "mtime": 1788939902.5795023, + "mtime": 1788947732.6709688, "ast_hash": "d5a5095ed62b33388273808e0c9c2601", "semantic_hash": "d5a5095ed62b33388273808e0c9c2601" }, "remix/public/favicon-pink.png": { - "mtime": 1788939902.579802, + "mtime": 1788947732.6709688, "ast_hash": "edcaeff16678d8ef3031cf985fa792a9", "semantic_hash": "edcaeff16678d8ef3031cf985fa792a9" }, "remix/public/gbg.png": { - "mtime": 1788939902.5873387, + "mtime": 1788947732.6722727, "ast_hash": "f4e007b43717817b657e36a9535861bf", "semantic_hash": "f4e007b43717817b657e36a9535861bf" }, "remix/public/gh.png": { - "mtime": 1788939902.587701, + "mtime": 1788947732.6722727, "ast_hash": "7c8aa70c0e70a4a6165c42c3cd128371", "semantic_hash": "7c8aa70c0e70a4a6165c42c3cd128371" }, "remix/public/gs2.png": { - "mtime": 1788939902.6287332, + "mtime": 1788947732.6752727, "ast_hash": "b40023627316b98bc93484caa992178a", "semantic_hash": "b40023627316b98bc93484caa992178a" }, "remix/public/ms-icon-144x144.png": { - "mtime": 1788939902.634357, + "mtime": 1788947732.6752727, "ast_hash": "60530fa99681b1de4398167446af8830", "semantic_hash": "60530fa99681b1de4398167446af8830" }, "remix/public/ms-icon-150x150.png": { - "mtime": 1788939902.6347368, + "mtime": 1788947732.6752727, "ast_hash": "28c25fa130ddc9a40b3411189d17f98b", "semantic_hash": "28c25fa130ddc9a40b3411189d17f98b" }, "remix/public/ms-icon-310x310.png": { - "mtime": 1788939902.6350033, + "mtime": 1788947732.6752727, "ast_hash": "f10bb874da3266848f11ad163abaca9f", "semantic_hash": "f10bb874da3266848f11ad163abaca9f" }, "remix/public/ms-icon-70x70.png": { - "mtime": 1788939902.6350923, + "mtime": 1788947732.6752727, "ast_hash": "82aa3c705bc2e0e170e658e0487951c3", "semantic_hash": "82aa3c705bc2e0e170e658e0487951c3" }, "resources/favicon/favicon_io (2)/android-chrome-192x192.png": { - "mtime": 1788939902.67132, + "mtime": 1788947732.682234, "ast_hash": "f6aacaf99e67399b33c91551a5a6428f", "semantic_hash": "f6aacaf99e67399b33c91551a5a6428f" }, "resources/favicon/favicon_io (2)/android-chrome-512x512.png": { - "mtime": 1788939902.6716151, + "mtime": 1788947732.682283, "ast_hash": "fadf331c97b4d75224385a653d5db518", "semantic_hash": "fadf331c97b4d75224385a653d5db518" }, "resources/favicon/favicon_io (2)/apple-touch-icon.png": { - "mtime": 1788939902.671777, + "mtime": 1788947732.682283, "ast_hash": "6ed7fee0cd7425bceb969170e456cc45", "semantic_hash": "6ed7fee0cd7425bceb969170e456cc45" }, "resources/favicon/favicon_io (2)/favicon-16x16.png": { - "mtime": 1788939902.6721787, + "mtime": 1788947732.682283, "ast_hash": "d1f7c4e3524b501e888a750aedd9a61f", "semantic_hash": "d1f7c4e3524b501e888a750aedd9a61f" }, "resources/favicon/favicon_io (2)/favicon-32x32.png": { - "mtime": 1788939902.6723902, + "mtime": 1788947732.682283, "ast_hash": "fd0a1e79dba22250f8259e87aa77d0b4", "semantic_hash": "fd0a1e79dba22250f8259e87aa77d0b4" }, "resources/svg/qrcode-forqrcode-com.svg": { - "mtime": 1788939902.6756094, + "mtime": 1788947732.682283, "ast_hash": "050706709e3fa1e1e54f7f2fa8b75dba", "semantic_hash": "050706709e3fa1e1e54f7f2fa8b75dba" }, "resources/svg/qrcode.svg": { - "mtime": 1788939902.676037, + "mtime": 1788947732.6826067, "ast_hash": "6eb815f0cfbe5e0c76790ee42833aa81", "semantic_hash": "6eb815f0cfbe5e0c76790ee42833aa81" }, "remix/app/routes/tests.tsx": { - "mtime": 1788939901.4705703, + "mtime": 1788947732.625273, "ast_hash": "6e6330ac4b04c9b55c702bedf266942f", "semantic_hash": "6e6330ac4b04c9b55c702bedf266942f" }, "remix/app/tests/api/apiTestRunner.ts": { - "mtime": 1788939901.4814327, + "mtime": 1788947732.6309369, "ast_hash": "ad112fde54b8d15592a8274acce0e734", "semantic_hash": "ad112fde54b8d15592a8274acce0e734" }, "remix/app/tests/api/apiTests.ts": { - "mtime": 1788939901.4817364, + "mtime": 1788947732.631273, "ast_hash": "27e59032376eb4ad64906234998eb99a", "semantic_hash": "27e59032376eb4ad64906234998eb99a" }, "remix/app/components/Nav/Drawer/DrawerContent.tsx": { - "mtime": 1788939901.272904, + "mtime": 1788947732.5780091, "ast_hash": "a40da2fb79afbac46a20e15e3a3f9520", "semantic_hash": "a40da2fb79afbac46a20e15e3a3f9520" }, "remix/app/components/Nav/Drawer/DrawerSystem.tsx": { - "mtime": 1788939901.2729998, + "mtime": 1788947732.5780091, "ast_hash": "50083cc50b378707ab911100f0a99365", "semantic_hash": "50083cc50b378707ab911100f0a99365" }, "remix/app/components/Nav/Drawer/DrawerTrigger.tsx": { - "mtime": 1788939901.2730777, + "mtime": 1788947732.5780091, "ast_hash": "adfef31e0b7b6fdf2cf88f632ee8f246", "semantic_hash": "adfef31e0b7b6fdf2cf88f632ee8f246" }, "remix/app/components/Nav/Drawer/NavDrawer.tsx": { - "mtime": 1788939901.2736044, + "mtime": 1788947732.5780091, "ast_hash": "6a0ee6baea284b6998893525e1124769", "semantic_hash": "6a0ee6baea284b6998893525e1124769" }, "remix/app/components/Nav/Drawer/ReorderableList.tsx": { - "mtime": 1788939901.2737045, + "mtime": 1788947732.5782735, "ast_hash": "5fbd8796e92fa832f14294e8d3e9c19a", "semantic_hash": "5fbd8796e92fa832f14294e8d3e9c19a" }, "remix/app/components/Nav/Drawer/UserSettingsModal.tsx": { - "mtime": 1788939901.2738223, + "mtime": 1788947732.5782735, "ast_hash": "26dd4035f8ab7dfc4e73d26ec22ed5fd", "semantic_hash": "26dd4035f8ab7dfc4e73d26ec22ed5fd" }, "remix/app/components/Nav/Drawer/drawerMenu.tsx": { - "mtime": 1788939901.2739847, + "mtime": 1788947732.5782735, "ast_hash": "2e6483c3cf99831e3d330c18425b3d1c", "semantic_hash": "2e6483c3cf99831e3d330c18425b3d1c" }, "remix/app/components/Nav/Drawer/useDrawer.tsx": { - "mtime": 1788939901.274937, + "mtime": 1788947732.5782735, "ast_hash": "fa7774414f0b89b1c0a67ea8edf8c429", "semantic_hash": "fa7774414f0b89b1c0a67ea8edf8c429" }, "remix/app/routes/docs/DesignWorkspace.tsx": { - "mtime": 1788939901.4450932, + "mtime": 1788947732.6193562, "ast_hash": "cc5766c8788080e49fa8e865b8fa2cac", "semantic_hash": "cc5766c8788080e49fa8e865b8fa2cac" }, "remix/app/routes/docs/DocsLayout.tsx": { - "mtime": 1788939901.4452338, + "mtime": 1788947732.6193562, "ast_hash": "70d197d6f6d15903c6d27755110bf5a0", "semantic_hash": "70d197d6f6d15903c6d27755110bf5a0" }, "remix/app/routes/docs/PreviewPane.tsx": { - "mtime": 1788939901.4456303, + "mtime": 1788947732.6193562, "ast_hash": "2ae3aea009d431ab1027be378661b4f2", "semantic_hash": "2ae3aea009d431ab1027be378661b4f2" }, "remix/app/routes/docs/design.tsx": { - "mtime": 1788939901.461065, + "mtime": 1788947732.6232731, "ast_hash": "0b8333e3dff4a1d91bf815422a5e969b", "semantic_hash": "0b8333e3dff4a1d91bf815422a5e969b" }, "remix/app/routes/docs/designEntries.ts": { - "mtime": 1788939901.4612198, + "mtime": 1788947732.6232731, "ast_hash": "28f4f7ca579094c9105d82e1e04e1297", "semantic_hash": "28f4f7ca579094c9105d82e1e04e1297" }, "remix/app/routes/docs/index.tsx": { - "mtime": 1788939901.463881, + "mtime": 1788947732.6232731, "ast_hash": "0180af5c9c2e20e48ad4e312458a56d0", "semantic_hash": "0180af5c9c2e20e48ad4e312458a56d0" }, "iOS/Thingtime/Web/ThingtimeWebDeploymentsClient.swift": { - "mtime": 1788939900.9705062, + "mtime": 1788947732.4851289, "ast_hash": "ef7471fb171de1975174f2a64bb67995", "semantic_hash": "ef7471fb171de1975174f2a64bb67995" }, "remix/app/components/VisualSettings/VisualSettingsHost.tsx": { - "mtime": 1788939901.3330002, + "mtime": 1788947732.5892735, "ast_hash": "25bcf1e189d558ee9ffb4d7e5302c39e", "semantic_hash": "25bcf1e189d558ee9ffb4d7e5302c39e" }, "AI_Advice.md": { - "mtime": 1788939899.7064536, + "mtime": 1788947732.074611, "ast_hash": "09f301cd1b67c96c09d8a0aaa80cdf27", "semantic_hash": "09f301cd1b67c96c09d8a0aaa80cdf27" }, "AI_Idlings/2026-06-23-135148-AEST/00-vibe-map.md": { - "mtime": 1788939899.7070768, + "mtime": 1788947732.0755212, "ast_hash": "c40a241eb8b9f3be1acd364e7e35f8a5", "semantic_hash": "c40a241eb8b9f3be1acd364e7e35f8a5" }, "AI_Idlings/2026-06-23-135148-AEST/01-tiny-ux-and-product-polish.md": { - "mtime": 1788939899.7081752, + "mtime": 1788947732.0755851, "ast_hash": "461ce4624decdf5eb4517a3f948e6c2a", "semantic_hash": "461ce4624decdf5eb4517a3f948e6c2a" }, "AI_Idlings/2026-06-23-135148-AEST/02-core-thing-loops.md": { - "mtime": 1788939899.708585, + "mtime": 1788947732.0755851, "ast_hash": "1547a3934c8da4384ef3c14e471a5d41", "semantic_hash": "1547a3934c8da4384ef3c14e471a5d41" }, "AI_Idlings/2026-06-23-135148-AEST/03-trust-identity-and-governance.md": { - "mtime": 1788939899.70899, + "mtime": 1788947732.0755851, "ast_hash": "8633433d0709efe19dc7de65e6527a8d", "semantic_hash": "8633433d0709efe19dc7de65e6527a8d" }, "AI_Idlings/2026-06-23-135148-AEST/04-marketplaces-and-app-store.md": { - "mtime": 1788939899.7102022, + "mtime": 1788947732.0755851, "ast_hash": "8b570ad7f8bbe04193de18997b2b4d23", "semantic_hash": "8b570ad7f8bbe04193de18997b2b4d23" }, "AI_Idlings/2026-06-23-135148-AEST/05-public-accountability-systems.md": { - "mtime": 1788939899.7104797, + "mtime": 1788947732.0755851, "ast_hash": "0ad79b8ae33985124559ce345097e509", "semantic_hash": "0ad79b8ae33985124559ce345097e509" }, "AI_Idlings/2026-06-23-135148-AEST/06-technical-next-steps.md": { - "mtime": 1788939899.710602, + "mtime": 1788947732.0755851, "ast_hash": "92351ffdec002d68464c5f6589b42913", "semantic_hash": "92351ffdec002d68464c5f6589b42913" }, "AI_Idlings/README.md": { - "mtime": 1788939899.7108486, + "mtime": 1788947732.0755851, "ast_hash": "de3948a9af1beb513f2897da6bab18f2", "semantic_hash": "de3948a9af1beb513f2897da6bab18f2" }, "PRs/13-codex-fix-hydration-mongodb-thingtime-defaults--codex-fix-hydration-and-footer-status-updates.md": { - "mtime": 1788939899.9897423, + "mtime": 1788947732.1676702, "ast_hash": "3ee9e0c9d98402760b8ead84cbadaded", "semantic_hash": "3ee9e0c9d98402760b8ead84cbadaded" }, "PRs/16-resolve-main-into-thingtime-dev-branch.md": { - "mtime": 1788939899.991181, + "mtime": 1788947732.1676702, "ast_hash": "e0985018fc1192bd97f6ee3e22e585a7", "semantic_hash": "e0985018fc1192bd97f6ee3e22e585a7" }, "PRs/17-document-pr-16-follow-up-review-notes.md": { - "mtime": 1788939899.9918962, + "mtime": 1788947732.1676702, "ast_hash": "292a8d120efce28fb20e3f48c4aadd64", "semantic_hash": "292a8d120efce28fb20e3f48c4aadd64" }, "PRs/24-codex-migrate-remix-to-nitro--migrate-remix-app-to-nitro-and-react-router.md": { - "mtime": 1788939899.9986124, + "mtime": 1788947732.1702764, "ast_hash": "ec960c959bb1b1ae974b205d817d8742", "semantic_hash": "ec960c959bb1b1ae974b205d817d8742" }, "PRs/26-codex-migrate-remix-to-nitro--add-environment-aware-footer-status-checks.md": { - "mtime": 1788939899.9993064, + "mtime": 1788947732.1702764, "ast_hash": "5ef30b741683fe78e75f0431443cd658", "semantic_hash": "5ef30b741683fe78e75f0431443cd658" }, "PRs/30-codex-ios-deployment-url-picker--add-ios-web-destination-picker.md": { - "mtime": 1788939900.0021663, + "mtime": 1788947732.1712763, "ast_hash": "201572a0435a31703f35af43a133b361", "semantic_hash": "201572a0435a31703f35af43a133b361" }, "docs/codex-gh-setup.md": { - "mtime": 1788939900.086792, + "mtime": 1788947732.1983404, "ast_hash": "dc2ce6fe28aa8dc064fa14809e5bd039", "semantic_hash": "dc2ce6fe28aa8dc064fa14809e5bd039" }, "deprecated/api/.eslintrc.js": { - "mtime": 1788939900.0814238, + "mtime": 1788947732.1971493, "ast_hash": "71e8658e113aa4d7c1a306e6993de187", "semantic_hash": "71e8658e113aa4d7c1a306e6993de187" }, "deprecated/api/package.json": { - "mtime": 1788939900.08353, + "mtime": 1788947732.1972156, "ast_hash": "82cf65071cba84da44c9e21950b30725", "semantic_hash": "82cf65071cba84da44c9e21950b30725" }, "deprecated/api/src/index.js": { - "mtime": 1788939900.0839214, + "mtime": 1788947732.1972764, "ast_hash": "8b4c9a96c0ab9740f7519137b0784a54", "semantic_hash": "8b4c9a96c0ab9740f7519137b0784a54" }, "deprecated/api/src/package.json": { - "mtime": 1788939900.0840814, + "mtime": 1788947732.1972764, "ast_hash": "b456fc8f5badbbcf6e8ec92ffe4e3342", "semantic_hash": "b456fc8f5badbbcf6e8ec92ffe4e3342" }, "deprecated/api/src/test.js": { - "mtime": 1788939900.084178, + "mtime": 1788947732.1972764, "ast_hash": "593d3ec884132548e4c181678c5d5b16", "semantic_hash": "593d3ec884132548e4c181678c5d5b16" }, "graphifyExtract.sh": { - "mtime": 1788939900.962809, + "mtime": 1788947732.482274, "ast_hash": "e75c52eb63080cfe04789e63c3630021", "semantic_hash": "e75c52eb63080cfe04789e63c3630021" }, "TODO/TODO.md": { - "mtime": 1788939900.036868, + "mtime": 1788947732.1802764, "ast_hash": "11ef0d84678d0c36a43e8e8243e43cd9", "semantic_hash": "11ef0d84678d0c36a43e8e8243e43cd9" }, "TODO/claude-todo/01-mongodb-connection-status.md": { - "mtime": 1788939900.0376356, + "mtime": 1788947732.1813033, "ast_hash": "b6444b596845e36dc1a78262852139e8", "semantic_hash": "b6444b596845e36dc1a78262852139e8" }, "TODO/claude-todo/02-db-populate-seeding.md": { - "mtime": 1788939900.0377944, + "mtime": 1788947732.1813653, "ast_hash": "e6d874c567a72465f26ea761d5321e3e", "semantic_hash": "e6d874c567a72465f26ea761d5321e3e" }, "TODO/claude-todo/03-auth-login-register.md": { - "mtime": 1788939900.0379431, + "mtime": 1788947732.1813653, "ast_hash": "89e88d66a3f6f449640623c07d3aadd1", "semantic_hash": "89e88d66a3f6f449640623c07d3aadd1" }, "TODO/claude-todo/04-authed-db-read-query.md": { - "mtime": 1788939900.038041, + "mtime": 1788947732.1813653, "ast_hash": "259aac4b2892b51afb447617242552cc", "semantic_hash": "259aac4b2892b51afb447617242552cc" }, "TODO/claude-todo/05-authed-db-write.md": { - "mtime": 1788939900.0381289, + "mtime": 1788947732.1813653, "ast_hash": "b97d3b6f1f49cceb549732eee937c2f2", "semantic_hash": "b97d3b6f1f49cceb549732eee937c2f2" }, "TODO/claude-todo/06-pr-12-review-actions.md": { - "mtime": 1788939900.0382202, + "mtime": 1788947732.1813653, "ast_hash": "f9e471f7dabd01d6c7fc7b13e37d5c57", "semantic_hash": "f9e471f7dabd01d6c7fc7b13e37d5c57" }, "TODO/claude-todo/07-cross-tab-thingtime-sync.md": { - "mtime": 1788939900.038356, + "mtime": 1788947732.1813653, "ast_hash": "7e9f9c0b3250ae4432f43ade643508db", "semantic_hash": "7e9f9c0b3250ae4432f43ade643508db" }, "TODO/claude-todo/08-drawer-nav-editor-polish.md": { - "mtime": 1788939900.038481, + "mtime": 1788947732.1813653, "ast_hash": "589008f7cc594875432634c280548ca5", "semantic_hash": "589008f7cc594875432634c280548ca5" }, "TODO/claude-todo/README.md": { - "mtime": 1788939900.0434802, + "mtime": 1788947732.1822762, "ast_hash": "d6d5e88b25733faa18ca5fc7618c80fb", "semantic_hash": "d6d5e88b25733faa18ca5fc7618c80fb" }, "docs/design-inspiration/human-ai/html-examples/gold-standard-ai-era-value-moats-light-v5-balanced-cards.html": { - "mtime": 1788939900.0871432, + "mtime": 1788947732.1986785, "ast_hash": "aa4f12f6e680d02e2a68edf7bed7fd80", "semantic_hash": "aa4f12f6e680d02e2a68edf7bed7fd80" }, "docs/design-inspiration/human-ai/html-examples/gold-standard-ai-era-value-moats-light-v5-premium-balanced-cards.html": { - "mtime": 1788939900.0872638, + "mtime": 1788947732.1988568, "ast_hash": "dda13f29629227492b9cfc19e219d1b4", "semantic_hash": "dda13f29629227492b9cfc19e219d1b4" }, "docs/design-inspiration/human-ai/html-examples/gold-standard-v2-ai-moats-thingtime-report-dark.html": { - "mtime": 1788939900.0875642, + "mtime": 1788947732.1988568, "ast_hash": "59f8351ed84a0cbcb7d22b931abffa01", "semantic_hash": "59f8351ed84a0cbcb7d22b931abffa01" }, "docs/design-inspiration/human-ai/html-examples/silver-standard-ai-era-moats-gradient-overflow-text-legibility-bug.html": { - "mtime": 1788939900.087708, + "mtime": 1788947732.1988568, "ast_hash": "25fe648db8498facaf0d1659cc3472ac", "semantic_hash": "25fe648db8498facaf0d1659cc3472ac" }, "docs/design-inspiration/human-ai/image-examples/gold-star-flashy-saas-theme-design.jpg": { - "mtime": 1788939900.0900311, + "mtime": 1788947732.1992762, "ast_hash": "17f9d65ca49d887be58ba6bfdc3f5a35", "semantic_hash": "17f9d65ca49d887be58ba6bfdc3f5a35" }, "remix/app/api/utils/themes/themes.ts": { - "mtime": 1788939901.1737778, + "mtime": 1788947732.5432737, "ast_hash": "2fd308f4b91a23de28dce8b079364967", "semantic_hash": "2fd308f4b91a23de28dce8b079364967" }, "remix/app/api/utils/waitlist/waitlist.ts": { - "mtime": 1788939901.1848283, + "mtime": 1788947732.5476372, "ast_hash": "a19c54b03ba2b5145879b913606110f0", "semantic_hash": "a19c54b03ba2b5145879b913606110f0" }, "remix/app/components/Landing/BrutalButton.tsx": { - "mtime": 1788939901.2497537, + "mtime": 1788947732.5692735, "ast_hash": "5c899bda3e4e6c9fbeffbb59f444a511", "semantic_hash": "5c899bda3e4e6c9fbeffbb59f444a511" }, "remix/app/components/Landing/ConfettiCanvas.tsx": { - "mtime": 1788939901.2499259, + "mtime": 1788947732.5696115, "ast_hash": "22699d6d47b38b6e0b8cebcbcd155930", "semantic_hash": "22699d6d47b38b6e0b8cebcbcd155930" }, "remix/app/components/Landing/Landing.tsx": { - "mtime": 1788939901.2500658, + "mtime": 1788947732.5696115, "ast_hash": "512b9925c9f4d1b2829f4d3fcad6a5ff", "semantic_hash": "512b9925c9f4d1b2829f4d3fcad6a5ff" }, "remix/app/components/Landing/confetti.ts": { - "mtime": 1788939901.2501504, + "mtime": 1788947732.5696115, "ast_hash": "2066e05597ce8d5ee01b6312da3b30eb", "semantic_hash": "2066e05597ce8d5ee01b6312da3b30eb" }, "remix/app/components/ThemeSettings/ThemeHost.tsx": { - "mtime": 1788939901.3226814, + "mtime": 1788947732.5859885, "ast_hash": "ae2e6ce2f38e833ea43f9970d03134e6", "semantic_hash": "ae2e6ce2f38e833ea43f9970d03134e6" }, "remix/app/components/ThemeSettings/ThemeStudio.tsx": { - "mtime": 1788939901.3228023, + "mtime": 1788947732.5859885, "ast_hash": "48270e2784e93bddcfad5f4669717485", "semantic_hash": "48270e2784e93bddcfad5f4669717485" }, "remix/app/hooks/useTtTheme.tsx": { - "mtime": 1788939901.358464, + "mtime": 1788947732.5952733, "ast_hash": "d340814025f204d0da97d8869eeb0702", "semantic_hash": "d340814025f204d0da97d8869eeb0702" }, "remix/app/routes/api/v1/themes/_themes.tsx": { - "mtime": 1788939901.4309201, + "mtime": 1788947732.614273, "ast_hash": "13ca2881d5def793460c8d3ee6ed7ddb", "semantic_hash": "13ca2881d5def793460c8d3ee6ed7ddb" }, "remix/app/routes/api/v1/themes/active/_active.tsx": { - "mtime": 1788939901.4310403, + "mtime": 1788947732.6146731, "ast_hash": "83171fa48c4cd186a675b1cd1f9b94fd", "semantic_hash": "83171fa48c4cd186a675b1cd1f9b94fd" }, "remix/app/routes/api/v1/themes/delete/_delete.tsx": { - "mtime": 1788939901.4311578, + "mtime": 1788947732.6146731, "ast_hash": "3f46f1ed7625317b36bd014a6ed3e135", "semantic_hash": "3f46f1ed7625317b36bd014a6ed3e135" }, "remix/app/routes/api/v1/themes/shared/_shared.tsx": { - "mtime": 1788939901.431278, + "mtime": 1788947732.6146731, "ast_hash": "38b7c6d912d8a6aa8ce5d31646d762f4", "semantic_hash": "38b7c6d912d8a6aa8ce5d31646d762f4" }, "remix/app/routes/api/v1/waitlist/_waitlist.tsx": { - "mtime": 1788939901.4419796, + "mtime": 1788947732.6177938, "ast_hash": "a3aa7195052c0704681e309c722d5c04", "semantic_hash": "a3aa7195052c0704681e309c722d5c04" }, "remix/app/routes/themes.tsx": { - "mtime": 1788939901.4707828, + "mtime": 1788947732.625273, "ast_hash": "b5ea4abd8af79553da5b7c8acdb797f7", "semantic_hash": "b5ea4abd8af79553da5b7c8acdb797f7" }, "remix/app/theme/rainbow.ts": { - "mtime": 1788939901.4833858, + "mtime": 1788947732.6318555, "ast_hash": "945dd3bd7727a25ec443ff9187136d03", "semantic_hash": "945dd3bd7727a25ec443ff9187136d03" }, "docs/design/DESIGN_LANGUAGE.md": { - "mtime": 1788939900.0902953, + "mtime": 1788947732.1992762, "ast_hash": "d9fa8d0e415349e6d73a91b107885d9d", "semantic_hash": "d9fa8d0e415349e6d73a91b107885d9d" }, "remix/app/components/ThemeSettings/controls.tsx": { - "mtime": 1788939901.3229513, + "mtime": 1788947732.5859885, "ast_hash": "8779f78c3510b64f9d1052ded166d227", "semantic_hash": "8779f78c3510b64f9d1052ded166d227" }, "PRs/32-claude-vigilant-moser--design-refactor-theming.md": { - "mtime": 1788939900.002878, + "mtime": 1788947732.1712763, "ast_hash": "be525a339b93f42b38e0323c3eaa3f7a", "semantic_hash": "be525a339b93f42b38e0323c3eaa3f7a" }, "remix/app/components/Thingtime/ContextMenu/ThingContextMenu.tsx": { - "mtime": 1788939901.3268478, + "mtime": 1788947732.5877476, "ast_hash": "e96c9f377c0b9725f325e9e473fd77cf", "semantic_hash": "e96c9f377c0b9725f325e9e473fd77cf" }, "remix/app/components/Thingtime/ContextMenu/contextMenuModel.ts": { - "mtime": 1788939901.3280766, + "mtime": 1788947732.5879242, "ast_hash": "4e34a067c7e7458cb94e4db41140980e", "semantic_hash": "4e34a067c7e7458cb94e4db41140980e" }, "remix/app/components/Thingtime/ContextMenu/useThingContextMenu.tsx": { - "mtime": 1788939901.3284338, + "mtime": 1788947732.5879242, "ast_hash": "971d86f9726cfa6d4c60dae132307237", "semantic_hash": "971d86f9726cfa6d4c60dae132307237" }, "remix/app/components/Thingtime/thingRoute.ts": { - "mtime": 1788939901.332342, + "mtime": 1788947732.5892735, "ast_hash": "c60f41a361c32cdc59255249a385b62c", "semantic_hash": "c60f41a361c32cdc59255249a385b62c" }, "remix/app/routes/docs/design-system/ThingContextMenuStories.tsx": { - "mtime": 1788939901.451516, + "mtime": 1788947732.6203594, "ast_hash": "1a3654c0611f86ffba7b142559d70c9d", "semantic_hash": "1a3654c0611f86ffba7b142559d70c9d" }, "remix/app/routes/docs/design-system/entries.tsx": { - "mtime": 1788939901.452578, + "mtime": 1788947732.6203594, "ast_hash": "f0cc43db5e4389483082020aad61c68e", "semantic_hash": "f0cc43db5e4389483082020aad61c68e" }, "remix/app/routes/docs/design-system/index.tsx": { - "mtime": 1788939901.4609745, + "mtime": 1788947732.6222732, "ast_hash": "7a37893bcf8e2105e23890e9cb86af5a", "semantic_hash": "7a37893bcf8e2105e23890e9cb86af5a" }, "remix/app/components/Thingtime/ContextMenu/ThingContextMenuTrigger.tsx": { - "mtime": 1788939901.3270297, + "mtime": 1788947732.5879242, "ast_hash": "fc11a55a7ab3d56c9a64dd940d92ac1b", "semantic_hash": "fc11a55a7ab3d56c9a64dd940d92ac1b" }, "remix/app/components/Thingtime/thingZones.ts": { - "mtime": 1788939901.3324275, + "mtime": 1788947732.5892735, "ast_hash": "04f619961c2607fa0e42335fe49c2b04", "semantic_hash": "04f619961c2607fa0e42335fe49c2b04" }, "remix/app/components/Thingtime/EditorSplit.tsx": { - "mtime": 1788939901.3296254, + "mtime": 1788947732.5879242, "ast_hash": "97f01f4820403e25dd766d5361f73c1f", "semantic_hash": "97f01f4820403e25dd766d5361f73c1f" }, "remix/app/api/utils/algorithms/algorithms.ts": { - "mtime": 1788939901.0698378, + "mtime": 1788947732.5094469, "ast_hash": "ab2e579bd8246bb34171591ff732245d", "semantic_hash": "ab2e579bd8246bb34171591ff732245d" }, "remix/app/api/utils/things/feedRanking.ts": { - "mtime": 1788939901.1745899, + "mtime": 1788947732.5445237, "ast_hash": "70a4a9dbd0d87d97133f4e04742017cf", "semantic_hash": "70a4a9dbd0d87d97133f4e04742017cf" }, "remix/app/api/utils/things/things.ts": { - "mtime": 1788939901.1800625, + "mtime": 1788947732.5462737, "ast_hash": "65c2104217132742e49e60350b96c99a", "semantic_hash": "65c2104217132742e49e60350b96c99a" }, "remix/app/components/Feed/Feed.tsx": { - "mtime": 1788939901.2404616, + "mtime": 1788947732.5652814, "ast_hash": "16b4884aa42e37cce3618c92c42da6eb", "semantic_hash": "16b4884aa42e37cce3618c92c42da6eb" }, "remix/app/components/Feed/feedTypes.ts": { - "mtime": 1788939901.2448025, + "mtime": 1788947732.5662735, "ast_hash": "cb480697bbcbd96934d0d1be0dc10682", "semantic_hash": "cb480697bbcbd96934d0d1be0dc10682" }, "remix/app/components/Profile/EditProfileModal.tsx": { - "mtime": 1788939901.2874074, + "mtime": 1788947732.5801716, "ast_hash": "8f6fa3dc60c61b173363ebeb23639e9d", "semantic_hash": "8f6fa3dc60c61b173363ebeb23639e9d" }, "remix/app/components/Profile/ProfilePage.tsx": { - "mtime": 1788939901.2902715, + "mtime": 1788947732.5802734, "ast_hash": "854d71ed40eb320866a392538f7968c7", "semantic_hash": "854d71ed40eb320866a392538f7968c7" }, "remix/app/components/Settings/AlgorithmManager.tsx": { - "mtime": 1788939901.300169, + "mtime": 1788947732.5822735, "ast_hash": "fe48beae047252bae55082f3cc47dabc", "semantic_hash": "fe48beae047252bae55082f3cc47dabc" }, "remix/app/components/Settings/SettingsPage.tsx": { - "mtime": 1788939901.3018048, + "mtime": 1788947732.5832734, "ast_hash": "16123f5904998fcfcac67ad3db9e8cc3", "semantic_hash": "16123f5904998fcfcac67ad3db9e8cc3" }, "remix/app/components/Settings/SettingsSection.tsx": { - "mtime": 1788939901.3020597, + "mtime": 1788947732.5832734, "ast_hash": "18c1d076f6c56eb2de3af5874c7c7649", "semantic_hash": "18c1d076f6c56eb2de3af5874c7c7649" }, "remix/app/routes/api/v1/algorithms/_algorithms.tsx": { - "mtime": 1788939901.3702433, + "mtime": 1788947732.599501, "ast_hash": "546f46956d59dd86fe0aaf9c11e82d74", "semantic_hash": "546f46956d59dd86fe0aaf9c11e82d74" }, "remix/app/routes/api/v1/algorithms/active/_active.tsx": { - "mtime": 1788939901.3714695, + "mtime": 1788947732.5997405, "ast_hash": "173582b9ba74759e50fe6c90a60a4eca", "semantic_hash": "173582b9ba74759e50fe6c90a60a4eca" }, "remix/app/routes/api/v1/algorithms/delete/_delete.tsx": { - "mtime": 1788939901.371738, + "mtime": 1788947732.5997405, "ast_hash": "3d5256d0c676f806c059c8dcac2c1b6e", "semantic_hash": "3d5256d0c676f806c059c8dcac2c1b6e" }, "remix/app/routes/api/v1/algorithms/track/_track.tsx": { - "mtime": 1788939901.3721468, + "mtime": 1788947732.5997405, "ast_hash": "83d0d2e7ebe3ee7e77849d7877406b02", "semantic_hash": "83d0d2e7ebe3ee7e77849d7877406b02" }, "remix/app/routes/api/v1/algorithms/update/_update.tsx": { - "mtime": 1788939901.3723366, + "mtime": 1788947732.5997405, "ast_hash": "9b3ec8e609788aa19cfea9460c0ac286", "semantic_hash": "9b3ec8e609788aa19cfea9460c0ac286" }, "remix/app/routes/api/v1/things/_things.tsx": { - "mtime": 1788939901.4314392, + "mtime": 1788947732.6146731, "ast_hash": "5fb862bebb46559dd3504d6cafe69632", "semantic_hash": "5fb862bebb46559dd3504d6cafe69632" }, "remix/app/routes/api/v1/things/comment/_comment.tsx": { - "mtime": 1788939901.4328487, + "mtime": 1788947732.615214, "ast_hash": "43efa19093cdb3f2cbe52f2ae476e342", "semantic_hash": "43efa19093cdb3f2cbe52f2ae476e342" }, "remix/app/routes/api/v1/things/delete/_delete.tsx": { - "mtime": 1788939901.4329934, + "mtime": 1788947732.6152732, "ast_hash": "fb81eb32bc991eef2920ebff42e95a8b", "semantic_hash": "fb81eb32bc991eef2920ebff42e95a8b" }, "remix/app/routes/api/v1/things/feed/_feed.tsx": { - "mtime": 1788939901.4338455, + "mtime": 1788947732.6152732, "ast_hash": "1f3d42c5af6466ab7e53c2ba9f2850ac", "semantic_hash": "1f3d42c5af6466ab7e53c2ba9f2850ac" }, "remix/app/routes/api/v1/things/react/_react.tsx": { - "mtime": 1788939901.4342542, + "mtime": 1788947732.6152732, "ast_hash": "5437eb44f66d570dc9e4ad073b748ed4", "semantic_hash": "5437eb44f66d570dc9e4ad073b748ed4" }, "remix/app/routes/api/v1/things/share/_share.tsx": { - "mtime": 1788939901.4359307, + "mtime": 1788947732.6159184, "ast_hash": "d3e2146560d4f88128ee8ea5e8de9036", "semantic_hash": "d3e2146560d4f88128ee8ea5e8de9036" }, "remix/app/routes/api/v1/things/user/_user.tsx": { - "mtime": 1788939901.4364588, + "mtime": 1788947732.6162732, "ast_hash": "4c2bcc392d72f7c37a09f0acd2454aed", "semantic_hash": "4c2bcc392d72f7c37a09f0acd2454aed" }, "remix/app/routes/api/v1/users/profile/_profile.tsx": { - "mtime": 1788939901.4379394, + "mtime": 1788947732.617273, "ast_hash": "c2b2727d31593fec00c391acc0be9c00", "semantic_hash": "c2b2727d31593fec00c391acc0be9c00" }, "remix/app/routes/feed.tsx": { - "mtime": 1788939901.4672165, + "mtime": 1788947732.6232731, "ast_hash": "0cb99850c50d06e0726486bb6e9b7f07", "semantic_hash": "0cb99850c50d06e0726486bb6e9b7f07" }, "remix/app/routes/settings.tsx": { - "mtime": 1788939901.4693582, + "mtime": 1788947732.624273, "ast_hash": "5806da2841f1c5fe5e0bb966e02457a2", "semantic_hash": "5806da2841f1c5fe5e0bb966e02457a2" }, "remix/app/components/Feed/AlgorithmMenu.tsx": { - "mtime": 1788939901.2400784, + "mtime": 1788947732.5652814, "ast_hash": "5d41c5e3882de139dba5a8a9f8caf526", "semantic_hash": "5d41c5e3882de139dba5a8a9f8caf526" }, "remix/app/components/Feed/FeedFilters.tsx": { - "mtime": 1788939901.240644, + "mtime": 1788947732.5652814, "ast_hash": "2181d489828f192a1f9aa75844bb2e1e", "semantic_hash": "2181d489828f192a1f9aa75844bb2e1e" }, "remix/app/components/Feed/PostCard.tsx": { - "mtime": 1788939901.2417173, + "mtime": 1788947732.5652814, "ast_hash": "f45e120433e79d5f6a3029d139e71b99", "semantic_hash": "f45e120433e79d5f6a3029d139e71b99" }, "remix/app/components/Feed/PostComposer.tsx": { - "mtime": 1788939901.2422283, + "mtime": 1788948107.3964937, "ast_hash": "741120825268ca0eeb49a783caf2f6b7", "semantic_hash": "741120825268ca0eeb49a783caf2f6b7" }, "remix/app/components/Feed/PostList.tsx": { - "mtime": 1788939901.2425497, + "mtime": 1788947732.5662735, "ast_hash": "5ca562e68a6efccc8a75d451cddcba30", "semantic_hash": "5ca562e68a6efccc8a75d451cddcba30" }, "remix/app/components/Feed/useFeedEngagement.ts": { - "mtime": 1788939901.2463071, + "mtime": 1788947732.5672736, "ast_hash": "fed3aca5d99d7433450f6e4fb845ee79", "semantic_hash": "fed3aca5d99d7433450f6e4fb845ee79" }, "remix/app/scripts/mongodb/data/feed.ts": { - "mtime": 1788939901.4802208, + "mtime": 1788947732.6298633, "ast_hash": "7af67fb41e41ed7d9b45ec969b8aa8e7", "semantic_hash": "7af67fb41e41ed7d9b45ec969b8aa8e7" }, "remix/app/components/Nav/Drawer/EditorDrawerSection.tsx": { - "mtime": 1788939901.2732003, + "mtime": 1788947732.5780091, "ast_hash": "3de7fa45645a3d7d0f4fdd580af76156", "semantic_hash": "3de7fa45645a3d7d0f4fdd580af76156" }, "remix/app/components/Thingtime/jsonValue.ts": { - "mtime": 1788939901.3322368, + "mtime": 1788947732.5892735, "ast_hash": "f33d517f220a280930d5f773399b28a0", "semantic_hash": "f33d517f220a280930d5f773399b28a0" }, "remix/app/docs/apiDocs.ts": { - "mtime": 1788943126.4520972, + "mtime": 1788948107.4004939, "ast_hash": "739be64ee54218df926fe82c279dfd6d", "semantic_hash": "" }, "remix/app/routes/docs/api.tsx": { - "mtime": 1788939901.4457755, + "mtime": 1788947732.6193562, "ast_hash": "5af0f1853d0c6c163aad0535ef6e4b60", "semantic_hash": "5af0f1853d0c6c163aad0535ef6e4b60" }, "remix/server/routes/api/root-data-docs.ts": { - "mtime": 1788939902.662015, + "mtime": 1788947732.6813657, "ast_hash": "0afa4b35f5e8032223493be1df022c1f", "semantic_hash": "0afa4b35f5e8032223493be1df022c1f" }, "remix/server/utils/apiFallback.ts": { - "mtime": 1788939902.663762, + "mtime": 1788947732.6816258, "ast_hash": "11708ea8dbd4ef5e96a62c05de01792e", "semantic_hash": "11708ea8dbd4ef5e96a62c05de01792e" }, "PRs/39-codex-api-docs-endpoints--add-api-self-documentation-routes.md": { - "mtime": 1788939900.0046496, + "mtime": 1788947732.1722765, "ast_hash": "04cfe6408b4742fc5474dedbc91f2ff3", "semantic_hash": "04cfe6408b4742fc5474dedbc91f2ff3" }, "PRs/40-claude-feed-algorithms-profile-516506--feed-personal-algorithms-profiles-settings.md": { - "mtime": 1788939900.005137, + "mtime": 1788947732.1722765, "ast_hash": "ddf594e89b2b9f7d27e86509b5be7f3e", "semantic_hash": "ddf594e89b2b9f7d27e86509b5be7f3e" }, "remix/app/components/EasterEggs/EasterEggs.tsx": { - "mtime": 1788939901.2292697, + "mtime": 1788947732.5612736, "ast_hash": "faec3a60875f296fa3ddd8cf8a4c2cf7", "semantic_hash": "faec3a60875f296fa3ddd8cf8a4c2cf7" }, "remix/app/eggs/consoleEgg.ts": { - "mtime": 1788939901.3414843, + "mtime": 1788947732.5922732, "ast_hash": "e24309f6d86309abcbafa20189118c69", "semantic_hash": "e24309f6d86309abcbafa20189118c69" }, "remix/app/eggs/eggs.ts": { - "mtime": 1788939901.3416376, + "mtime": 1788947732.593405, "ast_hash": "ebed6e09de50e63dc05922e0aa7ef767", "semantic_hash": "ebed6e09de50e63dc05922e0aa7ef767" }, "TODO/claude-todo/09-security-hardening.md": { - "mtime": 1788939900.0387535, + "mtime": 1788947732.1813653, "ast_hash": "28514b8b0416a44e85a03ecaa48fca40", "semantic_hash": "28514b8b0416a44e85a03ecaa48fca40" }, "TODO/claude-todo/10-delight-and-growth-ideas.md": { - "mtime": 1788939900.0395956, + "mtime": 1788947732.1813653, "ast_hash": "df131a325dfaa599bb9ad20c8e52eb30", "semantic_hash": "df131a325dfaa599bb9ad20c8e52eb30" }, "docs/design/thingtime-algorithm-growth/index.html": { - "mtime": 1788939900.107971, + "mtime": 1788947732.218276, "ast_hash": "20b370d6ba0185015596da20edf894aa", "semantic_hash": "20b370d6ba0185015596da20edf894aa" }, "docs/design/thingtime-theme-gallery/index.html": { - "mtime": 1788939900.2194448, + "mtime": 1788947732.3142755, "ast_hash": "3682a002c99ff959c04ffa06157937d4", "semantic_hash": "3682a002c99ff959c04ffa06157937d4" }, "electron/package.json": { - "mtime": 1788939900.227899, + "mtime": 1788947732.3162754, "ast_hash": "436dfb5011a3d0100f70806e935c91dc", "semantic_hash": "436dfb5011a3d0100f70806e935c91dc" }, "electron/scripts/build-web.mjs": { - "mtime": 1788939900.229395, + "mtime": 1788947732.3171728, "ast_hash": "3d62084043de63cbce320d5b301e58b8", "semantic_hash": "3d62084043de63cbce320d5b301e58b8" }, "electron/scripts/install-local-app.mjs": { - "mtime": 1788939900.229616, + "mtime": 1788947732.3172753, "ast_hash": "7546f5637ae48e541998e3f7bc3400f1", "semantic_hash": "7546f5637ae48e541998e3f7bc3400f1" }, "electron/scripts/verify-web-build.mjs": { - "mtime": 1788939900.231006, + "mtime": 1788947732.3172753, "ast_hash": "f63a3599aeeeddd984d6da66cef2ae41", "semantic_hash": "f63a3599aeeeddd984d6da66cef2ae41" }, "remix/app/components/Electron/ElectronBridgeHost.tsx": { - "mtime": 1788939901.238984, + "mtime": 1788947732.5642736, "ast_hash": "e46bf0c1eba65f96a36ac60b0b1cc763", "semantic_hash": "e46bf0c1eba65f96a36ac60b0b1cc763" }, "remix/app/utils/electronBridge.ts": { - "mtime": 1788941746.291375, + "mtime": 1788948107.4034936, "ast_hash": "d2e17e19ea905319b270ac4a6d163730", "semantic_hash": "" }, ".github/workflows/electron-release.yml": { - "mtime": 1788939899.7016098, + "mtime": 1788947732.074611, "ast_hash": "e5a4dd71687a4d51cce6336044f418b3", "semantic_hash": "e5a4dd71687a4d51cce6336044f418b3" }, "PRs/42-codex-electron-remix-app--add-electron-desktop-app-shell.md": { - "mtime": 1788939900.005337, + "mtime": 1788947732.1722765, "ast_hash": "cef236b2909fd206dd16da39d183a8a6", "semantic_hash": "cef236b2909fd206dd16da39d183a8a6" }, "electron/README.md": { - "mtime": 1788939900.2232554, + "mtime": 1788947732.315336, "ast_hash": "a3358bec068458da2fecdb57b700849a", "semantic_hash": "a3358bec068458da2fecdb57b700849a" }, ".githooks/README.md": { - "mtime": 1788939899.6967738, + "mtime": 1788947732.074031, "ast_hash": "a21bcb11b341a05110703f060882790d", "semantic_hash": "a21bcb11b341a05110703f060882790d" }, "remix/app/components/Kinds/HtmlThingRenderer.tsx": { - "mtime": 1788939901.2478735, + "mtime": 1788947732.568182, "ast_hash": "a57313cc71040403c0380b07384f57b8", "semantic_hash": "a57313cc71040403c0380b07384f57b8" }, "remix/app/components/Kinds/index.ts": { - "mtime": 1788939901.2479756, + "mtime": 1788947732.568182, "ast_hash": "1b032af3c0e63938f9dd4ed0a0127a30", "semantic_hash": "1b032af3c0e63938f9dd4ed0a0127a30" }, "remix/app/components/Kinds/kindRegistry.tsx": { - "mtime": 1788939901.248215, + "mtime": 1788947732.5682735, "ast_hash": "509bd9ad876250efb8adef35cbfbef54", "semantic_hash": "509bd9ad876250efb8adef35cbfbef54" }, "remix/app/components/Kinds/kindRenderers.tsx": { - "mtime": 1788939901.2483723, + "mtime": 1788947732.5682735, "ast_hash": "3f48452c42c6001b90a162e0713208ca", "semantic_hash": "3f48452c42c6001b90a162e0713208ca" }, "remix/app/components/Kinds/sampleKindThings.ts": { - "mtime": 1788939901.2495165, + "mtime": 1788947732.5692735, "ast_hash": "b32ec0d7aa835d128515d908b6697b88", "semantic_hash": "b32ec0d7aa835d128515d908b6697b88" }, "remix/app/components/Thingtime/concepts/FocusCardsViewer.tsx": { - "mtime": 1788939901.3304937, + "mtime": 1788947732.5882733, "ast_hash": "51dc34d12068b79805b153d1a42d16d8", "semantic_hash": "51dc34d12068b79805b153d1a42d16d8" }, "remix/app/components/Thingtime/concepts/FormSheetViewer.tsx": { - "mtime": 1788939901.3306336, + "mtime": 1788947732.589008, "ast_hash": "3b1d549a58b18cb99c191a9152552673", "semantic_hash": "3b1d549a58b18cb99c191a9152552673" }, "remix/app/components/Thingtime/concepts/MillerColumnsViewer.tsx": { - "mtime": 1788939901.3308215, + "mtime": 1788947732.589008, "ast_hash": "a60a90cc99fb0551904b2a71364471d7", "semantic_hash": "a60a90cc99fb0551904b2a71364471d7" }, "remix/app/components/Thingtime/concepts/OrbitCanvasViewer.tsx": { - "mtime": 1788939901.3309224, + "mtime": 1788947732.589008, "ast_hash": "6a2e6f4fbbbe0df353de92b3a90d7cdd", "semantic_hash": "6a2e6f4fbbbe0df353de92b3a90d7cdd" }, "remix/app/components/Thingtime/concepts/OutlineDocViewer.tsx": { - "mtime": 1788939901.331023, + "mtime": 1788947732.589008, "ast_hash": "74843071e9bd86e214d97beec67772e0", "semantic_hash": "74843071e9bd86e214d97beec67772e0" }, "remix/app/components/Thingtime/concepts/conceptBits.tsx": { - "mtime": 1788939901.331349, + "mtime": 1788947732.589008, "ast_hash": "e46120ce4910c88787dcd7044580cd32", "semantic_hash": "e46120ce4910c88787dcd7044580cd32" }, "remix/app/components/Thingtime/concepts/conceptData.ts": { - "mtime": 1788939901.3314679, + "mtime": 1788947732.589008, "ast_hash": "80437616b5be7f96ed22194cab6e6180", "semantic_hash": "80437616b5be7f96ed22194cab6e6180" }, "remix/app/components/Thingtime/concepts/index.ts": { - "mtime": 1788939901.3316553, + "mtime": 1788947732.589008, "ast_hash": "cef7ce6febe326d56b1182581be552c0", "semantic_hash": "cef7ce6febe326d56b1182581be552c0" }, "remix/app/components/Thingtime/concepts/sampleThings.ts": { - "mtime": 1788939901.3320997, + "mtime": 1788947732.5892735, "ast_hash": "865c755dc226168b1664f5e61f1b1b6f", "semantic_hash": "865c755dc226168b1664f5e61f1b1b6f" }, "remix/app/routes/docs/concepts/ConceptStories.tsx": { - "mtime": 1788939901.4459493, + "mtime": 1788947732.6193562, "ast_hash": "89161ad3c673f893ead488e5eef75b21", "semantic_hash": "89161ad3c673f893ead488e5eef75b21" }, "remix/app/routes/docs/concepts/entries.tsx": { - "mtime": 1788939901.4487076, + "mtime": 1788947732.6200933, "ast_hash": "e9f4f471adeeee708305639dad42a170", "semantic_hash": "e9f4f471adeeee708305639dad42a170" }, "remix/app/routes/docs/concepts/index.tsx": { - "mtime": 1788939901.4494977, + "mtime": 1788947732.6200933, "ast_hash": "cb100f6065969db2ba48924ccbc315ee", "semantic_hash": "cb100f6065969db2ba48924ccbc315ee" }, "remix/app/components/Editor/LongTextEditor.tsx": { - "mtime": 1788939901.2306683, + "mtime": 1788947732.5623264, "ast_hash": "57680de4599ca34b4738e0f5341e7139", "semantic_hash": "57680de4599ca34b4738e0f5341e7139" }, "remix/app/components/Kinds/kindPrimitives.tsx": { - "mtime": 1788939901.2480936, + "mtime": 1788947732.568182, "ast_hash": "7d60efefc96778b404249d9d52a3fa55", "semantic_hash": "7d60efefc96778b404249d9d52a3fa55" }, "remix/app/components/Kinds/kindRenderersCommerce.tsx": { - "mtime": 1788939901.2485325, + "mtime": 1788947732.5682735, "ast_hash": "474443bc8640a3b687b389d0264ee80d", "semantic_hash": "474443bc8640a3b687b389d0264ee80d" }, "remix/app/components/Kinds/kindRenderersKnowledge.tsx": { - "mtime": 1788939901.248646, + "mtime": 1788947732.5682735, "ast_hash": "196edc0b8ed207b3e1cc3b94d1489d1b", "semantic_hash": "196edc0b8ed207b3e1cc3b94d1489d1b" }, "remix/app/components/Kinds/kindRenderersMedia.tsx": { - "mtime": 1788939901.2489507, + "mtime": 1788947732.5682735, "ast_hash": "5a28c0b04eb77332e10be5eee46e7fe5", "semantic_hash": "5a28c0b04eb77332e10be5eee46e7fe5" }, "remix/app/components/Kinds/kindRenderersPlanning.tsx": { - "mtime": 1788939901.2490997, + "mtime": 1788947732.5682735, "ast_hash": "b3c87ad6349138d03bc3712f922fa6ca", "semantic_hash": "b3c87ad6349138d03bc3712f922fa6ca" }, "remix/app/components/Kinds/kindRenderersSocial.tsx": { - "mtime": 1788939901.2492223, + "mtime": 1788947732.5682735, "ast_hash": "454df59a0ff8e26701f4c38d6f92945e", "semantic_hash": "454df59a0ff8e26701f4c38d6f92945e" }, "PRs/53-claude-nested-data-viewer-concepts-1ebbbe--nested-data-viewer-concepts-kind-renderers.md": { - "mtime": 1788939900.0126886, + "mtime": 1788947732.1732764, "ast_hash": "8816b7869f0dd6490226390543df7206", "semantic_hash": "8816b7869f0dd6490226390543df7206" }, "remix/app/components/Editor/StyleTune.ts": { - "mtime": 1788939901.2310648, + "mtime": 1788947732.5623264, "ast_hash": "82bf2ce2bbe571c3303bc791e417a3f7", "semantic_hash": "82bf2ce2bbe571c3303bc791e417a3f7" }, "remix/app/components/Editor/styleTokens.ts": { - "mtime": 1788939901.2387068, + "mtime": 1788947732.5642736, "ast_hash": "21fdd9cfaf05353f20d3d1b532184837", "semantic_hash": "21fdd9cfaf05353f20d3d1b532184837" }, "remix/app/theme/customise.ts": { - "mtime": 1788939901.4827564, + "mtime": 1788947732.6318555, "ast_hash": "2bfc420cb38ec1be2013a2cb21160f94", "semantic_hash": "2bfc420cb38ec1be2013a2cb21160f94" }, "remix/app/theme/icons.tsx": { - "mtime": 1788939901.4832656, + "mtime": 1788947732.6318555, "ast_hash": "825185e5ab7ea2faac6607a54df5e4af", "semantic_hash": "825185e5ab7ea2faac6607a54df5e4af" }, "remix/app/components/Editor/editorJsValue.test.ts": { - "mtime": 1788939901.2366242, + "mtime": 1788947732.5632737, "ast_hash": "91135d43d7af7e4c3f4d269e62b0c267", "semantic_hash": "91135d43d7af7e4c3f4d269e62b0c267" }, "remix/app/components/Editor/editorJsValue.ts": { - "mtime": 1788939901.2367432, + "mtime": 1788947732.5632737, "ast_hash": "67d7d48e564051b6a6977cab951a4459", "semantic_hash": "67d7d48e564051b6a6977cab951a4459" }, "remix/app/components/Editor/inlineHtmlText.test.ts": { - "mtime": 1788939901.2378247, + "mtime": 1788947732.5632737, "ast_hash": "a723b2252e1c78327ca6427256f24a3f", "semantic_hash": "a723b2252e1c78327ca6427256f24a3f" }, "remix/app/components/Editor/inlineHtmlText.ts": { - "mtime": 1788939901.237972, + "mtime": 1788947732.5632737, "ast_hash": "edeb4c26eccd99de9a808970ceae0c0c", "semantic_hash": "edeb4c26eccd99de9a808970ceae0c0c" }, "remix/app/components/Kinds/safeUrl.test.ts": { - "mtime": 1788939901.2493212, + "mtime": 1788947732.5682735, "ast_hash": "1389695dcb216b46a1459cfdd4a33f5f", "semantic_hash": "1389695dcb216b46a1459cfdd4a33f5f" }, "remix/app/components/Kinds/safeUrl.ts": { - "mtime": 1788939901.2493992, + "mtime": 1788947732.5682735, "ast_hash": "009da21126874830fa8edd27767b7d4b", "semantic_hash": "009da21126874830fa8edd27767b7d4b" }, "remix/app/components/Editor/editorJsKeyboard.test.ts": { - "mtime": 1788939901.2340646, + "mtime": 1788947732.5632737, "ast_hash": "c28e7faffd1e57200a2e965694ed521b", "semantic_hash": "c28e7faffd1e57200a2e965694ed521b" }, "remix/app/components/Editor/editorJsKeyboard.ts": { - "mtime": 1788939901.234758, + "mtime": 1788947732.5632737, "ast_hash": "e6fd6a732582f32fd55b6872e6ffe2e3", "semantic_hash": "e6fd6a732582f32fd55b6872e6ffe2e3" }, "remix/app/Providers/latestRevisionAutosave.test.ts": { - "mtime": 1788939901.0447848, + "mtime": 1788947732.4983323, "ast_hash": "79bb020eefc725254db9bf3a571b34d8", "semantic_hash": "79bb020eefc725254db9bf3a571b34d8" }, "remix/app/Providers/latestRevisionAutosave.ts": { - "mtime": 1788939901.0452018, + "mtime": 1788947732.4983323, "ast_hash": "ca29e7f5bdaca2989cc0471d8714bb49", "semantic_hash": "ca29e7f5bdaca2989cc0471d8714bb49" }, "remix/app/Providers/thingtimeMutationQueue.test.ts": { - "mtime": 1788939901.0453432, + "mtime": 1788947732.4983323, "ast_hash": "05d63fef7a2a4d1affe821f75b4fca3e", "semantic_hash": "05d63fef7a2a4d1affe821f75b4fca3e" }, "remix/app/Providers/thingtimeMutationQueue.ts": { - "mtime": 1788939901.0454774, + "mtime": 1788947732.4983323, "ast_hash": "788976368ae118ad49aef7e248ad99e2", "semantic_hash": "788976368ae118ad49aef7e248ad99e2" }, "remix/app/components/Editor/editorJsChangeQueue.test.ts": { - "mtime": 1788939901.2335234, + "mtime": 1788947732.5623264, "ast_hash": "9a5917595b34ef2b519ca0f53b631a37", "semantic_hash": "9a5917595b34ef2b519ca0f53b631a37" }, "remix/app/components/Editor/editorJsChangeQueue.ts": { - "mtime": 1788939901.2336044, + "mtime": 1788947732.5623264, "ast_hash": "853df59c3fc514823341e9998e11f917", "semantic_hash": "853df59c3fc514823341e9998e11f917" }, "remix/app/components/Editor/editorJsToolbox.test.ts": { - "mtime": 1788939901.236137, + "mtime": 1788947732.5632737, "ast_hash": "d68b5000ff790de47eb54811cc23d217", "semantic_hash": "d68b5000ff790de47eb54811cc23d217" }, "remix/app/components/Editor/editorJsToolbox.ts": { - "mtime": 1788939901.2362876, + "mtime": 1788947732.5632737, "ast_hash": "f13f278adbd23938b4e834d88ac713f8", "semantic_hash": "f13f278adbd23938b4e834d88ac713f8" }, "remix/app/components/Editor/editorJsChangeReconciliation.test.ts": { - "mtime": 1788939901.233688, + "mtime": 1788947732.5623264, "ast_hash": "4a342364da2691b5bb95e94ed6d10892", "semantic_hash": "4a342364da2691b5bb95e94ed6d10892" }, "remix/app/components/Editor/editorJsChangeReconciliation.ts": { - "mtime": 1788939901.2337718, + "mtime": 1788947732.5632737, "ast_hash": "948cd98845d7a7784c9d2cc70f4469d9", "semantic_hash": "948cd98845d7a7784c9d2cc70f4469d9" }, "remix/app/api/utils/auth/accounts.ts": { - "mtime": 1788939901.0824208, + "mtime": 1788947732.514274, "ast_hash": "eefb5901c6e1146e8824bb317c0952d5", "semantic_hash": "eefb5901c6e1146e8824bb317c0952d5" }, "remix/app/api/utils/auth/accountsCookie.ts": { - "mtime": 1788939901.0825152, + "mtime": 1788947732.514274, "ast_hash": "4acd7180211a10f8b9593dc3682741aa", "semantic_hash": "4acd7180211a10f8b9593dc3682741aa" }, "remix/app/api/utils/auth/admin.ts": { - "mtime": 1788939901.0825868, + "mtime": 1788947732.514274, "ast_hash": "2d93703475a29915ef114dbca0faa1d2", "semantic_hash": "2d93703475a29915ef114dbca0faa1d2" }, "remix/app/api/utils/auth/requireAdmin.ts": { - "mtime": 1788939901.0856361, + "mtime": 1788947732.5152738, "ast_hash": "72315d91a917dab861c5a059d418c3f2", "semantic_hash": "72315d91a917dab861c5a059d418c3f2" }, "remix/app/api/utils/rateLimit/config.ts": { - "mtime": 1788943126.4383073, + "mtime": 1788948107.3954937, "ast_hash": "a18754f554cd72805af4cfc1891a1e8b", "semantic_hash": "" }, "remix/app/api/utils/rateLimit/enforce.ts": { - "mtime": 1788939901.1658285, + "mtime": 1788947732.5411015, "ast_hash": "59ef0d881f95c6b29a2a17b97d6a6e56", "semantic_hash": "59ef0d881f95c6b29a2a17b97d6a6e56" }, "remix/app/components/Account/AccountSwitcher.tsx": { - "mtime": 1788939901.1891465, + "mtime": 1788947732.5489984, "ast_hash": "c5ecad8342adbab8df5b058bb1f03f99", "semantic_hash": "c5ecad8342adbab8df5b058bb1f03f99" }, "remix/app/components/Account/useAccountSwitcher.tsx": { - "mtime": 1788939901.1901667, + "mtime": 1788947732.5489984, "ast_hash": "431c96cbd4fa3099a75880475b0ea9bf", "semantic_hash": "431c96cbd4fa3099a75880475b0ea9bf" }, "remix/app/components/Admin/AdminPanel.tsx": { - "mtime": 1788939901.1922336, + "mtime": 1788947732.5502737, "ast_hash": "f2e8c504dcf93e41cf0ed34aca92a1eb", "semantic_hash": "f2e8c504dcf93e41cf0ed34aca92a1eb" }, "remix/app/components/Emoji/EmojiPicker.tsx": { - "mtime": 1788939901.239178, + "mtime": 1788947732.5642736, "ast_hash": "317a3acdb7a176c83f47ad86049f7b2a", "semantic_hash": "317a3acdb7a176c83f47ad86049f7b2a" }, "remix/app/components/Emoji/emojiData.ts": { - "mtime": 1788939901.2392774, + "mtime": 1788947732.5649486, "ast_hash": "ecc8a2e4bf5309ed047e9bbce698677f", "semantic_hash": "ecc8a2e4bf5309ed047e9bbce698677f" }, "remix/app/components/Emoji/useRecentReactions.tsx": { - "mtime": 1788939901.239369, + "mtime": 1788947732.5649486, "ast_hash": "0a85d597f473666785578ce61ac4af14", "semantic_hash": "0a85d597f473666785578ce61ac4af14" }, "remix/app/hooks/localCache.ts": { - "mtime": 1788939901.349387, + "mtime": 1788947732.594654, "ast_hash": "2613bbeab7398325c727990affed50b0", "semantic_hash": "2613bbeab7398325c727990affed50b0" }, "remix/app/routes/api/v1/admin/rate-limits/_rate-limits.tsx": { - "mtime": 1788939901.367157, + "mtime": 1788947732.5986507, "ast_hash": "1b16e7699520ccc6071684d59a531b4e", "semantic_hash": "1b16e7699520ccc6071684d59a531b4e" }, "remix/app/routes/api/v1/admin/set-admin/_set-admin.tsx": { - "mtime": 1788939901.3674612, + "mtime": 1788947732.5986507, "ast_hash": "3cbd17cdde4f103c620edd9667256c47", "semantic_hash": "3cbd17cdde4f103c620edd9667256c47" }, "remix/app/routes/api/v1/admin/users/_users.tsx": { - "mtime": 1788939901.3683805, + "mtime": 1788947732.5986507, "ast_hash": "00d3c13667a07600fb307d0e9b9381c2", "semantic_hash": "00d3c13667a07600fb307d0e9b9381c2" }, "remix/app/routes/api/v1/auth/accounts/_accounts.tsx": { - "mtime": 1788939901.3805063, + "mtime": 1788947732.6019852, "ast_hash": "f5ab9ae014be96d0b7cc0aad6a547e97", "semantic_hash": "f5ab9ae014be96d0b7cc0aad6a547e97" }, "remix/app/routes/api/v1/auth/accounts/remove/_remove.tsx": { - "mtime": 1788939901.3810427, + "mtime": 1788947732.602122, "ast_hash": "2551156ae96cb1d0ead2a28b2fffcdfd", "semantic_hash": "2551156ae96cb1d0ead2a28b2fffcdfd" }, "remix/app/routes/api/v1/auth/accounts/switch/_switch.tsx": { - "mtime": 1788939901.3813796, + "mtime": 1788947732.602122, "ast_hash": "203328edef8816d7f078e93fd4d2b746", "semantic_hash": "203328edef8816d7f078e93fd4d2b746" }, "remix/app/routes/api/v1/things/reactions-recent/_reactions-recent.tsx": { - "mtime": 1788939901.434403, + "mtime": 1788947732.6152732, "ast_hash": "11e91e35cc2445733bcc00ff39bacbbb", "semantic_hash": "11e91e35cc2445733bcc00ff39bacbbb" }, "remix/app/utils/reactionTokens.ts": { - "mtime": 1788939901.4896276, + "mtime": 1788947732.632273, "ast_hash": "6b9dc18356b1c2b4141ab7735755986f", "semantic_hash": "6b9dc18356b1c2b4141ab7735755986f" }, "remix/app/api/utils/migrations/migrations.ts": { - "mtime": 1788939901.1469018, + "mtime": 1788947732.5362737, "ast_hash": "11a7004d00158f5496a587de8d3b9d48", "semantic_hash": "11a7004d00158f5496a587de8d3b9d48" }, "remix/app/components/Schemas/MigrationsPanel.tsx": { - "mtime": 1788939901.2952414, + "mtime": 1788947732.5812733, "ast_hash": "2812ee04242b9c4691512ee266ec980b", "semantic_hash": "2812ee04242b9c4691512ee266ec980b" }, "remix/app/components/Schemas/SchemasPage.tsx": { - "mtime": 1788939901.29594, + "mtime": 1788947732.5812733, "ast_hash": "4ae2957ca82caa9acad3de2d4f2a82be", "semantic_hash": "4ae2957ca82caa9acad3de2d4f2a82be" }, "remix/app/routes/api/v1/admin/migrations/_migrations.tsx": { - "mtime": 1788939901.364392, + "mtime": 1788947732.5981116, "ast_hash": "ffb6f113f6d041709e26c626c681348a", "semantic_hash": "ffb6f113f6d041709e26c626c681348a" }, "remix/app/routes/api/v1/admin/migrations/run/_run.tsx": { - "mtime": 1788939901.3660781, + "mtime": 1788947732.5983634, "ast_hash": "764a07cdc30d18352eed6ab814140921", "semantic_hash": "764a07cdc30d18352eed6ab814140921" }, "remix/app/routes/api/v1/schemas/_schemas.tsx": { - "mtime": 1788939901.42812, + "mtime": 1788947732.6124246, "ast_hash": "0741e64bcb0c6f3e010cdb52f01ea1fd", "semantic_hash": "0741e64bcb0c6f3e010cdb52f01ea1fd" }, "remix/app/routes/api/v1/things/update/_update.tsx": { - "mtime": 1788939901.4361923, + "mtime": 1788947732.6162732, "ast_hash": "3effb6b6a648f7e91ecf5cb98e526390", "semantic_hash": "3effb6b6a648f7e91ecf5cb98e526390" }, "remix/app/routes/schemas.tsx": { - "mtime": 1788939901.4692283, + "mtime": 1788947732.624273, "ast_hash": "d5126ef1f13ccf198ac1b7f8dd9b143b", "semantic_hash": "d5126ef1f13ccf198ac1b7f8dd9b143b" }, "remix/app/schemas/registry.ts": { - "mtime": 1788943126.4594622, + "mtime": 1788948107.4034936, "ast_hash": "d404b6c866071226e6e5230a3e9b6423", "semantic_hash": "" }, "PRs/59-claude-unified-thing-crystal-schemas--everything-is-a-thing.md": { - "mtime": 1788939900.0139003, + "mtime": 1788947732.1742764, "ast_hash": "e8621594e90b37b6f367ef46008848ec", "semantic_hash": "e8621594e90b37b6f367ef46008848ec" }, "TODO/claude-todo/11-account-switcher.md": { - "mtime": 1788939900.0399585, + "mtime": 1788947732.1813653, "ast_hash": "083da5891384f3bff7174599ae712c5b", "semantic_hash": "083da5891384f3bff7174599ae712c5b" }, "TODO/claude-todo/12-reactions-and-optimistic-ui.md": { - "mtime": 1788939900.0400789, + "mtime": 1788947732.1813653, "ast_hash": "1e54fb8eea9adb9292bba7cfab5ead76", "semantic_hash": "1e54fb8eea9adb9292bba7cfab5ead76" }, "TODO/claude-todo/13-admin-and-rate-limits.md": { - "mtime": 1788939900.0401757, + "mtime": 1788947732.1813653, "ast_hash": "6b0af99c03c2994ae7887554d182dcf7", "semantic_hash": "6b0af99c03c2994ae7887554d182dcf7" }, "TODO/claude-todo/14-editorjs-block-drag-drop.md": { - "mtime": 1788939900.0402684, + "mtime": 1788947732.1813653, "ast_hash": "56276ffa9e2a2607896ca1848f62722f", "semantic_hash": "56276ffa9e2a2607896ca1848f62722f" }, "remix/app/api/utils/mongodb/queryContract.ts": { - "mtime": 1788939901.1591084, + "mtime": 1788947732.5382738, "ast_hash": "6d873c1e244c8d1db390e750abaee3cf", "semantic_hash": "6d873c1e244c8d1db390e750abaee3cf" }, "remix/app/api/utils/mongodb/queryRunner.test.ts": { - "mtime": 1788939901.159268, + "mtime": 1788947732.5382738, "ast_hash": "ca0641ee62e6c47f7ca36e7c492cf1fa", "semantic_hash": "ca0641ee62e6c47f7ca36e7c492cf1fa" }, "remix/app/api/utils/mongodb/queryRunner.ts": { - "mtime": 1788939901.1594744, + "mtime": 1788947732.5382738, "ast_hash": "fc4710005a8d333644781d895a10dffd", "semantic_hash": "fc4710005a8d333644781d895a10dffd" }, "remix/app/api/utils/mongodb/querySafety.ts": { - "mtime": 1788939901.159622, + "mtime": 1788947732.5392737, "ast_hash": "4aa033075fb44bde6d89d52778a1d753", "semantic_hash": "4aa033075fb44bde6d89d52778a1d753" }, "remix/app/components/MongoDB/BsonValueEditor.tsx": { - "mtime": 1788939901.2679553, + "mtime": 1788947732.5762734, "ast_hash": "aeff452502c568855ce8221f2489b13f", "semantic_hash": "aeff452502c568855ce8221f2489b13f" }, "remix/app/components/MongoDB/FilterBuilder.tsx": { - "mtime": 1788939901.2681785, + "mtime": 1788947732.576963, "ast_hash": "96df3052a4df6667de311e33cb35ad3f", "semantic_hash": "96df3052a4df6667de311e33cb35ad3f" }, "remix/app/components/MongoDB/PipelineBuilder.tsx": { - "mtime": 1788939901.271194, + "mtime": 1788947732.576963, "ast_hash": "0aa06e41849a6919c3069eab9fe4f205", "semantic_hash": "0aa06e41849a6919c3069eab9fe4f205" }, "remix/app/components/MongoDB/queryBuilderState.test.ts": { - "mtime": 1788939901.2721765, + "mtime": 1788947732.5772734, "ast_hash": "e34e4a1f471879a82d1daecb9a5428e2", "semantic_hash": "e34e4a1f471879a82d1daecb9a5428e2" }, "remix/app/components/MongoDB/queryBuilderState.ts": { - "mtime": 1788939901.272298, + "mtime": 1788947732.5772734, "ast_hash": "65fc1e3c9519aeb9ccc4b74919a11d7d", "semantic_hash": "65fc1e3c9519aeb9ccc4b74919a11d7d" }, "remix/app/components/MongoDB/resultExport.test.ts": { - "mtime": 1788939901.272382, + "mtime": 1788947732.5772734, "ast_hash": "54ec8935f16b9b822c07a4e39485150a", "semantic_hash": "54ec8935f16b9b822c07a4e39485150a" }, "remix/app/components/MongoDB/resultExport.ts": { - "mtime": 1788939901.272475, + "mtime": 1788947732.5772734, "ast_hash": "279e6eb821bec297fd711b5279b1f947", "semantic_hash": "279e6eb821bec297fd711b5279b1f947" }, "remix/app/components/Editor/editorJsPopoverViewport.test.ts": { - "mtime": 1788939901.234973, + "mtime": 1788947732.5632737, "ast_hash": "6008a488bb9b3b7ead4cece627a1d8cd", "semantic_hash": "6008a488bb9b3b7ead4cece627a1d8cd" }, "remix/app/components/Editor/editorJsPopoverViewport.ts": { - "mtime": 1788939901.2352805, + "mtime": 1788947732.5632737, "ast_hash": "5293afd0fe153111c8c0c4375318ef1d", "semantic_hash": "5293afd0fe153111c8c0c4375318ef1d" }, "PRs/64-codex-mongodb-query-builder--add-no-code-mongodb-query-workbench.md": { - "mtime": 1788939900.0214229, + "mtime": 1788947732.1752765, "ast_hash": "97dcec1bf367e101d0a42767a460c0ec", "semantic_hash": "97dcec1bf367e101d0a42767a460c0ec" }, "remix/app/utils/authReturn.test.ts": { - "mtime": 1788939901.4838164, + "mtime": 1788947732.6322265, "ast_hash": "9e5c2ff8f9f6840ec198fb1ebc54a9a3", "semantic_hash": "9e5c2ff8f9f6840ec198fb1ebc54a9a3" }, "remix/app/utils/authReturn.ts": { - "mtime": 1788939901.485498, + "mtime": 1788947732.6322265, "ast_hash": "a6c0854196ae9514653884668c76fa04", "semantic_hash": "a6c0854196ae9514653884668c76fa04" }, "remix/app/api/utils/apps/appData.ts": { - "mtime": 1788939901.070045, + "mtime": 1788947732.510274, "ast_hash": "947728619af8a80670b83b4c2e7af389", "semantic_hash": "947728619af8a80670b83b4c2e7af389" }, "remix/app/api/utils/apps/appTokens.ts": { - "mtime": 1788939901.072949, + "mtime": 1788947732.510274, "ast_hash": "54ca6d7be23c216823cba9ad73e72cda", "semantic_hash": "54ca6d7be23c216823cba9ad73e72cda" }, "remix/app/api/utils/apps/apps.ts": { - "mtime": 1788939901.07306, + "mtime": 1788947732.510274, "ast_hash": "7c5cf3616815961d3a295bcda4a19546", "semantic_hash": "7c5cf3616815961d3a295bcda4a19546" }, "remix/app/api/utils/apps/cors.ts": { - "mtime": 1788939901.0735652, + "mtime": 1788947732.510274, "ast_hash": "8afc98efcc7b9b7eb830c2e1b7cc056a", "semantic_hash": "8afc98efcc7b9b7eb830c2e1b7cc056a" }, "remix/app/api/utils/apps/grants.ts": { - "mtime": 1788939901.075088, + "mtime": 1788947732.5112739, "ast_hash": "16b5eb8ec514e3363dd5561d550a802b", "semantic_hash": "16b5eb8ec514e3363dd5561d550a802b" }, "remix/app/api/utils/apps/scopes.ts": { - "mtime": 1788939901.0759718, + "mtime": 1788947732.5112739, "ast_hash": "d38f3267d44992620eb23155459472d3", "semantic_hash": "d38f3267d44992620eb23155459472d3" }, "remix/app/api/utils/apps/sharedThings.ts": { - "mtime": 1788939901.0762074, + "mtime": 1788947732.5112739, "ast_hash": "c8e1d7d2d83397bb4a0968eb89dc2f35", "semantic_hash": "c8e1d7d2d83397bb4a0968eb89dc2f35" }, "remix/app/api/utils/auth/authOtps.ts": { - "mtime": 1788939901.0831828, + "mtime": 1788947732.514274, "ast_hash": "b39c52acdfdd5ed056ffe4af7da2423f", "semantic_hash": "b39c52acdfdd5ed056ffe4af7da2423f" }, "remix/app/api/utils/auth/passwordResets.ts": { - "mtime": 1788939901.084844, + "mtime": 1788947732.5152738, "ast_hash": "36d4234fd5fa44b064f2b8e96728fb80", "semantic_hash": "36d4234fd5fa44b064f2b8e96728fb80" }, "remix/app/api/utils/auth/twoFactor.ts": { - "mtime": 1788939901.0886192, + "mtime": 1788947732.516274, "ast_hash": "5d941b5743d50c641dcafbd9c1a36d14", "semantic_hash": "5d941b5743d50c641dcafbd9c1a36d14" }, "remix/app/api/utils/email/config.ts": { - "mtime": 1788939901.1091638, + "mtime": 1788947732.5222738, "ast_hash": "5966a765690a4dad93a3d63e792bc297", "semantic_hash": "5966a765690a4dad93a3d63e792bc297" }, "remix/app/api/utils/email/events.ts": { - "mtime": 1788939901.1092403, + "mtime": 1788947732.5230713, "ast_hash": "4c322563a94fadec8fe96797ee46ec78", "semantic_hash": "4c322563a94fadec8fe96797ee46ec78" }, "remix/app/api/utils/email/service.ts": { - "mtime": 1788939901.1097376, + "mtime": 1788947732.5230713, "ast_hash": "32d1553741c26ee84a175cb8c3850725", "semantic_hash": "32d1553741c26ee84a175cb8c3850725" }, "remix/app/api/utils/email/ses.ts": { - "mtime": 1788939901.1099, + "mtime": 1788947732.5230713, "ast_hash": "a821c0d12b6322e4ecafab048fc0c752", "semantic_hash": "a821c0d12b6322e4ecafab048fc0c752" }, "remix/app/api/utils/email/templates.ts": { - "mtime": 1788939901.1133657, + "mtime": 1788947732.5230713, "ast_hash": "232a51001d092e8af1bf1ce0e0bb8c19", "semantic_hash": "232a51001d092e8af1bf1ce0e0bb8c19" }, "remix/app/api/utils/email/testConfig.ts": { - "mtime": 1788939901.1138842, + "mtime": 1788947732.5230713, "ast_hash": "48781e8e81c86ca91b5d3cb10859e8c6", "semantic_hash": "48781e8e81c86ca91b5d3cb10859e8c6" }, "remix/app/api/utils/email/types.ts": { - "mtime": 1788939901.1143444, + "mtime": 1788947732.5230713, "ast_hash": "65e445ca464be15e6b978a38a6cfa992", "semantic_hash": "65e445ca464be15e6b978a38a6cfa992" }, "remix/app/api/utils/schemas/browse.ts": { - "mtime": 1788939901.166787, + "mtime": 1788947732.5411015, "ast_hash": "03efeebaa2d0368737053aea2157ceda", "semantic_hash": "03efeebaa2d0368737053aea2157ceda" }, "remix/app/api/utils/things/search.ts": { - "mtime": 1788939901.1761327, + "mtime": 1788947732.5452738, "ast_hash": "1b43fa7ebfba8ab18360cc3a5ee9ef40", "semantic_hash": "1b43fa7ebfba8ab18360cc3a5ee9ef40" }, "remix/app/components/Feed/AdvancedFilters.tsx": { - "mtime": 1788939901.23975, + "mtime": 1788947732.5649486, "ast_hash": "0817fb18eb58cd57fe48301f2cdb440f", "semantic_hash": "0817fb18eb58cd57fe48301f2cdb440f" }, "remix/app/components/Kinds/ChakraThingRenderer.tsx": { - "mtime": 1788939901.2473397, + "mtime": 1788947732.5672736, "ast_hash": "eb5d4c9170413c5727e5497c3bc9b336", "semantic_hash": "eb5d4c9170413c5727e5497c3bc9b336" }, "remix/app/components/OAuth/AuthorizePage.tsx": { - "mtime": 1788939901.2827857, + "mtime": 1788947732.5793066, "ast_hash": "45c8639a1b4df21c8760aa587fdc5e9b", "semantic_hash": "45c8639a1b4df21c8760aa587fdc5e9b" }, "remix/app/components/Schemas/SchemaBuilder.tsx": { - "mtime": 1788939901.295386, + "mtime": 1788947732.5812733, "ast_hash": "b2a8392d80962a1e9718c54746e9fe84", "semantic_hash": "b2a8392d80962a1e9718c54746e9fe84" }, "remix/app/components/Schemas/SchemaThingForm.tsx": { - "mtime": 1788939901.2956665, + "mtime": 1788947732.5812733, "ast_hash": "48e09e044678a436cc75c0fbfcbf5aff", "semantic_hash": "48e09e044678a436cc75c0fbfcbf5aff" }, "remix/app/components/Schemas/SchemasBrowsePage.tsx": { - "mtime": 1788939901.295809, + "mtime": 1788947732.5812733, "ast_hash": "6c6951c5852a5ec330224b5dbaf4c03f", "semantic_hash": "6c6951c5852a5ec330224b5dbaf4c03f" }, "remix/app/components/Schemas/schemaBrowseTypes.ts": { - "mtime": 1788939901.296266, + "mtime": 1788947732.5812733, "ast_hash": "cb47d77eb9aeba706f6518e3688f1749", "semantic_hash": "cb47d77eb9aeba706f6518e3688f1749" }, "remix/app/components/Search/SearchPage.tsx": { - "mtime": 1788939901.2987602, + "mtime": 1788947732.5822735, "ast_hash": "3c92ababda19b317f5e77a590db6e333", "semantic_hash": "3c92ababda19b317f5e77a590db6e333" }, "remix/app/components/Search/searchBuilder.tsx": { - "mtime": 1788939901.2998292, + "mtime": 1788947732.5822735, "ast_hash": "5e302257dd8656adf068dfbb2d9b6ef5", "semantic_hash": "5e302257dd8656adf068dfbb2d9b6ef5" }, "remix/app/components/Search/searchTypes.ts": { - "mtime": 1788939901.299947, + "mtime": 1788947732.5822735, "ast_hash": "188f071931fe36c38c2ce496259a2507", "semantic_hash": "188f071931fe36c38c2ce496259a2507" }, "remix/app/components/Thingtime/ThingView.tsx": { - "mtime": 1788939901.3298562, + "mtime": 1788947732.5882733, "ast_hash": "442dcef215a4887f4e44d12cf91051a6", "semantic_hash": "442dcef215a4887f4e44d12cf91051a6" }, "remix/app/routes/api/v1/app-data/_app-data.tsx": { - "mtime": 1788939901.3728244, + "mtime": 1788947732.5997405, "ast_hash": "97679602ea247b5a25eab0c673bb145b", "semantic_hash": "97679602ea247b5a25eab0c673bb145b" }, "remix/app/routes/api/v1/app-data/delete/_delete.tsx": { - "mtime": 1788939901.373016, + "mtime": 1788947732.6001706, "ast_hash": "1f42a1aa7d90a9aae9e385752fe02ea7", "semantic_hash": "1f42a1aa7d90a9aae9e385752fe02ea7" }, "remix/app/routes/api/v1/apps/_apps.tsx": { - "mtime": 1788939901.3735542, + "mtime": 1788947732.6001706, "ast_hash": "97543ed303bb5958d23344fc91d438dd", "semantic_hash": "97543ed303bb5958d23344fc91d438dd" }, "remix/app/routes/api/v1/apps/delete/_delete.tsx": { - "mtime": 1788939901.3744178, + "mtime": 1788947732.60057, "ast_hash": "000e18a7270381ba0fc98a5cde06eba4", "semantic_hash": "000e18a7270381ba0fc98a5cde06eba4" }, "remix/app/routes/api/v1/apps/public/_public.tsx": { - "mtime": 1788939901.3745375, + "mtime": 1788947732.60057, "ast_hash": "d9536faa126f16ca93ad561d4a880ea3", "semantic_hash": "d9536faa126f16ca93ad561d4a880ea3" }, "remix/app/routes/api/v1/apps/update/_update.tsx": { - "mtime": 1788939901.3750935, + "mtime": 1788947732.60057, "ast_hash": "b3fd3a8d8b94029e9659cb9fc7cf61ed", "semantic_hash": "b3fd3a8d8b94029e9659cb9fc7cf61ed" }, "remix/app/routes/api/v1/auth/password-reset/confirm/_confirm.tsx": { - "mtime": 1788939901.3929195, + "mtime": 1788947732.6032877, "ast_hash": "2809fa994b61a913e20a12586ef2199c", "semantic_hash": "2809fa994b61a913e20a12586ef2199c" }, "remix/app/routes/api/v1/auth/two-factor/_two-factor.tsx": { - "mtime": 1788939901.3978958, + "mtime": 1788947732.6032877, "ast_hash": "62fa938880baaf97f8de3c4c23de6e94", "semantic_hash": "62fa938880baaf97f8de3c4c23de6e94" }, "remix/app/routes/api/v1/email/config/_config.tsx": { - "mtime": 1788939901.4068441, + "mtime": 1788947732.606858, "ast_hash": "16f54afb3fc132f269584eadb3856b68", "semantic_hash": "16f54afb3fc132f269584eadb3856b68" }, "remix/app/routes/api/v1/email/test-otp/_test-otp.tsx": { - "mtime": 1788939901.4071333, + "mtime": 1788947732.606858, "ast_hash": "4eff251170d499e5aa4b2b01d5aebdce", "semantic_hash": "4eff251170d499e5aa4b2b01d5aebdce" }, "remix/app/routes/api/v1/oauth/authorize/_authorize.tsx": { - "mtime": 1788939901.4261298, + "mtime": 1788947732.611613, "ast_hash": "a13d3e6abdb1ed324d552579d638d643", "semantic_hash": "a13d3e6abdb1ed324d552579d638d643" }, "remix/app/routes/api/v1/oauth/grants/_grants.tsx": { - "mtime": 1788939901.42667, + "mtime": 1788947732.611705, "ast_hash": "ae5f59d5304f278d5b0e48addff53f2a", "semantic_hash": "ae5f59d5304f278d5b0e48addff53f2a" }, "remix/app/routes/api/v1/oauth/grants/revoke/_revoke.tsx": { - "mtime": 1788939901.4267964, + "mtime": 1788947732.6118596, "ast_hash": "b76fb3e5ed7165127c20bfb0ae6b15fa", "semantic_hash": "b76fb3e5ed7165127c20bfb0ae6b15fa" }, "remix/app/routes/api/v1/oauth/scopes/_scopes.tsx": { - "mtime": 1788939901.4270742, + "mtime": 1788947732.6118596, "ast_hash": "db4b1440017c13b9f1027db7a5745d4a", "semantic_hash": "db4b1440017c13b9f1027db7a5745d4a" }, "remix/app/routes/api/v1/oauth/shared/_shared.tsx": { - "mtime": 1788939901.4271846, + "mtime": 1788947732.6118596, "ast_hash": "bcfe4e8af89365c200e13796784121d3", "semantic_hash": "bcfe4e8af89365c200e13796784121d3" }, "remix/app/routes/api/v1/oauth/userinfo/_userinfo.tsx": { - "mtime": 1788939901.4275813, + "mtime": 1788947732.6118596, "ast_hash": "6a25835be670f698e528248f45047a7d", "semantic_hash": "6a25835be670f698e528248f45047a7d" }, "remix/app/routes/api/v1/schemas/browse/_browse.tsx": { - "mtime": 1788939901.4282482, + "mtime": 1788947732.6125567, "ast_hash": "72e0c80377703f971323b05616536e5b", "semantic_hash": "72e0c80377703f971323b05616536e5b" }, "remix/app/routes/api/v1/things/save/_save.tsx": { - "mtime": 1788939901.4350407, + "mtime": 1788947732.6159184, "ast_hash": "b0eb16d15241f65c6fa1a888e0f95aef", "semantic_hash": "b0eb16d15241f65c6fa1a888e0f95aef" }, "remix/app/routes/api/v1/things/search/_search.tsx": { - "mtime": 1788939901.4357667, + "mtime": 1788947732.6159184, "ast_hash": "de894c5f258efd7c7ebcea75e7309301", "semantic_hash": "de894c5f258efd7c7ebcea75e7309301" }, "remix/app/routes/api/v1/users/search/_search.tsx": { - "mtime": 1788939901.439009, + "mtime": 1788947732.6175513, "ast_hash": "fdca51d8e6150f0c8533a790689ac000", "semantic_hash": "fdca51d8e6150f0c8533a790689ac000" }, "remix/app/routes/authorize.tsx": { - "mtime": 1788939901.443982, + "mtime": 1788947732.6186283, "ast_hash": "e102b5b943d00595aed78a8965798a90", "semantic_hash": "e102b5b943d00595aed78a8965798a90" }, "remix/app/routes/docs/embed.tsx": { - "mtime": 1788939901.4618673, + "mtime": 1788947732.6232731, "ast_hash": "1751309b97bcb7348fe7b53423cf46e4", "semantic_hash": "1751309b97bcb7348fe7b53423cf46e4" }, "remix/app/routes/docs/schemas.tsx": { - "mtime": 1788939901.4659705, + "mtime": 1788947732.6232731, "ast_hash": "dc5dc169f11b425673e0d5f5f7584173", "semantic_hash": "dc5dc169f11b425673e0d5f5f7584173" }, "remix/app/routes/search.tsx": { - "mtime": 1788939901.4692984, + "mtime": 1788947732.624273, "ast_hash": "a76e4f0cd7d9bc6efced9a4d8fceabb1", "semantic_hash": "a76e4f0cd7d9bc6efced9a4d8fceabb1" }, "remix/app/routes/verify-email.tsx": { - "mtime": 1788939901.4719417, + "mtime": 1788947732.625273, "ast_hash": "ebda8b08a2521a77315b357bdaac101c", "semantic_hash": "ebda8b08a2521a77315b357bdaac101c" }, "remix/app/schemas/tools.ts": { - "mtime": 1788939901.4793887, + "mtime": 1788947732.628273, "ast_hash": "b4071dc813b48bc0baa2cda3489a63e7", "semantic_hash": "b4071dc813b48bc0baa2cda3489a63e7" }, "remix/app/scripts/mongodb/data/schemas.ts": { - "mtime": 1788939901.4803257, + "mtime": 1788947732.6300144, "ast_hash": "4438c5e1b23248324b05b5f6800b2463", "semantic_hash": "4438c5e1b23248324b05b5f6800b2463" }, "remix/app/scripts/mongodb/data/schemasCore.ts": { - "mtime": 1788939901.480489, + "mtime": 1788947732.6300144, "ast_hash": "f9c255c053d8ec4c6781c432316e0f73", "semantic_hash": "f9c255c053d8ec4c6781c432316e0f73" }, "remix/app/scripts/mongodb/data/schemasShowcase.ts": { - "mtime": 1788939901.4806738, + "mtime": 1788947732.6300144, "ast_hash": "72c5845dc11fabca1512854eb10b00c0", "semantic_hash": "72c5845dc11fabca1512854eb10b00c0" }, "remix/app/theme/card.ts": { - "mtime": 1788939901.4825559, + "mtime": 1788947732.631273, "ast_hash": "d17076397e325c113e3e3508519505fb", "semantic_hash": "d17076397e325c113e3e3508519505fb" }, "remix/public/sdk/thingtime-login.js": { - "mtime": 1788939902.6363728, + "mtime": 1788947732.6760137, "ast_hash": "581e8bb6a9ac07a506a908dda007914e", "semantic_hash": "581e8bb6a9ac07a506a908dda007914e" }, "PRs/63-claude-search-page-mongodb-query-154eb4--search-page-query-builder-ranked-text-search-by-schema.md": { - "mtime": 1788939900.020963, + "mtime": 1788947732.1752765, "ast_hash": "d89c3db10f7967d735e0e16cd99bd92b", "semantic_hash": "d89c3db10f7967d735e0e16cd99bd92b" }, "PRs/65-claude-everything-is-a-thing-collections--users-themes-algorithms-waitlist-schemas-as-things.md": { - "mtime": 1788939900.0217898, + "mtime": 1788947732.1752765, "ast_hash": "93733401aa997801696bd31a9b9bf3e2", "semantic_hash": "93733401aa997801696bd31a9b9bf3e2" }, "PRs/66-claude-extended-props-email-auth--extended-props-schemaless-crystals-email-reset-2fa.md": { - "mtime": 1788939900.0241454, + "mtime": 1788947732.1752765, "ast_hash": "58b7b92d6c9cb8bdd321856d8a73201b", "semantic_hash": "58b7b92d6c9cb8bdd321856d8a73201b" }, "PRs/67-claude-profile-feed-advanced-filters-5878aa--profile-composer-thingtime-posts-advanced-filters.md": { - "mtime": 1788939900.0249052, + "mtime": 1788947732.1762764, "ast_hash": "b90178521f056d96b321324c83b6fcb0", "semantic_hash": "b90178521f056d96b321324c83b6fcb0" }, "PRs/69-claude-unified-search-profile-feed-fe779a--unified-search-platform-profile-composer-advanced-filters.md": { - "mtime": 1788939900.026909, + "mtime": 1788947732.1762764, "ast_hash": "4448455299ef6c14ff048aeb3a9d70cb", "semantic_hash": "4448455299ef6c14ff048aeb3a9d70cb" }, "SCHEMA-FEATURE-HANDOFF.md": { - "mtime": 1788939900.0319796, + "mtime": 1788947732.1782763, "ast_hash": "c2c2c0293c4a47ba28f09d62fca46919", "semantic_hash": "c2c2c0293c4a47ba28f09d62fca46919" }, "SCHEMA-PLATFORM-HANDOVER.md": { - "mtime": 1788939900.0322297, + "mtime": 1788947732.1782763, "ast_hash": "3690d11b40344928dd512587d7c1e06b", "semantic_hash": "3690d11b40344928dd512587d7c1e06b" }, "TESTING.md": { - "mtime": 1788943126.1558423, - "ast_hash": "a599232f8176b91c68e7fb3593c21404", + "mtime": 1788948107.3424942, + "ast_hash": "0d042f8d186bb904b4731234173cde88", "semantic_hash": "" }, "remix/public/sdk/demo.html": { - "mtime": 1788939902.63568, + "mtime": 1788947732.6752727, "ast_hash": "32114f6124720a4e35d5dc90b8461ef9", "semantic_hash": "32114f6124720a4e35d5dc90b8461ef9" }, "remix/app/api/utils/errors/safeError.ts": { - "mtime": 1788939901.1160407, + "mtime": 1788947732.523274, "ast_hash": "670246717ada641f4f05399b8d300e36", "semantic_hash": "670246717ada641f4f05399b8d300e36" }, "remix/app/api/utils/auth/appOrigin.ts": { - "mtime": 1788939901.0828242, + "mtime": 1788947732.514274, "ast_hash": "0e2f17fb41444949af96d1bcbff0ac4e", "semantic_hash": "0e2f17fb41444949af96d1bcbff0ac4e" }, "remix/app/api/utils/auth/singleUseTokens.ts": { - "mtime": 1788939901.086957, + "mtime": 1788947732.516274, "ast_hash": "b885f9675011e5ba0b7e1f59d42e4a74", "semantic_hash": "b885f9675011e5ba0b7e1f59d42e4a74" }, "remix/app/schemas/builtinSchemaProjection.test.ts": { - "mtime": 1788943126.4559047, + "mtime": 1788948107.4029338, "ast_hash": "b1c570940f6e972642c8a72bea4f302a", "semantic_hash": "" }, "remix/app/routes/docs/docsCode.tsx": { - "mtime": 1788939901.461328, + "mtime": 1788947732.6232731, "ast_hash": "c366f24af124271be5512dce3236126e", "semantic_hash": "c366f24af124271be5512dce3236126e" }, "remix/app/api/utils/auth/getCurrentServiceAccount.ts": { - "mtime": 1788939901.083836, + "mtime": 1788947732.514274, "ast_hash": "f28dfdb46234adea065e371308ce4316", "semantic_hash": "f28dfdb46234adea065e371308ce4316" }, "remix/app/api/utils/things/quota.ts": { - "mtime": 1788939901.1750543, + "mtime": 1788947732.5445237, "ast_hash": "140d82178e59e3564204e110aba26526", "semantic_hash": "140d82178e59e3564204e110aba26526" }, "remix/app/api/utils/things/quotaCore.test.ts": { - "mtime": 1788939901.1752048, + "mtime": 1788947732.5445237, "ast_hash": "5c3177664e7735f83aac7f73b1a8ae5f", "semantic_hash": "5c3177664e7735f83aac7f73b1a8ae5f" }, "remix/app/api/utils/things/quotaCore.ts": { - "mtime": 1788939901.1753292, + "mtime": 1788947732.5445237, "ast_hash": "41c4112dd5898118acf3913ece8694b1", "semantic_hash": "41c4112dd5898118acf3913ece8694b1" }, "remix/app/routes/api/v1/things/quota/_quota.tsx": { - "mtime": 1788939901.4340923, + "mtime": 1788947732.6152732, "ast_hash": "732d01555d0e32dccd91d4826ec67dda", "semantic_hash": "732d01555d0e32dccd91d4826ec67dda" }, "iOS/Thingtime/Resources/AppIcon.icon/icon.json": { - "mtime": 1788939900.968997, + "mtime": 1788947732.4845967, "ast_hash": "d059c45a3d83625af6e749fc8275bdea", "semantic_hash": "d059c45a3d83625af6e749fc8275bdea" }, "remix/app/api/utils/mongodb/collectionNames.test.ts": { - "mtime": 1788939901.1552796, + "mtime": 1788947732.5380533, "ast_hash": "18af34c135dfa6d29c8cc0423b4157d0", "semantic_hash": "18af34c135dfa6d29c8cc0423b4157d0" }, "remix/app/api/utils/mongodb/collectionNames.ts": { - "mtime": 1788939901.1557329, + "mtime": 1788947732.5380533, "ast_hash": "36b3a0bb55280aa677559c2bbaa8cfd5", "semantic_hash": "36b3a0bb55280aa677559c2bbaa8cfd5" }, "remix/scripts/gen-pixel-icon.sh": { - "mtime": 1788939902.6399171, + "mtime": 1788947732.6762726, "ast_hash": "505fca8e81926065aff3be4ea340c700", "semantic_hash": "505fca8e81926065aff3be4ea340c700" }, ".github/workflows/resolve-pr-conflicts.yml": { - "mtime": 1788939899.7025146, + "mtime": 1788947732.074611, "ast_hash": "676c884978a27e410aa15dfd9808d720", "semantic_hash": "676c884978a27e410aa15dfd9808d720" }, "iOS/Thingtime/Resources/AppIcon.icon/Assets/canopy.svg": { - "mtime": 1788939900.9688451, + "mtime": 1788947732.4844587, "ast_hash": "02068c3f701b1bea9fc1ecbe1c00e55b", "semantic_hash": "02068c3f701b1bea9fc1ecbe1c00e55b" }, "iOS/Thingtime/Resources/AppIcon.icon/Assets/trunk.svg": { - "mtime": 1788939900.9689164, + "mtime": 1788947732.4845967, "ast_hash": "55e69b541ba6d89575458f77c474d112", "semantic_hash": "55e69b541ba6d89575458f77c474d112" }, "remix/app/api/utils/apps/appRequest.ts": { - "mtime": 1788939901.0720294, + "mtime": 1788947732.510274, "ast_hash": "bf182c0e43526c48f9b75b6faf3b7fbe", "semantic_hash": "bf182c0e43526c48f9b75b6faf3b7fbe" }, "remix/app/api/utils/apps/sandbox.ts": { - "mtime": 1788939901.0757847, + "mtime": 1788947732.5112739, "ast_hash": "1a109b8a3a8927bb864ccedd453ed2ba", "semantic_hash": "1a109b8a3a8927bb864ccedd453ed2ba" }, "remix/app/api/utils/things/aclChainCore.test.ts": { - "mtime": 1788939901.1739843, + "mtime": 1788947732.5442736, "ast_hash": "ca51e2fe32770217d82b0a18a6ceb74f", "semantic_hash": "ca51e2fe32770217d82b0a18a6ceb74f" }, "remix/app/api/utils/things/aclChainCore.ts": { - "mtime": 1788939901.1740696, + "mtime": 1788947732.5445237, "ast_hash": "07aee3f020f9c89bed4e263860f85cb2", "semantic_hash": "07aee3f020f9c89bed4e263860f85cb2" }, "remix/app/components/Feed/ReactionControl.tsx": { - "mtime": 1788939901.2427626, + "mtime": 1788947732.5662735, "ast_hash": "40922b5c5b9e0812944979a87f50b157", "semantic_hash": "40922b5c5b9e0812944979a87f50b157" }, "remix/app/components/Feed/reactionOverlay.ts": { - "mtime": 1788939901.2457273, + "mtime": 1788947732.5672736, "ast_hash": "deaaaaaa94ff7384f86c4f804834c092", "semantic_hash": "deaaaaaa94ff7384f86c4f804834c092" }, "remix/app/components/Feed/threadCache.ts": { - "mtime": 1788939901.2461343, + "mtime": 1788947732.5672736, "ast_hash": "11ef36a1240aa94d9a26f43f9b305520", "semantic_hash": "11ef36a1240aa94d9a26f43f9b305520" }, "remix/app/docs/apiDocsMarkdown.ts": { - "mtime": 1788939901.341334, + "mtime": 1788947732.5922732, "ast_hash": "b10ff83e42d7d833d84c21159ab30cc0", "semantic_hash": "b10ff83e42d7d833d84c21159ab30cc0" }, "remix/app/hooks/useCommentDraft.ts": { - "mtime": 1788939901.3508615, + "mtime": 1788947732.5952733, "ast_hash": "276b8d4496d4244e77d77cacbdc96eb5", "semantic_hash": "276b8d4496d4244e77d77cacbdc96eb5" }, "remix/app/hooks/useOutsideTapClose.ts": { - "mtime": 1788939901.3514814, + "mtime": 1788947732.5952733, "ast_hash": "3c519bdca38ad19f198250fb565a61b9", "semantic_hash": "3c519bdca38ad19f198250fb565a61b9" }, "remix/app/routes/api/v1/app-data/shared/_shared.tsx": { - "mtime": 1788939901.3731287, + "mtime": 1788947732.6001706, "ast_hash": "6f2f08870ac52684f4f3261fe53762b7", "semantic_hash": "6f2f08870ac52684f4f3261fe53762b7" }, "remix/app/routes/api/v1/oauth/sandbox/_sandbox.tsx": { - "mtime": 1788939901.4269633, + "mtime": 1788947732.6118596, "ast_hash": "459063e5bead27b553cd88ebccefc263", "semantic_hash": "459063e5bead27b553cd88ebccefc263" }, "remix/app/routes/docs/DocsSearch.tsx": { - "mtime": 1788939901.4455605, + "mtime": 1788947732.6193562, "ast_hash": "777267709b8e62bdc84d984ec9e61793", "semantic_hash": "777267709b8e62bdc84d984ec9e61793" }, "remix/app/routes/docs/docsSearchIndex.ts": { - "mtime": 1788939901.4615357, + "mtime": 1788947732.6232731, "ast_hash": "10f413c0e471964fe6d0d2084bb25d1f", "semantic_hash": "10f413c0e471964fe6d0d2084bb25d1f" }, "remix/app/routes/docs/embedSections.ts": { - "mtime": 1788939901.462052, + "mtime": 1788947732.6232731, "ast_hash": "5c049952053d82aa2c054cbbb5722da0", "semantic_hash": "5c049952053d82aa2c054cbbb5722da0" }, "remix/app/routes/docs/useDocsAnchorScroll.ts": { - "mtime": 1788939901.4664412, + "mtime": 1788947732.6232731, "ast_hash": "392cbdcdc36688265d84dbfa4258d45e", "semantic_hash": "392cbdcdc36688265d84dbfa4258d45e" }, "remix/app/routes/post.tsx": { - "mtime": 1788939901.4685814, + "mtime": 1788947732.624273, "ast_hash": "e66a73effdef037815cb7d68efe5505b", "semantic_hash": "e66a73effdef037815cb7d68efe5505b" }, "remix/server/plugins/mongo-warmup.ts": { - "mtime": 1788939902.6607673, + "mtime": 1788947732.680851, "ast_hash": "a0d38110a80b022a3e5c664b40ecefd0", "semantic_hash": "a0d38110a80b022a3e5c664b40ecefd0" }, "remix/server/routes/api/docs.ts": { - "mtime": 1788939902.661723, + "mtime": 1788947732.6813657, "ast_hash": "d3b6b716e76504851488400806514a4a", "semantic_hash": "d3b6b716e76504851488400806514a4a" }, "TODO/claude-todo/15-anti-abuse-storage-hardening.md": { - "mtime": 1788939900.0403886, + "mtime": 1788947732.1813653, "ast_hash": "1eb3475e5cdc6cd164932130b38e8edd", "semantic_hash": "1eb3475e5cdc6cd164932130b38e8edd" }, "remix/scripts/ensure-dependencies.js": { - "mtime": 1788939902.6397674, + "mtime": 1788947732.6762726, "ast_hash": "9a1d0e5f5c88b8d0cfdfc2f5886227f2", "semantic_hash": "9a1d0e5f5c88b8d0cfdfc2f5886227f2" }, "PRs/163-codex-worktree-dependency-bootstrap-fix-worktree-setup-and-unify-ai-instructions.md": { - "mtime": 1788939899.991495, + "mtime": 1788947732.1676702, "ast_hash": "a894af74f987634e63bb335d24e928a0", "semantic_hash": "a894af74f987634e63bb335d24e928a0" }, "AI_ALL.md": { - "mtime": 1788939899.7061317, + "mtime": 1788947732.074611, "ast_hash": "90eddd4df0163f84112a2eab2feb535a", "semantic_hash": "90eddd4df0163f84112a2eab2feb535a" }, "PRs/162-codex-fix-pr159-index-retry-docs--fix-index-bootstrap-retries-after-prs-159-and-161.md": { - "mtime": 1788939899.9913437, + "mtime": 1788947732.1676702, "ast_hash": "749a70bffc523c9833be783bbe5f2e6b", "semantic_hash": "749a70bffc523c9833be783bbe5f2e6b" }, "remix/app/api/utils/apps/appOriginsCore.test.ts": { - "mtime": 1788939901.0711596, + "mtime": 1788947732.510274, "ast_hash": "31064bda9e188bef537603c19d53e64f", "semantic_hash": "31064bda9e188bef537603c19d53e64f" }, "remix/app/api/utils/apps/appOriginsCore.ts": { - "mtime": 1788939901.0715017, + "mtime": 1788947732.510274, "ast_hash": "f096e25fbf0561ea21b96dbf30d02d34", "semantic_hash": "f096e25fbf0561ea21b96dbf30d02d34" }, "remix/app/api/utils/crypto/passwordHasher.server.ts": { - "mtime": 1788939901.099264, + "mtime": 1788947732.5209231, "ast_hash": "e608b3cd31ab0d0395a763c426768f17", "semantic_hash": "e608b3cd31ab0d0395a763c426768f17" }, "remix/app/api/utils/lopu/fallbacks.test.ts": { - "mtime": 1788939901.126803, + "mtime": 1788947732.5252738, "ast_hash": "a9ff107c64ac2988b4d64108cd2ea2c5", "semantic_hash": "a9ff107c64ac2988b4d64108cd2ea2c5" }, "remix/app/api/utils/mongodb/endpoint.ts": { - "mtime": 1788939901.1573298, + "mtime": 1788947732.5382738, "ast_hash": "e82a6074c9ade46303b8bf13914f839b", "semantic_hash": "e82a6074c9ade46303b8bf13914f839b" }, "remix/app/components/MongoDB/MongoEndpointConfig.tsx": { - "mtime": 1788939901.269722, + "mtime": 1788947732.576963, "ast_hash": "2c38d740ee4b080919672339ce9ed7c1", "semantic_hash": "2c38d740ee4b080919672339ce9ed7c1" }, "remix/app/routes/api/v1/mongodb/endpoint/_endpoint.tsx": { - "mtime": 1788939901.420409, + "mtime": 1788947732.6102939, "ast_hash": "9abab17f1814150132afdedfe655f2f6", "semantic_hash": "9abab17f1814150132afdedfe655f2f6" }, "remix/app/routes/api/v1/mongodb/endpoints/_endpoints.tsx": { - "mtime": 1788939901.4212122, + "mtime": 1788947732.6102939, "ast_hash": "421646e194642d8899d40ce65bc452e9", "semantic_hash": "421646e194642d8899d40ce65bc452e9" }, "remix/app/routes/api/v1/teapot/_teapot.tsx": { - "mtime": 1788939901.4306917, + "mtime": 1788947732.6132731, "ast_hash": "4415131cdfb760b515c8752ff32f6cea", "semantic_hash": "4415131cdfb760b515c8752ff32f6cea" }, "remix/app/routes/migrations.tsx": { - "mtime": 1788939901.4679925, + "mtime": 1788947732.624273, "ast_hash": "f6305ce2aae75c4fdc8774e2a4a1b494", "semantic_hash": "f6305ce2aae75c4fdc8774e2a4a1b494" }, "PRs/164-claude-crypto-password-hasher-7c31e9--password-hasher-mongosh-rotate-snippet.md": { - "mtime": 1788939899.9915893, + "mtime": 1788947732.1676702, "ast_hash": "dffaa5ea2d490f2bfd41d219385181e5", "semantic_hash": "dffaa5ea2d490f2bfd41d219385181e5" }, "remix/app/api/utils/settings/prConflictResolverModelWaterfall.ts": { - "mtime": 1788939901.1686041, + "mtime": 1788947732.5415852, "ast_hash": "a64cedc3264f417b1460c1679af588ee", "semantic_hash": "a64cedc3264f417b1460c1679af588ee" }, "remix/app/api/utils/settings/prConflictResolverModelWaterfallCore.test.ts": { - "mtime": 1788939901.1688683, + "mtime": 1788947732.5415852, "ast_hash": "159ff1128297903593268b0437b1263e", "semantic_hash": "159ff1128297903593268b0437b1263e" }, "remix/app/api/utils/settings/prConflictResolverModelWaterfallCore.ts": { - "mtime": 1788939901.1695228, + "mtime": 1788947732.5415852, "ast_hash": "f36ed878159b651a1c6221734fe08747", "semantic_hash": "f36ed878159b651a1c6221734fe08747" }, "remix/app/api/utils/settings/prConflictResolverModelWaterfallRoute.test.ts": { - "mtime": 1788939901.169655, + "mtime": 1788947732.5415852, "ast_hash": "cb1a5b2886d65c74b0092b77e6026693", "semantic_hash": "cb1a5b2886d65c74b0092b77e6026693" }, "remix/app/components/Admin/PRConflictResolverModelWaterfallEditor.tsx": { - "mtime": 1788939901.196871, + "mtime": 1788947732.5512736, "ast_hash": "e14683b1a2539e289df717bb44f1bcfa", "semantic_hash": "e14683b1a2539e289df717bb44f1bcfa" }, "remix/app/routes/api/v1/settings/pr-conflict-auto-resolver-model-waterfall/_pr-conflict-auto-resolver-model-waterfall.tsx": { - "mtime": 1788939901.4287465, + "mtime": 1788947732.612701, "ast_hash": "fbda40fc87b9a4b598a5de043e9451cd", "semantic_hash": "fbda40fc87b9a4b598a5de043e9451cd" }, "remix/scripts/typecheck-baseline.json": { - "mtime": 1788939902.6428132, + "mtime": 1788947732.6762726, "ast_hash": "a01320b687d69ed49d02f0e93c452e0a", "semantic_hash": "a01320b687d69ed49d02f0e93c452e0a" }, "remix/scripts/typecheck-ratchet.mjs": { - "mtime": 1788939902.6429505, + "mtime": 1788947732.6772728, "ast_hash": "d4960e1f10af263acb682e86e4d1c2af", "semantic_hash": "d4960e1f10af263acb682e86e4d1c2af" }, ".github/workflows/web-ci.yml": { - "mtime": 1788939899.7028632, + "mtime": 1788947732.074611, "ast_hash": "82ea98f71aabf2c39fee26c72ad2be4d", "semantic_hash": "82ea98f71aabf2c39fee26c72ad2be4d" }, "PRs/178-codex-use-fable-5-max-conflict-resolver--configurable-pr-conflict-resolver-model-waterfall.md": { - "mtime": 1788939899.9936478, + "mtime": 1788947732.1682765, "ast_hash": "6117e90feea5757a87d41ccd451c7579", "semantic_hash": "6117e90feea5757a87d41ccd451c7579" }, "remix/app/api/utils/auth/patScopes.ts": { - "mtime": 1788939901.0851154, + "mtime": 1788947732.5152738, "ast_hash": "ed2551fa9e4006f87ba13f3b07ec8419", "semantic_hash": "ed2551fa9e4006f87ba13f3b07ec8419" }, "remix/app/api/utils/auth/patTokens.ts": { - "mtime": 1788939901.0852578, + "mtime": 1788947732.5152738, "ast_hash": "4a2517232519b9c3b3a87ef56d835f81", "semantic_hash": "4a2517232519b9c3b3a87ef56d835f81" }, "remix/app/components/Settings/TokenMinter.tsx": { - "mtime": 1788939901.3031244, + "mtime": 1788947732.5832734, "ast_hash": "83cc7bf98f6b233bae539b34ef52e9f2", "semantic_hash": "83cc7bf98f6b233bae539b34ef52e9f2" }, "remix/app/routes/api/v1/tokens/revoke/_revoke.tsx": { - "mtime": 1788939901.4370522, + "mtime": 1788947732.617012, "ast_hash": "fa6ac64fb2a1391131e2d402dde0c12a", "semantic_hash": "fa6ac64fb2a1391131e2d402dde0c12a" }, "remix/app/routes/api/v1/tokens/self/_self.tsx": { - "mtime": 1788939901.4371743, + "mtime": 1788947732.617012, "ast_hash": "5757ad6ff2f63729a91ee9fe153c1d4b", "semantic_hash": "5757ad6ff2f63729a91ee9fe153c1d4b" }, "remix/app/api/utils/accounts/accountLinks.ts": { - "mtime": 1788939901.0486212, + "mtime": 1788947732.499249, "ast_hash": "4a37d38ffeec2376f7977756a1eed779", "semantic_hash": "4a37d38ffeec2376f7977756a1eed779" }, "remix/app/api/utils/admin/adminDirectory.ts": { - "mtime": 1788939901.0662842, + "mtime": 1788947732.508274, "ast_hash": "652d53fee078911944384deed177a31e", "semantic_hash": "652d53fee078911944384deed177a31e" }, "remix/app/api/utils/admin/adminResponse.test.ts": { - "mtime": 1788939901.066657, + "mtime": 1788947732.5089266, "ast_hash": "9ba207827447841a40da6c29a52c9175", "semantic_hash": "9ba207827447841a40da6c29a52c9175" }, "remix/app/api/utils/admin/adminResponse.ts": { - "mtime": 1788939901.0669749, + "mtime": 1788947732.5089266, "ast_hash": "b72efa0fcc1abdbf04668d2ba986ecdd", "semantic_hash": "b72efa0fcc1abdbf04668d2ba986ecdd" }, "remix/app/api/utils/admin/adminSnapshot.test.ts": { - "mtime": 1788939901.067475, + "mtime": 1788947732.5089266, "ast_hash": "f7eb46da2e18e10de98c0873bae0029c", "semantic_hash": "f7eb46da2e18e10de98c0873bae0029c" }, "remix/app/api/utils/admin/adminSnapshot.ts": { - "mtime": 1788939901.0677304, + "mtime": 1788947732.5089266, "ast_hash": "2ec0ec294f1f7c9f7c1c73dfdbaf38f9", "semantic_hash": "2ec0ec294f1f7c9f7c1c73dfdbaf38f9" }, "remix/app/api/utils/apps/appLifecycleCore.test.ts": { - "mtime": 1788939901.0701988, + "mtime": 1788947732.510274, "ast_hash": "a9d35706db9e2fcb48b71813d0fa176d", "semantic_hash": "a9d35706db9e2fcb48b71813d0fa176d" }, "remix/app/api/utils/apps/appLifecycleCore.ts": { - "mtime": 1788939901.0702813, + "mtime": 1788947732.510274, "ast_hash": "c8bfbf6518713989cd24db36a304a5c3", "semantic_hash": "c8bfbf6518713989cd24db36a304a5c3" }, "remix/app/api/utils/apps/appStorageCore.test.ts": { - "mtime": 1788939901.0723603, + "mtime": 1788947732.510274, "ast_hash": "7bd06d9ee1ecad68045dc62bd821b666", "semantic_hash": "7bd06d9ee1ecad68045dc62bd821b666" }, "remix/app/api/utils/apps/appStorageCore.ts": { - "mtime": 1788939901.072632, + "mtime": 1788947732.510274, "ast_hash": "d41eea7e83e28115420d1c8ee01045f7", "semantic_hash": "d41eea7e83e28115420d1c8ee01045f7" }, "remix/app/api/utils/apps/appStorageManagement.ts": { - "mtime": 1788939901.0727751, + "mtime": 1788947732.510274, "ast_hash": "8c97c2a5d02db4b1e9a7eca30ffd6c96", "semantic_hash": "8c97c2a5d02db4b1e9a7eca30ffd6c96" }, "remix/app/api/utils/apps/browse.ts": { - "mtime": 1788939901.0731862, + "mtime": 1788947732.510274, "ast_hash": "b752bf13d76e0173ca3671f5b119da1e", "semantic_hash": "b752bf13d76e0173ca3671f5b119da1e" }, "remix/app/api/utils/apps/browseStorageProjection.test.ts": { - "mtime": 1788939901.073282, + "mtime": 1788947732.510274, "ast_hash": "f177288599f3f35c8a4c523d1e85eac7", "semantic_hash": "f177288599f3f35c8a4c523d1e85eac7" }, "remix/app/api/utils/apps/namespace.ts": { - "mtime": 1788939901.0753696, + "mtime": 1788947732.5112739, "ast_hash": "4668ffdc9f8a5115fbbcb46b05351164", "semantic_hash": "4668ffdc9f8a5115fbbcb46b05351164" }, "remix/app/api/utils/apps/namespaceStorageRecovery.test.ts": { - "mtime": 1788939901.0755308, + "mtime": 1788947732.5112739, "ast_hash": "01d7f4187f3258d5a1cbc03733f58efe", "semantic_hash": "01d7f4187f3258d5a1cbc03733f58efe" }, "remix/app/api/utils/auth/resolveActor.ts": { - "mtime": 1788939901.0857859, + "mtime": 1788947732.5152738, "ast_hash": "5909a317c845b19d8d421d0f3314ea09", "semantic_hash": "5909a317c845b19d8d421d0f3314ea09" }, "remix/app/api/utils/auth/usersStorageLegacy.test.ts": { - "mtime": 1788939901.0891082, + "mtime": 1788947732.516274, "ast_hash": "a765a1f1631f83b14bdfb0c0520c242a", "semantic_hash": "a765a1f1631f83b14bdfb0c0520c242a" }, "remix/app/api/utils/migrations/migrationCore.test.ts": { - "mtime": 1788939901.1427467, + "mtime": 1788947732.5352738, "ast_hash": "2d7431ed515d4787198d435b975fa12a", "semantic_hash": "2d7431ed515d4787198d435b975fa12a" }, "remix/app/api/utils/migrations/migrationCore.ts": { - "mtime": 1788939901.1429222, + "mtime": 1788947732.5352738, "ast_hash": "68c99458f77c783cbd79259a0ac57d43", "semantic_hash": "68c99458f77c783cbd79259a0ac57d43" }, "remix/app/api/utils/rateLimit/byteBudget.ts": { - "mtime": 1788939901.1653874, + "mtime": 1788947732.540882, "ast_hash": "50f77b3c2130a05106cd88242a86e0a7", "semantic_hash": "50f77b3c2130a05106cd88242a86e0a7" }, "remix/app/api/utils/storage/storageCore.test.ts": { - "mtime": 1788939901.170303, + "mtime": 1788947732.5423644, "ast_hash": "54067f0d62e2772f3319b7c921b439cc", "semantic_hash": "54067f0d62e2772f3319b7c921b439cc" }, "remix/app/api/utils/storage/storageCore.ts": { - "mtime": 1788939901.1704035, + "mtime": 1788947732.5423644, "ast_hash": "1ed9036a0810afd9ad3b8ad2a39bd35c", "semantic_hash": "1ed9036a0810afd9ad3b8ad2a39bd35c" }, "remix/app/api/utils/storage/userStorage.ts": { - "mtime": 1788939901.1707234, + "mtime": 1788947732.5423644, "ast_hash": "b74ee4795c76a24fc44e01cd48d1b3fc", "semantic_hash": "b74ee4795c76a24fc44e01cd48d1b3fc" }, "remix/app/api/utils/subscriptions/subscriptionIdentity.test.ts": { - "mtime": 1788939901.1714451, + "mtime": 1788947732.5423644, "ast_hash": "20975934b5d00deea9a1b63559de4c9a", "semantic_hash": "20975934b5d00deea9a1b63559de4c9a" }, "remix/app/api/utils/subscriptions/subscriptionIdentity.ts": { - "mtime": 1788939901.1715493, + "mtime": 1788947732.5428615, "ast_hash": "eb88a18c83675b572ce1fb1f71f6fc3c", "semantic_hash": "eb88a18c83675b572ce1fb1f71f6fc3c" }, "remix/app/api/utils/subscriptions/subscriptions.ts": { - "mtime": 1788939901.1716826, + "mtime": 1788947732.5428615, "ast_hash": "860d286967cd1adb8e90fd56718e93c1", "semantic_hash": "860d286967cd1adb8e90fd56718e93c1" }, "remix/app/api/utils/subscriptions/tierCatalog.test.ts": { - "mtime": 1788939901.171858, + "mtime": 1788947732.5428615, "ast_hash": "2bd343a3e44cedcf18436afe6c15e03c", "semantic_hash": "2bd343a3e44cedcf18436afe6c15e03c" }, "remix/app/api/utils/subscriptions/tierCatalog.ts": { - "mtime": 1788939901.1719754, + "mtime": 1788947732.5428615, "ast_hash": "c43b7890fb0f017cedd5922a95b335aa", "semantic_hash": "c43b7890fb0f017cedd5922a95b335aa" }, "remix/app/api/utils/subscriptions/tierCatalogStore.ts": { - "mtime": 1788939901.1722434, + "mtime": 1788947732.5428615, "ast_hash": "c6f2a6503a27a2b2114e254bb20b4dea", "semantic_hash": "c6f2a6503a27a2b2114e254bb20b4dea" }, "remix/app/api/utils/things/quotaLegacy.test.ts": { - "mtime": 1788939901.1754904, + "mtime": 1788947732.5445237, "ast_hash": "182f016c65d6f0e723dd8c374c635fc2", "semantic_hash": "182f016c65d6f0e723dd8c374c635fc2" }, "remix/app/api/utils/things/quotaLegacyCore.ts": { - "mtime": 1788939901.1756115, + "mtime": 1788947732.5445237, "ast_hash": "00fd017e83954452102d2f129ef3192e", "semantic_hash": "00fd017e83954452102d2f129ef3192e" }, "remix/app/components/Admin/AdminDashboard.tsx": { - "mtime": 1788939901.192102, + "mtime": 1788947732.5502737, "ast_hash": "5d7aa1b4f0f8635293e74001b03400e1", "semantic_hash": "5d7aa1b4f0f8635293e74001b03400e1" }, "remix/app/components/Admin/AdminRowQueryControls.tsx": { - "mtime": 1788939901.192342, + "mtime": 1788947732.5502737, "ast_hash": "749a87422a2b5b660f9e69dd4574907a", "semantic_hash": "749a87422a2b5b660f9e69dd4574907a" }, "remix/app/components/Admin/LinkManagerModal.tsx": { - "mtime": 1788939901.1954684, + "mtime": 1788947732.5512736, "ast_hash": "6a667a0152f45b750fa8fbf0740bbbb9", "semantic_hash": "6a667a0152f45b750fa8fbf0740bbbb9" }, "remix/app/components/Admin/SubscriptionEditorModal.tsx": { - "mtime": 1788939901.1970227, + "mtime": 1788947732.5512736, "ast_hash": "5a364490d90231ec87b3a446850b6a75", "semantic_hash": "5a364490d90231ec87b3a446850b6a75" }, "remix/app/components/Admin/TierManager.tsx": { - "mtime": 1788939901.197181, + "mtime": 1788947732.5512736, "ast_hash": "cf25fe3b21215d08898a58fa19dfc31f", "semantic_hash": "cf25fe3b21215d08898a58fa19dfc31f" }, "remix/app/components/Admin/adminDirectoryClient.test.ts": { - "mtime": 1788939901.1972973, + "mtime": 1788947732.5512736, "ast_hash": "e6bb19533155eb4c1255679b8ef4a31b", "semantic_hash": "e6bb19533155eb4c1255679b8ef4a31b" }, "remix/app/components/Admin/adminDirectoryClient.ts": { - "mtime": 1788939901.1974072, + "mtime": 1788947732.5522738, "ast_hash": "7938a386eee26d5ca1b0edb4b0345f27", "semantic_hash": "7938a386eee26d5ca1b0edb4b0345f27" }, "remix/app/components/Admin/adminRowQuery.test.ts": { - "mtime": 1788939901.1976972, + "mtime": 1788947732.5522738, "ast_hash": "aad43e72cd8364eb9982fe83912aecef", "semantic_hash": "aad43e72cd8364eb9982fe83912aecef" }, "remix/app/components/Admin/adminRowQuery.ts": { - "mtime": 1788939901.1978242, + "mtime": 1788947732.5522738, "ast_hash": "aded05a5011a2a5e367c8bcaaa187ce2", "semantic_hash": "aded05a5011a2a5e367c8bcaaa187ce2" }, "remix/app/components/Admin/adminStorageProjection.test.ts": { - "mtime": 1788939901.197906, + "mtime": 1788947732.5522738, "ast_hash": "81a46be446a13919355328150a77542a", "semantic_hash": "81a46be446a13919355328150a77542a" }, "remix/app/components/Admin/adminStorageProjection.ts": { - "mtime": 1788939901.1982527, + "mtime": 1788947732.5522738, "ast_hash": "43bd181fd692dbd98f7a61c0336d6a6c", "semantic_hash": "43bd181fd692dbd98f7a61c0336d6a6c" }, "remix/app/components/Apps/AppStorageManagerPage.tsx": { - "mtime": 1788939901.1989734, + "mtime": 1788947732.5522738, "ast_hash": "bfea7af28052f747d61d30eaba22babf", "semantic_hash": "bfea7af28052f747d61d30eaba22babf" }, "remix/app/components/Apps/AppsDataPage.tsx": { - "mtime": 1788939901.1991923, + "mtime": 1788947732.5531278, "ast_hash": "6d7c0e61a8f8df93f28751e58a6369d3", "semantic_hash": "6d7c0e61a8f8df93f28751e58a6369d3" }, "remix/app/components/Apps/ConnectedAppsSection.tsx": { - "mtime": 1788939901.2001443, + "mtime": 1788947732.5531278, "ast_hash": "90878865c0ae511d44e550f35b4660fb", "semantic_hash": "90878865c0ae511d44e550f35b4660fb" }, "remix/app/components/Subscriptions/TierCard.tsx": { - "mtime": 1788939901.313489, + "mtime": 1788947732.5842972, "ast_hash": "1953652345b32c38532e45c6cddf4eeb", "semantic_hash": "1953652345b32c38532e45c6cddf4eeb" }, "remix/app/routes/admin.tsx": { - "mtime": 1788939901.359572, + "mtime": 1788947732.5965421, "ast_hash": "35b159fc6c567fcfca9cd934966f0c6b", "semantic_hash": "35b159fc6c567fcfca9cd934966f0c6b" }, "remix/app/routes/api/v1/admin/apps/_apps.tsx": { - "mtime": 1788939901.3607154, + "mtime": 1788947732.596949, "ast_hash": "c04f3c468d96b26a3614a81d3a91fd18", "semantic_hash": "c04f3c468d96b26a3614a81d3a91fd18" }, "remix/app/routes/api/v1/admin/apps/revoke/_revoke.tsx": { - "mtime": 1788939901.3616667, + "mtime": 1788947732.5971408, "ast_hash": "32217dda89ceb9960c91370a888b22bc", "semantic_hash": "32217dda89ceb9960c91370a888b22bc" }, "remix/app/routes/api/v1/admin/links/_links.tsx": { - "mtime": 1788939901.3638406, + "mtime": 1788947732.5978518, "ast_hash": "81372ecccb3e59164387dc6436359603", "semantic_hash": "81372ecccb3e59164387dc6436359603" }, "remix/app/routes/api/v1/admin/subscriptions/_subscriptions.tsx": { - "mtime": 1788939901.367935, + "mtime": 1788947732.5986507, "ast_hash": "1a2e795936e899e823e119be99c10341", "semantic_hash": "1a2e795936e899e823e119be99c10341" }, "remix/app/routes/api/v1/admin/tiers/_tiers.tsx": { - "mtime": 1788939901.368061, + "mtime": 1788947732.5986507, "ast_hash": "9d6e823cb1a958bde549464d0f490ad0", "semantic_hash": "9d6e823cb1a958bde549464d0f490ad0" }, "remix/app/routes/api/v1/admin/users/overview/_overview.tsx": { - "mtime": 1788939901.3691387, + "mtime": 1788947732.599058, "ast_hash": "f641e1b60933c2355db41ff2d9387338", "semantic_hash": "f641e1b60933c2355db41ff2d9387338" }, "remix/app/routes/api/v1/app-data/usage/_usage.tsx": { - "mtime": 1788939901.3734334, + "mtime": 1788947732.6001706, "ast_hash": "0ab608625f8dbd2fb7e5c365988de120", "semantic_hash": "0ab608625f8dbd2fb7e5c365988de120" }, "remix/app/routes/api/v1/apps/data-summary/_data-summary.tsx": { - "mtime": 1788939901.37367, + "mtime": 1788947732.6004574, "ast_hash": "35bc85f64d1158ee8f0d29c292078e08", "semantic_hash": "35bc85f64d1158ee8f0d29c292078e08" }, "remix/app/routes/api/v1/apps/data/delete-all/_delete-all.tsx": { - "mtime": 1788939901.3738499, + "mtime": 1788947732.60057, "ast_hash": "5b2ca1b2c5daff92c88ff7a66df6bdbc", "semantic_hash": "5b2ca1b2c5daff92c88ff7a66df6bdbc" }, "remix/app/routes/api/v1/apps/data/shared/_shared.tsx": { - "mtime": 1788939901.3741236, + "mtime": 1788947732.60057, "ast_hash": "4bd0e734914490000cb0afa5866c4fad", "semantic_hash": "4bd0e734914490000cb0afa5866c4fad" }, "remix/app/routes/api/v1/apps/storage/_storage.tsx": { - "mtime": 1788939901.374835, + "mtime": 1788947732.60057, "ast_hash": "438bda2d826500c5f8d204565b075bcb", "semantic_hash": "438bda2d826500c5f8d204565b075bcb" }, "remix/app/routes/api/v1/auth/accounts/assume/_assume.tsx": { - "mtime": 1788939901.380631, + "mtime": 1788947732.602122, "ast_hash": "dbaa55d713f0981fc9de3baf96dcee43", "semantic_hash": "dbaa55d713f0981fc9de3baf96dcee43" }, "remix/app/routes/api/v1/auth/accounts/owned/_owned.tsx": { - "mtime": 1788939901.3807485, + "mtime": 1788947732.602122, "ast_hash": "a913c598b6e79405ca7d33630f5af254", "semantic_hash": "a913c598b6e79405ca7d33630f5af254" }, "remix/app/routes/api/v1/tiers/_tiers.tsx": { - "mtime": 1788939901.436804, + "mtime": 1788947732.6162732, "ast_hash": "001928eaf78a304e487d9e12f9ecade5", "semantic_hash": "001928eaf78a304e487d9e12f9ecade5" }, "remix/app/routes/apps-manage.tsx": { - "mtime": 1788939901.4438386, + "mtime": 1788947732.6186283, "ast_hash": "71155cb2b126418e18438636076f114f", "semantic_hash": "71155cb2b126418e18438636076f114f" }, "remix/app/routes/apps.tsx": { - "mtime": 1788939901.4439108, + "mtime": 1788947732.6186283, "ast_hash": "cd73d97ad908ec9c266b99dee2e620df", "semantic_hash": "cd73d97ad908ec9c266b99dee2e620df" }, "remix/scripts/verify-admin-subscriptions.mjs": { - "mtime": 1788939902.6446602, + "mtime": 1788947732.6772728, "ast_hash": "e7df38e5733e65a9e146dfb1114c52ff", "semantic_hash": "e7df38e5733e65a9e146dfb1114c52ff" }, "remix/scripts/verify-app-namespaces.mjs": { - "mtime": 1788939902.6458597, + "mtime": 1788947732.6772728, "ast_hash": "9f65ee7146efe23ac10b9f44bfeea4c8", "semantic_hash": "9f65ee7146efe23ac10b9f44bfeea4c8" }, "remix/scripts/verify-app-storage.mjs": { - "mtime": 1788939902.6461172, + "mtime": 1788947732.6772728, "ast_hash": "8161980932ed6089f39d049025d92e39", "semantic_hash": "8161980932ed6089f39d049025d92e39" }, "PRs/170-app-data-quota-allowances-app-owner-storage-manager.md": { - "mtime": 1788939899.9921083, + "mtime": 1788947732.1676702, "ast_hash": "7e05c69884df73f330b5901cfcafd9fa", "semantic_hash": "7e05c69884df73f330b5901cfcafd9fa" }, "PRs/171-admin-ui-user-app-management-admin-dashboard-tiers-links.md": { - "mtime": 1788939899.9922624, + "mtime": 1788947732.1682765, "ast_hash": "c86627924c2f731b3ecb3665fae5847f", "semantic_hash": "c86627924c2f731b3ecb3665fae5847f" }, "PRs/182-codex-app-data-quota-allowances--unify-exact-storage-accounting.md": { - "mtime": 1788939899.9938517, + "mtime": 1788947732.1682765, "ast_hash": "db8fe4d01978bf8b4881740fc804f45e", "semantic_hash": "db8fe4d01978bf8b4881740fc804f45e" }, "PRs/183-codex-ai-rebase-stack-resolver--add-automatic-ai-rebase-support-for-pr-stacks.md": { - "mtime": 1788939899.9942472, + "mtime": 1788947732.1682765, "ast_hash": "ef3a95ee74704156a7d906c6c79c283a", "semantic_hash": "ef3a95ee74704156a7d906c6c79c283a" }, "remix/app/api/utils/migrations/migrationFailure.test.ts": { - "mtime": 1788939901.143503, + "mtime": 1788947732.5352738, "ast_hash": "a794a75ea92fe42a8952d21c32317200", "semantic_hash": "a794a75ea92fe42a8952d21c32317200" }, "remix/app/api/utils/migrations/migrationFailure.ts": { - "mtime": 1788939901.14367, + "mtime": 1788947732.5352738, "ast_hash": "9dc2cd5b03f22a439c0e6986702c14be", "semantic_hash": "9dc2cd5b03f22a439c0e6986702c14be" }, "remix/app/components/Feed/reactionFailure.test.ts": { - "mtime": 1788939901.2455642, + "mtime": 1788947732.5672736, "ast_hash": "e921876adeb12843497c98076014e216", "semantic_hash": "e921876adeb12843497c98076014e216" }, "remix/app/components/Feed/reactionFailure.ts": { - "mtime": 1788939901.2456462, + "mtime": 1788947732.5672736, "ast_hash": "11bb6eeec4486b6f3204661c27eddee6", "semantic_hash": "11bb6eeec4486b6f3204661c27eddee6" }, "remix/app/components/Lopu/lopuMessage.test.ts": { - "mtime": 1788939901.2568424, + "mtime": 1788947732.5722735, "ast_hash": "9f122b3b5775f8f2bd539eda82fee2f5", "semantic_hash": "9f122b3b5775f8f2bd539eda82fee2f5" }, "remix/app/components/Lopu/lopuMessage.ts": { - "mtime": 1788939901.2569082, + "mtime": 1788947732.5722735, "ast_hash": "ba78f29d71ffccabbfdaa2aeb22107e4", "semantic_hash": "ba78f29d71ffccabbfdaa2aeb22107e4" }, "remix/app/hooks/apiFailure.test.ts": { - "mtime": 1788939901.3487916, + "mtime": 1788947732.5943265, "ast_hash": "3e141341a089a684f5674e0365dffec4", "semantic_hash": "3e141341a089a684f5674e0365dffec4" }, "remix/app/hooks/apiFailure.ts": { - "mtime": 1788939901.348891, + "mtime": 1788947732.594654, "ast_hash": "b13b6029773adc1eeaad8c68de6b5f89", "semantic_hash": "b13b6029773adc1eeaad8c68de6b5f89" }, "remix/app/api/utils/errors/adminDiagnostic.test.ts": { - "mtime": 1788939901.1147935, + "mtime": 1788947732.523274, "ast_hash": "49f1a30f8498631d1db70f9f61cbf136", "semantic_hash": "49f1a30f8498631d1db70f9f61cbf136" }, "remix/app/api/utils/errors/adminDiagnostic.ts": { - "mtime": 1788943126.4364524, + "mtime": 1788948107.3944938, "ast_hash": "aafaee9c6e9020791c0427f4b792d6d9", "semantic_hash": "" }, "remix/app/api/utils/migrations/migrationDiagnostics.test.ts": { - "mtime": 1788939901.1430953, + "mtime": 1788947732.5352738, "ast_hash": "495840d4016d8857e7028ffa69a2c1d9", "semantic_hash": "495840d4016d8857e7028ffa69a2c1d9" }, "remix/app/api/utils/migrations/migrationDiagnostics.ts": { - "mtime": 1788939901.1432903, + "mtime": 1788947732.5352738, "ast_hash": "5027527ccb5fe974ca207174a4ef5c2a", "semantic_hash": "5027527ccb5fe974ca207174a4ef5c2a" }, "remix/app/routes/api/v1/admin/migrations/diagnostic/_diagnostic.tsx": { - "mtime": 1788939901.3645072, + "mtime": 1788947732.5983634, "ast_hash": "027d2d8b048d90401548471688bf9051", "semantic_hash": "027d2d8b048d90401548471688bf9051" }, "remix/app/routes/thing.tsx": { - "mtime": 1788939901.4709513, + "mtime": 1788947732.625273, "ast_hash": "3d887c2a385b5996755dd701f2e75ed1", "semantic_hash": "3d887c2a385b5996755dd701f2e75ed1" }, "PRs/195-codex-contextual-reaction-errors--contextual-reaction-and-migration-errors.md": { - "mtime": 1788939899.9945374, + "mtime": 1788947732.1682765, "ast_hash": "506708d889fd36c4f062f53fc72f4dfe", "semantic_hash": "506708d889fd36c4f062f53fc72f4dfe" }, "remix/app/api/utils/migrations/migrations.test.ts": { - "mtime": 1788939901.1459506, + "mtime": 1788947732.5352738, "ast_hash": "3eee5ec8105837fa1ec2ed53d3bad153", "semantic_hash": "3eee5ec8105837fa1ec2ed53d3bad153" }, "remix/app/components/Things/SensitiveThingReveal.tsx": { - "mtime": 1788939901.323701, + "mtime": 1788947732.586319, "ast_hash": "8e086982dc5b95a6b1d14d776044b3ca", "semantic_hash": "8e086982dc5b95a6b1d14d776044b3ca" }, "remix/app/api/utils/auth/passwordConfirmation.test.ts": { - "mtime": 1788939901.084677, + "mtime": 1788947732.5152738, "ast_hash": "9622932c7db421894d76e1b631b304cc", "semantic_hash": "9622932c7db421894d76e1b631b304cc" }, "remix/app/api/utils/auth/passwordConfirmation.ts": { - "mtime": 1788939901.0847592, + "mtime": 1788947732.5152738, "ast_hash": "a1dce8d48abab4a014a9d3c71eb76584", "semantic_hash": "a1dce8d48abab4a014a9d3c71eb76584" }, "remix/app/api/utils/things/sensitiveReveal.ts": { - "mtime": 1788939901.1783822, + "mtime": 1788947732.5452738, "ast_hash": "717e7ac54dca8d6ebdd9d217ad738636", "semantic_hash": "717e7ac54dca8d6ebdd9d217ad738636" }, "remix/app/routes/api/v1/things/reveal/_reveal.tsx": { - "mtime": 1788939901.4346018, + "mtime": 1788947732.6152732, "ast_hash": "8fbab692e4e276d5df911c66b6a02609", "semantic_hash": "8fbab692e4e276d5df911c66b6a02609" }, "remix/app/routes/api/v1/things/reveal/reveal.test.ts": { - "mtime": 1788939901.4347641, + "mtime": 1788947732.6159184, "ast_hash": "f5d6ffabeeb1333e216151a9dd82c676", "semantic_hash": "f5d6ffabeeb1333e216151a9dd82c676" }, "remix/app/api/utils/things/sensitiveReveal.test.ts": { - "mtime": 1788939901.178275, + "mtime": 1788947732.5452738, "ast_hash": "2feb7ebe87e0463d90a9c77e026cc37e", "semantic_hash": "2feb7ebe87e0463d90a9c77e026cc37e" }, "PRs/197-codex-fix-builtin-schema-storage-class--fix-builtin-schema-storage-accounting-and-add-secure-diagnostic-reveals.md": { - "mtime": 1788939899.9947085, + "mtime": 1788947732.1682765, "ast_hash": "cac6ac156c3b86ac45b1c8a299711a8f", "semantic_hash": "cac6ac156c3b86ac45b1c8a299711a8f" }, "remix/app/components/Things/sensitiveRevealError.test.ts": { - "mtime": 1788939901.3250804, + "mtime": 1788947732.586319, "ast_hash": "1843389dc90d3dbfa56632f31b1ae912", "semantic_hash": "1843389dc90d3dbfa56632f31b1ae912" }, "remix/app/components/Things/sensitiveRevealError.ts": { - "mtime": 1788939901.325163, + "mtime": 1788947732.586319, "ast_hash": "be9308bcce603862df58891adc0f724a", "semantic_hash": "be9308bcce603862df58891adc0f724a" }, "PRs/190-claude-github-action-pr-promotion-c65173-per-feature-develop-main-promotion-prs-with-stacks.md": { - "mtime": 1788939899.9944172, + "mtime": 1788947732.1682765, "ast_hash": "911718847139851c594ed8cc2abd5178", "semantic_hash": "911718847139851c594ed8cc2abd5178" }, "PRs/206-codex-harden-feature-promoter-keep-feature-promotion-running-across-historical-git-failures.md": { - "mtime": 1788939899.9952924, + "mtime": 1788947732.1692765, "ast_hash": "72728c363db371a955647c33c40428ca", "semantic_hash": "72728c363db371a955647c33c40428ca" }, "PRs/207-codex-fix-promoter-empty-pick-detection-distinguish-empty-promotion-cherry-picks-safely.md": { - "mtime": 1788939899.9958913, + "mtime": 1788947732.1692765, "ast_hash": "33e30dbe292704371a290961e581066b", "semantic_hash": "33e30dbe292704371a290961e581066b" }, "remix/app/api/utils/settings/prConflictResolverModelWaterfall.test.ts": { - "mtime": 1788939901.1684077, + "mtime": 1788947732.5415852, "ast_hash": "a6f9403b574027cf4f9bf7699ddca898", "semantic_hash": "a6f9403b574027cf4f9bf7699ddca898" }, "PRs/210-promote-actions-control-plane-rollup.md": { - "mtime": 1788939899.996215, + "mtime": 1788947732.1692765, "ast_hash": "4d548dad380a4adc660273795619151f", "semantic_hash": "4d548dad380a4adc660273795619151f" }, ".github/workflows/develop-pr-preview.yml": { - "mtime": 1788939899.7008915, + "mtime": 1788947732.074611, "ast_hash": "9bf259fee3fe1a07419b2268b921816a", "semantic_hash": "9bf259fee3fe1a07419b2268b921816a" }, "PRs/212-codex-develop-pr-previews-add-secure-develop-target-pr-previews.md": { - "mtime": 1788939899.9965687, + "mtime": 1788947732.1692765, "ast_hash": "4359fd2a2ac76295c76d87b76b9022b5", "semantic_hash": "4359fd2a2ac76295c76d87b76b9022b5" }, "remix/scripts/ensure-dependencies.test.js": { - "mtime": 1788939902.6398416, + "mtime": 1788947732.6762726, "ast_hash": "a9e918e3c362f0e68f0b269f0fab459d", "semantic_hash": "a9e918e3c362f0e68f0b269f0fab459d" }, "remix/scripts/typecheck-ratchet.test.mjs": { - "mtime": 1788939902.6440952, + "mtime": 1788947732.6772728, "ast_hash": "cf53abc5f9549d3eb74ab390063c4417", "semantic_hash": "cf53abc5f9549d3eb74ab390063c4417" }, "remix/scripts/web-ci-required-context-contract.mjs": { - "mtime": 1788939902.6586192, + "mtime": 1788947732.6802728, "ast_hash": "2e149d1bac1dde4b9683754aff0009f2", "semantic_hash": "2e149d1bac1dde4b9683754aff0009f2" }, "PRs/222-codex-typecheck-ratchet-warning-main-ci-make-typecheck-ratchet-warning-only.md": { - "mtime": 1788939899.997493, + "mtime": 1788947732.1692765, "ast_hash": "43c34b43bce82b3679011c78fa745636", "semantic_hash": "43c34b43bce82b3679011c78fa745636" }, "remix/app/api/utils/ciControl/githubClient.test.ts": { - "mtime": 1788939901.093114, + "mtime": 1788947732.519274, "ast_hash": "efad506e182c2143a16f6ca3b5732056", "semantic_hash": "efad506e182c2143a16f6ca3b5732056" }, "remix/app/api/utils/ciControl/githubClient.ts": { - "mtime": 1788939901.0934672, + "mtime": 1788947732.519274, "ast_hash": "ca844fe14477b094613013575f32f24b", "semantic_hash": "ca844fe14477b094613013575f32f24b" }, "remix/app/api/utils/ciControl/store.ts": { - "mtime": 1788939901.0977886, + "mtime": 1788947732.519274, "ast_hash": "680b69d4014ccae918b2915727516c69", "semantic_hash": "680b69d4014ccae918b2915727516c69" }, "remix/app/api/utils/ciControl/webhooks.test.ts": { - "mtime": 1788939901.0983453, + "mtime": 1788947732.519274, "ast_hash": "cfb7e8215546f97c49e571a07caedc28", "semantic_hash": "cfb7e8215546f97c49e571a07caedc28" }, "remix/app/api/utils/ciControl/webhooks.ts": { - "mtime": 1788939901.09851, + "mtime": 1788947732.520274, "ast_hash": "3b7e5944ee020c5cfea4c6b5b18ed6b5", "semantic_hash": "3b7e5944ee020c5cfea4c6b5b18ed6b5" }, "remix/app/components/Admin/CIControl/CIControlDashboard.tsx": { - "mtime": 1788939901.192631, + "mtime": 1788947732.5502737, "ast_hash": "a433c87922aa72b049a70b651413ba57", "semantic_hash": "a433c87922aa72b049a70b651413ba57" }, "remix/app/components/Admin/CIControl/types.ts": { - "mtime": 1788939901.1949227, + "mtime": 1788947732.5512736, "ast_hash": "ec7334b5beebd3acd2153d27d2e34809", "semantic_hash": "ec7334b5beebd3acd2153d27d2e34809" }, "remix/app/routes/api/v1/admin/ci/_ci.tsx": { - "mtime": 1788939901.362033, + "mtime": 1788947732.5971408, "ast_hash": "668d0e626cbf6111e76ac1da134a052c", "semantic_hash": "668d0e626cbf6111e76ac1da134a052c" }, "remix/app/routes/api/v1/admin/ci/dispatch/_dispatch.tsx": { - "mtime": 1788939901.3629627, + "mtime": 1788947732.5972753, "ast_hash": "f9e13fe1b1e5680059546bac17888802", "semantic_hash": "f9e13fe1b1e5680059546bac17888802" }, "remix/app/routes/api/v1/admin/ci/reconcile/_reconcile.tsx": { - "mtime": 1788939901.3632407, + "mtime": 1788947732.5972753, "ast_hash": "038b03864ddc7bb71c592e26c7035797", "semantic_hash": "038b03864ddc7bb71c592e26c7035797" }, "remix/app/routes/api/v1/integrations/github/webhook/_webhook.tsx": { - "mtime": 1788939901.4150455, + "mtime": 1788947732.6088393, "ast_hash": "6c86135a62ffff6c78bbded38bb796db", "semantic_hash": "6c86135a62ffff6c78bbded38bb796db" }, "remix/app/routes/api/v1/integrations/vercel/webhook/_webhook.tsx": { - "mtime": 1788939901.415218, + "mtime": 1788947732.6089263, "ast_hash": "f00dc683e09599adc409429dbe777d68", "semantic_hash": "f00dc683e09599adc409429dbe777d68" }, "remix/scripts/workflow-caller-contract.mjs": { - "mtime": 1788939902.658961, + "mtime": 1788947732.6802728, "ast_hash": "2ae61ceb16838f292b26a0ada483537c", "semantic_hash": "2ae61ceb16838f292b26a0ada483537c" }, "PRs/211-codex-ci-control-plane-dashboard--centralize-actions-and-add-ci-control-dashboard.md": { - "mtime": 1788939899.996352, + "mtime": 1788947732.1692765, "ast_hash": "401b734c5d3524605b18f94d2374a214", "semantic_hash": "401b734c5d3524605b18f94d2374a214" }, "PRs/258-promote-pr-211-ci-control-plane-dashboard-thin-listener-repair.md": { - "mtime": 1788939899.9989636, + "mtime": 1788947732.1702764, "ast_hash": "d6ea7eae4d188eedd993b5a0a0dc9e75", "semantic_hash": "d6ea7eae4d188eedd993b5a0a0dc9e75" }, "scripts/vercel-build.mjs": { - "mtime": 1788939902.6768992, + "mtime": 1788947732.6827872, "ast_hash": "cd0eeb99db73563c0b88bc77d805c0a6", "semantic_hash": "cd0eeb99db73563c0b88bc77d805c0a6" }, "scripts/vercel-ignore-build.mjs": { - "mtime": 1788939902.676969, + "mtime": 1788947732.6827872, "ast_hash": "1b422361afaa070c7c58f4f049e4f488", "semantic_hash": "1b422361afaa070c7c58f4f049e4f488" }, "scripts/vercel-root-flow.test.mjs": { - "mtime": 1788939902.6770804, + "mtime": 1788947732.6827872, "ast_hash": "6aa14a05b3ab81b58d12a99576302c13", "semantic_hash": "6aa14a05b3ab81b58d12a99576302c13" }, "vercel.json": { - "mtime": 1788939902.6779401, + "mtime": 1788947732.6832197, "ast_hash": "78fa37305ba6f0f6d6da66e7d44e9f92", "semantic_hash": "78fa37305ba6f0f6d6da66e7d44e9f92" }, "remix/app/root-data.server.test.ts": { - "mtime": 1788939901.358668, + "mtime": 1788947732.5952733, "ast_hash": "cca3deef1b5efaced7ae4d9ad3652ace", "semantic_hash": "cca3deef1b5efaced7ae4d9ad3652ace" }, "remix/app/Providers/thingtimeSerialization.test.ts": { - "mtime": 1788939901.046226, + "mtime": 1788947732.4983323, "ast_hash": "ea091c2581a598d2867b94a93075f4f2", "semantic_hash": "ea091c2581a598d2867b94a93075f4f2" }, "remix/app/Providers/thingtimeSerialization.ts": { - "mtime": 1788939901.0467222, + "mtime": 1788947732.4983323, "ast_hash": "08824702a0de9bcb558ff21778bf327b", "semantic_hash": "08824702a0de9bcb558ff21778bf327b" }, "remix/app/api/utils/apps/profileMedia.ts": { - "mtime": 1788939901.0756247, + "mtime": 1788947732.5112739, "ast_hash": "077cd177cd512278c7d97e227feb4518", "semantic_hash": "077cd177cd512278c7d97e227feb4518" }, "remix/app/api/utils/attachments/attachmentAccess.test.ts": { - "mtime": 1788939901.076379, + "mtime": 1788947732.5112739, "ast_hash": "f20fd9281507d33759a879f75279ef71", "semantic_hash": "f20fd9281507d33759a879f75279ef71" }, "remix/app/api/utils/attachments/attachmentAccess.ts": { - "mtime": 1788939901.0767195, + "mtime": 1788947732.5123737, "ast_hash": "15a901565b27692adc2bf2736b2bc242", "semantic_hash": "15a901565b27692adc2bf2736b2bc242" }, "remix/app/api/utils/attachments/attachmentCascadeCore.test.ts": { - "mtime": 1788939901.076886, + "mtime": 1788947732.5123737, "ast_hash": "74debce9298d4e72bc72b0831e591092", "semantic_hash": "74debce9298d4e72bc72b0831e591092" }, "remix/app/api/utils/attachments/attachmentCascadeCore.ts": { - "mtime": 1788939901.0769713, + "mtime": 1788947732.5123737, "ast_hash": "80c16741772671388961fe9cf6b82ea4", "semantic_hash": "80c16741772671388961fe9cf6b82ea4" }, "remix/app/api/utils/attachments/attachmentCore.test.ts": { - "mtime": 1788939901.0770953, + "mtime": 1788947732.5123737, "ast_hash": "c6faa489328125a7516c0f99efe5b811", "semantic_hash": "c6faa489328125a7516c0f99efe5b811" }, "remix/app/api/utils/attachments/attachmentCore.ts": { - "mtime": 1788939901.0772781, + "mtime": 1788947732.5123737, "ast_hash": "1ee4d5002e9b2205febe6ca8f12c58a8", "semantic_hash": "1ee4d5002e9b2205febe6ca8f12c58a8" }, "remix/app/api/utils/attachments/attachmentPresentation.test.ts": { - "mtime": 1788939901.0773966, + "mtime": 1788947732.5123737, "ast_hash": "311bd784cee7006c3a9371c25b7a6b57", "semantic_hash": "311bd784cee7006c3a9371c25b7a6b57" }, "remix/app/api/utils/attachments/attachmentPresentation.ts": { - "mtime": 1788939901.0774782, + "mtime": 1788947732.5123737, "ast_hash": "472d1575d9e24942ef84b8d3dbe81e47", "semantic_hash": "472d1575d9e24942ef84b8d3dbe81e47" }, "remix/app/api/utils/attachments/attachmentResponses.ts": { - "mtime": 1788939901.078767, + "mtime": 1788947732.5123737, "ast_hash": "08230617e47ff8bf25fe00f512b276a9", "semantic_hash": "08230617e47ff8bf25fe00f512b276a9" }, "remix/app/api/utils/attachments/attachmentStore.test.ts": { - "mtime": 1788939901.0789192, + "mtime": 1788947732.5123737, "ast_hash": "6a1a6d98dbba44b8155d29ae2e14fd3c", "semantic_hash": "6a1a6d98dbba44b8155d29ae2e14fd3c" }, "remix/app/api/utils/attachments/attachmentStore.ts": { - "mtime": 1788939901.0792582, + "mtime": 1788947732.5123737, "ast_hash": "4d8cac8512b0b50a21459a1dfeb784d6", "semantic_hash": "4d8cac8512b0b50a21459a1dfeb784d6" }, "remix/app/api/utils/attachments/attachments.test.ts": { - "mtime": 1788939901.0794683, + "mtime": 1788947732.513274, "ast_hash": "49479deaa2d37f95aa9c30bff65056fa", "semantic_hash": "49479deaa2d37f95aa9c30bff65056fa" }, "remix/app/api/utils/attachments/attachments.ts": { - "mtime": 1788939901.0798326, + "mtime": 1788947732.513274, "ast_hash": "e47fc3a5e7d337fba349d30eb99f7ea5", "semantic_hash": "e47fc3a5e7d337fba349d30eb99f7ea5" }, "remix/app/api/utils/attachments/config.test.ts": { - "mtime": 1788939901.079988, + "mtime": 1788947732.513274, "ast_hash": "99218702f4ec566df33ac243fe3fcfbf", "semantic_hash": "99218702f4ec566df33ac243fe3fcfbf" }, "remix/app/api/utils/attachments/config.ts": { - "mtime": 1788939901.0801857, + "mtime": 1788947732.513274, "ast_hash": "78e60dbefba82ea7346f25857227bc79", "semantic_hash": "78e60dbefba82ea7346f25857227bc79" }, "remix/app/api/utils/attachments/postCreate.test.ts": { - "mtime": 1788939901.0808344, + "mtime": 1788947732.513274, "ast_hash": "3d20b5a531dd065a1e50b78dedcacca7", "semantic_hash": "3d20b5a531dd065a1e50b78dedcacca7" }, "remix/app/api/utils/attachments/postCreate.ts": { - "mtime": 1788939901.0812068, + "mtime": 1788947732.513274, "ast_hash": "8a715b54632f29941a34596e34ae6be8", "semantic_hash": "8a715b54632f29941a34596e34ae6be8" }, "remix/app/api/utils/attachments/privateS3.test.ts": { - "mtime": 1788939901.0814493, + "mtime": 1788947732.513274, "ast_hash": "071548dea73be2e6f21dee5971612727", "semantic_hash": "071548dea73be2e6f21dee5971612727" }, "remix/app/api/utils/attachments/privateS3.ts": { - "mtime": 1788939901.0815527, + "mtime": 1788947732.513274, "ast_hash": "397792e59cd9a12cdea049980fe73ae3", "semantic_hash": "397792e59cd9a12cdea049980fe73ae3" }, "remix/app/api/utils/auth/temporaryUser.test.ts": { - "mtime": 1788939901.0878093, + "mtime": 1788947732.516274, "ast_hash": "567499aac8cbb5f9182a61ce75229f00", "semantic_hash": "567499aac8cbb5f9182a61ce75229f00" }, "remix/app/api/utils/auth/temporaryUser.ts": { - "mtime": 1788939901.0882168, + "mtime": 1788947732.516274, "ast_hash": "f7b8f2269a970b88ec6c133a9a84dd7a", "semantic_hash": "f7b8f2269a970b88ec6c133a9a84dd7a" }, "remix/app/api/utils/auth/users.profile.test.ts": { - "mtime": 1788939901.088728, + "mtime": 1788947732.516274, "ast_hash": "39222c7d1037e2be247caa57aca3c61f", "semantic_hash": "39222c7d1037e2be247caa57aca3c61f" }, "remix/app/api/utils/ciControl/automationPolicy.test.ts": { - "mtime": 1788939901.091674, + "mtime": 1788947732.5187266, "ast_hash": "f8367a7b889c40b71acede5923920400", "semantic_hash": "f8367a7b889c40b71acede5923920400" }, "remix/app/api/utils/ciControl/automationPolicy.ts": { - "mtime": 1788939901.0917592, + "mtime": 1788947732.5187266, "ast_hash": "ab5ad7bfd53fd3b4975b2b617b3f727a", "semantic_hash": "ab5ad7bfd53fd3b4975b2b617b3f727a" }, "remix/app/api/utils/ciControl/providerReadiness.test.ts": { - "mtime": 1788939901.093864, + "mtime": 1788947732.519274, "ast_hash": "a122da5c78993a5fe1ea56984e961c29", "semantic_hash": "a122da5c78993a5fe1ea56984e961c29" }, "remix/app/api/utils/ciControl/providerReadiness.ts": { - "mtime": 1788939901.0939415, + "mtime": 1788947732.519274, "ast_hash": "049e5a2d5d1398d9540ead3ad42d6ded", "semantic_hash": "049e5a2d5d1398d9540ead3ad42d6ded" }, "remix/app/api/utils/ciControl/providerRouter.test.ts": { - "mtime": 1788939901.0940127, + "mtime": 1788947732.519274, "ast_hash": "cf15cd65b8a1b92628ebef80a175c4e5", "semantic_hash": "cf15cd65b8a1b92628ebef80a175c4e5" }, "remix/app/api/utils/ciControl/providerRouter.ts": { - "mtime": 1788939901.0962029, + "mtime": 1788947732.519274, "ast_hash": "e03d20cb4e0ef0645326696b795839a5", "semantic_hash": "e03d20cb4e0ef0645326696b795839a5" }, "remix/app/api/utils/ciControl/vercelRunner.test.ts": { - "mtime": 1788939901.098009, + "mtime": 1788947732.519274, "ast_hash": "b89c312a2885462400b3f0bf335b51ea", "semantic_hash": "b89c312a2885462400b3f0bf335b51ea" }, "remix/app/api/utils/ciControl/vercelRunner.ts": { - "mtime": 1788939901.0982304, + "mtime": 1788947732.519274, "ast_hash": "dd9d53e18c37ebe29fe080ea879898c0", "semantic_hash": "dd9d53e18c37ebe29fe080ea879898c0" }, "remix/app/api/utils/lopu/musing.test.ts": { - "mtime": 1788939901.1285565, + "mtime": 1788947732.5252738, "ast_hash": "75e09bef98ddb6d4d3d63eb00b921199", "semantic_hash": "75e09bef98ddb6d4d3d63eb00b921199" }, "remix/app/api/utils/messenger/channels.ts": { - "mtime": 1788939901.133008, + "mtime": 1788947732.5276182, "ast_hash": "546764b06ccb79b205553793a65111b3", "semantic_hash": "546764b06ccb79b205553793a65111b3" }, "remix/app/api/utils/messenger/communities.ts": { - "mtime": 1788939901.1332345, + "mtime": 1788947732.5276182, "ast_hash": "6c520540f430510b701ebd0d767419df", "semantic_hash": "6c520540f430510b701ebd0d767419df" }, "remix/app/api/utils/messenger/emojis.ts": { - "mtime": 1788939901.133399, + "mtime": 1788947732.5276182, "ast_hash": "be0ac4dd6958933072152b2ec4fe69b2", "semantic_hash": "be0ac4dd6958933072152b2ec4fe69b2" }, "remix/app/api/utils/messenger/follows.ts": { - "mtime": 1788939901.1338725, + "mtime": 1788947732.5276182, "ast_hash": "fe2e373790361b51865391a60a2ea0fb", "semantic_hash": "fe2e373790361b51865391a60a2ea0fb" }, "remix/app/api/utils/messenger/messenger.ts": { - "mtime": 1788939901.134625, + "mtime": 1788947732.5282738, "ast_hash": "e8017371d8f9de4edcd4379528c3452f", "semantic_hash": "e8017371d8f9de4edcd4379528c3452f" }, "remix/app/api/utils/messenger/messengerMediaCore.test.ts": { - "mtime": 1788939901.1350462, + "mtime": 1788947732.5282738, "ast_hash": "2ed612301f67d41eee6d46509d221f24", "semantic_hash": "2ed612301f67d41eee6d46509d221f24" }, "remix/app/api/utils/messenger/messengerMediaCore.ts": { - "mtime": 1788939901.1352305, + "mtime": 1788947732.5282738, "ast_hash": "6ba1c0652a152f51e46c580987f1c4b2", "semantic_hash": "6ba1c0652a152f51e46c580987f1c4b2" }, "remix/app/api/utils/messenger/shared.ts": { - "mtime": 1788939901.136566, + "mtime": 1788947732.5282738, "ast_hash": "662af5f236aaccfe8a8a51f7730a904c", "semantic_hash": "662af5f236aaccfe8a8a51f7730a904c" }, "remix/app/api/utils/notifications/emails.ts": { - "mtime": 1788939901.163098, + "mtime": 1788947732.5402014, "ast_hash": "bcef1bd52e9e5a95719cfc396fdb094d", "semantic_hash": "bcef1bd52e9e5a95719cfc396fdb094d" }, "remix/app/api/utils/notifications/notifications.ts": { - "mtime": 1788943126.4374177, + "mtime": 1788948107.3954937, "ast_hash": "fed85cc7565810da925cc13806865bfe", "semantic_hash": "" }, "remix/app/api/utils/notifications/weeklySummary.ts": { - "mtime": 1788939901.164464, + "mtime": 1788947732.5402737, "ast_hash": "aac53d88bf2ecf3a53bb3a33ac9c0fc6", "semantic_hash": "aac53d88bf2ecf3a53bb3a33ac9c0fc6" }, "remix/app/api/utils/things/views.test.ts": { - "mtime": 1788939901.182459, + "mtime": 1788947732.5462737, "ast_hash": "4764d61e25d43ea0759a46cff19698bb", "semantic_hash": "4764d61e25d43ea0759a46cff19698bb" }, "remix/app/api/utils/things/views.ts": { - "mtime": 1788939901.182849, + "mtime": 1788947732.5462737, "ast_hash": "5ff84bb4fad00ad96a1a7d6a3c96a09c", "semantic_hash": "5ff84bb4fad00ad96a1a7d6a3c96a09c" }, "remix/app/api/utils/users/social.ts": { - "mtime": 1788939901.183296, + "mtime": 1788947732.5472736, "ast_hash": "63e1af662bc09a39191bd43a7194e554", "semantic_hash": "63e1af662bc09a39191bd43a7194e554" }, "remix/app/api/utils/vercel/environment.test.ts": { - "mtime": 1788939901.1836677, + "mtime": 1788947732.5472736, "ast_hash": "5fe8e510103b24b96192a6dd1c406b9e", "semantic_hash": "5fe8e510103b24b96192a6dd1c406b9e" }, "remix/app/api/utils/vercel/environment.ts": { - "mtime": 1788939901.1838634, + "mtime": 1788947732.5476372, "ast_hash": "007e66d2a585478043468a84e77b6d80", "semantic_hash": "007e66d2a585478043468a84e77b6d80" }, "remix/app/components/Attachments/AttachmentComposer.tsx": { - "mtime": 1788939901.2042754, + "mtime": 1788948107.3964937, "ast_hash": "6c1a8448ded15b6dd6e69b4b346570dc", "semantic_hash": "6c1a8448ded15b6dd6e69b4b346570dc" }, "remix/app/components/Attachments/PostAttachments.tsx": { - "mtime": 1788939901.205448, + "mtime": 1788947732.5533717, "ast_hash": "b6c58263ec75e50b871c6682c8f1d92f", "semantic_hash": "b6c58263ec75e50b871c6682c8f1d92f" }, "remix/app/components/Attachments/attachmentDraftCleanup.ts": { - "mtime": 1788939901.205623, + "mtime": 1788947732.5533717, "ast_hash": "30635b7be93b82a75c98fff0f7d8bfaa", "semantic_hash": "30635b7be93b82a75c98fff0f7d8bfaa" }, "remix/app/components/Attachments/attachmentTypes.ts": { - "mtime": 1788939901.2057095, + "mtime": 1788947732.5533717, "ast_hash": "d129ba76a4107e84f3513b2f260c107a", "semantic_hash": "d129ba76a4107e84f3513b2f260c107a" }, "remix/app/components/Attachments/attachmentUiCore.test.ts": { - "mtime": 1788939901.2059548, + "mtime": 1788948107.3964937, "ast_hash": "ca78f50f001184cf57ae11dfe0d88fc6", "semantic_hash": "ca78f50f001184cf57ae11dfe0d88fc6" }, "remix/app/components/Attachments/attachmentUiCore.ts": { - "mtime": 1788939901.2062552, + "mtime": 1788948107.3964937, "ast_hash": "a62de1804e272af2f271248941904dc6", "semantic_hash": "a62de1804e272af2f271248941904dc6" }, "remix/app/components/Attachments/useAttachmentUploads.ts": { - "mtime": 1788939901.2067568, + "mtime": 1788947732.5542736, "ast_hash": "7bfd5430ed9f5093f93f7f615c7a5596", "semantic_hash": "7bfd5430ed9f5093f93f7f615c7a5596" }, "remix/app/components/Commander/commanderClickAway.test.ts": { - "mtime": 1788939901.2170372, + "mtime": 1788947732.5580876, "ast_hash": "0b6731668c703eeed4e2ef7360750710", "semantic_hash": "0b6731668c703eeed4e2ef7360750710" }, "remix/app/components/Commander/commanderClickAway.ts": { - "mtime": 1788939901.2171438, + "mtime": 1788947732.5580876, "ast_hash": "04ebee3567865a755d94561a0cc2069f", "semantic_hash": "04ebee3567865a755d94561a0cc2069f" }, "remix/app/components/Editor/editorJsTouchFocus.test.ts": { - "mtime": 1788939901.2363758, + "mtime": 1788947732.5632737, "ast_hash": "beae9d818f8e802d4b57bb31a0fb81dc", "semantic_hash": "beae9d818f8e802d4b57bb31a0fb81dc" }, "remix/app/components/Editor/editorJsTouchFocus.ts": { - "mtime": 1788939901.2364674, + "mtime": 1788947732.5632737, "ast_hash": "52e23a4c7ef0eccbfa7c9ddd4f59b2d0", "semantic_hash": "52e23a4c7ef0eccbfa7c9ddd4f59b2d0" }, "remix/app/components/Feed/useViewTracking.ts": { - "mtime": 1788939901.246453, + "mtime": 1788947732.5672736, "ast_hash": "172ae87fb777732afeb59b8d909b8ccd", "semantic_hash": "172ae87fb777732afeb59b8d909b8ccd" }, "remix/app/components/Media/LinkedImageGallery.tsx": { - "mtime": 1788939901.2613328, + "mtime": 1788947732.5732734, "ast_hash": "ca3170208b66a33b58e60a61b5ea37ff", "semantic_hash": "ca3170208b66a33b58e60a61b5ea37ff" }, "remix/app/components/Media/MediaGallery.tsx": { - "mtime": 1788939901.261428, + "mtime": 1788947732.5744383, "ast_hash": "f0c2caeeedc9f4e075301d5077f95ca9", "semantic_hash": "f0c2caeeedc9f4e075301d5077f95ca9" }, "remix/app/components/Media/mediaGalleryCore.test.ts": { - "mtime": 1788939901.2616496, + "mtime": 1788947732.5744383, "ast_hash": "eb72b08c4032881089e35699b5caa47e", "semantic_hash": "eb72b08c4032881089e35699b5caa47e" }, "remix/app/components/Media/mediaGalleryCore.ts": { - "mtime": 1788939901.2619417, + "mtime": 1788947732.5744383, "ast_hash": "efcb5eefa686a110f7d71217cc07ff21", "semantic_hash": "efcb5eefa686a110f7d71217cc07ff21" }, "remix/app/components/Messenger/ChatDetailsDrawer.tsx": { - "mtime": 1788939901.263215, + "mtime": 1788947732.5748258, "ast_hash": "c47c429a0f2b69232afb7ce3c824fd07", "semantic_hash": "c47c429a0f2b69232afb7ce3c824fd07" }, "remix/app/components/Messenger/ChatView.tsx": { - "mtime": 1788939901.2633986, + "mtime": 1788947732.5748258, "ast_hash": "0bd2f33e5283898c6dac2c5f503f5ec7", "semantic_hash": "0bd2f33e5283898c6dac2c5f503f5ec7" }, "remix/app/components/Messenger/Composer.tsx": { - "mtime": 1788939901.2635283, + "mtime": 1788947732.5748258, "ast_hash": "9777fb471fb7afe37b52f2b5163f3cea", "semantic_hash": "9777fb471fb7afe37b52f2b5163f3cea" }, "remix/app/components/Messenger/CustomEmojiImage.tsx": { - "mtime": 1788939901.2636127, + "mtime": 1788947732.5748258, "ast_hash": "2a6594c796ae6ac8303bb0e6282102a4", "semantic_hash": "2a6594c796ae6ac8303bb0e6282102a4" }, "remix/app/components/Messenger/EmojiUploadModal.tsx": { - "mtime": 1788939901.263841, + "mtime": 1788947732.5748258, "ast_hash": "d26fad36d4fc2fbe5a3cca88efb5d064", "semantic_hash": "d26fad36d4fc2fbe5a3cca88efb5d064" }, "remix/app/components/Messenger/InboxSidebar.tsx": { - "mtime": 1788939901.2640865, + "mtime": 1788947732.5748258, "ast_hash": "732aea772c61b3ee565e6e5fe5989f0b", "semantic_hash": "732aea772c61b3ee565e6e5fe5989f0b" }, "remix/app/components/Messenger/MessageList.tsx": { - "mtime": 1788939901.2642853, + "mtime": 1788947732.5752735, "ast_hash": "d89c9f2292d4944a09d8cd0807bffe3b", "semantic_hash": "d89c9f2292d4944a09d8cd0807bffe3b" }, "remix/app/components/Messenger/MessageRow.tsx": { - "mtime": 1788939901.2644305, + "mtime": 1788947732.5752735, "ast_hash": "204a16344c054e1708833eb656ff72fd", "semantic_hash": "204a16344c054e1708833eb656ff72fd" }, "remix/app/components/Messenger/MessengerEmojiPicker.tsx": { - "mtime": 1788939901.264669, + "mtime": 1788947732.5752735, "ast_hash": "e69485c23ff6e614cab2f22eb8d6428c", "semantic_hash": "e69485c23ff6e614cab2f22eb8d6428c" }, "remix/app/components/Messenger/MessengerModals.tsx": { - "mtime": 1788939901.2649262, + "mtime": 1788947732.5752735, "ast_hash": "558a6ccc6d46c791ffd7bd47246a11ca", "semantic_hash": "558a6ccc6d46c791ffd7bd47246a11ca" }, "remix/app/components/Messenger/MessengerNotifications.tsx": { - "mtime": 1788939901.2651353, + "mtime": 1788947732.5752735, "ast_hash": "99b03cc78cf6800652d6b564ac0c8be4", "semantic_hash": "99b03cc78cf6800652d6b564ac0c8be4" }, "remix/app/components/Messenger/MessengerPage.tsx": { - "mtime": 1788939901.2652783, + "mtime": 1788947732.5752735, "ast_hash": "ed3b8630b6c02712cabe03ea1583fd52", "semantic_hash": "ed3b8630b6c02712cabe03ea1583fd52" }, "remix/app/components/Messenger/RequestsView.tsx": { - "mtime": 1788939901.2654412, + "mtime": 1788947732.5752735, "ast_hash": "eab124d3443b35404c9fbfc76978fea9", "semantic_hash": "eab124d3443b35404c9fbfc76978fea9" }, "remix/app/components/Messenger/SlackSidebar.tsx": { - "mtime": 1788939901.265573, + "mtime": 1788947732.5752735, "ast_hash": "48186ef6892df4bbe5d1cd0ded1497ec", "semantic_hash": "48186ef6892df4bbe5d1cd0ded1497ec" }, "remix/app/components/Messenger/messengerCache.ts": { - "mtime": 1788939901.2668078, + "mtime": 1788947732.5762734, "ast_hash": "aa216a9118d26dac205eeac372da64c6", "semantic_hash": "aa216a9118d26dac205eeac372da64c6" }, "remix/app/components/Messenger/messengerTypes.ts": { - "mtime": 1788939901.2670844, + "mtime": 1788947732.5762734, "ast_hash": "8fd07efe31c6a2cd7993d625ecb43c7f", "semantic_hash": "8fd07efe31c6a2cd7993d625ecb43c7f" }, "remix/app/components/Messenger/useMessengerApi.ts": { - "mtime": 1788939901.2676456, + "mtime": 1788947732.5762734, "ast_hash": "d692115194735a6076d2b88bec50e144", "semantic_hash": "d692115194735a6076d2b88bec50e144" }, "remix/app/components/Nav/NotificationsBell.tsx": { - "mtime": 1788939901.2754593, + "mtime": 1788947732.5782735, "ast_hash": "cf7f2c347f664b9f240e3dda3f0f1c17", "semantic_hash": "cf7f2c347f664b9f240e3dda3f0f1c17" }, "remix/app/components/Profile/ProfileMediaField.tsx": { - "mtime": 1788939901.287595, + "mtime": 1788947732.5801716, "ast_hash": "88730c6b38845f2e83a8c043ca3992ca", "semantic_hash": "88730c6b38845f2e83a8c043ca3992ca" }, "remix/app/components/Profile/RelationshipControls.tsx": { - "mtime": 1788939901.2905316, + "mtime": 1788947732.5802734, "ast_hash": "463a1acac46dded20b2936c7e5b9d182", "semantic_hash": "463a1acac46dded20b2936c7e5b9d182" }, "remix/app/components/Profile/profileMediaCore.test.ts": { - "mtime": 1788939901.2906375, + "mtime": 1788947732.5802734, "ast_hash": "d437e26a8048f30b57b7887994ba7d03", "semantic_hash": "d437e26a8048f30b57b7887994ba7d03" }, "remix/app/components/Profile/profileMediaCore.ts": { - "mtime": 1788939901.2907364, + "mtime": 1788947732.5802734, "ast_hash": "d55c8d603eff54058eb9d0b771a0c846", "semantic_hash": "d55c8d603eff54058eb9d0b771a0c846" }, "remix/app/components/Settings/NotificationSettings.tsx": { - "mtime": 1788943126.4414263, + "mtime": 1788948107.3974938, "ast_hash": "8b542c381bbcc983286e6a7fdc467f05", "semantic_hash": "" }, "remix/app/components/Things/FolderTree.tsx": { - "mtime": 1788939901.3231237, + "mtime": 1788947732.5859885, "ast_hash": "073a2c5cec21ce90af5e514e72af1bc7", "semantic_hash": "073a2c5cec21ce90af5e514e72af1bc7" }, "remix/app/components/Things/ThingsDialogs.tsx": { - "mtime": 1788939901.3243766, + "mtime": 1788947732.586319, "ast_hash": "6267cea4692ff5ec4df01da01988f72a", "semantic_hash": "6267cea4692ff5ec4df01da01988f72a" }, "remix/app/components/Things/ThingsPage.tsx": { - "mtime": 1788939901.3248248, + "mtime": 1788947732.586319, "ast_hash": "9c4ac010019becaba703db820e9c8c58", "semantic_hash": "9c4ac010019becaba703db820e9c8c58" }, "remix/app/components/Things/ThingsViews.tsx": { - "mtime": 1788939901.3249753, + "mtime": 1788947732.586319, "ast_hash": "2e1a66b4a9609ccb090c1605ad9069e8", "semantic_hash": "2e1a66b4a9609ccb090c1605ad9069e8" }, "remix/app/components/Things/thingIcon.test.ts": { - "mtime": 1788939901.3258822, + "mtime": 1788947732.586319, "ast_hash": "54d1b66f59f45a756c1aa4231112d678", "semantic_hash": "54d1b66f59f45a756c1aa4231112d678" }, "remix/app/components/Things/thingIcon.ts": { - "mtime": 1788939901.3260036, + "mtime": 1788947732.586319, "ast_hash": "d3971c48edc32339eef716bac6744427", "semantic_hash": "d3971c48edc32339eef716bac6744427" }, "remix/app/components/Things/thingsCore.test.ts": { - "mtime": 1788939901.3261497, + "mtime": 1788947732.586319, "ast_hash": "ef1f7f2b280ac83c79a53350ed0e8f96", "semantic_hash": "ef1f7f2b280ac83c79a53350ed0e8f96" }, "remix/app/components/Things/thingsCore.ts": { - "mtime": 1788939901.326286, + "mtime": 1788947732.5872734, "ast_hash": "9aa2b16e334c70ba61d1d37c57d99e9e", "semantic_hash": "9aa2b16e334c70ba61d1d37c57d99e9e" }, "remix/app/components/Things/thingsMenuModel.ts": { - "mtime": 1788939901.3263898, + "mtime": 1788947732.5872734, "ast_hash": "28d091c81b1eb5e81639ae0fb20bd9fb", "semantic_hash": "28d091c81b1eb5e81639ae0fb20bd9fb" }, "remix/app/routes/api/v1/admin/ci/automations/_automations.tsx": { - "mtime": 1788939901.3624341, + "mtime": 1788947732.5972753, "ast_hash": "28e9d38381b0f9e432b6180729814914", "semantic_hash": "28e9d38381b0f9e432b6180729814914" }, "remix/app/routes/api/v1/attachments/attachmentsRoutes.test.ts": { - "mtime": 1788939901.3756301, + "mtime": 1788947732.6011593, "ast_hash": "30b2cadf373ff835da885f325bd60fd5", "semantic_hash": "30b2cadf373ff835da885f325bd60fd5" }, "remix/app/routes/api/v1/attachments/cleanup/_cleanup.tsx": { - "mtime": 1788939901.3761163, + "mtime": 1788947732.6011593, "ast_hash": "d881150b24626f1f1dceb2825a4b382d", "semantic_hash": "d881150b24626f1f1dceb2825a4b382d" }, "remix/app/routes/api/v1/attachments/content/_content.tsx": { - "mtime": 1788939901.3764393, + "mtime": 1788947732.6012733, "ast_hash": "8c5dfb5084424f2d5731e1301df85138", "semantic_hash": "8c5dfb5084424f2d5731e1301df85138" }, "remix/app/routes/api/v1/attachments/delete/_delete.tsx": { - "mtime": 1788939901.3767388, + "mtime": 1788947732.6012733, "ast_hash": "e44210ae6bf9a5ca92dc52512e5de8ea", "semantic_hash": "e44210ae6bf9a5ca92dc52512e5de8ea" }, "remix/app/routes/api/v1/attachments/uploads/_uploads.tsx": { - "mtime": 1788939901.3795211, + "mtime": 1788947732.6012733, "ast_hash": "54306205d033ccf4d0245649bb40ebe4", "semantic_hash": "54306205d033ccf4d0245649bb40ebe4" }, "remix/app/routes/api/v1/attachments/uploads/abort/_abort.tsx": { - "mtime": 1788939901.3797953, + "mtime": 1788947732.6017025, "ast_hash": "10526d73eb91f9ea0cdfb63c14cc9c18", "semantic_hash": "10526d73eb91f9ea0cdfb63c14cc9c18" }, "remix/app/routes/api/v1/attachments/uploads/complete/_complete.tsx": { - "mtime": 1788939901.3799217, + "mtime": 1788947732.6017025, "ast_hash": "8670727ac306e3123b7d411dd2794593", "semantic_hash": "8670727ac306e3123b7d411dd2794593" }, "remix/app/routes/api/v1/attachments/uploads/parts/_parts.tsx": { - "mtime": 1788939901.3800473, + "mtime": 1788947732.6017025, "ast_hash": "d61a12013150e526ae48f918588d7506", "semantic_hash": "d61a12013150e526ae48f918588d7506" }, "remix/app/routes/api/v1/auth/temporary/_temporary.tsx": { - "mtime": 1788939901.3977509, + "mtime": 1788947732.6032877, "ast_hash": "4db392246c74dfe97d7211a9899ad1a8", "semantic_hash": "4db392246c74dfe97d7211a9899ad1a8" }, "remix/app/routes/api/v1/chats/_chats.tsx": { - "mtime": 1788939901.3981822, + "mtime": 1788947732.6032877, "ast_hash": "e36a74c3e8915090038e9db8852e1712", "semantic_hash": "e36a74c3e8915090038e9db8852e1712" }, "remix/app/routes/api/v1/chats/get/_get.tsx": { - "mtime": 1788939901.3982975, + "mtime": 1788947732.6041238, "ast_hash": "928c9a13d17f2d1a6e0f59757a314d36", "semantic_hash": "928c9a13d17f2d1a6e0f59757a314d36" }, "remix/app/routes/api/v1/chats/leave/_leave.tsx": { - "mtime": 1788939901.3984387, + "mtime": 1788947732.6041238, "ast_hash": "33814c91f809dc529404cf322edc1d2b", "semantic_hash": "33814c91f809dc529404cf322edc1d2b" }, "remix/app/routes/api/v1/chats/members/_members.tsx": { - "mtime": 1788939901.398558, + "mtime": 1788947732.6041238, "ast_hash": "a13808c548eea682533b4f5b76c11ce4", "semantic_hash": "a13808c548eea682533b4f5b76c11ce4" }, "remix/app/routes/api/v1/chats/messages/_messages.tsx": { - "mtime": 1788939901.3986647, + "mtime": 1788947732.6041238, "ast_hash": "5e67961419b6adfeee7433443d4ddac2", "semantic_hash": "5e67961419b6adfeee7433443d4ddac2" }, "remix/app/routes/api/v1/chats/messages/delete/_delete.tsx": { - "mtime": 1788939901.3987856, + "mtime": 1788947732.6044257, "ast_hash": "aed03ef872504777fc57f281672d899f", "semantic_hash": "aed03ef872504777fc57f281672d899f" }, "remix/app/routes/api/v1/chats/messages/edit/_edit.tsx": { - "mtime": 1788939901.3988967, + "mtime": 1788947732.6044257, "ast_hash": "ac3e04ea931f044eb3bf0cd7e5fad3c6", "semantic_hash": "ac3e04ea931f044eb3bf0cd7e5fad3c6" }, "remix/app/routes/api/v1/chats/react/_react.tsx": { - "mtime": 1788939901.3990197, + "mtime": 1788947732.6044257, "ast_hash": "b98d72e3bc1be804c8042cc7ad2a1096", "semantic_hash": "b98d72e3bc1be804c8042cc7ad2a1096" }, "remix/app/routes/api/v1/chats/read/_read.tsx": { - "mtime": 1788939901.39914, + "mtime": 1788947732.6044257, "ast_hash": "a1f41a922a8d6375c03a5ec087d50331", "semantic_hash": "a1f41a922a8d6375c03a5ec087d50331" }, "remix/app/routes/api/v1/chats/requests/_requests.tsx": { - "mtime": 1788939901.3992581, + "mtime": 1788947732.6044257, "ast_hash": "f26dd3936b0fc026bb5d7bb08ca0b952", "semantic_hash": "f26dd3936b0fc026bb5d7bb08ca0b952" }, "remix/app/routes/api/v1/chats/settings/_settings.tsx": { - "mtime": 1788939901.3993683, + "mtime": 1788947732.6044257, "ast_hash": "fea8b1f3eb013d5f2127e0947b008873", "semantic_hash": "fea8b1f3eb013d5f2127e0947b008873" }, "remix/app/routes/api/v1/chats/update/_update.tsx": { - "mtime": 1788939901.3994823, + "mtime": 1788947732.6044257, "ast_hash": "098cb12a7662f471471e918df4690c12", "semantic_hash": "098cb12a7662f471471e918df4690c12" }, "remix/app/routes/api/v1/chats/updates/_updates.tsx": { - "mtime": 1788939901.399579, + "mtime": 1788947732.6044257, "ast_hash": "bacfd09d6695cfff320997919b731f72", "semantic_hash": "bacfd09d6695cfff320997919b731f72" }, "remix/app/routes/api/v1/communities/_communities.tsx": { - "mtime": 1788939901.3996902, + "mtime": 1788947732.6044257, "ast_hash": "205f58ffb0ab5849c6482c86f2b5bbbf", "semantic_hash": "205f58ffb0ab5849c6482c86f2b5bbbf" }, "remix/app/routes/api/v1/communities/get/_get.tsx": { - "mtime": 1788939901.3998067, + "mtime": 1788947732.6050634, "ast_hash": "6ef2c8fb9f366f926a3a6f441c5d2652", "semantic_hash": "6ef2c8fb9f366f926a3a6f441c5d2652" }, "remix/app/routes/api/v1/communities/invites/_invites.tsx": { - "mtime": 1788939901.3999178, + "mtime": 1788947732.6050634, "ast_hash": "705e5bccf334a2ad5e9e380e58750fa2", "semantic_hash": "705e5bccf334a2ad5e9e380e58750fa2" }, "remix/app/routes/api/v1/communities/join/_join.tsx": { - "mtime": 1788939901.400039, + "mtime": 1788947732.6050634, "ast_hash": "805f0e6391e402e6cbffcffa11e959ef", "semantic_hash": "805f0e6391e402e6cbffcffa11e959ef" }, "remix/app/routes/api/v1/communities/members/_members.tsx": { - "mtime": 1788939901.4001658, + "mtime": 1788947732.6050634, "ast_hash": "3d1fa3355a7b5b2d25f6019b6e841311", "semantic_hash": "3d1fa3355a7b5b2d25f6019b6e841311" }, "remix/app/routes/api/v1/communities/sections/_sections.tsx": { - "mtime": 1788939901.400282, + "mtime": 1788947732.6050634, "ast_hash": "3ac4ab59deb7fca0fa78af8be69a1d76", "semantic_hash": "3ac4ab59deb7fca0fa78af8be69a1d76" }, "remix/app/routes/api/v1/communities/update/_update.tsx": { - "mtime": 1788939901.400392, + "mtime": 1788947732.6050634, "ast_hash": "e1e371a5b39c1c0426b68815a3c443ef", "semantic_hash": "e1e371a5b39c1c0426b68815a3c443ef" }, "remix/app/routes/api/v1/emojis/_emojis.tsx": { - "mtime": 1788939901.408019, + "mtime": 1788947732.6070216, "ast_hash": "b29cd7b6c80b5bc6456ed3926a8c8b45", "semantic_hash": "b29cd7b6c80b5bc6456ed3926a8c8b45" }, "remix/app/routes/api/v1/emojis/delete/_delete.tsx": { - "mtime": 1788939901.4081645, + "mtime": 1788947732.607185, "ast_hash": "919fd8b626af24e7b978f5e042922d5c", "semantic_hash": "919fd8b626af24e7b978f5e042922d5c" }, "remix/app/routes/api/v1/integrations/ci/route/_route.tsx": { - "mtime": 1788939901.4148808, + "mtime": 1788947732.6085858, "ast_hash": "304543f0b3dd9570a2e63fed46437735", "semantic_hash": "304543f0b3dd9570a2e63fed46437735" }, "remix/app/routes/api/v1/notifications/_notifications.tsx": { - "mtime": 1788943126.4547198, + "mtime": 1788948107.4014938, "ast_hash": "1084eda4e0fee1270d0825b6abfc1e6a", "semantic_hash": "" }, "remix/app/routes/api/v1/notifications/email/unsubscribe/_unsubscribe.tsx": { - "mtime": 1788939901.425461, + "mtime": 1788947732.6112885, "ast_hash": "02a26041fd0638e03fa49c556aa01da7", "semantic_hash": "02a26041fd0638e03fa49c556aa01da7" }, "remix/app/routes/api/v1/notifications/email/weekly-summary/_weekly-summary.tsx": { - "mtime": 1788939901.4255686, + "mtime": 1788947732.6112885, "ast_hash": "b9204cc8c45d7a1c343055987867d4c9", "semantic_hash": "b9204cc8c45d7a1c343055987867d4c9" }, "remix/app/routes/api/v1/notifications/read/_read.tsx": { - "mtime": 1788939901.4256818, + "mtime": 1788947732.6112885, "ast_hash": "d57bcd167b616a676a7197e46f2d3877", "semantic_hash": "d57bcd167b616a676a7197e46f2d3877" }, "remix/app/routes/api/v1/notifications/settings/_settings.tsx": { - "mtime": 1788939901.4259198, + "mtime": 1788947732.6112885, "ast_hash": "5c1c9ac31bf2156fd3bee9ed14e9aed4", "semantic_hash": "5c1c9ac31bf2156fd3bee9ed14e9aed4" }, "remix/app/routes/api/v1/things/bulk/_bulk.tsx": { - "mtime": 1788939901.4317005, + "mtime": 1788947732.615214, "ast_hash": "8366064e66e3bac281254b6cc275c6a9", "semantic_hash": "8366064e66e3bac281254b6cc275c6a9" }, "remix/app/routes/api/v1/things/views/_views.tsx": { - "mtime": 1788939901.4365659, + "mtime": 1788947732.6162732, "ast_hash": "b147f624e587dc5e111e696672f30677", "semantic_hash": "b147f624e587dc5e111e696672f30677" }, "remix/app/routes/api/v1/users/connections/_connections.tsx": { - "mtime": 1788939901.4375017, + "mtime": 1788947732.6171734, "ast_hash": "77a68014d09e51086a93ccd3b70239d4", "semantic_hash": "77a68014d09e51086a93ccd3b70239d4" }, "remix/app/routes/api/v1/users/follow/_follow.tsx": { - "mtime": 1788939901.4376295, + "mtime": 1788947732.6171734, "ast_hash": "356f9afe74ca0737a28899adf9683354", "semantic_hash": "356f9afe74ca0737a28899adf9683354" }, "remix/app/routes/api/v1/users/friend/_friend.tsx": { - "mtime": 1788939901.437749, + "mtime": 1788947732.6171734, "ast_hash": "f22f02e62af11045f454eefdb93308b7", "semantic_hash": "f22f02e62af11045f454eefdb93308b7" }, "remix/app/routes/api/v1/users/profile/profileRoute.test.ts": { - "mtime": 1788939901.4384196, + "mtime": 1788947732.6175513, "ast_hash": "307fecb8e129c71fb9309f061a800319", "semantic_hash": "307fecb8e129c71fb9309f061a800319" }, "remix/app/routes/api/v1/users/relationships/_relationships.tsx": { - "mtime": 1788939901.438721, + "mtime": 1788947732.6175513, "ast_hash": "c382f688a5083eb053f55690d93e47fd", "semantic_hash": "c382f688a5083eb053f55690d93e47fd" }, "remix/app/routes/messages.tsx": { - "mtime": 1788939901.467706, + "mtime": 1788947732.624273, "ast_hash": "4409a1df510cc4b5a8cad5a59afafbca", "semantic_hash": "4409a1df510cc4b5a8cad5a59afafbca" }, "remix/app/routes/things.tsx": { - "mtime": 1788939901.471234, + "mtime": 1788947732.625273, "ast_hash": "14e2a7567885ecb163411491b7716986", "semantic_hash": "14e2a7567885ecb163411491b7716986" }, "remix/app/utils/attachmentContentUrl.ts": { - "mtime": 1788939901.48374, + "mtime": 1788947732.6318555, "ast_hash": "2e329c6737467b8819c27b588e039b64", "semantic_hash": "2e329c6737467b8819c27b588e039b64" }, "remix/app/utils/previewBuildFreshness.test.ts": { - "mtime": 1788939901.4888513, + "mtime": 1788947732.632273, "ast_hash": "04a81f7642f5a1d2c65c7c6c6a2be31a", "semantic_hash": "04a81f7642f5a1d2c65c7c6c6a2be31a" }, "remix/app/utils/previewBuildFreshness.ts": { - "mtime": 1788939901.4890897, + "mtime": 1788947732.632273, "ast_hash": "8ef5f7d64e4684eb59068f78f87d696d", "semantic_hash": "8ef5f7d64e4684eb59068f78f87d696d" }, "remix/app/utils/profileMediaUrl.test.ts": { - "mtime": 1788939901.4892707, + "mtime": 1788947732.632273, "ast_hash": "413b78d15ee649096192c3aea23a4502", "semantic_hash": "413b78d15ee649096192c3aea23a4502" }, "remix/app/utils/profileMediaUrl.ts": { - "mtime": 1788939901.489415, + "mtime": 1788947732.632273, "ast_hash": "0026dd9874352ad3b6a3e165795d4450", "semantic_hash": "0026dd9874352ad3b6a3e165795d4450" }, "remix/app/utils/temporaryUserBootstrap.test.ts": { - "mtime": 1788939901.4902406, + "mtime": 1788947732.632273, "ast_hash": "d8bb50a0921712a9afd3970dbda3363e", "semantic_hash": "d8bb50a0921712a9afd3970dbda3363e" }, "remix/app/utils/temporaryUserBootstrap.ts": { - "mtime": 1788939901.4903111, + "mtime": 1788947732.632273, "ast_hash": "793cc8204331802c0089430e32eca1c7", "semantic_hash": "793cc8204331802c0089430e32eca1c7" }, "remix/app/utils/userIdentity.test.ts": { - "mtime": 1788939901.4903963, + "mtime": 1788947732.632273, "ast_hash": "22dbc328ae72f21976e4b2b2dbd48d9d", "semantic_hash": "22dbc328ae72f21976e4b2b2dbd48d9d" }, "remix/app/utils/userIdentity.ts": { - "mtime": 1788939901.4904692, + "mtime": 1788947732.632273, "ast_hash": "9794c1e5ee64b8a9e9805aa24c2f9c4e", "semantic_hash": "9794c1e5ee64b8a9e9805aa24c2f9c4e" }, "remix/scripts/ai-model-routing-contract.mjs": { - "mtime": 1788939902.6377447, + "mtime": 1788947732.6760137, "ast_hash": "6de7e828461feab5e5e7ef9b19bc154d", "semantic_hash": "6de7e828461feab5e5e7ef9b19bc154d" }, "remix/scripts/vercel-config.test.mjs": { - "mtime": 1788939902.6442306, + "mtime": 1788947732.6772728, "ast_hash": "3b82897aa3d0cf86a8f9b845e9fb3120", "semantic_hash": "3b82897aa3d0cf86a8f9b845e9fb3120" }, "remix/scripts/verify-messenger.mjs": { - "mtime": 1788939902.6531672, + "mtime": 1788947732.6782727, "ast_hash": "7a337a5914e2a0016d931a80f9b68e01", "semantic_hash": "7a337a5914e2a0016d931a80f9b68e01" }, "PRs/233-codex-fix-develop-preview-dns-gate.md": { - "mtime": 1788939899.998038, + "mtime": 1788947732.1692765, "ast_hash": "30c1b3dee38c0d1b2714198650e6a395", "semantic_hash": "30c1b3dee38c0d1b2714198650e6a395" }, "PRs/154-claude-unified-things-page-796e34--unified-things-page.md": { - "mtime": 1788939899.990134, + "mtime": 1788947732.1676702, "ast_hash": "8bcdd99f7be9c955669ad400e6c73bad", "semantic_hash": "8bcdd99f7be9c955669ad400e6c73bad" }, "PRs/172-followers-friends-notifications-views-4fcfcf-followers-friends-notifications-views.md": { - "mtime": 1788939899.992809, + "mtime": 1788947732.1682765, "ast_hash": "1bac091f31b99443dbeafa2d037a005b", "semantic_hash": "1bac091f31b99443dbeafa2d037a005b" }, "PRs/174-thingtime-messenger-platform-thingtime-messenger-spaces-chats.md": { - "mtime": 1788939899.993247, + "mtime": 1788947732.1682765, "ast_hash": "5466b020efecbcd76be02bc5f148ba5d", "semantic_hash": "5466b020efecbcd76be02bc5f148ba5d" }, "PRs/201-codex-s3-post-attachments--add-private-s3-post-attachments-with-tier-accounting.md": { - "mtime": 1788939899.994959, + "mtime": 1788947732.1692765, "ast_hash": "252329bdec651c6279679c9dd35ea9db", "semantic_hash": "252329bdec651c6279679c9dd35ea9db" }, "PRs/213-codex-auto-resolve-promotion-conflicts-automatically-resolve-promotion-creation-conflicts.md": { - "mtime": 1788939899.996946, + "mtime": 1788947732.1692765, "ast_hash": "3faea0cfa3a917dfc025bb2c2ba7c250", "semantic_hash": "3faea0cfa3a917dfc025bb2c2ba7c250" }, "PRs/220-codex-ci-execution-provider-routing--ci-provider-control-plane-and-vercel-runners.md": { - "mtime": 1788939899.9972024, + "mtime": 1788947732.1692765, "ast_hash": "ba24f7077aacee78eb72f7d21843c8f1", "semantic_hash": "ba24f7077aacee78eb72f7d21843c8f1" }, "PRs/229-codex-web-ci-required-context-develop-ci-keep-develop-web-ci-required-contexts-reportable.md": { - "mtime": 1788939899.9975944, + "mtime": 1788947732.1692765, "ast_hash": "3da7e4aa3d2221b2b498d61bc2831bda", "semantic_hash": "3da7e4aa3d2221b2b498d61bc2831bda" }, "PRs/232-codex-media-gallery-profile-attachments--add-media-galleries-and-managed-profile-attachments.md": { - "mtime": 1788939899.9977367, + "mtime": 1788947732.1692765, "ast_hash": "b59b6b60541297f64e8dd0d70d690899", "semantic_hash": "b59b6b60541297f64e8dd0d70d690899" }, "PRs/237-codex-conversation-media-attachments--add-media-attachments-across-conversations.md": { - "mtime": 1788939899.9982004, + "mtime": 1788947732.1702764, "ast_hash": "312e45e3553f82519b95887568571bc5", "semantic_hash": "312e45e3553f82519b95887568571bc5" }, "remix/app/api/utils/rateLimit/config.test.ts": { - "mtime": 1788939901.165489, + "mtime": 1788947732.5411015, "ast_hash": "d72f96f44a2746adea431844b503bc65", "semantic_hash": "d72f96f44a2746adea431844b503bc65" }, "remix/app/components/Commander/commanderLiteral.test.ts": { - "mtime": 1788939901.2177527, + "mtime": 1788947732.5582736, "ast_hash": "2c6d4f0df28a21e1fc9d334a52b33323", "semantic_hash": "2c6d4f0df28a21e1fc9d334a52b33323" }, "remix/app/components/Commander/commanderLiteral.ts": { - "mtime": 1788939901.2178552, + "mtime": 1788947732.5582736, "ast_hash": "f7b5959d21a0e5d41b0f8069655ca9e9", "semantic_hash": "f7b5959d21a0e5d41b0f8069655ca9e9" }, "remix/public/tt-boot.js": { - "mtime": 1788939902.6365335, + "mtime": 1788947732.6760137, "ast_hash": "7e08bf7a58d2433e6188d289b517071a", "semantic_hash": "7e08bf7a58d2433e6188d289b517071a" }, "remix/scripts/csp.mjs": { - "mtime": 1788939902.6382878, + "mtime": 1788947732.6762636, "ast_hash": "9613cd018c2cd19405478d13e2ae3f0f", "semantic_hash": "9613cd018c2cd19405478d13e2ae3f0f" }, "remix/app/api/utils/auth/publicUploads.test.ts": { - "mtime": 1788939901.0854347, + "mtime": 1788947732.5152738, "ast_hash": "545f13343545405cf8100f585a90aacb", "semantic_hash": "545f13343545405cf8100f585a90aacb" }, "remix/app/routes/api/v1/admin/users/public-uploads/_public-uploads.tsx": { - "mtime": 1788939901.3694305, + "mtime": 1788947732.599058, "ast_hash": "a8a87aab3d849355cc136197793bf896", "semantic_hash": "a8a87aab3d849355cc136197793bf896" }, "PRs/99-claude-eval-csp-hardening--persisted-state-csp-register-body-cap.md": { - "mtime": 1788939900.0283294, + "mtime": 1788947732.1762764, "ast_hash": "9d27992876f8ec143af3b897330cc0ab", "semantic_hash": "9d27992876f8ec143af3b897330cc0ab" }, "remix/app/api/utils/moderation/analyzeAttachment.ts": { - "mtime": 1788939901.1489866, + "mtime": 1788947732.5362737, "ast_hash": "5b7558151373f307a1c6ef39f17865fc", "semantic_hash": "5b7558151373f307a1c6ef39f17865fc" }, "remix/app/api/utils/moderation/analyzeText.ts": { - "mtime": 1788939901.14924, + "mtime": 1788947732.537022, "ast_hash": "05b61a1687e8093ded2ba08d3e94df33", "semantic_hash": "05b61a1687e8093ded2ba08d3e94df33" }, "remix/app/api/utils/moderation/claudeProvider.ts": { - "mtime": 1788939901.149478, + "mtime": 1788947732.537022, "ast_hash": "2591f58acd89eed5e36041b43729eb9d", "semantic_hash": "2591f58acd89eed5e36041b43729eb9d" }, "remix/app/api/utils/moderation/moderation.test.ts": { - "mtime": 1788939901.1507757, + "mtime": 1788947732.537022, "ast_hash": "234276735f19dd94e84fad8f2ef4f37c", "semantic_hash": "234276735f19dd94e84fad8f2ef4f37c" }, "remix/app/api/utils/moderation/moderationAdmin.ts": { - "mtime": 1788939901.1509974, + "mtime": 1788947732.537022, "ast_hash": "d3cb441fb6273823f87e6cf745739980", "semantic_hash": "d3cb441fb6273823f87e6cf745739980" }, "remix/app/api/utils/moderation/moderationCore.ts": { - "mtime": 1788939901.1513271, + "mtime": 1788947732.537022, "ast_hash": "b5c7e3f97e31592958015fd87126bb2f", "semantic_hash": "b5c7e3f97e31592958015fd87126bb2f" }, "remix/app/api/utils/moderation/moderationSettings.test.ts": { - "mtime": 1788939901.151518, + "mtime": 1788947732.5372736, "ast_hash": "c2b3ddf6222ea27508d88071cfe3c26e", "semantic_hash": "c2b3ddf6222ea27508d88071cfe3c26e" }, "remix/app/api/utils/moderation/moderationSettings.ts": { - "mtime": 1788939901.1516376, + "mtime": 1788947732.5372736, "ast_hash": "fa315d1b7b2fee5c34e74b33b1b1fdbb", "semantic_hash": "fa315d1b7b2fee5c34e74b33b1b1fdbb" }, "remix/app/api/utils/moderation/moderationSettingsCore.ts": { - "mtime": 1788939901.151799, + "mtime": 1788947732.5372736, "ast_hash": "237c2d2bd8e45aeac1703dda0fcea6df", "semantic_hash": "237c2d2bd8e45aeac1703dda0fcea6df" }, "remix/app/api/utils/moderation/openaiModeration.test.ts": { - "mtime": 1788939901.1519375, + "mtime": 1788947732.5372736, "ast_hash": "25c44a4a1f3fa9ad0437277c27231740", "semantic_hash": "25c44a4a1f3fa9ad0437277c27231740" }, "remix/app/api/utils/moderation/openaiProvider.ts": { - "mtime": 1788939901.1520615, + "mtime": 1788947732.5372736, "ast_hash": "427ac818d5f1cfa83cc0b3e7fce17fac", "semantic_hash": "427ac818d5f1cfa83cc0b3e7fce17fac" }, "remix/app/api/utils/moderation/providers.ts": { - "mtime": 1788939901.1535425, + "mtime": 1788947732.5372736, "ast_hash": "8253228c4bf1b135cab1d8733a302868", "semantic_hash": "8253228c4bf1b135cab1d8733a302868" }, "remix/app/api/utils/moderation/textModeration.ts": { - "mtime": 1788939901.1545875, + "mtime": 1788947732.5372736, "ast_hash": "d42e784a92598db764de528eb9dc00c7", "semantic_hash": "d42e784a92598db764de528eb9dc00c7" }, "remix/app/components/Admin/ModerationTab.tsx": { - "mtime": 1788939901.1966958, + "mtime": 1788947732.5512736, "ast_hash": "c32e06349443730ddfb737d26bde5f7a", "semantic_hash": "c32e06349443730ddfb737d26bde5f7a" }, "remix/app/routes/api/v1/admin/moderation/_moderation.tsx": { - "mtime": 1788939901.3665059, + "mtime": 1788947732.5983634, "ast_hash": "7a3871cac8317680283d324402bf0394", "semantic_hash": "7a3871cac8317680283d324402bf0394" }, "remix/app/routes/api/v1/moderation/sweep/_sweep.tsx": { - "mtime": 1788939901.4194398, + "mtime": 1788947732.610188, "ast_hash": "4a1f0450667e838a4cbc79ca2e7b28da", "semantic_hash": "4a1f0450667e838a4cbc79ca2e7b28da" }, "remix/app/api/utils/messenger/relationshipUniqueKeys.test.ts": { - "mtime": 1788939901.1354845, + "mtime": 1788947732.5282738, "ast_hash": "9aa4ea190b8428fb2b581473ce3fcb23", "semantic_hash": "9aa4ea190b8428fb2b581473ce3fcb23" }, "PRs/308-claude-nsfw-tos-media-moderation--nsfw-tos-media-moderation-pipeline.md": { - "mtime": 1788939900.0024848, + "mtime": 1788947732.1712763, "ast_hash": "9d1e3fa3413322fac4de7ef93ee42dd5", "semantic_hash": "9d1e3fa3413322fac4de7ef93ee42dd5" }, "PRs/325-claude-relationship-unique-keys.md": { - "mtime": 1788939900.0036478, + "mtime": 1788947732.1712763, "ast_hash": "bb716cc16b7cfca51c86cdcd219b309d", "semantic_hash": "bb716cc16b7cfca51c86cdcd219b309d" }, "docs/ai-api-cost-analysis.md": { - "mtime": 1788939900.084706, + "mtime": 1788947732.19786, "ast_hash": "8b17b0376e825ca018cc44d232c0cbfe", "semantic_hash": "8b17b0376e825ca018cc44d232c0cbfe" }, "PRs/326-claude-crystal-reservation-removal.md": { - "mtime": 1788939900.0038586, + "mtime": 1788947732.1722765, "ast_hash": "7fad0187d9d964eae454807c4090886c", "semantic_hash": "7fad0187d9d964eae454807c4090886c" }, "remix/app/components/Attachments/AttachmentAnnotatePopover.tsx": { - "mtime": 1788939901.2034228, + "mtime": 1788947732.5531278, "ast_hash": "60429074453755ae6a1477c68fbfdc09", "semantic_hash": "60429074453755ae6a1477c68fbfdc09" }, "remix/app/components/Attachments/AttachmentReorderGallery.tsx": { - "mtime": 1788939901.2046182, + "mtime": 1788947732.5533717, "ast_hash": "d10dd009bdbd0196bc5efd57a744e1d4", "semantic_hash": "d10dd009bdbd0196bc5efd57a744e1d4" }, "remix/app/components/Attachments/MediaLayoutControls.tsx": { - "mtime": 1788939901.2051356, + "mtime": 1788947732.5533717, "ast_hash": "62c79a994af07ef319bbbfd384d1c2a4", "semantic_hash": "62c79a994af07ef319bbbfd384d1c2a4" }, "remix/app/components/Attachments/MediaLightbox.tsx": { - "mtime": 1788939901.205306, + "mtime": 1788947732.5533717, "ast_hash": "0108b9548348a1aa8e85c2acadfd0240", "semantic_hash": "0108b9548348a1aa8e85c2acadfd0240" }, "remix/app/components/Media/useMediaReorder.ts": { - "mtime": 1788939901.2622414, + "mtime": 1788947732.5744383, "ast_hash": "b9268b10271864393d353116acb9aff8", "semantic_hash": "b9268b10271864393d353116acb9aff8" }, "remix/app/routes/api/v1/attachments/annotate/_annotate.tsx": { - "mtime": 1788939901.3754156, + "mtime": 1788947732.6011593, "ast_hash": "b951d8e7dc9a25270a46f95df8872813", "semantic_hash": "b951d8e7dc9a25270a46f95df8872813" }, "remix/app/routes/api/v1/attachments/backfill-detected-types/_backfill-detected-types.tsx": { - "mtime": 1788939901.3759005, + "mtime": 1788947732.6011593, "ast_hash": "2c1a11e8127ed439d34fa5f7380566b0", "semantic_hash": "2c1a11e8127ed439d34fa5f7380566b0" }, "remix/app/routes/media.tsx": { - "mtime": 1788939901.4676263, + "mtime": 1788947732.624273, "ast_hash": "cc1f77240d1bd95db328f290474ba0d6", "semantic_hash": "cc1f77240d1bd95db328f290474ba0d6" }, "remix/app/schemas/mediaLayout.test.ts": { - "mtime": 1788939901.4745488, + "mtime": 1788947732.627273, "ast_hash": "2e16deb6b15f784901d2752789aac825", "semantic_hash": "2e16deb6b15f784901d2752789aac825" }, "PRs/312-claude-media-thing-pages--media-thing-pages-and-layouts.md": { - "mtime": 1788939900.0026035, + "mtime": 1788947732.1712763, "ast_hash": "1606568a46b77f24267dcbb2c8902319", "semantic_hash": "1606568a46b77f24267dcbb2c8902319" }, "PRs/321-claude-attachment-detected-type-backfill.md": { - "mtime": 1788939900.0035698, + "mtime": 1788947732.1712763, "ast_hash": "f2775d781f0ff841a24b3de5bef4a2bb", "semantic_hash": "f2775d781f0ff841a24b3de5bef4a2bb" }, "remix/app/api/utils/auth/accountHints.ts": { - "mtime": 1788939901.081981, + "mtime": 1788947732.513274, "ast_hash": "86c75bd0d6c83501bd28f065828b38fb", "semantic_hash": "86c75bd0d6c83501bd28f065828b38fb" }, "remix/app/api/utils/auth/accountHintsCookie.ts": { - "mtime": 1788939901.0821419, + "mtime": 1788947732.51426, "ast_hash": "50927902e011c0b079d6d57ae5b67065", "semantic_hash": "50927902e011c0b079d6d57ae5b67065" }, "remix/app/api/utils/auth/fedcm.ts": { - "mtime": 1788939901.0837655, + "mtime": 1788947732.514274, "ast_hash": "72136b64aaa0708fabf796c096ffce1e", "semantic_hash": "72136b64aaa0708fabf796c096ffce1e" }, "remix/app/api/utils/auth/passkeyAaguids.ts": { - "mtime": 1788939901.0844579, + "mtime": 1788947732.5152738, "ast_hash": "14a0153ffbabf49b4a5c42e694ce929d", "semantic_hash": "14a0153ffbabf49b4a5c42e694ce929d" }, "remix/app/api/utils/auth/passkeys.ts": { - "mtime": 1788943126.4330416, + "mtime": 1788948107.3944938, "ast_hash": "ed31d7ff52d3d0ccc45d49a2023222ae", "semantic_hash": "" }, "remix/app/api/utils/auth/publicOrigin.ts": { - "mtime": 1788939901.0853531, + "mtime": 1788947732.5152738, "ast_hash": "e31c7702bc1d9be6a61456a202d70dc2", "semantic_hash": "e31c7702bc1d9be6a61456a202d70dc2" }, "remix/app/api/utils/auth/ssoHandoff.ts": { - "mtime": 1788943126.4354975, + "mtime": 1788948107.3944938, "ast_hash": "206e29f48f69c6097c1862395d9df1e6", "semantic_hash": "" }, "remix/app/api/utils/auth/webauthnChallenge.ts": { - "mtime": 1788939901.0893247, + "mtime": 1788947732.516274, "ast_hash": "35a2bf3a54deeb54da79706ce87fa2f9", "semantic_hash": "35a2bf3a54deeb54da79706ce87fa2f9" }, "remix/app/components/Account/AccountHints.tsx": { - "mtime": 1788939901.1890357, + "mtime": 1788947732.5488782, "ast_hash": "8ff4184d3ca803e0cc04c30b932f1632", "semantic_hash": "8ff4184d3ca803e0cc04c30b932f1632" }, "remix/app/components/Account/AutoLoginPopup.tsx": { - "mtime": 1788939901.1894891, + "mtime": 1788947732.5489984, "ast_hash": "e0f1fa2d658268d2bc11502a4e9f148a", "semantic_hash": "e0f1fa2d658268d2bc11502a4e9f148a" }, "remix/app/components/Settings/PasskeysManager.tsx": { - "mtime": 1788939901.3007064, + "mtime": 1788947732.5830266, "ast_hash": "93473f5e5edde44842b2965fad74041f", "semantic_hash": "93473f5e5edde44842b2965fad74041f" }, "remix/app/hooks/usePasskeys.tsx": { - "mtime": 1788939901.3515801, + "mtime": 1788947732.5952733, "ast_hash": "e241eb9a6b2fb65501c3a4785d0f093d", "semantic_hash": "e241eb9a6b2fb65501c3a4785d0f093d" }, "remix/app/routes/api/v1/auth/account-hints/_account-hints.tsx": { - "mtime": 1788939901.3802397, + "mtime": 1788947732.6019113, "ast_hash": "eea6c8c262113e6aa6117cc14a754a9f", "semantic_hash": "eea6c8c262113e6aa6117cc14a754a9f" }, "remix/app/routes/api/v1/auth/account-hints/resolve/_resolve.tsx": { - "mtime": 1788939901.380376, + "mtime": 1788947732.6019852, "ast_hash": "44da7b46694f1dbe4b51bf1b10ebf553", "semantic_hash": "44da7b46694f1dbe4b51bf1b10ebf553" }, "remix/app/routes/api/v1/auth/passkeys/_passkeys.tsx": { - "mtime": 1788939901.3842509, + "mtime": 1788947732.6022732, "ast_hash": "d6e0b32709a796cf216a3b366df22f8b", "semantic_hash": "d6e0b32709a796cf216a3b366df22f8b" }, "remix/app/routes/api/v1/auth/passkeys/delete/_delete.tsx": { - "mtime": 1788939901.3843918, + "mtime": 1788947732.6027403, "ast_hash": "9ac8798b0edb2ff123ba3c8823b20bdd", "semantic_hash": "9ac8798b0edb2ff123ba3c8823b20bdd" }, "remix/app/routes/api/v1/auth/passkeys/login-options/_login-options.tsx": { - "mtime": 1788939901.3847141, + "mtime": 1788947732.6027403, "ast_hash": "19ec89f61bbdf6c44a68ff5a37e13e89", "semantic_hash": "19ec89f61bbdf6c44a68ff5a37e13e89" }, "remix/app/routes/api/v1/auth/passkeys/login/_login.tsx": { - "mtime": 1788939901.3850188, + "mtime": 1788947732.6027403, "ast_hash": "df2109dc0c5ba59f5a996f5cb41ea217", "semantic_hash": "df2109dc0c5ba59f5a996f5cb41ea217" }, "remix/app/routes/api/v1/auth/passkeys/register-options/_register-options.tsx": { - "mtime": 1788939901.387385, + "mtime": 1788947732.6027403, "ast_hash": "2fb77c444eb3fc2fb94f69bb81acf7a5", "semantic_hash": "2fb77c444eb3fc2fb94f69bb81acf7a5" }, "remix/app/routes/api/v1/auth/passkeys/register/_register.tsx": { - "mtime": 1788939901.3882406, + "mtime": 1788947732.6027403, "ast_hash": "4eaccc3d1c598046c9a06005f937319a", "semantic_hash": "4eaccc3d1c598046c9a06005f937319a" }, "remix/app/routes/api/v1/auth/passkeys/revoke/_revoke.tsx": { - "mtime": 1788939901.3884115, + "mtime": 1788947732.6027403, "ast_hash": "5adc264f0ab5223d395d8325c2afd3e7", "semantic_hash": "5adc264f0ab5223d395d8325c2afd3e7" }, "remix/app/routes/api/v1/auth/passkeys/update/_update.tsx": { - "mtime": 1788939901.3885484, + "mtime": 1788947732.6027403, "ast_hash": "c83374fe87fc4f57add0f01a7b83b284", "semantic_hash": "c83374fe87fc4f57add0f01a7b83b284" }, "remix/app/routes/api/v1/auth/sso-handoff/_sso-handoff.tsx": { - "mtime": 1788939901.3975198, + "mtime": 1788947732.6032877, "ast_hash": "4ab3bc66a62ee59b3984e18a29e791d5", "semantic_hash": "4ab3bc66a62ee59b3984e18a29e791d5" }, "remix/app/routes/api/v1/auth/sso-session/_sso-session.tsx": { - "mtime": 1788939901.397636, + "mtime": 1788947732.6032877, "ast_hash": "c075e40daf05c45de3ed774f31ba8a12", "semantic_hash": "c075e40daf05c45de3ed774f31ba8a12" }, "remix/app/routes/api/v1/fedcm/accounts/_accounts.tsx": { - "mtime": 1788939901.4083521, + "mtime": 1788947732.6072738, "ast_hash": "d7f57085c7e758ce97079a7d62dd289e", "semantic_hash": "d7f57085c7e758ce97079a7d62dd289e" }, "remix/app/routes/api/v1/fedcm/assertion/_assertion.tsx": { - "mtime": 1788939901.4085062, + "mtime": 1788947732.6072738, "ast_hash": "84b95d657bd3a81ffbb7c97604ece24c", "semantic_hash": "84b95d657bd3a81ffbb7c97604ece24c" }, "remix/app/routes/api/v1/fedcm/client-metadata/_client-metadata.tsx": { - "mtime": 1788939901.4086428, + "mtime": 1788947732.6072738, "ast_hash": "1ccdfdbe225edc7b979aad729ff6be99", "semantic_hash": "1ccdfdbe225edc7b979aad729ff6be99" }, "remix/app/routes/api/v1/fedcm/config/_config.tsx": { - "mtime": 1788939901.4089267, + "mtime": 1788947732.6072738, "ast_hash": "c8eeddb6b6354bf3369a5c3cfe0efa88", "semantic_hash": "c8eeddb6b6354bf3369a5c3cfe0efa88" }, "remix/scripts/verify-federated-login.mjs": { - "mtime": 1788939902.6521986, + "mtime": 1788947732.6772728, "ast_hash": "1727dfbfa1385beee58c19cdbe1ed033", "semantic_hash": "1727dfbfa1385beee58c19cdbe1ed033" }, "remix/scripts/verify-passkeys.mjs": { - "mtime": 1788939902.6539912, + "mtime": 1788947732.6782727, "ast_hash": "c4bd9df3b1d5a341f728871173953a69", "semantic_hash": "c4bd9df3b1d5a341f728871173953a69" }, "remix/server/routes/.well-known/web-identity.ts": { - "mtime": 1788939902.6610508, + "mtime": 1788947732.6810174, "ast_hash": "fcbe87f0e839d5020f249128abde0d68", "semantic_hash": "fcbe87f0e839d5020f249128abde0d68" }, "iOS/Thingtime/Web/DeploymentPresentation.swift": { - "mtime": 1788939900.9698875, + "mtime": 1788947732.4848702, "ast_hash": "d01eb06b452c32d3f17b0c238fa65e6a", "semantic_hash": "d01eb06b452c32d3f17b0c238fa65e6a" }, "iOS/Thingtime/Web/DestinationPickerDrawer.swift": { - "mtime": 1788939900.970216, + "mtime": 1788947732.4851289, "ast_hash": "e15eef712e82c5c67a64f8bfc1fc349c", "semantic_hash": "e15eef712e82c5c67a64f8bfc1fc349c" }, "iOS/Thingtime/Web/DestinationPickerRows.swift": { - "mtime": 1788939900.9703748, + "mtime": 1788947732.4851289, "ast_hash": "b42a667e70b8fbdcafb7609557143ea7", "semantic_hash": "b42a667e70b8fbdcafb7609557143ea7" }, "iOS/ThingtimeTests/ThingtimeAppConfigurationTests.swift": { - "mtime": 1788939900.9722512, + "mtime": 1788947732.485274, "ast_hash": "13fa3b96db2685388d44e45fd7a3c994", "semantic_hash": "13fa3b96db2685388d44e45fd7a3c994" }, "remix/app/api/utils/apps/desktopOAuth.ts": { - "mtime": 1788939901.0737362, + "mtime": 1788947732.510274, "ast_hash": "850f361f2753387313124ed00fed71b0", "semantic_hash": "850f361f2753387313124ed00fed71b0" }, "remix/app/api/utils/apps/desktopOAuthCore.test.ts": { - "mtime": 1788939901.0744214, + "mtime": 1788947732.510274, "ast_hash": "44f62c706eaba75edc77ae75d3d205e3", "semantic_hash": "44f62c706eaba75edc77ae75d3d205e3" }, "remix/app/api/utils/apps/desktopOAuthCore.ts": { - "mtime": 1788939901.074657, + "mtime": 1788947732.5112739, "ast_hash": "0e6c07b5e8d4d1b8800d411cee753532", "semantic_hash": "0e6c07b5e8d4d1b8800d411cee753532" }, "remix/app/api/utils/apps/desktopOAuthRedirect.ts": { - "mtime": 1788939901.074823, + "mtime": 1788947732.5112739, "ast_hash": "f1dd14d6cd69a8cadcd8fde7d4da5062", "semantic_hash": "f1dd14d6cd69a8cadcd8fde7d4da5062" }, "remix/app/api/utils/auth/credentialPurpose.ts": { - "mtime": 1788939901.0834036, + "mtime": 1788947732.514274, "ast_hash": "80207eb68e37be80accb0b2c9389701a", "semantic_hash": "80207eb68e37be80accb0b2c9389701a" }, "remix/app/api/utils/vercel/status.test.ts": { - "mtime": 1788939901.1840012, + "mtime": 1788947732.5476372, "ast_hash": "84c9f4e852bf76cb80a070a6398053b3", "semantic_hash": "84c9f4e852bf76cb80a070a6398053b3" }, "remix/app/routes/api/v1/oauth/desktop/authorize/_authorize.tsx": { - "mtime": 1788939901.4265578, + "mtime": 1788947732.611705, "ast_hash": "3438ccfc6ed0016b129b45984354cd24", "semantic_hash": "3438ccfc6ed0016b129b45984354cd24" }, "PRs/login-with-thingtime-anywhere.md": { - "mtime": 1788939900.0287373, + "mtime": 1788947732.1772764, "ast_hash": "8b28af5e9fba66136769066c1d440e18", "semantic_hash": "8b28af5e9fba66136769066c1d440e18" }, "PRs/passkeys-and-auto-login.md": { - "mtime": 1788939900.0292685, + "mtime": 1788947732.1772764, "ast_hash": "eca664cb79f2c30a170f4b5c20f6bdce", "semantic_hash": "eca664cb79f2c30a170f4b5c20f6bdce" }, "PRs/293-codex-ios-drawer-camera-crash--fix-ios-drawer-camera-and-deployment-history.md": { - "mtime": 1788939900.0002277, + "mtime": 1788947732.1702764, "ast_hash": "dae553dcd2de0233756ca8e557384b39", "semantic_hash": "dae553dcd2de0233756ca8e557384b39" }, "remix/app/api/utils/messenger/bulkWriteError.test.ts": { - "mtime": 1788939901.132527, + "mtime": 1788947732.5276182, "ast_hash": "36dbf93d724deaebfbaad920b2f996b6", "semantic_hash": "36dbf93d724deaebfbaad920b2f996b6" }, "remix/app/api/utils/messenger/bulkWriteError.ts": { - "mtime": 1788939901.1327682, + "mtime": 1788947732.5276182, "ast_hash": "bc60ff0f9914d6aa1494f8700bf3eeab", "semantic_hash": "bc60ff0f9914d6aa1494f8700bf3eeab" }, "remix/app/api/utils/things/relatedProjection.test.ts": { - "mtime": 1788939901.1757042, + "mtime": 1788947732.5445237, "ast_hash": "3bd12da71df352dec18be3dc391f7e13", "semantic_hash": "3bd12da71df352dec18be3dc391f7e13" }, "PRs/299-claude-thingtime-performance-optimization-55ea95-performance-audit-findings-notes-and-fixes.md": { - "mtime": 1788939900.001959, + "mtime": 1788947732.1712763, "ast_hash": "04f80b4e73df59b6b75941f3b19b09c3", "semantic_hash": "04f80b4e73df59b6b75941f3b19b09c3" }, "performance/README.md": { - "mtime": 1788939901.0351477, + "mtime": 1788947732.495274, "ast_hash": "70ab01b8eec165ed60f03f58e15f44d4", "semantic_hash": "70ab01b8eec165ed60f03f58e15f44d4" }, "performance/TODO.md": { - "mtime": 1788939901.0355206, + "mtime": 1788947732.4957223, "ast_hash": "206103177ef24727b10304e655440e4c", "semantic_hash": "206103177ef24727b10304e655440e4c" }, ".github/workflows/electron-pr-release.yml": { - "mtime": 1788939899.7012742, + "mtime": 1788947732.074611, "ast_hash": "614c30a34120ab7908e9160b4b923b65", "semantic_hash": "614c30a34120ab7908e9160b4b923b65" }, "remix/app/components/Schemas/migrationUiCore.test.ts": { - "mtime": 1788939901.2960224, + "mtime": 1788947732.5812733, "ast_hash": "5e44084a3c719d1d8d43262444018af8", "semantic_hash": "5e44084a3c719d1d8d43262444018af8" }, "remix/app/components/Schemas/migrationUiCore.ts": { - "mtime": 1788939901.2960927, + "mtime": 1788947732.5812733, "ast_hash": "551f63b8339349d3a82bb663bd7d9590", "semantic_hash": "551f63b8339349d3a82bb663bd7d9590" }, ".github/workflows/codeql-analysis.yml": { - "mtime": 1788939899.6993484, + "mtime": 1788947732.0745459, "ast_hash": "c1bb1c141fc9fad6e3590377fdfbd693", "semantic_hash": "c1bb1c141fc9fad6e3590377fdfbd693" }, "PRs/397-promote-pr-394-codeql-all-branches-to-main-lopu-codeql-all-targets.md": { - "mtime": 1788939900.0050135, + "mtime": 1788947732.1722765, "ast_hash": "83b5f595906f6077d12587976b8a1c1b", "semantic_hash": "83b5f595906f6077d12587976b8a1c1b" }, "TODO/claude-todo/18-account-invite-links.md": { - "mtime": 1788939900.0407565, + "mtime": 1788947732.1813653, "ast_hash": "7b0514efa0d9ce5612f9b97e4c04eb7e", "semantic_hash": "7b0514efa0d9ce5612f9b97e4c04eb7e" }, "TODO/claude-todo/19-anonymous-group-chats.md": { - "mtime": 1788939900.0409002, + "mtime": 1788947732.1822762, "ast_hash": "8da48b50cf586c4bb2db4d861a218ece", "semantic_hash": "8da48b50cf586c4bb2db4d861a218ece" }, "remix/app/components/Branding/BrandAssetSection.tsx": { - "mtime": 1788939901.2069457, + "mtime": 1788947732.5542736, "ast_hash": "bfa08175c8c8c8c2837efcea49296780", "semantic_hash": "bfa08175c8c8c8c2837efcea49296780" }, "remix/app/components/Branding/BrandPressKit.tsx": { - "mtime": 1788939901.2070305, + "mtime": 1788947732.5546892, "ast_hash": "ea527556adca291a0e945f071ede0ba5", "semantic_hash": "ea527556adca291a0e945f071ede0ba5" }, "remix/app/components/Branding/brandingAssets.generated.json": { - "mtime": 1788939901.207774, + "mtime": 1788947732.5546892, "ast_hash": "59c622fc330b8bcec28f0fb8a369f156", "semantic_hash": "59c622fc330b8bcec28f0fb8a369f156" }, "remix/app/components/Branding/brandingAssetsData.ts": { - "mtime": 1788939901.208193, + "mtime": 1788947732.5546892, "ast_hash": "86e824aaec0c6bad3312dec73b376da1", "semantic_hash": "86e824aaec0c6bad3312dec73b376da1" }, "remix/app/components/Branding/brandingExport.ts": { - "mtime": 1788939901.2085662, + "mtime": 1788947732.5546892, "ast_hash": "21fa9f79fb1bd544a676d337da3fcc76", "semantic_hash": "21fa9f79fb1bd544a676d337da3fcc76" }, "remix/app/components/Branding/logoMatrix.test.ts": { - "mtime": 1788939901.2087088, + "mtime": 1788947732.5546892, "ast_hash": "6bfd0390bb0c92d6a60fb0ea55b450bd", "semantic_hash": "6bfd0390bb0c92d6a60fb0ea55b450bd" }, "remix/app/components/Branding/logoMatrix.ts": { - "mtime": 1788939901.2088566, + "mtime": 1788947732.5546892, "ast_hash": "ca3b2ed33521fab413daf03dcc7385c7", "semantic_hash": "ca3b2ed33521fab413daf03dcc7385c7" }, "remix/scripts/generate-branding-assets.mjs": { - "mtime": 1788939902.6400456, + "mtime": 1788947732.6762726, "ast_hash": "81a0eb63413c26ec2fcf2759362c2fe1", "semantic_hash": "81a0eb63413c26ec2fcf2759362c2fe1" }, "PRs/129-claude-todo08-branding-svg-png-s1--branding-brand-resources-redesign.md": { - "mtime": 1788939899.989597, + "mtime": 1788947732.1672764, "ast_hash": "4ea5777901e6c2b86eaeae9dd8530b29", "semantic_hash": "4ea5777901e6c2b86eaeae9dd8530b29" }, "remix/public/branding/generated/icon-pink/thingtime-icon-pink-10000x10000.png": { - "mtime": 1788939902.5164127, + "mtime": 1788947732.6502728, "ast_hash": "58d5bd16e058be37f5d79745bca2d715", "semantic_hash": "58d5bd16e058be37f5d79745bca2d715" }, "remix/public/branding/generated/icon-pink/thingtime-icon-pink-1000x1000.png": { - "mtime": 1788939902.5173879, + "mtime": 1788947732.6502728, "ast_hash": "df19ef905fe0846f15f05081fcae5a1b", "semantic_hash": "df19ef905fe0846f15f05081fcae5a1b" }, "remix/public/branding/generated/icon-pink/thingtime-icon-pink-100x100.png": { - "mtime": 1788939902.5177982, + "mtime": 1788947732.6502728, "ast_hash": "7ba13cf3fe5c1913fd65ba82e057776c", "semantic_hash": "7ba13cf3fe5c1913fd65ba82e057776c" }, "remix/public/branding/generated/icon-pink/thingtime-icon-pink-1024x1024.png": { - "mtime": 1788939902.518403, + "mtime": 1788947732.6502728, "ast_hash": "522b1d6eadd8da29e2a793e39959850d", "semantic_hash": "522b1d6eadd8da29e2a793e39959850d" }, "remix/public/branding/generated/icon-pink/thingtime-icon-pink-10x10.png": { - "mtime": 1788939902.5184839, + "mtime": 1788947732.6502728, "ast_hash": "0fc6ea3feb92cabe912d3a7c4ac89230", "semantic_hash": "0fc6ea3feb92cabe912d3a7c4ac89230" }, "remix/public/branding/generated/icon-pink/thingtime-icon-pink-128x128.png": { - "mtime": 1788939902.5185726, + "mtime": 1788947732.6502728, "ast_hash": "aecbc18223db79844d9ce5efb4c85925", "semantic_hash": "aecbc18223db79844d9ce5efb4c85925" }, "remix/public/branding/generated/icon-pink/thingtime-icon-pink-16x16.png": { - "mtime": 1788939902.5187347, + "mtime": 1788947732.6502728, "ast_hash": "e1433c591a330e96e6aeae33ce6b04aa", "semantic_hash": "e1433c591a330e96e6aeae33ce6b04aa" }, "remix/public/branding/generated/icon-pink/thingtime-icon-pink-2000x2000.png": { - "mtime": 1788939902.5222375, + "mtime": 1788947732.6502728, "ast_hash": "96b163f8153dc1657d7375ce7a93969a", "semantic_hash": "96b163f8153dc1657d7375ce7a93969a" }, "remix/public/branding/generated/icon-pink/thingtime-icon-pink-200x200.png": { - "mtime": 1788939902.5224683, + "mtime": 1788947732.6502728, "ast_hash": "153d8aee8e86e8e1fb4c17138945bc7d", "semantic_hash": "153d8aee8e86e8e1fb4c17138945bc7d" }, "remix/public/branding/generated/icon-pink/thingtime-icon-pink-2048x2048.png": { - "mtime": 1788939902.522583, + "mtime": 1788947732.6502728, "ast_hash": "5283d572ccfb2f49728c54374b5ef24d", "semantic_hash": "5283d572ccfb2f49728c54374b5ef24d" }, "remix/public/branding/generated/icon-pink/thingtime-icon-pink-256x256.png": { - "mtime": 1788939902.5226846, + "mtime": 1788947732.6502728, "ast_hash": "c05b718eb14106e909b7aa2f1ac21467", "semantic_hash": "c05b718eb14106e909b7aa2f1ac21467" }, "remix/public/branding/generated/icon-pink/thingtime-icon-pink-32x32.png": { - "mtime": 1788939902.5229867, + "mtime": 1788947732.6502728, "ast_hash": "b0d083bd93f596b8e2c92c725d95292a", "semantic_hash": "b0d083bd93f596b8e2c92c725d95292a" }, "remix/public/branding/generated/icon-pink/thingtime-icon-pink-4096x4096.png": { - "mtime": 1788939902.5239816, + "mtime": 1788947732.6502728, "ast_hash": "282c8aa628c78adda9d506bdde3937c2", "semantic_hash": "282c8aa628c78adda9d506bdde3937c2" }, "remix/public/branding/generated/icon-pink/thingtime-icon-pink-5000x5000.png": { - "mtime": 1788939902.524383, + "mtime": 1788947732.6502728, "ast_hash": "7dee25c21215fe9f231158d78db70fa9", "semantic_hash": "7dee25c21215fe9f231158d78db70fa9" }, "remix/public/branding/generated/icon-pink/thingtime-icon-pink-500x500.png": { - "mtime": 1788939902.5246892, + "mtime": 1788947732.6502728, "ast_hash": "5f1186d4d73267f1480cbff8f08b4943", "semantic_hash": "5f1186d4d73267f1480cbff8f08b4943" }, "remix/public/branding/generated/icon-pink/thingtime-icon-pink-50x50.png": { - "mtime": 1788939902.525075, + "mtime": 1788947732.6502728, "ast_hash": "b19b553862ca59c70217570722fe7de7", "semantic_hash": "b19b553862ca59c70217570722fe7de7" }, "remix/public/branding/generated/icon-pink/thingtime-icon-pink-512x512.png": { - "mtime": 1788939902.5254335, + "mtime": 1788947732.6502728, "ast_hash": "bb7421a95a90ef16074086b39c61e69d", "semantic_hash": "bb7421a95a90ef16074086b39c61e69d" }, "remix/public/branding/generated/icon-pink/thingtime-icon-pink-64x64.png": { - "mtime": 1788939902.525623, + "mtime": 1788947732.6502728, "ast_hash": "4deb7a80fc342c68b782c4045b9dbe93", "semantic_hash": "4deb7a80fc342c68b782c4045b9dbe93" }, "remix/public/branding/generated/icon-pink/thingtime-icon-pink-8192x8192.png": { - "mtime": 1788939902.526237, + "mtime": 1788947732.651273, "ast_hash": "176e880d81ded694a8d02444d07b4ddb", "semantic_hash": "176e880d81ded694a8d02444d07b4ddb" }, "remix/public/branding/generated/icon-pink/thingtime-icon-pink.svg": { - "mtime": 1788939902.5266383, + "mtime": 1788947732.651273, "ast_hash": "3a82a2026b838f8563bd1247f5c707df", "semantic_hash": "3a82a2026b838f8563bd1247f5c707df" }, "remix/public/branding/generated/icon/thingtime-icon-10000x10000.png": { - "mtime": 1788939902.5272534, + "mtime": 1788947732.651273, "ast_hash": "b94bc37e3e0ff78585fff3617bc058f9", "semantic_hash": "b94bc37e3e0ff78585fff3617bc058f9" }, "remix/public/branding/generated/icon/thingtime-icon-1000x1000.png": { - "mtime": 1788939902.527707, + "mtime": 1788947732.6521358, "ast_hash": "9dfa0b80cb9419127fdf03a9fe2506c4", "semantic_hash": "9dfa0b80cb9419127fdf03a9fe2506c4" }, "remix/public/branding/generated/icon/thingtime-icon-100x100.png": { - "mtime": 1788939902.527937, + "mtime": 1788947732.6521358, "ast_hash": "1c41be1a7acfdffd830299dcd14d5fc5", "semantic_hash": "1c41be1a7acfdffd830299dcd14d5fc5" }, "remix/public/branding/generated/icon/thingtime-icon-1024x1024.png": { - "mtime": 1788939902.52804, + "mtime": 1788947732.6521358, "ast_hash": "55c0e660b5ee698f59df0bff140c6da8", "semantic_hash": "55c0e660b5ee698f59df0bff140c6da8" }, "remix/public/branding/generated/icon/thingtime-icon-10x10.png": { - "mtime": 1788939902.5282125, + "mtime": 1788947732.6521358, "ast_hash": "3f7b961e200f52d564007b70e6c39624", "semantic_hash": "3f7b961e200f52d564007b70e6c39624" }, "remix/public/branding/generated/icon/thingtime-icon-128x128.png": { - "mtime": 1788939902.5285628, + "mtime": 1788947732.6521358, "ast_hash": "7b3419132d5bf6d2ef8d8cfb5c1fc035", "semantic_hash": "7b3419132d5bf6d2ef8d8cfb5c1fc035" }, "remix/public/branding/generated/icon/thingtime-icon-16x16.png": { - "mtime": 1788939902.528814, + "mtime": 1788947732.6521358, "ast_hash": "2928f27f3a279a6b6be5a25ab2b8a57a", "semantic_hash": "2928f27f3a279a6b6be5a25ab2b8a57a" }, "remix/public/branding/generated/icon/thingtime-icon-2000x2000.png": { - "mtime": 1788939902.5295455, + "mtime": 1788947732.6521358, "ast_hash": "e3f750ee0e0b07dcc9c6758e0889e61b", "semantic_hash": "e3f750ee0e0b07dcc9c6758e0889e61b" }, "remix/public/branding/generated/icon/thingtime-icon-200x200.png": { - "mtime": 1788939902.5298457, + "mtime": 1788947732.6521358, "ast_hash": "401b75fbbd17c93e65c1510344ac0452", "semantic_hash": "401b75fbbd17c93e65c1510344ac0452" }, "remix/public/branding/generated/icon/thingtime-icon-2048x2048.png": { - "mtime": 1788939902.5300734, + "mtime": 1788947732.652273, "ast_hash": "e5b6b5ad2a9f570275c3f2f0d5d90dbd", "semantic_hash": "e5b6b5ad2a9f570275c3f2f0d5d90dbd" }, "remix/public/branding/generated/icon/thingtime-icon-256x256.png": { - "mtime": 1788939902.5304465, + "mtime": 1788947732.652273, "ast_hash": "d6e04d1bd310ffa056348b1754c835f8", "semantic_hash": "d6e04d1bd310ffa056348b1754c835f8" }, "remix/public/branding/generated/icon/thingtime-icon-32x32.png": { - "mtime": 1788939902.5305362, + "mtime": 1788947732.652273, "ast_hash": "ee95af154104b4afb9b4d3daf36466c2", "semantic_hash": "ee95af154104b4afb9b4d3daf36466c2" }, "remix/public/branding/generated/icon/thingtime-icon-4096x4096.png": { - "mtime": 1788939902.5308294, + "mtime": 1788947732.652273, "ast_hash": "f8e796657b0a3e89a5a7f375c7bab878", "semantic_hash": "f8e796657b0a3e89a5a7f375c7bab878" }, "remix/public/branding/generated/icon/thingtime-icon-5000x5000.png": { - "mtime": 1788939902.5309863, + "mtime": 1788947732.652273, "ast_hash": "5292c5956c328d508d38d4a5cb8865c4", "semantic_hash": "5292c5956c328d508d38d4a5cb8865c4" }, "remix/public/branding/generated/icon/thingtime-icon-500x500.png": { - "mtime": 1788939902.5312617, + "mtime": 1788947732.652273, "ast_hash": "a667a3d5b9931186cab3bb9b45f0c589", "semantic_hash": "a667a3d5b9931186cab3bb9b45f0c589" }, "remix/public/branding/generated/icon/thingtime-icon-50x50.png": { - "mtime": 1788939902.5313883, + "mtime": 1788947732.652273, "ast_hash": "a3d93acd0a91b0bcf2d223b46312e3a7", "semantic_hash": "a3d93acd0a91b0bcf2d223b46312e3a7" }, "remix/public/branding/generated/icon/thingtime-icon-512x512.png": { - "mtime": 1788939902.5315554, + "mtime": 1788947732.652273, "ast_hash": "ebad98dd6318752d55cbe12022839573", "semantic_hash": "ebad98dd6318752d55cbe12022839573" }, "remix/public/branding/generated/icon/thingtime-icon-64x64.png": { - "mtime": 1788939902.5317187, + "mtime": 1788947732.652273, "ast_hash": "7656142d7b55faae15af6d2a9b989464", "semantic_hash": "7656142d7b55faae15af6d2a9b989464" }, "remix/public/branding/generated/icon/thingtime-icon-8192x8192.png": { - "mtime": 1788939902.5329041, + "mtime": 1788947732.652273, "ast_hash": "a6d58635e47d6f12693079bdea58ab20", "semantic_hash": "a6d58635e47d6f12693079bdea58ab20" }, "remix/public/branding/generated/icon/thingtime-icon.svg": { - "mtime": 1788939902.5331028, + "mtime": 1788947732.652273, "ast_hash": "6e01b199730ed5ece7f22086eeaa95c9", "semantic_hash": "6e01b199730ed5ece7f22086eeaa95c9" }, "remix/public/branding/generated/logo-pink/thingtime-logo-pink-10000x1852.png": { - "mtime": 1788939902.5337634, + "mtime": 1788947732.652273, "ast_hash": "db96d43eaa345b35b6f57e23b25187ee", "semantic_hash": "db96d43eaa345b35b6f57e23b25187ee" }, "remix/public/branding/generated/logo-pink/thingtime-logo-pink-1000x185.png": { - "mtime": 1788939902.5339816, + "mtime": 1788947732.6532364, "ast_hash": "58ca1603a743693021eaf1f5f327ab25", "semantic_hash": "58ca1603a743693021eaf1f5f327ab25" }, "remix/public/branding/generated/logo-pink/thingtime-logo-pink-100x19.png": { - "mtime": 1788939902.5341334, + "mtime": 1788947732.6532364, "ast_hash": "d9f1740923f34bd8d01097abc47ae1de", "semantic_hash": "d9f1740923f34bd8d01097abc47ae1de" }, "remix/public/branding/generated/logo-pink/thingtime-logo-pink-1024x190.png": { - "mtime": 1788939902.5342433, + "mtime": 1788947732.6532364, "ast_hash": "1340dcbf31fc3704f252d73d6c8ca756", "semantic_hash": "1340dcbf31fc3704f252d73d6c8ca756" }, "remix/public/branding/generated/logo-pink/thingtime-logo-pink-10x2.png": { - "mtime": 1788939902.5343277, + "mtime": 1788947732.6532364, "ast_hash": "6600e89b789e0fd674ab822bca415ae8", "semantic_hash": "6600e89b789e0fd674ab822bca415ae8" }, "remix/public/branding/generated/logo-pink/thingtime-logo-pink-128x24.png": { - "mtime": 1788939902.534397, + "mtime": 1788947732.6532364, "ast_hash": "fda7083a5011f07a37435e5b5f41ecc7", "semantic_hash": "fda7083a5011f07a37435e5b5f41ecc7" }, "remix/public/branding/generated/logo-pink/thingtime-logo-pink-16x3.png": { - "mtime": 1788939902.534488, + "mtime": 1788947732.6532364, "ast_hash": "bdee9eef2ba5a75d5c01de893a51cb5c", "semantic_hash": "bdee9eef2ba5a75d5c01de893a51cb5c" }, "remix/public/branding/generated/logo-pink/thingtime-logo-pink-2000x370.png": { - "mtime": 1788939902.534566, + "mtime": 1788947732.6532364, "ast_hash": "077eaa9de9d9ed66a77a2d5867c8df5d", "semantic_hash": "077eaa9de9d9ed66a77a2d5867c8df5d" }, "remix/public/branding/generated/logo-pink/thingtime-logo-pink-200x37.png": { - "mtime": 1788939902.5346372, + "mtime": 1788947732.6532364, "ast_hash": "fe0a281f40984a1c4f58628cd89310de", "semantic_hash": "fe0a281f40984a1c4f58628cd89310de" }, "remix/public/branding/generated/logo-pink/thingtime-logo-pink-2048x379.png": { - "mtime": 1788939902.5347512, + "mtime": 1788947732.6532729, "ast_hash": "5d058e63ca725ee8735d831b12b92220", "semantic_hash": "5d058e63ca725ee8735d831b12b92220" }, "remix/public/branding/generated/logo-pink/thingtime-logo-pink-256x47.png": { - "mtime": 1788939902.5348394, + "mtime": 1788947732.6532729, "ast_hash": "6d012958e9545d9b9610a6fdb83791f8", "semantic_hash": "6d012958e9545d9b9610a6fdb83791f8" }, "remix/public/branding/generated/logo-pink/thingtime-logo-pink-32x6.png": { - "mtime": 1788939902.534928, + "mtime": 1788947732.6532729, "ast_hash": "7a4a2fe3419940165b2962e57f4f414b", "semantic_hash": "7a4a2fe3419940165b2962e57f4f414b" }, "remix/public/branding/generated/logo-pink/thingtime-logo-pink-4096x759.png": { - "mtime": 1788939902.5350578, + "mtime": 1788947732.6532729, "ast_hash": "ef6b69cbe8b260223713baa21f763eee", "semantic_hash": "ef6b69cbe8b260223713baa21f763eee" }, "remix/public/branding/generated/logo-pink/thingtime-logo-pink-5000x926.png": { - "mtime": 1788939902.5351768, + "mtime": 1788947732.6532729, "ast_hash": "ca88e2724a010dcfde51c32384a5c1e6", "semantic_hash": "ca88e2724a010dcfde51c32384a5c1e6" }, "remix/public/branding/generated/logo-pink/thingtime-logo-pink-500x93.png": { - "mtime": 1788939902.5352855, + "mtime": 1788947732.6532729, "ast_hash": "878ce9da470e04e6e4c2f361f876dd71", "semantic_hash": "878ce9da470e04e6e4c2f361f876dd71" }, "remix/public/branding/generated/logo-pink/thingtime-logo-pink-50x9.png": { - "mtime": 1788939902.535364, + "mtime": 1788947732.6532729, "ast_hash": "d1ed4eabd1f0a0fb467155b111b48dc6", "semantic_hash": "d1ed4eabd1f0a0fb467155b111b48dc6" }, "remix/public/branding/generated/logo-pink/thingtime-logo-pink-512x95.png": { - "mtime": 1788939902.5354269, + "mtime": 1788947732.6532729, "ast_hash": "baabc5e366b73abcff630ef17be6d17e", "semantic_hash": "baabc5e366b73abcff630ef17be6d17e" }, "remix/public/branding/generated/logo-pink/thingtime-logo-pink-64x12.png": { - "mtime": 1788939902.5354986, + "mtime": 1788947732.6532729, "ast_hash": "858a3b677a2376141b620aaa7d774218", "semantic_hash": "858a3b677a2376141b620aaa7d774218" }, "remix/public/branding/generated/logo-pink/thingtime-logo-pink-8192x1517.png": { - "mtime": 1788939902.535633, + "mtime": 1788947732.6532729, "ast_hash": "c94c5c5864917ac8ea44eec8eea8fb9b", "semantic_hash": "c94c5c5864917ac8ea44eec8eea8fb9b" }, "remix/public/branding/generated/logo-pink/thingtime-logo-pink.svg": { - "mtime": 1788939902.5357506, + "mtime": 1788947732.6532729, "ast_hash": "03baab4b54aa993ec8848ad55b7d0cfe", "semantic_hash": "03baab4b54aa993ec8848ad55b7d0cfe" }, "remix/public/branding/generated/logo/thingtime-logo-10000x1852.png": { - "mtime": 1788939902.5359292, + "mtime": 1788947732.6532729, "ast_hash": "f6a002415d568abd1044522b29f32bb3", "semantic_hash": "f6a002415d568abd1044522b29f32bb3" }, "remix/public/branding/generated/logo/thingtime-logo-1000x185.png": { - "mtime": 1788939902.5360172, + "mtime": 1788947732.654423, "ast_hash": "1dfaefd94ad830bae3e63dff667f23b2", "semantic_hash": "1dfaefd94ad830bae3e63dff667f23b2" }, "remix/public/branding/generated/logo/thingtime-logo-100x19.png": { - "mtime": 1788939902.5362594, + "mtime": 1788947732.654423, "ast_hash": "038528186a75da5433c958e322732413", "semantic_hash": "038528186a75da5433c958e322732413" }, "remix/public/branding/generated/logo/thingtime-logo-1024x190.png": { - "mtime": 1788939902.5364206, + "mtime": 1788947732.654423, "ast_hash": "fdf30c66f87700c58c0858ca03017fc8", "semantic_hash": "fdf30c66f87700c58c0858ca03017fc8" }, "remix/public/branding/generated/logo/thingtime-logo-10x2.png": { - "mtime": 1788939902.536705, + "mtime": 1788947732.654423, "ast_hash": "a1a931b5115e06f01a3664906d031779", "semantic_hash": "a1a931b5115e06f01a3664906d031779" }, "remix/public/branding/generated/logo/thingtime-logo-128x24.png": { - "mtime": 1788939902.5373635, + "mtime": 1788947732.654423, "ast_hash": "34f69f5af7e7feafe05f687f6c661a9c", "semantic_hash": "34f69f5af7e7feafe05f687f6c661a9c" }, "remix/public/branding/generated/logo/thingtime-logo-16x3.png": { - "mtime": 1788939902.5374596, + "mtime": 1788947732.654423, "ast_hash": "06887f47bc46ec91bf38d659d2bc28d9", "semantic_hash": "06887f47bc46ec91bf38d659d2bc28d9" }, "remix/public/branding/generated/logo/thingtime-logo-2000x370.png": { - "mtime": 1788939902.5377033, + "mtime": 1788947732.654423, "ast_hash": "f088d7261a901c941b6e49720c671183", "semantic_hash": "f088d7261a901c941b6e49720c671183" }, "remix/public/branding/generated/logo/thingtime-logo-200x37.png": { - "mtime": 1788939902.5378358, + "mtime": 1788947732.654423, "ast_hash": "d0db1a9fa937cd9c40bbe443dfd2fd75", "semantic_hash": "d0db1a9fa937cd9c40bbe443dfd2fd75" }, "remix/public/branding/generated/logo/thingtime-logo-2048x379.png": { - "mtime": 1788939902.5379708, + "mtime": 1788947732.654423, "ast_hash": "5d63219c4d006a180f46dd561a775a48", "semantic_hash": "5d63219c4d006a180f46dd561a775a48" }, "remix/public/branding/generated/logo/thingtime-logo-256x47.png": { - "mtime": 1788939902.5382104, + "mtime": 1788947732.654423, "ast_hash": "5a5fc43bd0320da564f8efdf80b1c64e", "semantic_hash": "5a5fc43bd0320da564f8efdf80b1c64e" }, "remix/public/branding/generated/logo/thingtime-logo-32x6.png": { - "mtime": 1788939902.5382936, + "mtime": 1788947732.654423, "ast_hash": "fd16b6e38203c3174ccff7bfa0c8d5a5", "semantic_hash": "fd16b6e38203c3174ccff7bfa0c8d5a5" }, "remix/public/branding/generated/logo/thingtime-logo-4096x759.png": { - "mtime": 1788939902.5384152, + "mtime": 1788947732.654423, "ast_hash": "fe3b408941da25a02125e88bb36f5e2b", "semantic_hash": "fe3b408941da25a02125e88bb36f5e2b" }, "remix/public/branding/generated/logo/thingtime-logo-5000x926.png": { - "mtime": 1788939902.538505, + "mtime": 1788947732.654423, "ast_hash": "37c579ce852c1dc7e8cf508a41775b15", "semantic_hash": "37c579ce852c1dc7e8cf508a41775b15" }, "remix/public/branding/generated/logo/thingtime-logo-500x93.png": { - "mtime": 1788939902.5386062, + "mtime": 1788947732.654423, "ast_hash": "5107a5f939b48b74f0777c7f90f7147e", "semantic_hash": "5107a5f939b48b74f0777c7f90f7147e" }, "remix/public/branding/generated/logo/thingtime-logo-50x9.png": { - "mtime": 1788939902.5386703, + "mtime": 1788947732.654423, "ast_hash": "108b24f640473a3d295be78b84ae672a", "semantic_hash": "108b24f640473a3d295be78b84ae672a" }, "remix/public/branding/generated/logo/thingtime-logo-512x95.png": { - "mtime": 1788939902.5387468, + "mtime": 1788947732.654423, "ast_hash": "cc56ad97892f4ac9dc27baa04946ada4", "semantic_hash": "cc56ad97892f4ac9dc27baa04946ada4" }, "remix/public/branding/generated/logo/thingtime-logo-64x12.png": { - "mtime": 1788939902.538814, + "mtime": 1788947732.654423, "ast_hash": "10b15bf5c8c93f0dd1e90e94d1f43d91", "semantic_hash": "10b15bf5c8c93f0dd1e90e94d1f43d91" }, "remix/public/branding/generated/logo/thingtime-logo-8192x1517.png": { - "mtime": 1788939902.5389388, + "mtime": 1788947732.654423, "ast_hash": "3c2909f73a1323a175bc40a6fdeb2d6f", "semantic_hash": "3c2909f73a1323a175bc40a6fdeb2d6f" }, "remix/public/branding/generated/logo/thingtime-logo.svg": { - "mtime": 1788939902.5390344, + "mtime": 1788947732.654423, "ast_hash": "e4b890d2f3fbee3c3099408aad63ea34", "semantic_hash": "e4b890d2f3fbee3c3099408aad63ea34" }, "remix/public/branding/presskit/thingtime-app-tile-1024x1024.png": { - "mtime": 1788939902.5391803, + "mtime": 1788947732.654423, "ast_hash": "5df5d9e892cf17d38de404d4bfe17fa2", "semantic_hash": "5df5d9e892cf17d38de404d4bfe17fa2" }, "remix/public/branding/presskit/thingtime-app-tile-dark-1024x1024.png": { - "mtime": 1788939902.5392928, + "mtime": 1788947732.655245, "ast_hash": "e02bf132578f5c924fbef1383a3d1a65", "semantic_hash": "e02bf132578f5c924fbef1383a3d1a65" }, "remix/public/branding/presskit/thingtime-banner-1500x500.png": { - "mtime": 1788939902.5394037, + "mtime": 1788947732.655245, "ast_hash": "031cc371b6774c0a2f2e148600b8e755", "semantic_hash": "031cc371b6774c0a2f2e148600b8e755" }, "remix/public/branding/presskit/thingtime-confetti-pattern-2048x2048.png": { - "mtime": 1788939902.5395803, + "mtime": 1788947732.655273, "ast_hash": "5bbb6715c3c266de92b614779cb1f1ef", "semantic_hash": "5bbb6715c3c266de92b614779cb1f1ef" }, "remix/public/branding/presskit/thingtime-linkedin-banner-1584x396.png": { - "mtime": 1788939902.5404017, + "mtime": 1788947732.655273, "ast_hash": "0521b3f9e11b3154635791b768ecbad9", "semantic_hash": "0521b3f9e11b3154635791b768ecbad9" }, "remix/public/branding/presskit/thingtime-og-card-1200x630.png": { - "mtime": 1788939902.5409322, + "mtime": 1788947732.655273, "ast_hash": "9f1d7ce8d147d511fa3aff77045fe0ec", "semantic_hash": "9f1d7ce8d147d511fa3aff77045fe0ec" }, "remix/public/branding/presskit/thingtime-og-card-dark-1200x630.png": { - "mtime": 1788939902.541072, + "mtime": 1788947732.655273, "ast_hash": "9ed7157c3923caf4af17dbaa0973730a", "semantic_hash": "9ed7157c3923caf4af17dbaa0973730a" }, "remix/public/branding/presskit/thingtime-social-square-1080x1080.png": { - "mtime": 1788939902.5416834, + "mtime": 1788947732.655273, "ast_hash": "cd6b4efe58698fad396fd07f5d50d5ba", "semantic_hash": "cd6b4efe58698fad396fd07f5d50d5ba" }, "remix/public/branding/presskit/thingtime-wallpaper-1920x1080.png": { - "mtime": 1788939902.542211, + "mtime": 1788947732.655273, "ast_hash": "310aacc4589181eb551f58a068b1213e", "semantic_hash": "310aacc4589181eb551f58a068b1213e" }, "remix/public/branding/presskit/thingtime-wallpaper-4k-3840x2160.png": { - "mtime": 1788939902.5424101, + "mtime": 1788947732.655273, "ast_hash": "c9644ff29d6e698f859b52196a8de6e2", "semantic_hash": "c9644ff29d6e698f859b52196a8de6e2" }, "remix/public/branding/presskit/thingtime-wallpaper-phone-1170x2532.png": { - "mtime": 1788939902.542564, + "mtime": 1788947732.655273, "ast_hash": "d437430980d0df2392d5e98f0305a0fe", "semantic_hash": "d437430980d0df2392d5e98f0305a0fe" }, "PRs/428-codex-lopu-default-listener-parity--fix-actions-activate-every-lopu-pr-signal-on-main.md": { - "mtime": 1788939900.0063224, + "mtime": 1788947732.1722765, "ast_hash": "f0782552a210ee7290dbda446852dc42", "semantic_hash": "f0782552a210ee7290dbda446852dc42" }, ".githooks/post-checkout": { - "mtime": 1788939899.697053, + "mtime": 1788947732.0742707, "ast_hash": "0a97f536e12f697578d5b3381fbcf619", "semantic_hash": "0a97f536e12f697578d5b3381fbcf619" }, ".githooks/post-commit": { - "mtime": 1788939899.6972437, + "mtime": 1788947732.0742707, "ast_hash": "002afe0189b72c248786733f1e7a3c40", "semantic_hash": "002afe0189b72c248786733f1e7a3c40" }, "scripts/graphify": { - "mtime": 1788939902.6765072, + "mtime": 1788947732.6826067, "ast_hash": "de42366b5a480cbde5c6bc6e864b0bea", "semantic_hash": "de42366b5a480cbde5c6bc6e864b0bea" }, "scripts/graphify-cas.mjs": { - "mtime": 1788939902.6766565, + "mtime": 1788947732.6827872, "ast_hash": "041fc3b4da4a6792d05becff76a2a95c", "semantic_hash": "041fc3b4da4a6792d05becff76a2a95c" }, "scripts/graphify-cas.test.mjs": { - "mtime": 1788939902.6768053, + "mtime": 1788947732.6827872, "ast_hash": "603975c1ce067c5901e822d005492ab8", "semantic_hash": "603975c1ce067c5901e822d005492ab8" }, "docs/graphify-content-addressed-snapshots.md": { - "mtime": 1788939900.220037, + "mtime": 1788947732.3142755, "ast_hash": "26cb5a744141dd9423b53755189b72a0", "semantic_hash": "26cb5a744141dd9423b53755189b72a0" }, "PRs/436-codex-graphify-snapshot-routing--make-graphify-output-conflict-free.md": { - "mtime": 1788939900.0064707, + "mtime": 1788947732.1722765, "ast_hash": "27450a573e45d1c98758631a96cef226", "semantic_hash": "27450a573e45d1c98758631a96cef226" }, "remix/app/api/utils/things/searchRanking.test.ts": { - "mtime": 1788939901.1765883, + "mtime": 1788947732.5452738, "ast_hash": "191d3f90cfebcdcfa7974e0c445cd5c7", "semantic_hash": "191d3f90cfebcdcfa7974e0c445cd5c7" }, "remix/app/api/utils/things/searchRanking.ts": { - "mtime": 1788939901.1770377, + "mtime": 1788947732.5452738, "ast_hash": "3eec8613426244c7918c94f921cf820b", "semantic_hash": "3eec8613426244c7918c94f921cf820b" }, "remix/app/components/Commander/commanderSearch.test.ts": { - "mtime": 1788939901.2179515, + "mtime": 1788947732.5582736, "ast_hash": "4c89043638e72b649cc778083d06b2dd", "semantic_hash": "4c89043638e72b649cc778083d06b2dd" }, "remix/app/components/Search/commanderSearch.ts": { - "mtime": 1788939901.2989817, + "mtime": 1788947732.5822735, "ast_hash": "769e92a044bbd6d3c66318e3606684c6", "semantic_hash": "769e92a044bbd6d3c66318e3606684c6" }, "PRs/427-codex-search-commander-overhaul-overhaul-web-search-and-commander-results.md": { - "mtime": 1788939900.0054114, + "mtime": 1788947732.1722765, "ast_hash": "6a67f6bb81ac7b4d1e0a7135ba9271de", "semantic_hash": "6a67f6bb81ac7b4d1e0a7135ba9271de" }, "integrations/ChatGPT/plugin/thingtime-chatgpt/.codex-plugin/plugin.json": { - "mtime": 1788939900.9828734, + "mtime": 1788947732.4880013, "ast_hash": "e4417d6f82c75656f83ecf34554ea0cd", "semantic_hash": "e4417d6f82c75656f83ecf34554ea0cd" }, "integrations/ChatGPT/plugin/thingtime-chatgpt/.mcp.json": { - "mtime": 1788939900.9830074, + "mtime": 1788947732.4880013, "ast_hash": "437ed30eadd7d69525867e49876a816f", "semantic_hash": "437ed30eadd7d69525867e49876a816f" }, "remix/app/api/utils/chatgpt/plugin.test.ts": { - "mtime": 1788939901.090076, + "mtime": 1788947732.5175674, "ast_hash": "161e790aae33fc4f7e52d2dc02fd0e51", "semantic_hash": "161e790aae33fc4f7e52d2dc02fd0e51" }, "remix/app/api/utils/chatgpt/plugin.ts": { - "mtime": 1788939901.0903392, + "mtime": 1788947732.5178726, "ast_hash": "8625948da5bcd0a1fdca9bbd5314d289", "semantic_hash": "8625948da5bcd0a1fdca9bbd5314d289" }, "remix/app/api/utils/chatgpt/pluginCore.test.ts": { - "mtime": 1788939901.0904598, + "mtime": 1788947732.5178726, "ast_hash": "0cf21fc7685c5f2cdd54bcd9c05ec50a", "semantic_hash": "0cf21fc7685c5f2cdd54bcd9c05ec50a" }, "remix/app/api/utils/chatgpt/pluginCore.ts": { - "mtime": 1788939901.0909722, + "mtime": 1788947732.5178726, "ast_hash": "d1c29eb3c9cb1c325cc4bd6e4867a57a", "semantic_hash": "d1c29eb3c9cb1c325cc4bd6e4867a57a" }, "remix/app/routes/api/v1/integrations/chatgpt/mcp/_mcp.tsx": { - "mtime": 1788939901.4124384, + "mtime": 1788947732.608162, "ast_hash": "a223751fdeb8c9fc303fc3494221ab25", "semantic_hash": "a223751fdeb8c9fc303fc3494221ab25" }, "remix/app/routes/api/v1/integrations/chatgpt/oauth/authorize/_authorize.tsx": { - "mtime": 1788939901.4127634, + "mtime": 1788947732.608286, "ast_hash": "2516f0536c3a832c87597a07d162eaf6", "semantic_hash": "2516f0536c3a832c87597a07d162eaf6" }, "remix/app/routes/api/v1/integrations/chatgpt/oauth/register/_register.tsx": { - "mtime": 1788939901.4129908, + "mtime": 1788947732.608286, "ast_hash": "8301b6958d290c31c87d88c7f3e0715d", "semantic_hash": "8301b6958d290c31c87d88c7f3e0715d" }, "remix/server/routes/chatgpt-discovery.ts": { - "mtime": 1788939902.6630774, + "mtime": 1788947732.6813657, "ast_hash": "9ff88b06706881b4651300da8025e270", "semantic_hash": "9ff88b06706881b4651300da8025e270" }, "PRs/388-claude-fallback-model-selection-0281b1--unlimited-ai-model-waterfall-claude-openai-catalog.md": { - "mtime": 1788939900.004309, + "mtime": 1788947732.1722765, "ast_hash": "c0803a678d0d6a182bac2852afb16b69", "semantic_hash": "c0803a678d0d6a182bac2852afb16b69" }, "PRs/412-codex-thingtime-chatgpt-plugin--add-secure-chatgpt-thingtime-plugin.md": { - "mtime": 1788939900.00523, + "mtime": 1788947732.1722765, "ast_hash": "b2b2c936e63c166970366f48a29858d2", "semantic_hash": "b2b2c936e63c166970366f48a29858d2" }, "integrations/ChatGPT/plugin/thingtime-chatgpt/README.md": { - "mtime": 1788939900.9833739, + "mtime": 1788947732.4880013, "ast_hash": "d9e16d8505b04c548e4397d29c75e1f8", "semantic_hash": "d9e16d8505b04c548e4397d29c75e1f8" }, "integrations/ChatGPT/plugin/thingtime-chatgpt/SUBMISSION.md": { - "mtime": 1788939900.983494, + "mtime": 1788947732.4880013, "ast_hash": "5333f5675bc511ad21115a7944305289", "semantic_hash": "5333f5675bc511ad21115a7944305289" }, "integrations/ChatGPT/plugin/thingtime-chatgpt/skills/thingtime/SKILL.md": { - "mtime": 1788939900.9843142, + "mtime": 1788947732.4884589, "ast_hash": "f59aeaae3cab225e7d5a61e0531610d3", "semantic_hash": "f59aeaae3cab225e7d5a61e0531610d3" }, "timeline/21-08-2026/INTEGRATION_ORDER.md": { - "mtime": 1788939902.677292, + "mtime": 1788947732.6832197, "ast_hash": "859cddaac741c5dd1c82307275d8a1c7", "semantic_hash": "859cddaac741c5dd1c82307275d8a1c7" }, "TODO/claude-todo/20-versioned-experience-history.md": { - "mtime": 1788939900.0413318, + "mtime": 1788947732.1822762, "ast_hash": "c50b755297d96c914e6db3539a8f3094", "semantic_hash": "c50b755297d96c914e6db3539a8f3094" }, "TODO/claude-todo/assets/20-bambu-studio-online-models-feed.png": { - "mtime": 1788939900.068807, + "mtime": 1788947732.1942763, "ast_hash": "c6f2f80acbdb6766c7018b8242eb45c3", "semantic_hash": "c6f2f80acbdb6766c7018b8242eb45c3" }, "remix/app/api/utils/admin/integrationCore.test.ts": { - "mtime": 1788939901.0678604, + "mtime": 1788947732.5089266, "ast_hash": "5494bdb9e1fec7d7b54d82d8990be636", "semantic_hash": "5494bdb9e1fec7d7b54d82d8990be636" }, "remix/app/api/utils/admin/integrationCore.ts": { - "mtime": 1788939901.0679727, + "mtime": 1788947732.5089266, "ast_hash": "0a9bb06a3aadcd87a65e65a0d69530fd", "semantic_hash": "0a9bb06a3aadcd87a65e65a0d69530fd" }, "remix/app/api/utils/admin/integrations.ts": { - "mtime": 1788940285.3015265, + "mtime": 1788948107.393494, "ast_hash": "222683a98fda142a0de3f6e33bbecfe3", "semantic_hash": "" }, "remix/app/api/utils/auth/patScopes.test.ts": { - "mtime": 1788939901.084991, + "mtime": 1788947732.5152738, "ast_hash": "dc4ab35b2c64e5cb1d56c26acf906694", "semantic_hash": "dc4ab35b2c64e5cb1d56c26acf906694" }, "remix/app/api/utils/things/patVisibility.test.ts": { - "mtime": 1788939901.1747484, + "mtime": 1788947732.5445237, "ast_hash": "0418e8c351a168c16e21ec8210190776", "semantic_hash": "0418e8c351a168c16e21ec8210190776" }, "remix/app/components/Admin/IntegrationManager.tsx": { - "mtime": 1788941168.890807, + "mtime": 1788948107.3954937, "ast_hash": "00ab966b8eb8e62b768fbb3733e62a4d", "semantic_hash": "" }, "remix/app/routes/api/v1/admin/integrations/_integrations.tsx": { - "mtime": 1788939901.3637252, + "mtime": 1788947732.5978518, "ast_hash": "db3ecc675fe6ad069052ed017d6f6e27", "semantic_hash": "db3ecc675fe6ad069052ed017d6f6e27" }, "remix/app/routes/docs/ApiPlayground.tsx": { - "mtime": 1788939901.4448745, + "mtime": 1788947732.6186283, "ast_hash": "cff5b5930ab5922719f4142d315b5dea", "semantic_hash": "cff5b5930ab5922719f4142d315b5dea" }, "PRs/200-codex-vercel-develop-atlas-env--document-shared-preview-runtime-and-production-isolation.md": { - "mtime": 1788939899.9948273, + "mtime": 1788947732.1682765, "ast_hash": "b23311570458fd75a29f84eea1be886a", "semantic_hash": "b23311570458fd75a29f84eea1be886a" }, "TODO/claude-todo/17-circles.md": { - "mtime": 1788939900.0406337, + "mtime": 1788947732.1813653, "ast_hash": "f47411568ba5d8a9a92a47b0831fa703", "semantic_hash": "f47411568ba5d8a9a92a47b0831fa703" }, "TODO/claude-todo/20-index-budget-consolidation.md": { - "mtime": 1788939900.0410562, + "mtime": 1788947732.1822762, "ast_hash": "8f374bc33d07d54e5159e95e2052127c", "semantic_hash": "8f374bc33d07d54e5159e95e2052127c" }, "TODO/claude-todo/21-index-budget-consolidation.md": { - "mtime": 1788939900.0417132, + "mtime": 1788947732.1822762, "ast_hash": "ad2771076e2314a3b1bffb9989734675", "semantic_hash": "ad2771076e2314a3b1bffb9989734675" }, "remix/app/api/utils/actions/execute.ts": { - "mtime": 1788943126.431464, + "mtime": 1788948107.393494, "ast_hash": "d8747343284b91b0a1118cbb521a6068", "semantic_hash": "" }, "remix/app/api/utils/components/browse.ts": { - "mtime": 1788939901.0987341, + "mtime": 1788947732.520274, "ast_hash": "11d935749d395857849c0b37f9bad91e", "semantic_hash": "11d935749d395857849c0b37f9bad91e" }, "remix/app/api/utils/components/seed.ts": { - "mtime": 1788939901.098933, + "mtime": 1788947732.5207534, "ast_hash": "85953065cf1d5aad72161e3a9c7eae1e", "semantic_hash": "85953065cf1d5aad72161e3a9c7eae1e" }, "remix/app/components/Actions/ActionBuilder.tsx": { - "mtime": 1788939901.1904068, + "mtime": 1788947732.5492737, "ast_hash": "c6c4b157ebb4214231b06f7833be6e28", "semantic_hash": "c6c4b157ebb4214231b06f7833be6e28" }, "remix/app/components/Actions/ActionChip.tsx": { - "mtime": 1788939901.1908033, + "mtime": 1788947732.5496216, "ast_hash": "89ba7b1584878a421df850c1d8e1d881", "semantic_hash": "89ba7b1584878a421df850c1d8e1d881" }, "remix/app/components/Actions/ActionDetailPage.tsx": { - "mtime": 1788939901.1909337, + "mtime": 1788947732.5496216, "ast_hash": "d063fd9ed1da48983e8c66fc4950ae49", "semantic_hash": "d063fd9ed1da48983e8c66fc4950ae49" }, "remix/app/components/Actions/ActionsPage.tsx": { - "mtime": 1788939901.1912045, + "mtime": 1788947732.5496216, "ast_hash": "c909cf71720834cda3ae0ad8e8e0cff5", "semantic_hash": "c909cf71720834cda3ae0ad8e8e0cff5" }, "remix/app/components/Actions/actionInspect.test.ts": { - "mtime": 1788939901.1913455, + "mtime": 1788947732.5496216, "ast_hash": "63ae121324295ecbadee8d51cae8c3aa", "semantic_hash": "63ae121324295ecbadee8d51cae8c3aa" }, "remix/app/components/Actions/actionInspect.ts": { - "mtime": 1788939901.1914842, + "mtime": 1788947732.5496216, "ast_hash": "065fab13917e6d28cdfecab8e99a989d", "semantic_hash": "065fab13917e6d28cdfecab8e99a989d" }, "remix/app/components/Actions/actionRunRequest.test.ts": { - "mtime": 1788939901.191563, + "mtime": 1788947732.5496216, "ast_hash": "82f354cea9762c30f5ccdacbdd302078", "semantic_hash": "82f354cea9762c30f5ccdacbdd302078" }, "remix/app/components/Actions/actionRunRequest.ts": { - "mtime": 1788939901.1916447, + "mtime": 1788947732.5496216, "ast_hash": "6ca3cab23f7e87f129f2ead73fc5ce58", "semantic_hash": "6ca3cab23f7e87f129f2ead73fc5ce58" }, "remix/app/components/Actions/useTtActionClicks.tsx": { - "mtime": 1788939901.1918433, + "mtime": 1788947732.5496216, "ast_hash": "b5725f37d203a998e3b43659a1f2a31d", "semantic_hash": "b5725f37d203a998e3b43659a1f2a31d" }, "remix/app/components/ComponentsLibrary/ComponentDetailPage.tsx": { - "mtime": 1788939901.2183666, + "mtime": 1788947732.5582736, "ast_hash": "8127c4074f5cb392adb7e3a05a0d989e", "semantic_hash": "8127c4074f5cb392adb7e3a05a0d989e" }, "remix/app/components/ComponentsLibrary/ComponentsBrowsePage.tsx": { - "mtime": 1788939901.2198124, + "mtime": 1788947732.5590262, "ast_hash": "8c9e1cc4e40b0e41ff2d35136f02dc5f", "semantic_hash": "8c9e1cc4e40b0e41ff2d35136f02dc5f" }, "remix/app/components/ComponentsLibrary/componentBrowseTypes.ts": { - "mtime": 1788939901.2203207, + "mtime": 1788947732.5590262, "ast_hash": "8eb34df8f9cd2e43df19e64c917ef854", "semantic_hash": "8eb34df8f9cd2e43df19e64c917ef854" }, "remix/app/components/ComponentsLibrary/componentTemplate.test.ts": { - "mtime": 1788939901.2205448, + "mtime": 1788947732.5592735, "ast_hash": "ba4b4014aad32565b48bbbf8ec6f44ad", "semantic_hash": "ba4b4014aad32565b48bbbf8ec6f44ad" }, "remix/app/components/ComponentsLibrary/componentTemplate.ts": { - "mtime": 1788939901.220848, + "mtime": 1788947732.5592735, "ast_hash": "b074748d35a2372a665ff4bd37a4fb04", "semantic_hash": "b074748d35a2372a665ff4bd37a4fb04" }, "remix/app/routes/action-detail.tsx": { - "mtime": 1788939901.3594549, + "mtime": 1788947732.5965421, "ast_hash": "242226dbdcd1ba247d969f99ebbd9000", "semantic_hash": "242226dbdcd1ba247d969f99ebbd9000" }, "remix/app/routes/actions.tsx": { - "mtime": 1788939901.3595161, + "mtime": 1788947732.5965421, "ast_hash": "67c8f182320744c773e22b0e56f9f2de", "semantic_hash": "67c8f182320744c773e22b0e56f9f2de" }, "remix/app/routes/api/v1/actions/run/_run.tsx": { - "mtime": 1788939901.3598225, + "mtime": 1788947732.5967526, "ast_hash": "a83733ea186cee3fed8610d6b77466da", "semantic_hash": "a83733ea186cee3fed8610d6b77466da" }, "remix/app/routes/api/v1/actions/runs/_runs.tsx": { - "mtime": 1788939901.3599393, + "mtime": 1788947732.5967526, "ast_hash": "cbb0571ec74e1e5edac36b9b0c4d31e7", "semantic_hash": "cbb0571ec74e1e5edac36b9b0c4d31e7" }, "remix/app/routes/api/v1/admin/components/seed/_seed.tsx": { - "mtime": 1788939901.36361, + "mtime": 1788947732.5978518, "ast_hash": "c58123fa01e575a35723736fb9b1b78d", "semantic_hash": "c58123fa01e575a35723736fb9b1b78d" }, "remix/app/routes/api/v1/components/browse/_browse.tsx": { - "mtime": 1788939901.4005477, + "mtime": 1788947732.6052732, "ast_hash": "f00382f92abf82023132d8eabab153aa", "semantic_hash": "f00382f92abf82023132d8eabab153aa" }, "remix/app/routes/component-detail.tsx": { - "mtime": 1788939901.4444916, + "mtime": 1788947732.6186283, "ast_hash": "f5f98c9dbc1e68d6617e6ed2ad99853b", "semantic_hash": "f5f98c9dbc1e68d6617e6ed2ad99853b" }, "remix/app/routes/components.tsx": { - "mtime": 1788939901.4445682, + "mtime": 1788947732.6186283, "ast_hash": "7dd5426435d67cd1134a19465ac23510", "semantic_hash": "7dd5426435d67cd1134a19465ac23510" }, "remix/app/schemas/actionGrammar.test.ts": { - "mtime": 1788939901.4732256, + "mtime": 1788947732.626385, "ast_hash": "22f2c70065ef5d41255e257356f07335", "semantic_hash": "22f2c70065ef5d41255e257356f07335" }, "remix/scripts/seed-demo-app.mjs": { - "mtime": 1788939902.6416903, + "mtime": 1788947732.6762726, "ast_hash": "5fa26b06c32ca54a402733083b8397f2", "semantic_hash": "5fa26b06c32ca54a402733083b8397f2" }, "remix/scripts/verify-actions.mjs": { - "mtime": 1788939902.6445203, + "mtime": 1788947732.6772728, "ast_hash": "c0c2f6c8beacb80bed614e246d0388cb", "semantic_hash": "c0c2f6c8beacb80bed614e246d0388cb" }, "remix/scripts/verify-components.mjs": { - "mtime": 1788939902.6471443, + "mtime": 1788947732.6772728, "ast_hash": "e022cbc3c6965f26f4cae1b5bfd26ebb", "semantic_hash": "e022cbc3c6965f26f4cae1b5bfd26ebb" }, "PRs/387-claude-action-thing-permissions-336bc0--action-thing-v1-declarative-capability-bounded-programs.md": { - "mtime": 1788939900.0041265, + "mtime": 1788947732.1722765, "ast_hash": "1d22752d522fe2735860763d2993cded", "semantic_hash": "1d22752d522fe2735860763d2993cded" }, "PRs/action-thing-v1-design.md": { - "mtime": 1788939900.0284908, + "mtime": 1788947732.1772764, "ast_hash": "95ab5c263d990bdd2f3c3f21595af6d9", "semantic_hash": "95ab5c263d990bdd2f3c3f21595af6d9" }, "PRs/action-thing-v2-external-capabilities.md": { - "mtime": 1788939900.0286188, + "mtime": 1788947732.1772764, "ast_hash": "aff380e077bb88e86108bef985538c6b", "semantic_hash": "aff380e077bb88e86108bef985538c6b" }, "SECURITY-REPORTS/2026-08-25-action-thing-v1-security-review.md": { - "mtime": 1788939900.0328186, + "mtime": 1788947732.1782763, "ast_hash": "5935a79a6033f4540a084131c4badb54", "semantic_hash": "5935a79a6033f4540a084131c4badb54" }, "TODO/claude-todo/20-tester-runs-actions.md": { - "mtime": 1788939900.041205, + "mtime": 1788947732.1822762, "ast_hash": "3680cab8723a0ec2661d4e061611cbec", "semantic_hash": "3680cab8723a0ec2661d4e061611cbec" }, "TODO/claude-todo/21-app-composition-surface.md": { - "mtime": 1788939900.041607, + "mtime": 1788947732.1822762, "ast_hash": "c45e740231408bacdaecb861b354ad96", "semantic_hash": "c45e740231408bacdaecb861b354ad96" }, "MCP/examples/ai-desktop-export.example.json": { - "mtime": 1788939899.9834795, + "mtime": 1788947732.1638467, "ast_hash": "f880e48520afe59da91dc655d84653af", "semantic_hash": "f880e48520afe59da91dc655d84653af" }, "MCP/package.json": { - "mtime": 1788939899.984928, + "mtime": 1788947732.1642766, "ast_hash": "148ece21606a78e351730c7b7f1a5a1a", "semantic_hash": "148ece21606a78e351730c7b7f1a5a1a" }, "MCP/src/connectors/chatgpt.ts": { - "mtime": 1788939899.985106, + "mtime": 1788947732.1649137, "ast_hash": "dc6ff394ac5e326f56bb75655f614df3", "semantic_hash": "dc6ff394ac5e326f56bb75655f614df3" }, "MCP/src/connectors/claude.ts": { - "mtime": 1788939899.9851832, + "mtime": 1788947732.1650174, "ast_hash": "50f81c58ffa16c4df9cfdcf7bbcc3751", "semantic_hash": "50f81c58ffa16c4df9cfdcf7bbcc3751" }, "MCP/src/connectors/helpers.ts": { - "mtime": 1788939899.9852586, + "mtime": 1788947732.1650174, "ast_hash": "84b1371788ff6571ca1606bcc06628ee", "semantic_hash": "84b1371788ff6571ca1606bcc06628ee" }, "MCP/src/connectors/index.ts": { - "mtime": 1788939899.9853284, + "mtime": 1788947732.1650174, "ast_hash": "f8319e5ff4328caf25a52b5e2fb87e1a", "semantic_hash": "f8319e5ff4328caf25a52b5e2fb87e1a" }, "MCP/src/connectors/manifest.ts": { - "mtime": 1788939899.9853988, + "mtime": 1788947732.1650174, "ast_hash": "abb3b18eb6bb21fb15ac329210cac0fa", "semantic_hash": "abb3b18eb6bb21fb15ac329210cac0fa" }, "MCP/src/connectors/normalized.ts": { - "mtime": 1788939899.9854646, + "mtime": 1788947732.1650174, "ast_hash": "1c7ebaa4097dac3d76b0cc7ed37d62aa", "semantic_hash": "1c7ebaa4097dac3d76b0cc7ed37d62aa" }, "MCP/src/connectors/types.ts": { - "mtime": 1788939899.9855359, + "mtime": 1788947732.1650174, "ast_hash": "4ced27370fdf9057478e46d5f25f2fde", "semantic_hash": "4ced27370fdf9057478e46d5f25f2fde" }, "MCP/src/desktop.ts": { - "mtime": 1788939899.9856453, + "mtime": 1788947732.1650174, "ast_hash": "e8d379c4e4884655e2d6306ae8865412", "semantic_hash": "e8d379c4e4884655e2d6306ae8865412" }, "MCP/src/importer.ts": { - "mtime": 1788939899.9857721, + "mtime": 1788947732.1652765, "ast_hash": "e800ba287536b31cac91fdcd8e3fa44c", "semantic_hash": "e800ba287536b31cac91fdcd8e3fa44c" }, "MCP/src/index.ts": { - "mtime": 1788939899.9858468, + "mtime": 1788947732.1652765, "ast_hash": "906b2a0827ad1bae740a5bc2280f9b64", "semantic_hash": "906b2a0827ad1bae740a5bc2280f9b64" }, "MCP/src/ingestion.ts": { - "mtime": 1788939899.9859192, + "mtime": 1788947732.1652765, "ast_hash": "964d4e00275a6eda70fb7c73e006e4c7", "semantic_hash": "964d4e00275a6eda70fb7c73e006e4c7" }, "MCP/src/live/codexAppServer.ts": { - "mtime": 1788939899.9860792, + "mtime": 1788947732.1652765, "ast_hash": "a6561009008f49a9cfebfe1c8a8486c4", "semantic_hash": "a6561009008f49a9cfebfe1c8a8486c4" }, "MCP/src/live/codexLocalHistory.ts": { - "mtime": 1788939899.9861975, + "mtime": 1788947732.1659508, "ast_hash": "3ff73782653d07acb735e7ffb9a56489", "semantic_hash": "3ff73782653d07acb735e7ffb9a56489" }, "MCP/src/live/index.ts": { - "mtime": 1788939899.986257, + "mtime": 1788947732.1659508, "ast_hash": "98bbc6d207fa5e0a3dd1e842d5755779", "semantic_hash": "98bbc6d207fa5e0a3dd1e842d5755779" }, "MCP/src/live/jsonlRpc.ts": { - "mtime": 1788939899.9863575, + "mtime": 1788947732.1659508, "ast_hash": "d3344e5e52f2e561b389c4ed13682042", "semantic_hash": "d3344e5e52f2e561b389c4ed13682042" }, "MCP/src/live/nodeWire.ts": { - "mtime": 1788939899.986426, + "mtime": 1788947732.1659508, "ast_hash": "57c1be42f1bc6a380379046550dff67e", "semantic_hash": "57c1be42f1bc6a380379046550dff67e" }, "MCP/src/live/projectRegistry.ts": { - "mtime": 1788939899.9865243, + "mtime": 1788947732.1659508, "ast_hash": "19e4af670f9fc924025b47cee0eaa390", "semantic_hash": "19e4af670f9fc924025b47cee0eaa390" }, "MCP/src/live/types.ts": { - "mtime": 1788939899.9866235, + "mtime": 1788947732.1659508, "ast_hash": "e406cb07d850683cdb25c1f973931bd2", "semantic_hash": "e406cb07d850683cdb25c1f973931bd2" }, "MCP/src/model.ts": { - "mtime": 1788939899.986688, + "mtime": 1788947732.1659508, "ast_hash": "99b2cf14b90cc6d39e2ab096eb502040", "semantic_hash": "99b2cf14b90cc6d39e2ab096eb502040" }, "MCP/src/nodeRuntime.ts": { - "mtime": 1788939899.9867916, + "mtime": 1788947732.1662765, "ast_hash": "4ca51181e2137adcd0ac39fe5f8698b5", "semantic_hash": "4ca51181e2137adcd0ac39fe5f8698b5" }, "MCP/src/security.ts": { - "mtime": 1788939899.986858, + "mtime": 1788947732.1662765, "ast_hash": "73e471fc1aec50c04c6d5a216ece3540", "semantic_hash": "73e471fc1aec50c04c6d5a216ece3540" }, "MCP/src/server.ts": { - "mtime": 1788939899.986965, + "mtime": 1788947732.1662765, "ast_hash": "a760cb4ffc68be0e4d4af6094398a5f7", "semantic_hash": "a760cb4ffc68be0e4d4af6094398a5f7" }, "MCP/src/store.ts": { - "mtime": 1788939899.9870663, + "mtime": 1788947732.1662765, "ast_hash": "eb081779e8f770bfdf46f4749ef37c23", "semantic_hash": "eb081779e8f770bfdf46f4749ef37c23" }, "MCP/test/codex-local-history.test.ts": { - "mtime": 1788939899.9872084, + "mtime": 1788947732.1662765, "ast_hash": "53fbf7ee7a4425f1ccf254ca87476f3e", "semantic_hash": "53fbf7ee7a4425f1ccf254ca87476f3e" }, "MCP/test/connectors.test.ts": { - "mtime": 1788939899.987281, + "mtime": 1788947732.1669004, "ast_hash": "bb27d161d09ac2a43e9ce6a38f21727a", "semantic_hash": "bb27d161d09ac2a43e9ce6a38f21727a" }, "MCP/test/desktop.test.ts": { - "mtime": 1788939899.9873474, + "mtime": 1788947732.1669004, "ast_hash": "6bfd7bb6a0067ae754c5c8a0827b00e2", "semantic_hash": "6bfd7bb6a0067ae754c5c8a0827b00e2" }, "MCP/test/live-codex.test.ts": { - "mtime": 1788939899.9876926, + "mtime": 1788947732.1669004, "ast_hash": "407f50649c97bcb33d6f39c6c6c6057e", "semantic_hash": "407f50649c97bcb33d6f39c6c6c6057e" }, "MCP/test/node-wire.test.ts": { - "mtime": 1788939899.9881098, + "mtime": 1788947732.1669004, "ast_hash": "bc8ed1d733d24338819d8a4304f2f818", "semantic_hash": "bc8ed1d733d24338819d8a4304f2f818" }, "MCP/test/project-registry.test.ts": { - "mtime": 1788939899.9883008, + "mtime": 1788947732.1669004, "ast_hash": "8618d1f4b31f4fae87b4dca6df624025", "semantic_hash": "8618d1f4b31f4fae87b4dca6df624025" }, "MCP/test/security.test.ts": { - "mtime": 1788939899.9884498, + "mtime": 1788947732.1669004, "ast_hash": "4ecf96674a6af0e062e5e7d60ffc91f9", "semantic_hash": "4ecf96674a6af0e062e5e7d60ffc91f9" }, "MCP/test/server.test.ts": { - "mtime": 1788939899.988672, + "mtime": 1788947732.1669004, "ast_hash": "6a48131c95291360dcd2004a1b5c9368", "semantic_hash": "6a48131c95291360dcd2004a1b5c9368" }, "MCP/test/store.test.ts": { - "mtime": 1788939899.989176, + "mtime": 1788947732.1669004, "ast_hash": "d8eafbde19022dcbea766f0b4d2e1ad7", "semantic_hash": "d8eafbde19022dcbea766f0b4d2e1ad7" }, "MCP/tsconfig.json": { - "mtime": 1788939899.9892762, + "mtime": 1788947732.1672764, "ast_hash": "763aeafb9b792fcdf51467af6352f567", "semantic_hash": "763aeafb9b792fcdf51467af6352f567" }, "electron/scripts/build-local-app.mjs": { - "mtime": 1788939900.2289207, + "mtime": 1788947732.3162754, "ast_hash": "935e34092ce57f25b07b66e538acde1a", "semantic_hash": "935e34092ce57f25b07b66e538acde1a" }, "electron/scripts/build-native-node.mjs": { - "mtime": 1788939900.2290199, + "mtime": 1788947732.3171728, "ast_hash": "655a3c17cfa78fd483cfb64c2ecb0f1a", "semantic_hash": "655a3c17cfa78fd483cfb64c2ecb0f1a" }, "electron/scripts/build-production-app.mjs": { - "mtime": 1788939900.2291505, + "mtime": 1788947732.3171728, "ast_hash": "29f8606b0af1b482af619d8863add997", "semantic_hash": "29f8606b0af1b482af619d8863add997" }, "electron/scripts/build-unsigned-release.mjs": { - "mtime": 1788939900.2292776, + "mtime": 1788947732.3171728, "ast_hash": "86c607da43ac4f9890295e15140eb724", "semantic_hash": "86c607da43ac4f9890295e15140eb724" }, "electron/scripts/install-cached-release.mjs": { - "mtime": 1788939900.2294834, + "mtime": 1788947732.3171728, "ast_hash": "834c54678f9b11f0fd1ea3b6a1c74175", "semantic_hash": "834c54678f9b11f0fd1ea3b6a1c74175" }, "electron/scripts/pinned-package-manager.mjs": { - "mtime": 1788939900.2296987, + "mtime": 1788947732.3172753, "ast_hash": "7752323ce8e1400ea1e7ed0fca3f7f3a", "semantic_hash": "7752323ce8e1400ea1e7ed0fca3f7f3a" }, "electron/scripts/verify-native-node.mjs": { - "mtime": 1788939900.2305331, + "mtime": 1788947732.3172753, "ast_hash": "045d45c7a5f780c0074561b07e425c27", "semantic_hash": "045d45c7a5f780c0074561b07e425c27" }, "electron/scripts/verify-release-archive.mjs": { - "mtime": 1788939900.230652, + "mtime": 1788947732.3172753, "ast_hash": "2bbc92ea24715966087881b07a5250c3", "semantic_hash": "2bbc92ea24715966087881b07a5250c3" }, "electron/scripts/verify-signed-app.mjs": { - "mtime": 1788939900.230754, + "mtime": 1788947732.3172753, "ast_hash": "9786dd265148af6d626fb5a46476e105", "semantic_hash": "9786dd265148af6d626fb5a46476e105" }, "electron/scripts/verify-unsigned-app.mjs": { - "mtime": 1788939900.2308383, + "mtime": 1788947732.3172753, "ast_hash": "ab39c64a9a6ea96ccf410aa1a3a4dc03", "semantic_hash": "ab39c64a9a6ea96ccf410aa1a3a4dc03" }, "electron/scripts/verify-unsigned-release-archive.mjs": { - "mtime": 1788939900.230926, + "mtime": 1788947732.3172753, "ast_hash": "16408e8bece2f613108e876bf25efe09", "semantic_hash": "16408e8bece2f613108e876bf25efe09" }, "macos/ThingtimeNode/Package.swift": { - "mtime": 1788939900.9890165, + "mtime": 1788947732.4888744, "ast_hash": "10734457d8970285481b936d69de062f", "semantic_hash": "10734457d8970285481b936d69de062f" }, "macos/ThingtimeNode/Sources/ThingtimeNode/main.swift": { - "mtime": 1788939900.9924557, + "mtime": 1788947732.4896178, "ast_hash": "36a9a2aba760ff0d7e45e21f3264824d", "semantic_hash": "36a9a2aba760ff0d7e45e21f3264824d" }, "macos/ThingtimeNode/Sources/ThingtimeNodeBridge/main.swift": { - "mtime": 1788939900.9926467, + "mtime": 1788947732.4896178, "ast_hash": "b80689afb0e837ec0c77baccae768e4b", "semantic_hash": "b80689afb0e837ec0c77baccae768e4b" }, "macos/ThingtimeNode/Sources/ThingtimeNodeCore/BridgeParentPolicy.swift": { - "mtime": 1788939900.9930055, + "mtime": 1788947732.4896178, "ast_hash": "91e8710d2335552342a5cfb48157acf3", "semantic_hash": "91e8710d2335552342a5cfb48157acf3" }, "macos/ThingtimeNode/Sources/ThingtimeNodeCore/CommandJournal.swift": { - "mtime": 1788939900.9931955, + "mtime": 1788947732.48994, "ast_hash": "159d80e292a3d3aec87ff6090a61f70c", "semantic_hash": "159d80e292a3d3aec87ff6090a61f70c" }, "macos/ThingtimeNode/Sources/ThingtimeNodeCore/ConnectorRuntime.swift": { - "mtime": 1788939900.9933658, + "mtime": 1788947732.48994, "ast_hash": "b0de4b24d321e39e7cbe498bab9a054f", "semantic_hash": "b0de4b24d321e39e7cbe498bab9a054f" }, "macos/ThingtimeNode/Sources/ThingtimeNodeCore/ControlPlane.swift": { - "mtime": 1788939900.9941018, + "mtime": 1788947732.48994, "ast_hash": "8720917f379b38f65e04f7b9dc345440", "semantic_hash": "8720917f379b38f65e04f7b9dc345440" }, "macos/ThingtimeNode/Sources/ThingtimeNodeCore/DesktopChatAccessibility.swift": { - "mtime": 1788939900.996825, + "mtime": 1788947732.48994, "ast_hash": "2b69a5efeb06d7b84c775d6bf3331b6d", "semantic_hash": "2b69a5efeb06d7b84c775d6bf3331b6d" }, "macos/ThingtimeNode/Sources/ThingtimeNodeCore/DesktopChatRuntime.swift": { - "mtime": 1788939900.9977546, + "mtime": 1788947732.4902742, "ast_hash": "0f11a89286f304fdb60bb8a36d811be4", "semantic_hash": "0f11a89286f304fdb60bb8a36d811be4" }, "macos/ThingtimeNode/Sources/ThingtimeNodeCore/DeviceCredentials.swift": { - "mtime": 1788939900.997908, + "mtime": 1788947732.4902742, "ast_hash": "57a588836b6327b3757e2a4aebc8c3a1", "semantic_hash": "57a588836b6327b3757e2a4aebc8c3a1" }, "macos/ThingtimeNode/Sources/ThingtimeNodeCore/EndpointScope.swift": { - "mtime": 1788939900.9980125, + "mtime": 1788947732.4902742, "ast_hash": "0034f7fa43a003e5f54720b6ab158349", "semantic_hash": "0034f7fa43a003e5f54720b6ab158349" }, "macos/ThingtimeNode/Sources/ThingtimeNodeCore/LiveAISyncCoordinator.swift": { - "mtime": 1788939900.9982498, + "mtime": 1788947732.4902742, "ast_hash": "4c77ea30d161b2dffaf83ca035fb8ecf", "semantic_hash": "4c77ea30d161b2dffaf83ca035fb8ecf" }, "macos/ThingtimeNode/Sources/ThingtimeNodeCore/MenuBarIcon.swift": { - "mtime": 1788939900.9984863, + "mtime": 1788947732.4902742, "ast_hash": "17ac7ad346ff64ade1c2ee7c4a4f55fb", "semantic_hash": "17ac7ad346ff64ade1c2ee7c4a4f55fb" }, "macos/ThingtimeNode/Sources/ThingtimeNodeCore/NodeController.swift": { - "mtime": 1788939900.9987216, + "mtime": 1788947732.4902742, "ast_hash": "f2d71adef9fe51336d36844a99a4fa9d", "semantic_hash": "f2d71adef9fe51336d36844a99a4fa9d" }, "macos/ThingtimeNode/Sources/ThingtimeNodeCore/NodeModels.swift": { - "mtime": 1788939900.9996161, + "mtime": 1788947732.4902742, "ast_hash": "142920f123f072e1abb5a2d1eff0d63b", "semantic_hash": "142920f123f072e1abb5a2d1eff0d63b" }, "macos/ThingtimeNode/Sources/ThingtimeNodeCore/RemoteInput.swift": { - "mtime": 1788939901.0017164, + "mtime": 1788947732.4902742, "ast_hash": "52de413abf57b487822b004843a1f518", "semantic_hash": "52de413abf57b487822b004843a1f518" }, "macos/ThingtimeNode/Sources/ThingtimeNodeCore/SafeActions.swift": { - "mtime": 1788939901.0172334, + "mtime": 1788947732.4913778, "ast_hash": "c92226e924e0566b16bec917aac37281", "semantic_hash": "c92226e924e0566b16bec917aac37281" }, "macos/ThingtimeNode/Sources/ThingtimeNodeCore/ScreenCapture.swift": { - "mtime": 1788939901.0180666, + "mtime": 1788947732.4913778, "ast_hash": "09029fbeb92b5a5533490cfd09bcf2f4", "semantic_hash": "09029fbeb92b5a5533490cfd09bcf2f4" }, "macos/ThingtimeNode/Sources/ThingtimeNodeCore/SystemControls.swift": { - "mtime": 1788939901.0225124, + "mtime": 1788947732.4913778, "ast_hash": "bc99562c7316d20568e52ace9acf4ca8", "semantic_hash": "bc99562c7316d20568e52ace9acf4ca8" }, "macos/ThingtimeNode/Sources/ThingtimeNodeCore/Telemetry.swift": { - "mtime": 1788939901.0227907, + "mtime": 1788947732.4913778, "ast_hash": "a4033afadb2ccc09139ae3195c61aa9f", "semantic_hash": "a4033afadb2ccc09139ae3195c61aa9f" }, "macos/ThingtimeNode/Sources/ThingtimeNodeCore/ThingtimeAPIClient.swift": { - "mtime": 1788939901.022965, + "mtime": 1788947732.4913778, "ast_hash": "e8f27d7e25f7462245cfedb5308c916b", "semantic_hash": "e8f27d7e25f7462245cfedb5308c916b" }, "macos/ThingtimeNode/Sources/ThingtimeNodeCore/XPCContract.swift": { - "mtime": 1788939901.0230806, + "mtime": 1788947732.4913778, "ast_hash": "1e6437d43298d05ab89919c57bc5a098", "semantic_hash": "1e6437d43298d05ab89919c57bc5a098" }, "macos/ThingtimeNode/Tests/ThingtimeNodeCoreTests/BridgeParentPolicyTests.swift": { - "mtime": 1788939901.0232666, + "mtime": 1788947732.492244, "ast_hash": "aade2fae5bb32301d8e77ba0cbca5c9c", "semantic_hash": "aade2fae5bb32301d8e77ba0cbca5c9c" }, "macos/ThingtimeNode/Tests/ThingtimeNodeCoreTests/CommandJournalTests.swift": { - "mtime": 1788939901.023428, + "mtime": 1788947732.4923093, "ast_hash": "27d6ed5d77afca6582ef695d4544dc4b", "semantic_hash": "27d6ed5d77afca6582ef695d4544dc4b" }, "macos/ThingtimeNode/Tests/ThingtimeNodeCoreTests/ControlPlaneSchedulerTests.swift": { - "mtime": 1788939901.0235584, + "mtime": 1788947732.4923093, "ast_hash": "8d40eabc38f317e6afd6f913339490b4", "semantic_hash": "8d40eabc38f317e6afd6f913339490b4" }, "macos/ThingtimeNode/Tests/ThingtimeNodeCoreTests/DesktopChatAccessibilityTests.swift": { - "mtime": 1788939901.0236645, + "mtime": 1788947732.4923093, "ast_hash": "56bb62ceae51cf9d68ef406702ae027c", "semantic_hash": "56bb62ceae51cf9d68ef406702ae027c" }, "macos/ThingtimeNode/Tests/ThingtimeNodeCoreTests/DesktopChatRuntimeTests.swift": { - "mtime": 1788939901.0237906, + "mtime": 1788947732.4923093, "ast_hash": "25b51a3751cf1aa52d7df51c9d59c354", "semantic_hash": "25b51a3751cf1aa52d7df51c9d59c354" }, "macos/ThingtimeNode/Tests/ThingtimeNodeCoreTests/EndpointScopeTests.swift": { - "mtime": 1788939901.0238698, + "mtime": 1788947732.4923093, "ast_hash": "280472e10f1caaf5050dd06978d810f5", "semantic_hash": "280472e10f1caaf5050dd06978d810f5" }, "macos/ThingtimeNode/Tests/ThingtimeNodeCoreTests/LiveAISyncCoordinatorTests.swift": { - "mtime": 1788939901.0239797, + "mtime": 1788947732.4923093, "ast_hash": "48fb9e8162350e9a451e97aa645f8c89", "semantic_hash": "48fb9e8162350e9a451e97aa645f8c89" }, "macos/ThingtimeNode/Tests/ThingtimeNodeCoreTests/MenuBarIconTests.swift": { - "mtime": 1788939901.024075, + "mtime": 1788947732.4923093, "ast_hash": "0f2553090cae58a2989dda0b19272aab", "semantic_hash": "0f2553090cae58a2989dda0b19272aab" }, "macos/ThingtimeNode/Tests/ThingtimeNodeCoreTests/NodeControllerTests.swift": { - "mtime": 1788939901.0242658, + "mtime": 1788947732.4923093, "ast_hash": "6aa67e9c9ab7acc7ce42d32d65c70c7a", "semantic_hash": "6aa67e9c9ab7acc7ce42d32d65c70c7a" }, "macos/ThingtimeNode/Tests/ThingtimeNodeCoreTests/PairingManagerTests.swift": { - "mtime": 1788939901.0243764, + "mtime": 1788947732.4923093, "ast_hash": "f76484ed8d2606c8f5cd6ee0a5adc4cf", "semantic_hash": "f76484ed8d2606c8f5cd6ee0a5adc4cf" }, "macos/ThingtimeNode/Tests/ThingtimeNodeCoreTests/SafeActionPolicyTests.swift": { - "mtime": 1788939901.0244772, + "mtime": 1788947732.4923093, "ast_hash": "976a12667f07b157d84d72a00716bdf7", "semantic_hash": "976a12667f07b157d84d72a00716bdf7" }, "macos/ThingtimeNode/Tests/ThingtimeNodeCoreTests/ScreenCaptureTests.swift": { - "mtime": 1788939901.0245862, + "mtime": 1788947732.4923093, "ast_hash": "2c83175f4d5dce5f3090996aba8b8dcb", "semantic_hash": "2c83175f4d5dce5f3090996aba8b8dcb" }, "macos/ThingtimeNode/Tests/ThingtimeNodeCoreTests/SystemConfigurationProfileProposalTests.swift": { - "mtime": 1788939901.0247362, + "mtime": 1788947732.4923093, "ast_hash": "93677739a629f081a5f0529ffa65aed5", "semantic_hash": "93677739a629f081a5f0529ffa65aed5" }, "macos/ThingtimeNode/Tests/ThingtimeNodeCoreTests/SystemControlsTests.swift": { - "mtime": 1788939901.0255625, + "mtime": 1788947732.4923093, "ast_hash": "9e09f5ca328e3d770940dab131e90e66", "semantic_hash": "9e09f5ca328e3d770940dab131e90e66" }, "macos/ThingtimeNode/Tests/ThingtimeNodeCoreTests/ThingtimeAPIClientTests.swift": { - "mtime": 1788939901.0275612, + "mtime": 1788947732.4923093, "ast_hash": "6611b1336d82096036cc1c2a3d721241", "semantic_hash": "6611b1336d82096036cc1c2a3d721241" }, "macos/ThingtimeNode/Tests/ThingtimeNodeCoreTests/WireCodecTests.swift": { - "mtime": 1788939901.0277634, + "mtime": 1788947732.4923093, "ast_hash": "b3c3c6c6ceb6c0bd90717743e535cecd", "semantic_hash": "b3c3c6c6ceb6c0bd90717743e535cecd" }, "macos/ThingtimeNode/scripts/build-and-run.sh": { - "mtime": 1788939901.0279174, + "mtime": 1788947732.493274, "ast_hash": "48cdad550a5d55df5a287111fc1f1acb", "semantic_hash": "48cdad550a5d55df5a287111fc1f1acb" }, "macos/ThingtimeNode/scripts/build-bundle.sh": { - "mtime": 1788939901.0280814, + "mtime": 1788947732.493274, "ast_hash": "36382ced18b068bb2c5fa23513df81f9", "semantic_hash": "36382ced18b068bb2c5fa23513df81f9" }, "macos/ThingtimeRecovery/App/ThingtimeRecoveryApp.swift": { - "mtime": 1788939901.0285041, + "mtime": 1788947732.4936054, "ast_hash": "df74f302e9735095ecab92169fd00731", "semantic_hash": "df74f302e9735095ecab92169fd00731" }, "macos/ThingtimeRecovery/App/ThingtimeRecoveryInstallerMain.swift": { - "mtime": 1788939901.028592, + "mtime": 1788947732.4937832, "ast_hash": "7dc02bb40810c03f19b110171d66e5e2", "semantic_hash": "7dc02bb40810c03f19b110171d66e5e2" }, "macos/ThingtimeRecovery/Models/RecoveryModels.swift": { - "mtime": 1788939901.0290701, + "mtime": 1788947732.4939036, "ast_hash": "e1fa2b0ca4ef552623d0af4cce50f4d9", "semantic_hash": "e1fa2b0ca4ef552623d0af4cce50f4d9" }, "macos/ThingtimeRecovery/Package.swift": { - "mtime": 1788939901.0293684, + "mtime": 1788947732.4939036, "ast_hash": "c9e900f9c57a4dd01105c814398924b1", "semantic_hash": "c9e900f9c57a4dd01105c814398924b1" }, "macos/ThingtimeRecovery/Services/BundleVerifier.swift": { - "mtime": 1788939901.029779, + "mtime": 1788947732.4941087, "ast_hash": "7fb8252abdd54aed9f3e993d0ecc8155", "semantic_hash": "7fb8252abdd54aed9f3e993d0ecc8155" }, "macos/ThingtimeRecovery/Services/GitHubReleaseCatalog.swift": { - "mtime": 1788939901.029892, + "mtime": 1788947732.4942741, "ast_hash": "fcad680827776d4b5c886c66abe08e34", "semantic_hash": "fcad680827776d4b5c886c66abe08e34" }, "macos/ThingtimeRecovery/Services/ProcessExecution.swift": { - "mtime": 1788939901.0299666, + "mtime": 1788947732.4942741, "ast_hash": "03db5f07fe6568c404649901249a2443", "semantic_hash": "03db5f07fe6568c404649901249a2443" }, "macos/ThingtimeRecovery/Services/RecoveryCache.swift": { - "mtime": 1788939901.0301392, + "mtime": 1788947732.4942741, "ast_hash": "86b3c83b84bcdda8e0bbd30c013cd5a9", "semantic_hash": "86b3c83b84bcdda8e0bbd30c013cd5a9" }, "macos/ThingtimeRecovery/Services/RecoveryInstaller.swift": { - "mtime": 1788939901.0302398, + "mtime": 1788947732.4942741, "ast_hash": "26555a1e2c0ad38f33efacbe2692599f", "semantic_hash": "26555a1e2c0ad38f33efacbe2692599f" }, "macos/ThingtimeRecovery/Services/RecoveryPaths.swift": { - "mtime": 1788939901.0303087, + "mtime": 1788947732.4942741, "ast_hash": "9d2c3dd5810f28e33cd786c961181a4a", "semantic_hash": "9d2c3dd5810f28e33cd786c961181a4a" }, "macos/ThingtimeRecovery/Stores/RecoveryStore.swift": { - "mtime": 1788939901.0304437, + "mtime": 1788947732.4942741, "ast_hash": "ccfd4af7486b730fa048dac2ffb7caeb", "semantic_hash": "ccfd4af7486b730fa048dac2ffb7caeb" }, "macos/ThingtimeRecovery/Tests/ThingtimeRecoveryCoreTests/RecoveryCoreTests.swift": { - "mtime": 1788939901.0306451, + "mtime": 1788947732.4947686, "ast_hash": "520dbc246a4642efd578d46199ac6742", "semantic_hash": "520dbc246a4642efd578d46199ac6742" }, "macos/ThingtimeRecovery/Views/RecoveryContentView.swift": { - "mtime": 1788939901.0309238, + "mtime": 1788947732.494992, "ast_hash": "7be98e616644fc18cd300dcdf5172605", "semantic_hash": "7be98e616644fc18cd300dcdf5172605" }, "macos/ThingtimeRecovery/script/build-bundle.sh": { - "mtime": 1788939901.0313923, + "mtime": 1788947732.494992, "ast_hash": "2ebde754d4ed46a0ab049c6566e369ab", "semantic_hash": "2ebde754d4ed46a0ab049c6566e369ab" }, "macos/ThingtimeRecovery/script/build-production-release.sh": { - "mtime": 1788939901.0316966, + "mtime": 1788947732.4952161, "ast_hash": "b54758010b52b8bfcfa248ca566dddcc", "semantic_hash": "b54758010b52b8bfcfa248ca566dddcc" }, "macos/ThingtimeRecovery/script/build-unsigned-release.sh": { - "mtime": 1788939901.0331213, + "mtime": 1788947732.4952161, "ast_hash": "84176dc73f55166c3f23db228680c5f6", "semantic_hash": "84176dc73f55166c3f23db228680c5f6" }, "macos/ThingtimeRecovery/script/build_and_run.sh": { - "mtime": 1788939901.033472, + "mtime": 1788947732.4952161, "ast_hash": "7f865657e3492fd093c1cb8b6b510fab", "semantic_hash": "7f865657e3492fd093c1cb8b6b510fab" }, "macos/ThingtimeRecovery/script/verify-production-bundle.sh": { - "mtime": 1788939901.0337765, + "mtime": 1788947732.4952161, "ast_hash": "1e41cbdeaec6ef6cb454bfe9acf7cefb", "semantic_hash": "1e41cbdeaec6ef6cb454bfe9acf7cefb" }, "macos/ThingtimeRecovery/script/verify-unsigned-bundle.sh": { - "mtime": 1788939901.0340297, + "mtime": 1788947732.4952161, "ast_hash": "3a6f78c5f9d65175398762c3186fa7eb", "semantic_hash": "3a6f78c5f9d65175398762c3186fa7eb" }, "remix/app/api/utils/auth/accountHintsHeaders.test.ts": { - "mtime": 1788939901.0822303, + "mtime": 1788947732.51426, "ast_hash": "2e39ebdae8ecfa74e3e0eb5c2309a030", "semantic_hash": "2e39ebdae8ecfa74e3e0eb5c2309a030" }, "remix/app/api/utils/auth/accountHintsHeaders.ts": { - "mtime": 1788939901.0823114, + "mtime": 1788947732.51426, "ast_hash": "2275ea634e513a22ea913ec324308e3a", "semantic_hash": "2275ea634e513a22ea913ec324308e3a" }, "remix/app/api/utils/capabilities/capabilityContract.ts": { - "mtime": 1788939901.08961, + "mtime": 1788947732.517274, "ast_hash": "9cd1b67ee6417b9f12a0bdf25d39e19f", "semantic_hash": "9cd1b67ee6417b9f12a0bdf25d39e19f" }, "remix/app/api/utils/capabilities/requireCapability.client.ts": { - "mtime": 1788939901.089688, + "mtime": 1788947732.5175674, "ast_hash": "5e4ebdfdfa9851d3e505d36c29c1261a", "semantic_hash": "5e4ebdfdfa9851d3e505d36c29c1261a" }, "remix/app/api/utils/capabilities/thingtimeCapabilities.test.ts": { - "mtime": 1788943126.436107, + "mtime": 1788948107.3944938, "ast_hash": "bed49fffd9680158546417fc78ac53d2", "semantic_hash": "" }, "remix/app/api/utils/capabilities/thingtimeCapabilities.ts": { - "mtime": 1788939901.0899189, + "mtime": 1788947732.5175674, "ast_hash": "715c7ea35b264739958b32912b4ccaee", "semantic_hash": "715c7ea35b264739958b32912b4ccaee" }, "remix/app/api/utils/deployment/dataEnvironment.test.ts": { - "mtime": 1788939901.0994804, + "mtime": 1788947732.5209231, "ast_hash": "ee9b54abed64abe122a54c7412c310e0", "semantic_hash": "ee9b54abed64abe122a54c7412c310e0" }, "remix/app/api/utils/deployment/dataEnvironment.ts": { - "mtime": 1788939901.0995634, + "mtime": 1788947732.5210648, "ast_hash": "782364492deaf73ff2efb28615636e74", "semantic_hash": "782364492deaf73ff2efb28615636e74" }, "remix/app/api/utils/devices/deviceAuth.ts": { - "mtime": 1788939901.10051, + "mtime": 1788947732.5212739, "ast_hash": "7fd5874ec1b91f2d538c1f509c1393f5", "semantic_hash": "7fd5874ec1b91f2d538c1f509c1393f5" }, "remix/app/api/utils/devices/deviceCommands.ts": { - "mtime": 1788939901.1009455, + "mtime": 1788947732.5216804, "ast_hash": "2c1c553c6a666eb8077c653e06d36cff", "semantic_hash": "2c1c553c6a666eb8077c653e06d36cff" }, "remix/app/api/utils/devices/deviceContracts.ts": { - "mtime": 1788939901.1011927, + "mtime": 1788947732.5216804, "ast_hash": "e0796339d19e0709d9222ea883330f84", "semantic_hash": "e0796339d19e0709d9222ea883330f84" }, "remix/app/api/utils/devices/deviceCore.test.ts": { - "mtime": 1788939901.1021347, + "mtime": 1788947732.5216804, "ast_hash": "4f3ec8754c1ac993be904ec034032d9b", "semantic_hash": "4f3ec8754c1ac993be904ec034032d9b" }, "remix/app/api/utils/devices/deviceCore.ts": { - "mtime": 1788939901.1081119, + "mtime": 1788947732.5216804, "ast_hash": "ea67763232cde83b094c1b34516284b3", "semantic_hash": "ea67763232cde83b094c1b34516284b3" }, "remix/app/api/utils/devices/deviceLiveAi.ts": { - "mtime": 1788939901.1084228, + "mtime": 1788947732.5216804, "ast_hash": "b6b25ec7ef47e17984d1682850265fbf", "semantic_hash": "b6b25ec7ef47e17984d1682850265fbf" }, "remix/app/api/utils/devices/deviceLiveAiCore.test.ts": { - "mtime": 1788939901.1085787, + "mtime": 1788947732.5222738, "ast_hash": "1272329d20c2170caec473d3c23719bf", "semantic_hash": "1272329d20c2170caec473d3c23719bf" }, "remix/app/api/utils/devices/deviceLiveAiCore.ts": { - "mtime": 1788939901.1087356, + "mtime": 1788947732.5222738, "ast_hash": "67df9a4e8a26e727a939f02d2da9ff81", "semantic_hash": "67df9a4e8a26e727a939f02d2da9ff81" }, "remix/app/api/utils/devices/deviceScreens.ts": { - "mtime": 1788939901.1088607, + "mtime": 1788947732.5222738, "ast_hash": "2b85b2a7ab8fa98e5d86c71e71840132", "semantic_hash": "2b85b2a7ab8fa98e5d86c71e71840132" }, "remix/app/api/utils/devices/devices.ts": { - "mtime": 1788939901.1090152, + "mtime": 1788947732.5222738, "ast_hash": "d24095be03c965d32a0ab67f96cff1a0", "semantic_hash": "d24095be03c965d32a0ab67f96cff1a0" }, "remix/app/api/utils/messenger/aiConnections.test.ts": { - "mtime": 1788939901.132244, + "mtime": 1788947732.527274, "ast_hash": "b4bed055318db0e0ad6e7b063554178a", "semantic_hash": "b4bed055318db0e0ad6e7b063554178a" }, "remix/app/api/utils/messenger/aiConnections.ts": { - "mtime": 1788939901.1324136, + "mtime": 1788947732.5276182, "ast_hash": "c372ff438913f2bcf3d892e299d39e0b", "semantic_hash": "c372ff438913f2bcf3d892e299d39e0b" }, "remix/app/api/utils/messenger/externalAi.ts": { - "mtime": 1788939901.1337173, + "mtime": 1788947732.5276182, "ast_hash": "809565e9530ac5834475e352939ac195", "semantic_hash": "809565e9530ac5834475e352939ac195" }, "remix/app/api/utils/messenger/storage.test.ts": { - "mtime": 1788939901.13671, + "mtime": 1788947732.5282738, "ast_hash": "afd933afd757955b7a722ae2ab9a7c3f", "semantic_hash": "afd933afd757955b7a722ae2ab9a7c3f" }, "remix/app/api/utils/messenger/storage.ts": { - "mtime": 1788939901.1368532, + "mtime": 1788947732.5282738, "ast_hash": "5d92a107cfa2818cd783cd6579351127", "semantic_hash": "5d92a107cfa2818cd783cd6579351127" }, "remix/app/api/utils/mongodb/indexBudget.test.ts": { - "mtime": 1788939901.1577764, + "mtime": 1788947732.5382738, "ast_hash": "691b562983b2ebf760700ba266f5bb7f", "semantic_hash": "691b562983b2ebf760700ba266f5bb7f" }, "remix/app/api/utils/mongodb/uniqueKeys.test.ts": { - "mtime": 1788939901.1604085, + "mtime": 1788947732.5392737, "ast_hash": "6f0f3d094270ae14b1764947dec30baf", "semantic_hash": "6f0f3d094270ae14b1764947dec30baf" }, "remix/app/api/utils/mongodb/uniqueKeys.ts": { - "mtime": 1788939901.1608593, + "mtime": 1788947732.5392737, "ast_hash": "701c6588775dc63d713b286c259df05d", "semantic_hash": "701c6588775dc63d713b286c259df05d" }, "remix/app/api/utils/peers/peerDiscovery.test.ts": { - "mtime": 1788939901.1648335, + "mtime": 1788947732.5402737, "ast_hash": "0dc4cea53b0901917d9848db703d5fc4", "semantic_hash": "0dc4cea53b0901917d9848db703d5fc4" }, "remix/app/api/utils/peers/peerDiscovery.ts": { - "mtime": 1788939901.1652265, + "mtime": 1788947732.540882, "ast_hash": "a1f93244b774d0a40a6bad796af06c23", "semantic_hash": "a1f93244b774d0a40a6bad796af06c23" }, "remix/app/api/utils/storage/accountedThings.test.ts": { - "mtime": 1788939901.1700644, + "mtime": 1788947732.5415852, "ast_hash": "71987f9a3dab931d21243109fa09755d", "semantic_hash": "71987f9a3dab931d21243109fa09755d" }, "remix/app/api/utils/storage/accountedThings.ts": { - "mtime": 1788939901.1701832, + "mtime": 1788947732.5423644, "ast_hash": "70af1e54294609daec7893738e4cadb3", "semantic_hash": "70af1e54294609daec7893738e4cadb3" }, "remix/app/components/Account/accountHintOrigin.test.ts": { - "mtime": 1788939901.1896405, + "mtime": 1788947732.5489984, "ast_hash": "da333438e6dc30735b12e653ee1e0d96", "semantic_hash": "da333438e6dc30735b12e653ee1e0d96" }, "remix/app/components/Account/accountHintOrigin.ts": { - "mtime": 1788939901.1897643, + "mtime": 1788947732.5489984, "ast_hash": "996d7d77b42a54b3488f1ca75b9a4aaa", "semantic_hash": "996d7d77b42a54b3488f1ca75b9a4aaa" }, "remix/app/components/Account/ssoHub.test.ts": { - "mtime": 1788939901.1898985, + "mtime": 1788947732.5489984, "ast_hash": "4437a6b752c8b1446be648b75d009fcd", "semantic_hash": "4437a6b752c8b1446be648b75d009fcd" }, "remix/app/components/Account/ssoHub.ts": { - "mtime": 1788939901.1899986, + "mtime": 1788947732.5489984, "ast_hash": "876fd658d848e18b5837b4daa7a57556", "semantic_hash": "876fd658d848e18b5837b4daa7a57556" }, "remix/app/components/Devices/DeviceApplications.tsx": { - "mtime": 1788939901.2214255, + "mtime": 1788947732.5592735, "ast_hash": "b67dc5461b47900f38f856eda2fd5210", "semantic_hash": "b67dc5461b47900f38f856eda2fd5210" }, "remix/app/components/Devices/DeviceApprovalCard.tsx": { - "mtime": 1788939901.2215667, + "mtime": 1788947732.5599282, "ast_hash": "e9bf799f5eb28edbcba21b4457c558ae", "semantic_hash": "e9bf799f5eb28edbcba21b4457c558ae" }, "remix/app/components/Devices/DeviceAudioControls.tsx": { - "mtime": 1788939901.2217174, + "mtime": 1788947732.5599282, "ast_hash": "2ae16b0b59afcf4e81b1db4fe7d222a6", "semantic_hash": "2ae16b0b59afcf4e81b1db4fe7d222a6" }, "remix/app/components/Devices/DeviceCard.tsx": { - "mtime": 1788939901.2218554, + "mtime": 1788947732.5599282, "ast_hash": "358176aa6cb656c265fee546c042f7e4", "semantic_hash": "358176aa6cb656c265fee546c042f7e4" }, "remix/app/components/Devices/DeviceCommandTimeline.tsx": { - "mtime": 1788939901.22201, + "mtime": 1788947732.5599282, "ast_hash": "765353f83c00f02f3fe4bd52562f7b02", "semantic_hash": "765353f83c00f02f3fe4bd52562f7b02" }, "remix/app/components/Devices/DeviceConnectors.tsx": { - "mtime": 1788939901.222186, + "mtime": 1788947732.5599282, "ast_hash": "4013432d982d300fedd17f282eacbceb", "semantic_hash": "4013432d982d300fedd17f282eacbceb" }, "remix/app/components/Devices/DeviceDetailsDrawer.tsx": { - "mtime": 1788939901.2223206, + "mtime": 1788947732.5599282, "ast_hash": "2e62dfdf02280abdb6312f5dded66060", "semantic_hash": "2e62dfdf02280abdb6312f5dded66060" }, "remix/app/components/Devices/DeviceListRow.tsx": { - "mtime": 1788939901.2226505, + "mtime": 1788947732.5599282, "ast_hash": "a56127889b963f22cd66102feeab7f35", "semantic_hash": "a56127889b963f22cd66102feeab7f35" }, "remix/app/components/Devices/DeviceNetworkControls.tsx": { - "mtime": 1788939901.222951, + "mtime": 1788947732.5599282, "ast_hash": "3a334281651d29f75100763390a48504", "semantic_hash": "3a334281651d29f75100763390a48504" }, "remix/app/components/Devices/DevicePowerControls.tsx": { - "mtime": 1788939901.2230473, + "mtime": 1788947732.5602736, "ast_hash": "8c5760cb1a67ac859e3789176b0a39b4", "semantic_hash": "8c5760cb1a67ac859e3789176b0a39b4" }, "remix/app/components/Devices/DeviceStateGrid.tsx": { - "mtime": 1788939901.2231734, + "mtime": 1788947732.5602736, "ast_hash": "5d3b28fe640c46654084452a71d91ca5", "semantic_hash": "5d3b28fe640c46654084452a71d91ca5" }, "remix/app/components/Devices/DeviceSystemControls.tsx": { - "mtime": 1788939901.2233083, + "mtime": 1788947732.5602736, "ast_hash": "f571859269c077f8937259e74bb8fcb1", "semantic_hash": "f571859269c077f8937259e74bb8fcb1" }, "remix/app/components/Devices/LocalNodeSetupCard.tsx": { - "mtime": 1788941746.290437, + "mtime": 1788948107.3964937, "ast_hash": "2e0f3d14145db6463d869fff289bbe87", "semantic_hash": "" }, "remix/app/components/Devices/ScreenSessionPanel.tsx": { - "mtime": 1788939901.2235858, + "mtime": 1788947732.5602736, "ast_hash": "4994f93f847e47dbd9cb1a10052372b7", "semantic_hash": "4994f93f847e47dbd9cb1a10052372b7" }, "remix/app/components/Devices/deviceCache.ts": { - "mtime": 1788939901.2238655, + "mtime": 1788947732.5602736, "ast_hash": "e398c888c07710a465523fabc82fc6fc", "semantic_hash": "e398c888c07710a465523fabc82fc6fc" }, "remix/app/components/Devices/deviceCore.test.ts": { - "mtime": 1788939901.223982, + "mtime": 1788947732.5602736, "ast_hash": "9edf1c52fac3f5c3386ffc9b494e0872", "semantic_hash": "9edf1c52fac3f5c3386ffc9b494e0872" }, "remix/app/components/Devices/deviceCore.ts": { - "mtime": 1788939901.2242906, + "mtime": 1788947732.5602736, "ast_hash": "a83edea8deef28f3b4cd44ed1f64605f", "semantic_hash": "a83edea8deef28f3b4cd44ed1f64605f" }, "remix/app/components/Devices/deviceDrawerLayout.test.ts": { - "mtime": 1788939901.2244053, + "mtime": 1788947732.5602736, "ast_hash": "df3cba3133ae3cfdbf83b25649eca029", "semantic_hash": "df3cba3133ae3cfdbf83b25649eca029" }, "remix/app/components/Devices/deviceDrawerLayout.ts": { - "mtime": 1788939901.2244847, + "mtime": 1788947732.5602736, "ast_hash": "a817b1e6feb79e0c9dc0e1e044ab317b", "semantic_hash": "a817b1e6feb79e0c9dc0e1e044ab317b" }, "remix/app/components/Devices/deviceDrawerPreferences.test.ts": { - "mtime": 1788939901.2245657, + "mtime": 1788947732.5602736, "ast_hash": "70a625974c3aa3f1d84c79958fff95aa", "semantic_hash": "70a625974c3aa3f1d84c79958fff95aa" }, "remix/app/components/Devices/deviceDrawerPreferences.ts": { - "mtime": 1788939901.2248232, + "mtime": 1788947732.5602736, "ast_hash": "5b4a1922d3ba0d780a937e14c4e386e0", "semantic_hash": "5b4a1922d3ba0d780a937e14c4e386e0" }, "remix/app/components/Devices/deviceTypes.ts": { - "mtime": 1788939901.2251272, + "mtime": 1788947732.5602736, "ast_hash": "81427ca802e9f37410500f9845b4668e", "semantic_hash": "81427ca802e9f37410500f9845b4668e" }, "remix/app/components/Devices/deviceWire.test.ts": { - "mtime": 1788939901.2253, + "mtime": 1788947732.5602736, "ast_hash": "70b156e85acee8ef111322efb648ba35", "semantic_hash": "70b156e85acee8ef111322efb648ba35" }, "remix/app/components/Devices/drawerStacking.test.ts": { - "mtime": 1788939901.225392, + "mtime": 1788947732.5612736, "ast_hash": "2b911cf16550b0e7f8e74c98d817803b", "semantic_hash": "2b911cf16550b0e7f8e74c98d817803b" }, "remix/app/components/Devices/index.ts": { - "mtime": 1788939901.2254813, + "mtime": 1788947732.5612736, "ast_hash": "f86c2d9c6af2586f6033cd2527acec04", "semantic_hash": "f86c2d9c6af2586f6033cd2527acec04" }, "remix/app/components/Devices/localNodePresentation.test.ts": { - "mtime": 1788939901.2258928, + "mtime": 1788947732.5612736, "ast_hash": "e7237c222366498444f880895283955c", "semantic_hash": "e7237c222366498444f880895283955c" }, "remix/app/components/Devices/localNodePresentation.ts": { - "mtime": 1788939901.2260022, + "mtime": 1788947732.5612736, "ast_hash": "28b029d67745557c7b0a1ad1b9fe7ea5", "semantic_hash": "28b029d67745557c7b0a1ad1b9fe7ea5" }, "remix/app/components/Devices/useDeviceApi.ts": { - "mtime": 1788939901.22632, + "mtime": 1788947732.5612736, "ast_hash": "3cc6da4b6e3f5b3af2c7d1c8cf967db5", "semantic_hash": "3cc6da4b6e3f5b3af2c7d1c8cf967db5" }, "remix/app/components/Devices/useDeviceStore.ts": { - "mtime": 1788939901.2268221, + "mtime": 1788947732.5612736, "ast_hash": "5ec8fbba591a1ef04bbc943b39c120e6", "semantic_hash": "5ec8fbba591a1ef04bbc943b39c120e6" }, "remix/app/components/Devices/useLocalThingtimeNode.ts": { - "mtime": 1788939901.228078, + "mtime": 1788947732.5612736, "ast_hash": "2a49b45b1497a0b92f41449247410e23", "semantic_hash": "2a49b45b1497a0b92f41449247410e23" }, "remix/app/components/Messenger/AgentComposerControls.tsx": { - "mtime": 1788939901.262498, + "mtime": 1788947732.5744383, "ast_hash": "ac3172245c36b6aa4d7c47f2ce0852a5", "semantic_hash": "ac3172245c36b6aa4d7c47f2ce0852a5" }, "remix/app/components/Messenger/AgentLiveActivity.tsx": { - "mtime": 1788939901.2627542, + "mtime": 1788947732.5748258, "ast_hash": "86ef36152717254035a7de4dd20ed32a", "semantic_hash": "86ef36152717254035a7de4dd20ed32a" }, "remix/app/components/Messenger/AiConnectionsModal.tsx": { - "mtime": 1788939901.2629528, + "mtime": 1788947732.5748258, "ast_hash": "74a03c91332f12f43c76882849eb2508", "semantic_hash": "74a03c91332f12f43c76882849eb2508" }, "remix/app/components/Messenger/agentSessionCache.test.ts": { - "mtime": 1788939901.2656794, + "mtime": 1788947732.5752735, "ast_hash": "9f092cd148a511af7ef41811d27020b2", "semantic_hash": "9f092cd148a511af7ef41811d27020b2" }, "remix/app/components/Messenger/agentSessionCache.ts": { - "mtime": 1788939901.2657712, + "mtime": 1788947732.5752735, "ast_hash": "4c9d9b4ec21c50681e528816c9d88f8b", "semantic_hash": "4c9d9b4ec21c50681e528816c9d88f8b" }, "remix/app/components/Messenger/agentSessionCore.test.ts": { - "mtime": 1788939901.26591, + "mtime": 1788947732.5752735, "ast_hash": "416c17602c01840917df71513ebd3c92", "semantic_hash": "416c17602c01840917df71513ebd3c92" }, "remix/app/components/Messenger/agentSessionCore.ts": { - "mtime": 1788939901.2660158, + "mtime": 1788947732.5752735, "ast_hash": "07aa350dfc1adeb7d3e446d8cb9d2ba3", "semantic_hash": "07aa350dfc1adeb7d3e446d8cb9d2ba3" }, "remix/app/components/Messenger/liveConnectorProjects.test.ts": { - "mtime": 1788939901.2661042, + "mtime": 1788947732.5752735, "ast_hash": "c8fc021f85cb4ba74e49eecb3ba67109", "semantic_hash": "c8fc021f85cb4ba74e49eecb3ba67109" }, "remix/app/components/Messenger/liveConnectorProjects.ts": { - "mtime": 1788939901.2661855, + "mtime": 1788947732.5752735, "ast_hash": "ca8693378695f94ce182285f6bb7cc00", "semantic_hash": "ca8693378695f94ce182285f6bb7cc00" }, "remix/app/components/Messenger/liveSessionDiscovery.test.ts": { - "mtime": 1788939901.2662604, + "mtime": 1788947732.5752735, "ast_hash": "36f3468a0f267d7e27cdc2e3b941282a", "semantic_hash": "36f3468a0f267d7e27cdc2e3b941282a" }, "remix/app/components/Messenger/liveSessionDiscovery.ts": { - "mtime": 1788939901.2664065, + "mtime": 1788947732.5752735, "ast_hash": "9cc330dde68bc6bf70457d3489fc3281", "semantic_hash": "9cc330dde68bc6bf70457d3489fc3281" }, "remix/app/components/Messenger/liveSessionRead.test.ts": { - "mtime": 1788939901.2665026, + "mtime": 1788947732.5762734, "ast_hash": "7f1c5726e1061dcb99121cfdbba4d16e", "semantic_hash": "7f1c5726e1061dcb99121cfdbba4d16e" }, "remix/app/components/Messenger/liveSessionRead.ts": { - "mtime": 1788939901.2666614, + "mtime": 1788947732.5762734, "ast_hash": "1345df98caedda1881ce92ce8faa1b70", "semantic_hash": "1345df98caedda1881ce92ce8faa1b70" }, "remix/app/components/Messenger/useAgentSession.test.ts": { - "mtime": 1788939901.2672348, + "mtime": 1788947732.5762734, "ast_hash": "cc3058056e157078142d01a406bfbb2c", "semantic_hash": "cc3058056e157078142d01a406bfbb2c" }, "remix/app/components/Messenger/useAgentSession.ts": { - "mtime": 1788939901.267485, + "mtime": 1788947732.5762734, "ast_hash": "24186fa42603ee2ba142aa602104438a", "semantic_hash": "24186fa42603ee2ba142aa602104438a" }, "remix/app/components/Nav/Drawer/ElectronUpdateManager.tsx": { - "mtime": 1788939901.2733097, + "mtime": 1788947732.5780091, "ast_hash": "5939926810b41b5b32e93f8d3ff2ac28", "semantic_hash": "5939926810b41b5b32e93f8d3ff2ac28" }, "remix/app/components/Nav/navChrome.test.ts": { - "mtime": 1788939901.2757995, + "mtime": 1788947732.5782735, "ast_hash": "a2207b93527c35478784b061084d889c", "semantic_hash": "a2207b93527c35478784b061084d889c" }, "remix/app/components/Peers/DeploymentPeersPage.tsx": { - "mtime": 1788939901.2846246, + "mtime": 1788947732.5793066, "ast_hash": "991be3ed692bb3f38974cdd675ccb268", "semantic_hash": "991be3ed692bb3f38974cdd675ccb268" }, "remix/app/components/Peers/peerExplorer.test.ts": { - "mtime": 1788939901.2847111, + "mtime": 1788947732.5799708, "ast_hash": "ff663bc07f0f25e399db2bcc4a5ebb9e", "semantic_hash": "ff663bc07f0f25e399db2bcc4a5ebb9e" }, "remix/app/components/Peers/peerExplorer.ts": { - "mtime": 1788939901.2847893, + "mtime": 1788947732.5799708, "ast_hash": "263c662da6367cf0c4f587208975bfce", "semantic_hash": "263c662da6367cf0c4f587208975bfce" }, "remix/app/docs/apiCapabilities.test.ts": { - "mtime": 1788943126.4422688, + "mtime": 1788948107.3984938, "ast_hash": "6dbaa615744179a39c670cdcd4c5c785", "semantic_hash": "" }, "remix/app/routes/api/v1/admin/peers/_peers.test.ts": { - "mtime": 1788939901.3666925, + "mtime": 1788947732.5983634, "ast_hash": "920a4fa000424df75588644a0ac84fe1", "semantic_hash": "920a4fa000424df75588644a0ac84fe1" }, "remix/app/routes/api/v1/admin/peers/_peers.tsx": { - "mtime": 1788939901.3668275, + "mtime": 1788947732.5986507, "ast_hash": "bc119ee09bb961c8f49f4154034bcdb4", "semantic_hash": "bc119ee09bb961c8f49f4154034bcdb4" }, "remix/app/routes/api/v1/ai/connections/_connections.tsx": { - "mtime": 1788939901.3699284, + "mtime": 1788947732.599501, "ast_hash": "4891fad95e2ca7cb589dbe9a744dfd83", "semantic_hash": "4891fad95e2ca7cb589dbe9a744dfd83" }, "remix/app/routes/api/v1/devices/_devices.tsx": { - "mtime": 1788939901.4014738, + "mtime": 1788947732.605746, "ast_hash": "0bb26f736f743f6d951d574861d4c994", "semantic_hash": "0bb26f736f743f6d951d574861d4c994" }, "remix/app/routes/api/v1/devices/approvals/_approvals.tsx": { - "mtime": 1788939901.401604, + "mtime": 1788947732.605969, "ast_hash": "6c15249875f932308b56ad16cf148532", "semantic_hash": "6c15249875f932308b56ad16cf148532" }, "remix/app/routes/api/v1/devices/commands/_commands.tsx": { - "mtime": 1788939901.401725, + "mtime": 1788947732.605969, "ast_hash": "a872bf843e22b210fa33f48671a81ae0", "semantic_hash": "a872bf843e22b210fa33f48671a81ae0" }, "remix/app/routes/api/v1/devices/events/_events.tsx": { - "mtime": 1788939901.4018404, + "mtime": 1788947732.605969, "ast_hash": "602764e0ba68a65cd19bd8ec0990a133", "semantic_hash": "602764e0ba68a65cd19bd8ec0990a133" }, "remix/app/routes/api/v1/devices/node/commands/_commands.tsx": { - "mtime": 1788939901.4019964, + "mtime": 1788947732.606161, "ast_hash": "ecffa9fda7aeb7d12aabecf8232f6160", "semantic_hash": "ecffa9fda7aeb7d12aabecf8232f6160" }, "remix/app/routes/api/v1/devices/node/live-sync/_live-sync.tsx": { - "mtime": 1788939901.4031055, + "mtime": 1788947732.606161, "ast_hash": "a7845cefccf62a1d2c8d64eae3e48b00", "semantic_hash": "a7845cefccf62a1d2c8d64eae3e48b00" }, "remix/app/routes/api/v1/devices/node/state/_state.tsx": { - "mtime": 1788939901.4032695, + "mtime": 1788947732.606161, "ast_hash": "560cd40e52389ab02af06184cd54bd90", "semantic_hash": "560cd40e52389ab02af06184cd54bd90" }, "remix/app/routes/api/v1/devices/node/sync/_sync.tsx": { - "mtime": 1788939901.4046135, + "mtime": 1788947732.6062732, "ast_hash": "bb7a52a34839856840a5ef25c02b2621", "semantic_hash": "bb7a52a34839856840a5ef25c02b2621" }, "remix/app/routes/api/v1/devices/pairing/_pairing.tsx": { - "mtime": 1788939901.4048889, + "mtime": 1788947732.6062732, "ast_hash": "bd8aec6c371e5169f62b297e9471acf2", "semantic_hash": "bd8aec6c371e5169f62b297e9471acf2" }, "remix/app/routes/api/v1/devices/pairing/claim/_claim.tsx": { - "mtime": 1788939901.405257, + "mtime": 1788947732.606635, "ast_hash": "fa95f2fecfeef605b9c656e7fe028185", "semantic_hash": "fa95f2fecfeef605b9c656e7fe028185" }, "remix/app/routes/api/v1/devices/permissions/_permissions.tsx": { - "mtime": 1788939901.4056199, + "mtime": 1788947732.606635, "ast_hash": "7428a901b2a995b336f41f1dc71afbef", "semantic_hash": "7428a901b2a995b336f41f1dc71afbef" }, "remix/app/routes/api/v1/devices/screen/_screen.tsx": { - "mtime": 1788939901.4059172, + "mtime": 1788947732.606635, "ast_hash": "67eef4597e8df261f6a7709063a2ff95", "semantic_hash": "67eef4597e8df261f6a7709063a2ff95" }, "remix/app/routes/api/v1/peers/_peers.tsx": { - "mtime": 1788939901.4277785, + "mtime": 1788947732.6118596, "ast_hash": "b0cff089d88a5e56fada50917c901606", "semantic_hash": "b0cff089d88a5e56fada50917c901606" }, "remix/app/routes/api/v1/peers/sync/_sync.test.ts": { - "mtime": 1788939901.4279273, + "mtime": 1788947732.6123714, "ast_hash": "96f2600c728d7bdadd4d4720f5f34945", "semantic_hash": "96f2600c728d7bdadd4d4720f5f34945" }, "remix/app/routes/api/v1/peers/sync/_sync.tsx": { - "mtime": 1788939901.4280078, + "mtime": 1788947732.6124246, "ast_hash": "f86c827cbfb00ab7cda58315159f08bc", "semantic_hash": "f86c827cbfb00ab7cda58315159f08bc" }, "remix/app/routes/peers.tsx": { - "mtime": 1788939901.4684372, + "mtime": 1788947732.624273, "ast_hash": "f8c76b875dbbbf63af838e3ff7764355", "semantic_hash": "f8c76b875dbbbf63af838e3ff7764355" }, "remix/scripts/verify-messenger-storage.ts": { - "mtime": 1788939902.6529741, + "mtime": 1788947732.6782727, "ast_hash": "1a655d7791e78ebbb783d2cbb9d94b09", "semantic_hash": "1a655d7791e78ebbb783d2cbb9d94b09" }, "remix/server/handlers/thingtime-capabilities.ts": { - "mtime": 1788939902.6601925, + "mtime": 1788947732.680851, "ast_hash": "7d9aca9c49bbb71c156c5aa6f77c3784", "semantic_hash": "7d9aca9c49bbb71c156c5aa6f77c3784" }, "remix/server/utils/apiFallback.test.ts": { - "mtime": 1788941673.3545146, + "mtime": 1788948107.4034936, "ast_hash": "74e5d29e46f0bd0b24a28e21f325a581", "semantic_hash": "" }, "MCP/ARCHITECTURE.md": { - "mtime": 1788939899.9832284, + "mtime": 1788947732.1638467, "ast_hash": "20facb2d6d9d357aefe392583bc16241", "semantic_hash": "20facb2d6d9d357aefe392583bc16241" }, "MCP/README.md": { - "mtime": 1788939899.9833481, + "mtime": 1788947732.1638467, "ast_hash": "ea1b89dfb8fb4880a49a2bc3d34eefd8", "semantic_hash": "ea1b89dfb8fb4880a49a2bc3d34eefd8" }, "PRs/383-codex-fix-thingtime-recovery-init-fix-thingtime-recovery-swiftui-startup-crash.md": { - "mtime": 1788939900.0039716, + "mtime": 1788947732.1722765, "ast_hash": "ce99f72c30adb635a8adccdf5b185ba3", "semantic_hash": "ce99f72c30adb635a8adccdf5b185ba3" }, "PRs/487-codex-feature-stack-merge-control-add-verified-multi-target-feature-stacks.md": { - "mtime": 1788939900.0098813, + "mtime": 1788947732.1732764, "ast_hash": "b53752d117ed034d7ca36fc8072bc10e", "semantic_hash": "b53752d117ed034d7ca36fc8072bc10e" }, "PRs/68-codex-thingtime-mcp-desktop-connectors--add-consent-first-thingtime-mcp-desktop-chat-bridge.md": { - "mtime": 1788939900.025148, + "mtime": 1788947732.1762764, "ast_hash": "baa08ae4010352b6a168cf1bdb6efd37", "semantic_hash": "baa08ae4010352b6a168cf1bdb6efd37" }, "electron/PRODUCTION_RELEASE.md": { - "mtime": 1788939900.2230685, + "mtime": 1788947732.3142755, "ast_hash": "5f893d5855c06cff1b5ee291cf16e0d0", "semantic_hash": "5f893d5855c06cff1b5ee291cf16e0d0" }, "macos/ThingtimeNode/README.md": { - "mtime": 1788939900.9893765, + "mtime": 1788947732.4889407, "ast_hash": "e8ff36243c89887996997b0c481ad775", "semantic_hash": "e8ff36243c89887996997b0c481ad775" }, "macos/ThingtimeNode/Resources/ThingtimeNodeIcon.png": { - "mtime": 1788939900.9909592, + "mtime": 1788947732.489274, "ast_hash": "365e4da7f4ded5e74b3cfefb4782e2b8", "semantic_hash": "365e4da7f4ded5e74b3cfefb4782e2b8" }, "macos/ThingtimeNode/Resources/ThingtimeNodeIcon.svg": { - "mtime": 1788939900.9914362, + "mtime": 1788947732.489274, "ast_hash": "c5ae578ea63363dce32373aab9e6412f", "semantic_hash": "c5ae578ea63363dce32373aab9e6412f" }, "macos/ThingtimeNode/Sources/ThingtimeNodeCore/Resources/MenuBar/thingtime-wordmark-color.png": { - "mtime": 1788939901.0160015, + "mtime": 1788947732.4913778, "ast_hash": "7185bcd991be7a2b162f92f9127b4067", "semantic_hash": "7185bcd991be7a2b162f92f9127b4067" }, "Commander/.prettierrc.json": { - "mtime": 1788939899.7127259, + "mtime": 1788947732.0759041, "ast_hash": "6f1fab0433f94a579c44789dbc3242c5", "semantic_hash": "6f1fab0433f94a579c44789dbc3242c5" }, "Commander/apps/daemon/package.json": { - "mtime": 1788939899.716804, + "mtime": 1788947732.076277, "ast_hash": "c8baee1b3984fd9023e881bc21f100a8", "semantic_hash": "c8baee1b3984fd9023e881bc21f100a8" }, "Commander/apps/daemon/src/index.ts": { - "mtime": 1788939899.7186131, + "mtime": 1788947732.0765638, "ast_hash": "70e04ae967eb4d9727e3231ef76eb7b0", "semantic_hash": "70e04ae967eb4d9727e3231ef76eb7b0" }, "Commander/apps/daemon/src/server.test.ts": { - "mtime": 1788939899.718818, + "mtime": 1788947732.076619, "ast_hash": "3f0e0f08c83fb7124b8221fa56935535", "semantic_hash": "3f0e0f08c83fb7124b8221fa56935535" }, "Commander/apps/daemon/src/server.ts": { - "mtime": 1788939899.7192304, + "mtime": 1788947732.076619, "ast_hash": "3e328f121977b2e5887ff76aab0a64c1", "semantic_hash": "3e328f121977b2e5887ff76aab0a64c1" }, "Commander/apps/daemon/src/services/applications.test.ts": { - "mtime": 1788939899.7196493, + "mtime": 1788947732.076619, "ast_hash": "c142768706b2895fbbd770d4f224a21b", "semantic_hash": "c142768706b2895fbbd770d4f224a21b" }, "Commander/apps/daemon/src/services/applications.ts": { - "mtime": 1788939899.7201762, + "mtime": 1788947732.076987, "ast_hash": "2f7ce3d865fa28b87e379b76bb31f1ba", "semantic_hash": "2f7ce3d865fa28b87e379b76bb31f1ba" }, "Commander/apps/daemon/src/services/calculator.test.ts": { - "mtime": 1788939899.7204423, + "mtime": 1788947732.076987, "ast_hash": "56973ab305e98e735ec52ec985f3d388", "semantic_hash": "56973ab305e98e735ec52ec985f3d388" }, "Commander/apps/daemon/src/services/calculator.ts": { - "mtime": 1788939899.7207525, + "mtime": 1788947732.076987, "ast_hash": "bc67fc702d8001a94e9f83a95a4a2fb4", "semantic_hash": "bc67fc702d8001a94e9f83a95a4a2fb4" }, "Commander/apps/daemon/src/services/catalog.ts": { - "mtime": 1788939899.7212727, + "mtime": 1788947732.076987, "ast_hash": "178eda254dd660807060fcb661f9030e", "semantic_hash": "178eda254dd660807060fcb661f9030e" }, "Commander/apps/daemon/src/services/config.ts": { - "mtime": 1788939899.7214787, + "mtime": 1788947732.076987, "ast_hash": "23e39e1625837ef384c954603665de07", "semantic_hash": "23e39e1625837ef384c954603665de07" }, "Commander/apps/daemon/src/services/indexing.test.ts": { - "mtime": 1788939899.7219253, + "mtime": 1788947732.076987, "ast_hash": "8b4550a72d11350ed708e7c58474451a", "semantic_hash": "8b4550a72d11350ed708e7c58474451a" }, "Commander/apps/daemon/src/services/indexing.ts": { - "mtime": 1788939899.7225072, + "mtime": 1788947732.076987, "ast_hash": "152826927c2ae9570adebe33d35fbbf6", "semantic_hash": "152826927c2ae9570adebe33d35fbbf6" }, "Commander/apps/daemon/src/services/macosSystem.test.ts": { - "mtime": 1788939899.7231076, + "mtime": 1788947732.0772772, "ast_hash": "ba706b418e409fd5ec5d70daa57d683a", "semantic_hash": "ba706b418e409fd5ec5d70daa57d683a" }, "Commander/apps/daemon/src/services/macosSystem.ts": { - "mtime": 1788939899.7233849, + "mtime": 1788947732.0772772, "ast_hash": "2819e803e8f12d24e9d95898573d80a4", "semantic_hash": "2819e803e8f12d24e9d95898573d80a4" }, "Commander/apps/daemon/src/services/pathActions.ts": { - "mtime": 1788939899.7254303, + "mtime": 1788947732.0772772, "ast_hash": "ab5e00a09d5d17b1ca7bae2da3aa393b", "semantic_hash": "ab5e00a09d5d17b1ca7bae2da3aa393b" }, "Commander/apps/daemon/src/services/persistence.test.ts": { - "mtime": 1788939899.7255576, + "mtime": 1788947732.0772772, "ast_hash": "9a7c1893dc1203a37c411838c87e03be", "semantic_hash": "9a7c1893dc1203a37c411838c87e03be" }, "Commander/apps/daemon/src/services/persistence.ts": { - "mtime": 1788939899.725712, + "mtime": 1788947732.0772772, "ast_hash": "c3629c998782101b416df263567e6789", "semantic_hash": "c3629c998782101b416df263567e6789" }, "Commander/apps/daemon/src/services/raycastLocal.test.ts": { - "mtime": 1788939899.7297318, + "mtime": 1788947732.0772772, "ast_hash": "62a32112b5c0cc2d62153f76bbeace50", "semantic_hash": "62a32112b5c0cc2d62153f76bbeace50" }, "Commander/apps/daemon/src/services/raycastLocal.ts": { - "mtime": 1788939899.7309277, + "mtime": 1788947732.0772772, "ast_hash": "0e885386b1962acf2f10bb76858955fa", "semantic_hash": "0e885386b1962acf2f10bb76858955fa" }, "Commander/apps/daemon/src/services/search.test.ts": { - "mtime": 1788939899.731091, + "mtime": 1788947732.0772772, "ast_hash": "e2ee2c634b9bb92f0d30379ea4e184aa", "semantic_hash": "e2ee2c634b9bb92f0d30379ea4e184aa" }, "Commander/apps/daemon/src/services/search.ts": { - "mtime": 1788939899.7314315, + "mtime": 1788947732.0772772, "ast_hash": "6f7575fdbe7dc369f7ec4b63e32bed0a", "semantic_hash": "6f7575fdbe7dc369f7ec4b63e32bed0a" }, "Commander/apps/daemon/src/services/searchCache.test.ts": { - "mtime": 1788939899.7320354, + "mtime": 1788947732.0772772, "ast_hash": "3ce91a07b27e6191015da1b8e51e9b8b", "semantic_hash": "3ce91a07b27e6191015da1b8e51e9b8b" }, "Commander/apps/daemon/src/services/searchCache.ts": { - "mtime": 1788939899.732331, + "mtime": 1788947732.0772772, "ast_hash": "dce15cc3bce245858450e6bc9ce6d52a", "semantic_hash": "dce15cc3bce245858450e6bc9ce6d52a" }, "Commander/apps/daemon/src/services/thingtime.test.ts": { - "mtime": 1788939899.7326035, + "mtime": 1788947732.0772772, "ast_hash": "8148305f4949b6d897f1d48a1dad3eca", "semantic_hash": "8148305f4949b6d897f1d48a1dad3eca" }, "Commander/apps/daemon/src/services/thingtime.ts": { - "mtime": 1788939899.732748, + "mtime": 1788947732.078277, "ast_hash": "46258684292e9d8d613948ba7d9e9308", "semantic_hash": "46258684292e9d8d613948ba7d9e9308" }, "Commander/apps/daemon/tsconfig.json": { - "mtime": 1788939899.7335079, + "mtime": 1788947732.078277, "ast_hash": "c22ab7d26d7e1eb3818cef99711f7a45", "semantic_hash": "c22ab7d26d7e1eb3818cef99711f7a45" }, "Commander/apps/desktop-ui/package.json": { - "mtime": 1788939899.7343216, + "mtime": 1788947732.078638, "ast_hash": "0f5cc3015eb4bb9f7aa5d12472fabdd0", "semantic_hash": "0f5cc3015eb4bb9f7aa5d12472fabdd0" }, "Commander/apps/desktop-ui/src/App.tsx": { - "mtime": 1788939899.735076, + "mtime": 1788947732.078638, "ast_hash": "350b7d658d34cfe14581a3640411a74d", "semantic_hash": "350b7d658d34cfe14581a3640411a74d" }, "Commander/apps/desktop-ui/src/components/AccountSettings.test.tsx": { - "mtime": 1788939899.735634, + "mtime": 1788947732.0788531, "ast_hash": "68ae6990d11e674b3127e0165b3616ce", "semantic_hash": "68ae6990d11e674b3127e0165b3616ce" }, "Commander/apps/desktop-ui/src/components/AccountSettings.tsx": { - "mtime": 1788939899.736016, + "mtime": 1788947732.078957, "ast_hash": "6d3f0f149f7460f10fbc453541df8554", "semantic_hash": "6d3f0f149f7460f10fbc453541df8554" }, "Commander/apps/desktop-ui/src/components/ActionsPanel.tsx": { - "mtime": 1788939899.7361317, + "mtime": 1788947732.078957, "ast_hash": "7fd5b1f2ec140e48629b97876dd9e992", "semantic_hash": "7fd5b1f2ec140e48629b97876dd9e992" }, "Commander/apps/desktop-ui/src/components/ActivitySettings.tsx": { - "mtime": 1788939899.7371495, + "mtime": 1788947732.078957, "ast_hash": "405f23daa0f92c29b1d48d052a58977e", "semantic_hash": "405f23daa0f92c29b1d48d052a58977e" }, "Commander/apps/desktop-ui/src/components/CloudSyncSettings.tsx": { - "mtime": 1788939899.7374952, + "mtime": 1788947732.078957, "ast_hash": "82d0989f7cf99a199c89f765f345842c", "semantic_hash": "82d0989f7cf99a199c89f765f345842c" }, "Commander/apps/desktop-ui/src/components/CommanderIcon.tsx": { - "mtime": 1788939899.7379236, + "mtime": 1788947732.078957, "ast_hash": "e0f3ddd43a47ccda29658f5c95900ef0", "semantic_hash": "e0f3ddd43a47ccda29658f5c95900ef0" }, "Commander/apps/desktop-ui/src/components/EmojiPicker.test.tsx": { - "mtime": 1788939899.73818, + "mtime": 1788948107.3374944, "ast_hash": "9459bf373e90f61ccfa3c1091b74eef7", "semantic_hash": "" }, "Commander/apps/desktop-ui/src/components/EmojiPicker.tsx": { - "mtime": 1788939899.7384424, + "mtime": 1788948107.3374944, "ast_hash": "de64c4df750f86928171cbca2f445397", "semantic_hash": "" }, "Commander/apps/desktop-ui/src/components/ExtensionsSettings.test.tsx": { - "mtime": 1788939899.739053, + "mtime": 1788947732.079277, "ast_hash": "fafbc0d679469ee7f29fbd9b989e09b1", "semantic_hash": "fafbc0d679469ee7f29fbd9b989e09b1" }, "Commander/apps/desktop-ui/src/components/ExtensionsSettings.tsx": { - "mtime": 1788939899.739223, + "mtime": 1788947732.079277, "ast_hash": "387d377eba7c7360cbf89a1c8f97aaca", "semantic_hash": "387d377eba7c7360cbf89a1c8f97aaca" }, "Commander/apps/desktop-ui/src/components/GeneralSettings.test.tsx": { - "mtime": 1788939899.739605, + "mtime": 1788947732.079277, "ast_hash": "a5ffa7e549cca9a36540b0a47c499c2f", "semantic_hash": "a5ffa7e549cca9a36540b0a47c499c2f" }, "Commander/apps/desktop-ui/src/components/GeneralSettings.tsx": { - "mtime": 1788939899.740092, + "mtime": 1788947732.079277, "ast_hash": "880a75a68c59e7c06b0ad08d8fa38724", "semantic_hash": "880a75a68c59e7c06b0ad08d8fa38724" }, "Commander/apps/desktop-ui/src/components/IndexingSettings.tsx": { - "mtime": 1788939899.7406926, + "mtime": 1788947732.079277, "ast_hash": "966452c5a53b3a1cc97b72d95e74379b", "semantic_hash": "966452c5a53b3a1cc97b72d95e74379b" }, "Commander/apps/desktop-ui/src/components/Launcher.test.tsx": { - "mtime": 1788939899.7415397, + "mtime": 1788947732.079277, "ast_hash": "324cabcfdd49214128664c4b1ea510e2", "semantic_hash": "324cabcfdd49214128664c4b1ea510e2" }, "Commander/apps/desktop-ui/src/components/Launcher.tsx": { - "mtime": 1788939899.7419016, + "mtime": 1788947732.079277, "ast_hash": "04f9de8a1e874de03f9576fb7fda544f", "semantic_hash": "04f9de8a1e874de03f9576fb7fda544f" }, "Commander/apps/desktop-ui/src/components/ResultContextMenu.tsx": { - "mtime": 1788939899.742073, + "mtime": 1788947732.079277, "ast_hash": "f1bb7f71f60b11afbede6fc6335b5be0", "semantic_hash": "f1bb7f71f60b11afbede6fc6335b5be0" }, "Commander/apps/desktop-ui/src/components/ResultIcon.tsx": { - "mtime": 1788939899.7434013, + "mtime": 1788947732.079277, "ast_hash": "39e52f1c77bcc40d9fec294ea2366150", "semantic_hash": "39e52f1c77bcc40d9fec294ea2366150" }, "Commander/apps/desktop-ui/src/components/SearchPreferencesSettings.test.tsx": { - "mtime": 1788939899.7463152, + "mtime": 1788947732.079277, "ast_hash": "1ec434f60aabf58b17e96af2e070fcef", "semantic_hash": "1ec434f60aabf58b17e96af2e070fcef" }, "Commander/apps/desktop-ui/src/components/SearchPreferencesSettings.tsx": { - "mtime": 1788939899.7464876, + "mtime": 1788947732.079277, "ast_hash": "3aaae03456faab7f3b26e75252399afe", "semantic_hash": "3aaae03456faab7f3b26e75252399afe" }, "Commander/apps/desktop-ui/src/components/Settings.test.tsx": { - "mtime": 1788939899.7469995, + "mtime": 1788947732.0802772, "ast_hash": "b0287f37c75529337dc2e634c1c7cf23", "semantic_hash": "b0287f37c75529337dc2e634c1c7cf23" }, "Commander/apps/desktop-ui/src/components/Settings.tsx": { - "mtime": 1788939899.7489989, + "mtime": 1788947732.0802772, "ast_hash": "69586f5d12cfbd1e94e124bf2be5a225", "semantic_hash": "69586f5d12cfbd1e94e124bf2be5a225" }, "Commander/apps/desktop-ui/src/components/UiErrorBoundary.test.tsx": { - "mtime": 1788939899.7494862, + "mtime": 1788947732.0802772, "ast_hash": "697afb9744cf6013ad919c2d35db7d5f", "semantic_hash": "697afb9744cf6013ad919c2d35db7d5f" }, "Commander/apps/desktop-ui/src/components/UiErrorBoundary.tsx": { - "mtime": 1788939899.7502027, + "mtime": 1788947732.0802772, "ast_hash": "5aca4c29b87d1d1c240a965aaaa4750b", "semantic_hash": "5aca4c29b87d1d1c240a965aaaa4750b" }, "Commander/apps/desktop-ui/src/components/emojiData.test.ts": { - "mtime": 1788939899.7505105, + "mtime": 1788947732.0802772, "ast_hash": "83dfc01c038dffd6c78b313196322af2", "semantic_hash": "83dfc01c038dffd6c78b313196322af2" }, "Commander/apps/desktop-ui/src/components/emojiData.ts": { - "mtime": 1788939899.7522657, + "mtime": 1788947732.0802772, "ast_hash": "4ab2337e09fdf6d8ca3b49ba20ac84f3", "semantic_hash": "4ab2337e09fdf6d8ca3b49ba20ac84f3" }, "Commander/apps/desktop-ui/src/components/emojiLearning.test.ts": { - "mtime": 1788939899.7538188, + "mtime": 1788947732.0802772, "ast_hash": "25bffa1a3eaee29354d34339fb858bf3", "semantic_hash": "25bffa1a3eaee29354d34339fb858bf3" }, "Commander/apps/desktop-ui/src/components/emojiLearning.ts": { - "mtime": 1788939899.754484, + "mtime": 1788947732.0802772, "ast_hash": "95dc8300abce52396c8131401360265c", "semantic_hash": "95dc8300abce52396c8131401360265c" }, "Commander/apps/desktop-ui/src/hooks/useCommander.test.tsx": { - "mtime": 1788939899.7558155, + "mtime": 1788947732.0802772, "ast_hash": "e9cdd5d03c83b6305df27013dd047d3d", "semantic_hash": "e9cdd5d03c83b6305df27013dd047d3d" }, "Commander/apps/desktop-ui/src/hooks/useCommander.ts": { - "mtime": 1788939899.7567356, + "mtime": 1788947732.0810215, "ast_hash": "8ec5002bd006e5ddb24577d521c13b6e", "semantic_hash": "8ec5002bd006e5ddb24577d521c13b6e" }, "Commander/apps/desktop-ui/src/lib/api.ts": { - "mtime": 1788939899.7573025, + "mtime": 1788947732.0810215, "ast_hash": "dbd29ea3ecded7c40acd76daa6fb944d", "semantic_hash": "dbd29ea3ecded7c40acd76daa6fb944d" }, "Commander/apps/desktop-ui/src/lib/nativeBridge.test.ts": { - "mtime": 1788939899.7577024, + "mtime": 1788947732.0811937, "ast_hash": "7d3076b0f93b3fa9e2c34d25aac71846", "semantic_hash": "7d3076b0f93b3fa9e2c34d25aac71846" }, "Commander/apps/desktop-ui/src/lib/nativeBridge.ts": { - "mtime": 1788939899.7596333, + "mtime": 1788947732.0811937, "ast_hash": "0fb8986a132d655febca0b7a287156eb", "semantic_hash": "0fb8986a132d655febca0b7a287156eb" }, "Commander/apps/desktop-ui/src/lib/nativeFileIcons.ts": { - "mtime": 1788939899.7604506, + "mtime": 1788947732.0811937, "ast_hash": "02c86844d101d877efe770de166bdcce", "semantic_hash": "02c86844d101d877efe770de166bdcce" }, "Commander/apps/desktop-ui/src/lib/shortcuts.ts": { - "mtime": 1788939899.762266, + "mtime": 1788947732.0811937, "ast_hash": "9cf7733f101185b4e9f0870ddbacb47a", "semantic_hash": "9cf7733f101185b4e9f0870ddbacb47a" }, "Commander/apps/desktop-ui/src/main.tsx": { - "mtime": 1788939899.762679, + "mtime": 1788947732.0811937, "ast_hash": "ee80bcccf4d1f0c81430e1bd4035e934", "semantic_hash": "ee80bcccf4d1f0c81430e1bd4035e934" }, "Commander/apps/desktop-ui/tsconfig.json": { - "mtime": 1788939899.7645988, + "mtime": 1788947732.0812771, "ast_hash": "7f138a2aca916a437e95d8715f343ec7", "semantic_hash": "7f138a2aca916a437e95d8715f343ec7" }, "Commander/apps/desktop-ui/vite.config.ts": { - "mtime": 1788939899.764998, + "mtime": 1788947732.0812771, "ast_hash": "728503745411dcdf3a11125dfd847936", "semantic_hash": "728503745411dcdf3a11125dfd847936" }, "Commander/crates/commander-core/src/lib.rs": { - "mtime": 1788939899.768376, + "mtime": 1788947732.082017, "ast_hash": "4056dd1aabc958ed1dd7194ba593d0ef", "semantic_hash": "4056dd1aabc958ed1dd7194ba593d0ef" }, "Commander/crates/commander-core/src/main.rs": { - "mtime": 1788939899.7686765, + "mtime": 1788947732.0823321, "ast_hash": "7144994c9bb5e02cb43ff6e7c03f6f1b", "semantic_hash": "7144994c9bb5e02cb43ff6e7c03f6f1b" }, "Commander/crates/commander-core/tests/jsonl.rs": { - "mtime": 1788939899.7691596, + "mtime": 1788947732.0823321, "ast_hash": "0f2eeba7f17f1120fabf7e1bfa244a2a", "semantic_hash": "0f2eeba7f17f1120fabf7e1bfa244a2a" }, "Commander/crates/commander-indexer/src/lib.rs": { - "mtime": 1788939899.7716897, + "mtime": 1788947732.0826027, "ast_hash": "fcb80a24880a2afef1cb14ab908cbd96", "semantic_hash": "fcb80a24880a2afef1cb14ab908cbd96" }, "Commander/crates/commander-indexer/src/main.rs": { - "mtime": 1788939899.7743886, + "mtime": 1788947732.0831065, "ast_hash": "0c40e6c7294d8502219e4dd18caca884", "semantic_hash": "0c40e6c7294d8502219e4dd18caca884" }, "Commander/crates/commander-indexer/src/resources.rs": { - "mtime": 1788939899.7745917, + "mtime": 1788947732.0831065, "ast_hash": "f2c186de44e1c08ce0dc3bcea51ecddc", "semantic_hash": "f2c186de44e1c08ce0dc3bcea51ecddc" }, "Commander/crates/commander-indexer/tests/jsonl.rs": { - "mtime": 1788939899.774834, + "mtime": 1788947732.0831065, "ast_hash": "591ff3b03f306ba86e9ae6612d5baea1", "semantic_hash": "591ff3b03f306ba86e9ae6612d5baea1" }, "Commander/extensions/raycast/.eslintrc.json": { - "mtime": 1788939899.8157809, + "mtime": 1788947732.088277, "ast_hash": "a614d94b9bc872dc09902e639e243e98", "semantic_hash": "a614d94b9bc872dc09902e639e243e98" }, "Commander/extensions/raycast/ecosystem.config.js": { - "mtime": 1788939899.910303, + "mtime": 1788947732.1302767, "ast_hash": "7801b8303fedf9a7b9e2ccb3101a17e8", "semantic_hash": "7801b8303fedf9a7b9e2ccb3101a17e8" }, "Commander/extensions/raycast/package.json": { - "mtime": 1788939899.9516702, + "mtime": 1788947732.1542766, "ast_hash": "9c3d2d2cc9e4edf8dd93302c354c0a43", "semantic_hash": "9c3d2d2cc9e4edf8dd93302c354c0a43" }, "Commander/extensions/raycast/raycast-env.d.ts": { - "mtime": 1788939899.953093, + "mtime": 1788947732.1552765, "ast_hash": "24d01899118bdfacbab2e3147529581e", "semantic_hash": "24d01899118bdfacbab2e3147529581e" }, "Commander/extensions/raycast/src/apply-filter.tsx": { - "mtime": 1788939899.953484, + "mtime": 1788947732.1552765, "ast_hash": "5f0f794ff8b3b3d355d695ba3a3cfc84", "semantic_hash": "5f0f794ff8b3b3d355d695ba3a3cfc84" }, "Commander/extensions/raycast/src/commander.tsx": { - "mtime": 1788939899.953637, + "mtime": 1788947732.1561368, "ast_hash": "10f5495bc0ff839bbeff2ef5afa20f24", "semantic_hash": "10f5495bc0ff839bbeff2ef5afa20f24" }, "Commander/extensions/raycast/src/commanderConvert.tsx": { - "mtime": 1788939899.953637, + "mtime": 1788947732.1561368, "ast_hash": "10f5495bc0ff839bbeff2ef5afa20f24", "semantic_hash": "10f5495bc0ff839bbeff2ef5afa20f24" }, "Commander/extensions/raycast/src/commanderMp4ToMp3.tsx": { - "mtime": 1788939899.953637, + "mtime": 1788947732.1561368, "ast_hash": "10f5495bc0ff839bbeff2ef5afa20f24", "semantic_hash": "10f5495bc0ff839bbeff2ef5afa20f24" }, "Commander/extensions/raycast/src/commanderOpenNewFinderWindow.tsx": { - "mtime": 1788939899.953637, + "mtime": 1788947732.1561368, "ast_hash": "10f5495bc0ff839bbeff2ef5afa20f24", "semantic_hash": "10f5495bc0ff839bbeff2ef5afa20f24" }, "Commander/extensions/raycast/src/commanderRegexToReplacementConverter.tsx": { - "mtime": 1788939899.953637, + "mtime": 1788947732.1561368, "ast_hash": "10f5495bc0ff839bbeff2ef5afa20f24", "semantic_hash": "10f5495bc0ff839bbeff2ef5afa20f24" }, "Commander/extensions/raycast/src/commanderRegexTrim.tsx": { - "mtime": 1788939899.953637, + "mtime": 1788947732.1561368, "ast_hash": "10f5495bc0ff839bbeff2ef5afa20f24", "semantic_hash": "10f5495bc0ff839bbeff2ef5afa20f24" }, "Commander/extensions/raycast/src/commanderTrim.tsx": { - "mtime": 1788939899.953637, + "mtime": 1788947732.1561368, "ast_hash": "10f5495bc0ff839bbeff2ef5afa20f24", "semantic_hash": "10f5495bc0ff839bbeff2ef5afa20f24" }, "Commander/extensions/raycast/src/commands/openNewFinderWindow.tsx": { - "mtime": 1788939899.9544144, + "mtime": 1788947732.1561368, "ast_hash": "8b06465288e3e5f00ea01dabfc64afe7", "semantic_hash": "8b06465288e3e5f00ea01dabfc64afe7" }, "Commander/extensions/raycast/src/commands/regexToReplacementConverter.tsx": { - "mtime": 1788939899.9547064, + "mtime": 1788947732.1563663, "ast_hash": "ca7276142094ee7864689dac2093103c", "semantic_hash": "ca7276142094ee7864689dac2093103c" }, "Commander/extensions/raycast/src/commands/regexTrim.tsx": { - "mtime": 1788939899.954826, + "mtime": 1788947732.1563663, "ast_hash": "bb6bf536a06d108afc9b8b01b6529699", "semantic_hash": "bb6bf536a06d108afc9b8b01b6529699" }, "Commander/extensions/raycast/src/components/ImageGeneratorActionPanel.tsx": { - "mtime": 1788939899.955193, + "mtime": 1788947732.1563663, "ast_hash": "f924ed898ca5940b131fe341eaaebb18", "semantic_hash": "f924ed898ca5940b131fe341eaaebb18" }, "Commander/extensions/raycast/src/components/ImagePatternGrid.tsx": { - "mtime": 1788939899.9554765, + "mtime": 1788947732.1565673, "ast_hash": "bcc7cf5801441da930bca4da7b1a97f1", "semantic_hash": "bcc7cf5801441da930bca4da7b1a97f1" }, "Commander/extensions/raycast/src/components/SizeSelectionActionPanel.tsx": { - "mtime": 1788939899.95556, + "mtime": 1788947732.1565673, "ast_hash": "2a37f6d9fa55e8e5689cd00927589a7a", "semantic_hash": "2a37f6d9fa55e8e5689cd00927589a7a" }, "Commander/extensions/raycast/src/convert.tsx": { - "mtime": 1788939899.9556525, + "mtime": 1788947732.1565673, "ast_hash": "4c4fb84ac989ead4ced1ff4c85ec66e7", "semantic_hash": "4c4fb84ac989ead4ced1ff4c85ec66e7" }, "Commander/extensions/raycast/src/create-image.tsx": { - "mtime": 1788939899.9557376, + "mtime": 1788947732.1565673, "ast_hash": "217e394c51e6b434de469972e09302c2", "semantic_hash": "217e394c51e6b434de469972e09302c2" }, "Commander/extensions/raycast/src/flip-horizontally.ts": { - "mtime": 1788939899.9558258, + "mtime": 1788947732.1565673, "ast_hash": "5d8d243beb112c8733b536fb1beb3724", "semantic_hash": "5d8d243beb112c8733b536fb1beb3724" }, "Commander/extensions/raycast/src/flip-vertically.ts": { - "mtime": 1788939899.955917, + "mtime": 1788947732.1565673, "ast_hash": "d5f82015cd7c95856220621fd20380a3", "semantic_hash": "d5f82015cd7c95856220621fd20380a3" }, "Commander/extensions/raycast/src/openCommander.ts": { - "mtime": 1788939899.9560966, + "mtime": 1788947732.1565673, "ast_hash": "1c210949c23625fe728cce8952ea7f22", "semantic_hash": "1c210949c23625fe728cce8952ea7f22" }, "Commander/extensions/raycast/src/operations/anyOperation.ts": { - "mtime": 1788939899.956523, + "mtime": 1788947732.1565673, "ast_hash": "b3364380d6c497f9052bd74be079468a", "semantic_hash": "b3364380d6c497f9052bd74be079468a" }, "Commander/extensions/raycast/src/operations/convertOperation.ts": { - "mtime": 1788939899.9574125, + "mtime": 1788947732.1568909, "ast_hash": "4e9f2a45664afba2a55826c06db5cbcf", "semantic_hash": "4e9f2a45664afba2a55826c06db5cbcf" }, "Commander/extensions/raycast/src/operations/filterOperation.ts": { - "mtime": 1788939899.9575768, + "mtime": 1788947732.1568909, "ast_hash": "09921e83512b551af37a1f82dd2bd97f", "semantic_hash": "09921e83512b551af37a1f82dd2bd97f" }, "Commander/extensions/raycast/src/operations/flipOperation.ts": { - "mtime": 1788939899.9582682, + "mtime": 1788947732.1568909, "ast_hash": "f341295f07bf3284d116acc761a72175", "semantic_hash": "f341295f07bf3284d116acc761a72175" }, "Commander/extensions/raycast/src/operations/optimizeOperation.ts": { - "mtime": 1788939899.9586418, + "mtime": 1788947732.1568909, "ast_hash": "87f279afc91d5c369838764a2ba26a77", "semantic_hash": "87f279afc91d5c369838764a2ba26a77" }, "Commander/extensions/raycast/src/operations/padOperation.ts": { - "mtime": 1788939899.9590611, + "mtime": 1788947732.1568909, "ast_hash": "61023183a8602923727136ee084d6f18", "semantic_hash": "61023183a8602923727136ee084d6f18" }, "Commander/extensions/raycast/src/operations/resizeOperation.ts": { - "mtime": 1788939899.9593828, + "mtime": 1788947732.1568909, "ast_hash": "67e56d82215fef33dbd286f6c006b8ab", "semantic_hash": "67e56d82215fef33dbd286f6c006b8ab" }, "Commander/extensions/raycast/src/operations/rotateOperation.ts": { - "mtime": 1788939899.9596827, + "mtime": 1788947732.1568909, "ast_hash": "5bd320d4ae9005a1021cfbcd61a36f4b", "semantic_hash": "5bd320d4ae9005a1021cfbcd61a36f4b" }, "Commander/extensions/raycast/src/operations/runOperation.ts": { - "mtime": 1788939899.9598553, + "mtime": 1788947732.1568909, "ast_hash": "67355727a728dd060cd63bce9c87850a", "semantic_hash": "67355727a728dd060cd63bce9c87850a" }, "Commander/extensions/raycast/src/operations/scaleOperation.ts": { - "mtime": 1788939899.9599648, + "mtime": 1788947732.1568909, "ast_hash": "43243e9232e89bb352a246fdf03737eb", "semantic_hash": "43243e9232e89bb352a246fdf03737eb" }, "Commander/extensions/raycast/src/operations/stripEXIFOperation.ts": { - "mtime": 1788939899.9601958, + "mtime": 1788947732.1568909, "ast_hash": "87e91cd323671538aafd5910886a7819", "semantic_hash": "87e91cd323671538aafd5910886a7819" }, "Commander/extensions/raycast/src/optimize.ts": { - "mtime": 1788939899.960322, + "mtime": 1788947732.1568909, "ast_hash": "6213a7ce933ead7f70936839a3dc2c5c", "semantic_hash": "6213a7ce933ead7f70936839a3dc2c5c" }, "Commander/extensions/raycast/src/pad.ts": { - "mtime": 1788939899.9606354, + "mtime": 1788947732.1568909, "ast_hash": "30f60851c5a7410d8c394624a7685977", "semantic_hash": "30f60851c5a7410d8c394624a7685977" }, "Commander/extensions/raycast/src/resize.ts": { - "mtime": 1788939899.9607253, + "mtime": 1788947732.1568909, "ast_hash": "cebd007fae4dff802a4646c3f7fe2a98", "semantic_hash": "cebd007fae4dff802a4646c3f7fe2a98" }, "Commander/extensions/raycast/src/rotate.ts": { - "mtime": 1788939899.960797, + "mtime": 1788947732.1568909, "ast_hash": "bc8ed7d0bceb8f1072ffac1690d45d63", "semantic_hash": "bc8ed7d0bceb8f1072ffac1690d45d63" }, "Commander/extensions/raycast/src/scale.ts": { - "mtime": 1788939899.9608688, + "mtime": 1788947732.1572766, "ast_hash": "31315bb6fe3fb974a79c9dd7f1eead33", "semantic_hash": "31315bb6fe3fb974a79c9dd7f1eead33" }, "Commander/extensions/raycast/src/strip-exif.ts": { - "mtime": 1788939899.9609847, + "mtime": 1788947732.1572766, "ast_hash": "e081673189ebcd667f178ce938016af7", "semantic_hash": "e081673189ebcd667f178ce938016af7" }, "Commander/extensions/raycast/src/utilities/clipboard.ts": { - "mtime": 1788939899.961146, + "mtime": 1788947732.1572766, "ast_hash": "c945eed405ed565265f94b0f7f0f34a9", "semantic_hash": "c945eed405ed565265f94b0f7f0f34a9" }, "Commander/extensions/raycast/src/utilities/enums.ts": { - "mtime": 1788939899.9612176, + "mtime": 1788947732.1577008, "ast_hash": "ca123de894629e8481cca824f0060af4", "semantic_hash": "ca123de894629e8481cca824f0060af4" }, "Commander/extensions/raycast/src/utilities/filters.ts": { - "mtime": 1788939899.961342, + "mtime": 1788947732.1577008, "ast_hash": "dcee0fc8479e4f3451252c37b2910d2a", "semantic_hash": "dcee0fc8479e4f3451252c37b2910d2a" }, "Commander/extensions/raycast/src/utilities/generators.ts": { - "mtime": 1788939899.9616103, + "mtime": 1788947732.1577008, "ast_hash": "e4930cf8086010193b78d953a9a9412a", "semantic_hash": "e4930cf8086010193b78d953a9a9412a" }, "Commander/extensions/raycast/src/utilities/preferences.ts": { - "mtime": 1788939899.9616876, + "mtime": 1788947732.1577008, "ast_hash": "961de9c7b5fdd3e04f23536d240d7d19", "semantic_hash": "961de9c7b5fdd3e04f23536d240d7d19" }, "Commander/extensions/raycast/src/utilities/types.ts": { - "mtime": 1788939899.962092, + "mtime": 1788947732.1577008, "ast_hash": "c6f2c1d373dc0f4455cffdf0a3f469cc", "semantic_hash": "c6f2c1d373dc0f4455cffdf0a3f469cc" }, "Commander/extensions/raycast/src/utilities/utils.ts": { - "mtime": 1788939899.9622333, + "mtime": 1788947732.1577008, "ast_hash": "2805e19da77d3bfd5c735d9973aaa59c", "semantic_hash": "2805e19da77d3bfd5c735d9973aaa59c" }, "Commander/extensions/raycast/tsconfig.json": { - "mtime": 1788939899.9623187, + "mtime": 1788947732.1577008, "ast_hash": "6056c8d052e4413e36d53aada8573110", "semantic_hash": "6056c8d052e4413e36d53aada8573110" }, "Commander/hosts/macos/Package.swift": { - "mtime": 1788939899.9626398, + "mtime": 1788947732.158163, "ast_hash": "3288e1e31eb0816e07e10463852324f8", "semantic_hash": "3288e1e31eb0816e07e10463852324f8" }, "Commander/hosts/macos/Sources/Commander/App/CommanderAppDelegate.swift": { - "mtime": 1788939899.963047, + "mtime": 1788947732.1583624, "ast_hash": "76bb666eb25a629b0aeb342cb11ad7d5", "semantic_hash": "76bb666eb25a629b0aeb342cb11ad7d5" }, "Commander/hosts/macos/Sources/Commander/App/CommanderApplicationMenu.swift": { - "mtime": 1788939899.9631584, + "mtime": 1788947732.1585212, "ast_hash": "35a5ba473b9dceffa37724446f312714", "semantic_hash": "35a5ba473b9dceffa37724446f312714" }, "Commander/hosts/macos/Sources/Commander/App/CommanderMain.swift": { - "mtime": 1788939899.963233, + "mtime": 1788947732.1585212, "ast_hash": "590cb45540f4411df449dfccaad5c2c9", "semantic_hash": "590cb45540f4411df449dfccaad5c2c9" }, "Commander/hosts/macos/Sources/Commander/App/CommanderStatusItem.swift": { - "mtime": 1788939899.963317, + "mtime": 1788947732.1585212, "ast_hash": "eccbec619ae5dd913af481b28cd1884a", "semantic_hash": "eccbec619ae5dd913af481b28cd1884a" }, "Commander/hosts/macos/Sources/Commander/Bridge/CommanderNativeBridge.swift": { - "mtime": 1788939899.963637, + "mtime": 1788947732.1585212, "ast_hash": "81984fcda7a8eafd814b01bf6e31c6c6", "semantic_hash": "81984fcda7a8eafd814b01bf6e31c6c6" }, "Commander/hosts/macos/Sources/Commander/Services/ApplicationResponsivenessService.swift": { - "mtime": 1788939899.96393, + "mtime": 1788947732.1585212, "ast_hash": "6896acda652b7d468b27750bd1d00b8b", "semantic_hash": "6896acda652b7d468b27750bd1d00b8b" }, "Commander/hosts/macos/Sources/Commander/Services/DaemonSupervisor.swift": { - "mtime": 1788939899.964059, + "mtime": 1788947732.1589322, "ast_hash": "06dd53a129a79740505e33eee05bf33c", "semantic_hash": "06dd53a129a79740505e33eee05bf33c" }, "Commander/hosts/macos/Sources/Commander/Services/FullDiskAccessService.swift": { - "mtime": 1788939899.9641433, + "mtime": 1788947732.1589322, "ast_hash": "3310fd078377d009dbe8fbe6a9aaae3e", "semantic_hash": "3310fd078377d009dbe8fbe6a9aaae3e" }, "Commander/hosts/macos/Sources/Commander/Services/GlobalHotKey.swift": { - "mtime": 1788939899.964442, + "mtime": 1788947732.1589322, "ast_hash": "a9fff5c93fd4565b7bd5ee6b9b3c5d0d", "semantic_hash": "a9fff5c93fd4565b7bd5ee6b9b3c5d0d" }, "Commander/hosts/macos/Sources/Commander/Services/KeychainStore.swift": { - "mtime": 1788939899.964548, + "mtime": 1788947732.1589322, "ast_hash": "007e9ec76c00019afd4e07c722f6a1c0", "semantic_hash": "007e9ec76c00019afd4e07c722f6a1c0" }, "Commander/hosts/macos/Sources/Commander/Services/LaunchAtLoginService.swift": { - "mtime": 1788939899.964694, + "mtime": 1788947732.1589322, "ast_hash": "da2c71601940452f196e3f93f3b751c3", "semantic_hash": "da2c71601940452f196e3f93f3b751c3" }, "Commander/hosts/macos/Sources/Commander/Services/LoopbackPortInspector.swift": { - "mtime": 1788939899.966028, + "mtime": 1788947732.1589322, "ast_hash": "1dcaa6660a8325beb4742ed8f2b3e25e", "semantic_hash": "1dcaa6660a8325beb4742ed8f2b3e25e" }, "Commander/hosts/macos/Sources/Commander/Services/OAuthCallbackHandoff.swift": { - "mtime": 1788939899.9665122, + "mtime": 1788947732.1589322, "ast_hash": "54f79ef4e3619f1c463c5f700d6599c5", "semantic_hash": "54f79ef4e3619f1c463c5f700d6599c5" }, "Commander/hosts/macos/Sources/Commander/Services/SystemMetricsService.swift": { - "mtime": 1788939899.9671185, + "mtime": 1788947732.1589322, "ast_hash": "dd29b6dae3b78667317a553b89282283", "semantic_hash": "dd29b6dae3b78667317a553b89282283" }, "Commander/hosts/macos/Sources/Commander/Windows/CommanderWebView.swift": { - "mtime": 1788939899.9677482, + "mtime": 1788947732.1592765, "ast_hash": "fb52036b4d32f14f5c85a6c716dd21ac", "semantic_hash": "fb52036b4d32f14f5c85a6c716dd21ac" }, "Commander/hosts/macos/Sources/Commander/Windows/LauncherPanelController.swift": { - "mtime": 1788939899.9679682, + "mtime": 1788948107.3384943, "ast_hash": "78aeb6046fb744338b79cdf21aaf2644", "semantic_hash": "" }, "Commander/hosts/macos/Sources/Commander/Windows/SettingsWindowController.swift": { - "mtime": 1788939899.9683223, + "mtime": 1788947732.1592765, "ast_hash": "4e3eb49c6162b0a69b26df2edfe89777", "semantic_hash": "4e3eb49c6162b0a69b26df2edfe89777" }, "Commander/hosts/macos/Tests/CommanderTests/CommanderApplicationMenuTests.swift": { - "mtime": 1788939899.9685729, + "mtime": 1788947732.1597247, "ast_hash": "ce464763205feb83fa2b51a3271f5e12", "semantic_hash": "ce464763205feb83fa2b51a3271f5e12" }, "Commander/hosts/macos/Tests/CommanderTests/CommanderWebViewTests.swift": { - "mtime": 1788939899.9689095, + "mtime": 1788948107.3384943, "ast_hash": "acc9a0d8cfc237701901099373a36b2c", "semantic_hash": "" }, "Commander/hosts/macos/Tests/CommanderTests/GlobalHotKeyTests.swift": { - "mtime": 1788939899.969215, + "mtime": 1788947732.159811, "ast_hash": "4215c20a5ebe4c44d4e0b44550204fca", "semantic_hash": "4215c20a5ebe4c44d4e0b44550204fca" }, "Commander/hosts/macos/Tests/CommanderTests/LoopbackPortInspectorTests.swift": { - "mtime": 1788939899.9695256, + "mtime": 1788947732.159811, "ast_hash": "bc2698e9d9a8dbe93f409038b595dce3", "semantic_hash": "bc2698e9d9a8dbe93f409038b595dce3" }, "Commander/hosts/macos/Tests/CommanderTests/SystemMetricsServiceTests.swift": { - "mtime": 1788939899.9696498, + "mtime": 1788947732.159811, "ast_hash": "c6399e908ba5873649dd089286e3de59", "semantic_hash": "c6399e908ba5873649dd089286e3de59" }, "Commander/hosts/windows/Commander.Host.csproj": { - "mtime": 1788939899.9699514, + "mtime": 1788947732.159811, "ast_hash": "b96287f4582ebd532a2ae02d4cb34a4b", "semantic_hash": "b96287f4582ebd532a2ae02d4cb34a4b" }, "Commander/hosts/windows/NativeBridgeContract.cs": { - "mtime": 1788939899.970199, + "mtime": 1788947732.160211, "ast_hash": "0363dbf177bdd5a313a064e02d705673", "semantic_hash": "0363dbf177bdd5a313a064e02d705673" }, "Commander/package.json": { - "mtime": 1788939899.9703562, + "mtime": 1788947732.160211, "ast_hash": "8ad389618fee2769aa4682d460671d40", "semantic_hash": "8ad389618fee2769aa4682d460671d40" }, "Commander/packages/filesystem-indexer/package.json": { - "mtime": 1788939899.9707716, + "mtime": 1788947732.1605465, "ast_hash": "067d8de153ef9b86afdf972134b0f19a", "semantic_hash": "067d8de153ef9b86afdf972134b0f19a" }, "Commander/packages/filesystem-indexer/src/index.test.ts": { - "mtime": 1788939899.9709308, + "mtime": 1788947732.1605465, "ast_hash": "4b7924d22cf4b55adeaa9abb92d7531e", "semantic_hash": "4b7924d22cf4b55adeaa9abb92d7531e" }, "Commander/packages/filesystem-indexer/src/index.ts": { - "mtime": 1788939899.9710672, + "mtime": 1788947732.1607134, "ast_hash": "e5a664f6c1315451b2684360e4048ea8", "semantic_hash": "e5a664f6c1315451b2684360e4048ea8" }, "Commander/packages/filesystem-indexer/src/test-fixtures/fake-indexer.mjs": { - "mtime": 1788939899.97119, + "mtime": 1788947732.1607134, "ast_hash": "0d25aa84cc28d9e6bab622d73d7ae9fe", "semantic_hash": "0d25aa84cc28d9e6bab622d73d7ae9fe" }, "Commander/packages/filesystem-indexer/src/test-fixtures/slow-query-indexer.mjs": { - "mtime": 1788939899.9712675, + "mtime": 1788947732.1609633, "ast_hash": "2bd6acea7e844f0d4a2ca13369a59531", "semantic_hash": "2bd6acea7e844f0d4a2ca13369a59531" }, "Commander/packages/filesystem-indexer/tsconfig.json": { - "mtime": 1788939899.9713426, + "mtime": 1788947732.1609633, "ast_hash": "c22ab7d26d7e1eb3818cef99711f7a45", "semantic_hash": "c22ab7d26d7e1eb3818cef99711f7a45" }, "Commander/packages/protocol/package.json": { - "mtime": 1788939899.971475, + "mtime": 1788947732.1609633, "ast_hash": "0ce06d40e2d7a57e255d7ef9279abd74", "semantic_hash": "0ce06d40e2d7a57e255d7ef9279abd74" }, "Commander/packages/protocol/src/index.test.ts": { - "mtime": 1788939899.9716346, + "mtime": 1788947732.1611657, "ast_hash": "7c3c49ca286a0a18765278fa2beeaf7d", "semantic_hash": "7c3c49ca286a0a18765278fa2beeaf7d" }, "Commander/packages/protocol/src/index.ts": { - "mtime": 1788939899.9719286, + "mtime": 1788947732.16132, "ast_hash": "b211612238e7428892935302335a1220", "semantic_hash": "b211612238e7428892935302335a1220" }, "Commander/packages/protocol/tsconfig.json": { - "mtime": 1788939899.9720192, + "mtime": 1788947732.16132, "ast_hash": "c22ab7d26d7e1eb3818cef99711f7a45", "semantic_hash": "c22ab7d26d7e1eb3818cef99711f7a45" }, "Commander/packages/raycast-compat/package.json": { - "mtime": 1788939899.9723024, + "mtime": 1788947732.16132, "ast_hash": "837bb98c6ca929c5b86fc781349968de", "semantic_hash": "837bb98c6ca929c5b86fc781349968de" }, "Commander/packages/raycast-compat/src/index.ts": { - "mtime": 1788939899.9745603, + "mtime": 1788947732.1617212, "ast_hash": "76c3076f8a09049ac761738e64504643", "semantic_hash": "76c3076f8a09049ac761738e64504643" }, "Commander/packages/raycast-compat/src/manifest.test.ts": { - "mtime": 1788939899.9753437, + "mtime": 1788947732.1617737, "ast_hash": "ea648ae96722b57c230d3fdc2a196d9b", "semantic_hash": "ea648ae96722b57c230d3fdc2a196d9b" }, "Commander/packages/raycast-compat/src/manifest.ts": { - "mtime": 1788939899.9758296, + "mtime": 1788947732.1617737, "ast_hash": "dfe5bb68aba2ca271d058f0bc40e4ff2", "semantic_hash": "dfe5bb68aba2ca271d058f0bc40e4ff2" }, "Commander/packages/raycast-compat/src/runtime.ts": { - "mtime": 1788939899.9764755, + "mtime": 1788947732.1617737, "ast_hash": "61403a644e135edb4f370d526eea5bec", "semantic_hash": "61403a644e135edb4f370d526eea5bec" }, "Commander/packages/raycast-compat/src/sideload.test.ts": { - "mtime": 1788939899.9766457, + "mtime": 1788947732.1617737, "ast_hash": "3c67d1324833e0fd92bf63fb11a5b888", "semantic_hash": "3c67d1324833e0fd92bf63fb11a5b888" }, "Commander/packages/raycast-compat/src/sideload.ts": { - "mtime": 1788939899.9767873, + "mtime": 1788947732.1617737, "ast_hash": "b3ff6e40d71632b11af70fffef03ca56", "semantic_hash": "b3ff6e40d71632b11af70fffef03ca56" }, "Commander/packages/raycast-compat/src/store.test.ts": { - "mtime": 1788939899.9769092, + "mtime": 1788947732.1617737, "ast_hash": "0df450f2d80fa6cb601ad71329550688", "semantic_hash": "0df450f2d80fa6cb601ad71329550688" }, "Commander/packages/raycast-compat/src/store.ts": { - "mtime": 1788939899.9772215, + "mtime": 1788947732.1617737, "ast_hash": "0371744fc29d86fdf70346296e928142", "semantic_hash": "0371744fc29d86fdf70346296e928142" }, "Commander/packages/raycast-compat/src/worker.ts": { - "mtime": 1788939899.977334, + "mtime": 1788947732.1617737, "ast_hash": "8b0f59d8da40343ecb1cfdeb889acdc6", "semantic_hash": "8b0f59d8da40343ecb1cfdeb889acdc6" }, "Commander/packages/raycast-compat/tests/runtime.test.ts": { - "mtime": 1788939899.9774804, + "mtime": 1788947732.1617737, "ast_hash": "34bdfd871ed40bc620277863f76f428a", "semantic_hash": "34bdfd871ed40bc620277863f76f428a" }, "Commander/packages/raycast-compat/tsconfig.json": { - "mtime": 1788939899.9775512, + "mtime": 1788947732.1617737, "ast_hash": "c22ab7d26d7e1eb3818cef99711f7a45", "semantic_hash": "c22ab7d26d7e1eb3818cef99711f7a45" }, "Commander/script/build_and_run.sh": { - "mtime": 1788939899.9789176, + "mtime": 1788947732.1628764, "ast_hash": "9a2f96bc9b7e066d8c2831cfefedc640", "semantic_hash": "9a2f96bc9b7e066d8c2831cfefedc640" }, "Commander/script/release-version.mjs": { - "mtime": 1788939899.9794106, + "mtime": 1788947732.1628764, "ast_hash": "954e80c3625434cff4fd0e77c1d494a5", "semantic_hash": "954e80c3625434cff4fd0e77c1d494a5" }, "Commander/tests/regexToReplacementConverter.test.ts": { - "mtime": 1788939899.9811077, + "mtime": 1788947732.1628764, "ast_hash": "2330b1f70173070912232ba369de3843", "semantic_hash": "2330b1f70173070912232ba369de3843" }, "Commander/tsconfig.base.json": { - "mtime": 1788939899.9813457, + "mtime": 1788947732.1628764, "ast_hash": "f22d4e060aedb3c92be1d1605051e824", "semantic_hash": "f22d4e060aedb3c92be1d1605051e824" }, "remix/app/Providers/thingtimeSyncChannel.test.ts": { - "mtime": 1788939901.0470934, + "mtime": 1788947732.4983323, "ast_hash": "1d17b463d5c45caf2fd14af13d80ee74", "semantic_hash": "1d17b463d5c45caf2fd14af13d80ee74" }, "remix/app/Providers/thingtimeSyncChannel.ts": { - "mtime": 1788939901.0475547, + "mtime": 1788947732.4983323, "ast_hash": "92f2a8f39bb8ba511a212c5e50a5ea58", "semantic_hash": "92f2a8f39bb8ba511a212c5e50a5ea58" }, "remix/app/api/utils/apps/scopes.test.ts": { - "mtime": 1788939901.0758653, + "mtime": 1788947732.5112739, "ast_hash": "470f5b60f83e3631c17b68adaa7c102f", "semantic_hash": "470f5b60f83e3631c17b68adaa7c102f" }, "remix/app/api/utils/auth/appOrigin.test.ts": { - "mtime": 1788939901.0827467, + "mtime": 1788947732.514274, "ast_hash": "3271b74b6b61eabb20593719d20876e6", "semantic_hash": "3271b74b6b61eabb20593719d20876e6" }, "remix/app/api/utils/auth/birthday.test.ts": { - "mtime": 1788939901.0832574, + "mtime": 1788947732.514274, "ast_hash": "4125ac072c8ffc9ad9de5a9d34f190e7", "semantic_hash": "4125ac072c8ffc9ad9de5a9d34f190e7" }, "remix/app/api/utils/auth/birthday.ts": { - "mtime": 1788939901.083333, + "mtime": 1788947732.514274, "ast_hash": "f4af660a07840da3eec4a4fcb00752cc", "semantic_hash": "f4af660a07840da3eec4a4fcb00752cc" }, "remix/app/api/utils/auth/webauthnPolicy.test.ts": { - "mtime": 1788939901.0894034, + "mtime": 1788947732.516274, "ast_hash": "f3fcdd65c3ed6f60e83d97bab6f56f9a", "semantic_hash": "f3fcdd65c3ed6f60e83d97bab6f56f9a" }, "remix/app/api/utils/auth/webauthnPolicy.ts": { - "mtime": 1788939901.0894864, + "mtime": 1788947732.516274, "ast_hash": "09bdcec1101e38d8df4ab39bcfc768a8", "semantic_hash": "09bdcec1101e38d8df4ab39bcfc768a8" }, "remix/app/api/utils/chatgpt/pluginLimitlessCore.test.ts": { - "mtime": 1788939901.0911493, + "mtime": 1788947732.5182738, "ast_hash": "54641206ef35a31043c4def3c2e302d0", "semantic_hash": "54641206ef35a31043c4def3c2e302d0" }, "remix/app/api/utils/chatgpt/pluginLimitlessCore.ts": { - "mtime": 1788939901.09128, + "mtime": 1788947732.5182738, "ast_hash": "2249ccdb3b32ad08a152560b4f79eabe", "semantic_hash": "2249ccdb3b32ad08a152560b4f79eabe" }, "remix/app/api/utils/ciControl/credentialVault.ts": { - "mtime": 1788940285.3011403, + "mtime": 1788948107.3944938, "ast_hash": "bcbe7ae6469cd9d45999225c0a592f9a", "semantic_hash": "" }, "remix/app/api/utils/ciControl/credentialVaultCore.test.ts": { - "mtime": 1788939901.091946, + "mtime": 1788947732.5187266, "ast_hash": "474f39f31d33cb4edd56af52b06b0c9c", "semantic_hash": "474f39f31d33cb4edd56af52b06b0c9c" }, "remix/app/api/utils/ciControl/credentialVaultCore.ts": { - "mtime": 1788939901.0920825, + "mtime": 1788947732.5187266, "ast_hash": "02e05e31fa9e65b64b085550630e21a1", "semantic_hash": "02e05e31fa9e65b64b085550630e21a1" }, "remix/app/api/utils/ciControl/dashboardFailure.test.ts": { - "mtime": 1788939901.0921729, + "mtime": 1788947732.5187266, "ast_hash": "726315015d8265f2833f373e5b375dd0", "semantic_hash": "726315015d8265f2833f373e5b375dd0" }, "remix/app/api/utils/ciControl/dashboardFailure.ts": { - "mtime": 1788939901.0922506, + "mtime": 1788947732.5187266, "ast_hash": "9dd094cc777342dbd73ee99ea85e273b", "semantic_hash": "9dd094cc777342dbd73ee99ea85e273b" }, "remix/app/api/utils/ciControl/dashboardQueryCore.test.ts": { - "mtime": 1788939901.0923266, + "mtime": 1788947732.5187266, "ast_hash": "580361815aa0b4b027ddf849648474fc", "semantic_hash": "580361815aa0b4b027ddf849648474fc" }, "remix/app/api/utils/ciControl/dashboardQueryCore.ts": { - "mtime": 1788939901.092398, + "mtime": 1788947732.5187266, "ast_hash": "90ffd0d4dab8132eb9830e7b1041b979", "semantic_hash": "90ffd0d4dab8132eb9830e7b1041b979" }, "remix/app/api/utils/ciControl/featureStackLifecycleCore.test.ts": { - "mtime": 1788939901.0924752, + "mtime": 1788947732.5187266, "ast_hash": "e281b33e16981b265aa0fc1e8d22aca0", "semantic_hash": "e281b33e16981b265aa0fc1e8d22aca0" }, "remix/app/api/utils/ciControl/featureStackLifecycleCore.ts": { - "mtime": 1788939901.09256, + "mtime": 1788947732.5187266, "ast_hash": "c2f08da7f884db1bd0e94f67bd6601ea", "semantic_hash": "c2f08da7f884db1bd0e94f67bd6601ea" }, "remix/app/api/utils/ciControl/featureStackProgress.test.ts": { - "mtime": 1788939901.092641, + "mtime": 1788947732.5187266, "ast_hash": "0f95fc1a2ca37e269eea237d5263687f", "semantic_hash": "0f95fc1a2ca37e269eea237d5263687f" }, "remix/app/api/utils/ciControl/featureStackProgress.ts": { - "mtime": 1788939901.0927987, + "mtime": 1788947732.5187266, "ast_hash": "4bdc5a7591bf88940c7dd8ace280e006", "semantic_hash": "4bdc5a7591bf88940c7dd8ace280e006" }, "remix/app/api/utils/ciControl/featureStackRoutingCore.ts": { - "mtime": 1788939901.0928826, + "mtime": 1788947732.5187266, "ast_hash": "4b7fa974ebaaf72ff2f1db6fc98a7c23", "semantic_hash": "4b7fa974ebaaf72ff2f1db6fc98a7c23" }, "remix/app/api/utils/ciControl/featureStackStore.ts": { - "mtime": 1788939901.0930157, + "mtime": 1788947732.519274, "ast_hash": "b68531cd8c69673350cdd12d9d0b152a", "semantic_hash": "b68531cd8c69673350cdd12d9d0b152a" }, "remix/app/api/utils/ciControl/previewPolicyCore.test.ts": { - "mtime": 1788939901.0937126, + "mtime": 1788947732.519274, "ast_hash": "fd8eceb399714eaefdbc6e4c860d789a", "semantic_hash": "fd8eceb399714eaefdbc6e4c860d789a" }, "remix/app/api/utils/ciControl/previewPolicyCore.ts": { - "mtime": 1788939901.0937872, + "mtime": 1788947732.519274, "ast_hash": "e77a9a4e79318dfce2462b90bfff690e", "semantic_hash": "e77a9a4e79318dfce2462b90bfff690e" }, "remix/app/api/utils/deployments/linkTokenPurpose.test.ts": { - "mtime": 1788939901.0996883, + "mtime": 1788947732.5210648, "ast_hash": "ea13f976a38128ed4d9f6061af67ce24", "semantic_hash": "ea13f976a38128ed4d9f6061af67ce24" }, "remix/app/api/utils/deployments/remote.test.ts": { - "mtime": 1788939901.0998762, + "mtime": 1788947732.5211866, "ast_hash": "854bc6082c59f462de33c7e7f699dd9f", "semantic_hash": "854bc6082c59f462de33c7e7f699dd9f" }, "remix/app/api/utils/deployments/remote.ts": { - "mtime": 1788939901.0999985, + "mtime": 1788947732.5211866, "ast_hash": "c9a68706b89d591640893bb0df2449d2", "semantic_hash": "c9a68706b89d591640893bb0df2449d2" }, "remix/app/api/utils/deployments/sync.test.ts": { - "mtime": 1788939901.1001623, + "mtime": 1788947732.5211866, "ast_hash": "3699e97f317d3a7f5cd7c25d7b66dabb", "semantic_hash": "3699e97f317d3a7f5cd7c25d7b66dabb" }, "remix/app/api/utils/deployments/sync.ts": { - "mtime": 1788939901.1002748, + "mtime": 1788947732.5212739, "ast_hash": "5efecbf93701e89bdb376117da4392a5", "semantic_hash": "5efecbf93701e89bdb376117da4392a5" }, "remix/app/api/utils/meta/socialMeta.ts": { - "mtime": 1788939901.1382265, - "ast_hash": "0ddb4922e131f614049d720a740aefef", - "semantic_hash": "0ddb4922e131f614049d720a740aefef" + "mtime": 1788947732.5342739, + "ast_hash": "462f63604fa7a3ebeb8d66a1d8fe5778", + "semantic_hash": "" }, "remix/app/api/utils/mongodb/cappedTotal.test.ts": { - "mtime": 1788939901.1548865, + "mtime": 1788947732.5372736, "ast_hash": "af2d2c24b3a1b20f4ec6a6767b6e2714", "semantic_hash": "af2d2c24b3a1b20f4ec6a6767b6e2714" }, "remix/app/api/utils/mongodb/cappedTotal.ts": { - "mtime": 1788939901.1550512, + "mtime": 1788947732.5380533, "ast_hash": "637c86a2ad9dd087dccd38d5f414b229", "semantic_hash": "637c86a2ad9dd087dccd38d5f414b229" }, "remix/app/api/utils/networkProbe.test.ts": { - "mtime": 1788939901.1613507, + "mtime": 1788947732.5392737, "ast_hash": "2fc443e2889061cccbc13e11dd98f65f", "semantic_hash": "2fc443e2889061cccbc13e11dd98f65f" }, "remix/app/api/utils/networkProbe.ts": { - "mtime": 1788939901.161479, + "mtime": 1788947732.5392737, "ast_hash": "5bdead2507d6608f7007fd2738b68091", "semantic_hash": "5bdead2507d6608f7007fd2738b68091" }, "remix/app/api/utils/notifications/mentions.ts": { - "mtime": 1788939901.1635628, + "mtime": 1788947732.5402014, "ast_hash": "5b22489266b4c693bab75ba366ed54e5", "semantic_hash": "5b22489266b4c693bab75ba366ed54e5" }, "remix/app/api/utils/things/embeddedThings.ts": { - "mtime": 1788939901.174202, + "mtime": 1788947732.5445237, "ast_hash": "298b16149eb3cf11c541cbcc7a07c987", "semantic_hash": "298b16149eb3cf11c541cbcc7a07c987" }, "remix/app/api/utils/things/emojiSearch.test.ts": { - "mtime": 1788939901.1743333, + "mtime": 1788947732.5445237, "ast_hash": "6512afb0baee5e2394ed71666597d42b", "semantic_hash": "6512afb0baee5e2394ed71666597d42b" }, "remix/app/api/utils/things/emojiSearch.ts": { - "mtime": 1788939901.1744254, + "mtime": 1788947732.5445237, "ast_hash": "69f27b3878712921034627176fb9e7cf", "semantic_hash": "69f27b3878712921034627176fb9e7cf" }, "remix/app/api/utils/things/pollCore.ts": { - "mtime": 1788939901.1749172, + "mtime": 1788947732.5445237, "ast_hash": "5c396e5d934d1503ef964bfe6ab2e2c7", "semantic_hash": "5c396e5d934d1503ef964bfe6ab2e2c7" }, "remix/app/api/utils/things/rss.ts": { - "mtime": 1788939901.1758657, + "mtime": 1788947732.5445237, "ast_hash": "430e3c2499990173a710e7c67581588d", "semantic_hash": "430e3c2499990173a710e7c67581588d" }, "remix/app/api/utils/things/saved.ts": { - "mtime": 1788939901.1759484, + "mtime": 1788947732.5452738, "ast_hash": "86b076066ba3ecc9b9ea2c8c1a6d3be8", "semantic_hash": "86b076066ba3ecc9b9ea2c8c1a6d3be8" }, "remix/app/api/utils/things/trending.ts": { - "mtime": 1788939901.1804092, + "mtime": 1788947732.5462737, "ast_hash": "ddcd566067aef2b63543d87751153a73", "semantic_hash": "ddcd566067aef2b63543d87751153a73" }, "remix/app/api/utils/things/vote.ts": { - "mtime": 1788939901.1829941, + "mtime": 1788947732.5462737, "ast_hash": "61df1c74c7c1cb48ba4f6878b2255689", "semantic_hash": "61df1c74c7c1cb48ba4f6878b2255689" }, "remix/app/api/utils/vercel/webhookStore.test.ts": { - "mtime": 1788939901.1845047, + "mtime": 1788947732.5476372, "ast_hash": "8e5207aae5964fa3cf3898f7c79379ac", "semantic_hash": "8e5207aae5964fa3cf3898f7c79379ac" }, "remix/app/api/utils/vercel/webhookStore.ts": { - "mtime": 1788939901.1846313, + "mtime": 1788947732.5476372, "ast_hash": "911fdc103031292e3b611bfa954bb61f", "semantic_hash": "911fdc103031292e3b611bfa954bb61f" }, "remix/app/components/Admin/CIControl/ClaudeCredentialWaterfall.tsx": { - "mtime": 1788941168.8913198, + "mtime": 1788948107.3954937, "ast_hash": "e73736857556d2a7b7cbb55ec1c72c11", "semantic_hash": "" }, "remix/app/components/Admin/CIControl/dashboardPollingCore.test.ts": { - "mtime": 1788939901.1932752, + "mtime": 1788947732.5511444, "ast_hash": "db9213ea4df09e73c5d8f06ccdb9e9b9", "semantic_hash": "db9213ea4df09e73c5d8f06ccdb9e9b9" }, "remix/app/components/Admin/CIControl/dashboardPollingCore.ts": { - "mtime": 1788939901.1934233, + "mtime": 1788947732.5511444, "ast_hash": "11f9b99317699646844b74010abf4add", "semantic_hash": "11f9b99317699646844b74010abf4add" }, "remix/app/components/Admin/CIControl/featureStackDraftCore.test.ts": { - "mtime": 1788939901.1935527, + "mtime": 1788947732.5511444, "ast_hash": "7e26907a1d54adf47fd7c0b8b9463256", "semantic_hash": "7e26907a1d54adf47fd7c0b8b9463256" }, "remix/app/components/Admin/CIControl/featureStackDraftCore.ts": { - "mtime": 1788939901.1936674, + "mtime": 1788947732.5511444, "ast_hash": "a878cdeb5bdc01ab0f884bc1c16731df", "semantic_hash": "a878cdeb5bdc01ab0f884bc1c16731df" }, "remix/app/components/Admin/CIControl/featureStackRunCore.test.ts": { - "mtime": 1788939901.1940684, + "mtime": 1788947732.5511444, "ast_hash": "b7c11ed19e93877f5cf94ccdea066569", "semantic_hash": "b7c11ed19e93877f5cf94ccdea066569" }, "remix/app/components/Admin/CIControl/featureStackRunCore.ts": { - "mtime": 1788939901.194284, + "mtime": 1788947732.5511444, "ast_hash": "c6dbe9156472ebfced7f03512540458e", "semantic_hash": "c6dbe9156472ebfced7f03512540458e" }, "remix/app/components/Admin/CIControl/statusFilterCore.test.ts": { - "mtime": 1788939901.1945307, + "mtime": 1788947732.5512736, "ast_hash": "3b611dc37563820cc152e7c0f07e549f", "semantic_hash": "3b611dc37563820cc152e7c0f07e549f" }, "remix/app/components/Admin/CIControl/statusFilterCore.ts": { - "mtime": 1788939901.1946537, + "mtime": 1788947732.5512736, "ast_hash": "a5bbbdcc18b00cb590a1e6fc46f1b9c8", "semantic_hash": "a5bbbdcc18b00cb590a1e6fc46f1b9c8" }, "remix/app/components/Admin/adminRoutesCore.test.ts": { - "mtime": 1788939901.197494, + "mtime": 1788947732.5522738, "ast_hash": "f46d324878a297e7e51ad7c91858e55f", "semantic_hash": "f46d324878a297e7e51ad7c91858e55f" }, "remix/app/components/Admin/adminRoutesCore.ts": { - "mtime": 1788939901.1975734, + "mtime": 1788947732.5522738, "ast_hash": "df484996b3d17f7d2034714da3dae640", "semantic_hash": "df484996b3d17f7d2034714da3dae640" }, "remix/app/components/Commander/commanderCommands.test.ts": { - "mtime": 1788939901.2173078, + "mtime": 1788947732.5580876, "ast_hash": "a7b7ea66096d277281037397710221e1", "semantic_hash": "a7b7ea66096d277281037397710221e1" }, "remix/app/components/Commander/commanderCommands.ts": { - "mtime": 1788939901.2176466, + "mtime": 1788947732.5580876, "ast_hash": "ee7d86fc45e18322e4eef25ae0a1a951", "semantic_hash": "ee7d86fc45e18322e4eef25ae0a1a951" }, "remix/app/components/Commander/commanderShortcut.test.ts": { - "mtime": 1788939901.2180443, + "mtime": 1788947732.5582736, "ast_hash": "851a723d808746935d9861619aa5cfc6", "semantic_hash": "851a723d808746935d9861619aa5cfc6" }, "remix/app/components/Commander/commanderShortcut.ts": { - "mtime": 1788939901.2181423, + "mtime": 1788947732.5582736, "ast_hash": "1de263a3ac80222bf480aa0a94e39bfc", "semantic_hash": "1de263a3ac80222bf480aa0a94e39bfc" }, "remix/app/components/Editor/editorJsBlockDragDrop.ts": { - "mtime": 1788939901.23303, + "mtime": 1788947732.5623264, "ast_hash": "8b73038b1c060182b4767c108916b6eb", "semantic_hash": "8b73038b1c060182b4767c108916b6eb" }, "remix/app/components/Editor/editorJsBlockReorder.test.ts": { - "mtime": 1788939901.23323, + "mtime": 1788947732.5623264, "ast_hash": "0b11ea995d9c85e0c8a299f94492e182", "semantic_hash": "0b11ea995d9c85e0c8a299f94492e182" }, "remix/app/components/Editor/editorJsBlockReorder.ts": { - "mtime": 1788939901.2333899, + "mtime": 1788947732.5623264, "ast_hash": "17fd41935e4cd9af8a0c09848810dc9e", "semantic_hash": "17fd41935e4cd9af8a0c09848810dc9e" }, "remix/app/components/Editor/postEditorSubmission.test.ts": { - "mtime": 1788939901.2381372, + "mtime": 1788947732.5642736, "ast_hash": "73abbfbb2a270a7c56e80049b519a759", "semantic_hash": "73abbfbb2a270a7c56e80049b519a759" }, "remix/app/components/Editor/postEditorSubmission.ts": { - "mtime": 1788939901.2382534, + "mtime": 1788947732.5642736, "ast_hash": "bda7bdf6d77a2ce7f938cf52b254b5ce", "semantic_hash": "bda7bdf6d77a2ce7f938cf52b254b5ce" }, "remix/app/components/Explore/ExplorePage.tsx": { - "mtime": 1788939901.2395601, + "mtime": 1788947732.5649486, "ast_hash": "bcb1a275ef21ce2e190bfa842ea6b6fe", "semantic_hash": "bcb1a275ef21ce2e190bfa842ea6b6fe" }, "remix/app/components/Feed/FeedShortcutsHelp.tsx": { - "mtime": 1788939901.2407353, + "mtime": 1788947732.5652814, "ast_hash": "9eb04204cd9856883f5bd7f810103ebb", "semantic_hash": "9eb04204cd9856883f5bd7f810103ebb" }, "remix/app/components/Feed/MemoriesCard.tsx": { - "mtime": 1788939901.2408986, + "mtime": 1788947732.5652814, "ast_hash": "673ce06bd0eb1c6511b0b5f15506f89e", "semantic_hash": "673ce06bd0eb1c6511b0b5f15506f89e" }, "remix/app/components/Feed/MentionAutocomplete.tsx": { - "mtime": 1788939901.2410111, + "mtime": 1788947732.5652814, "ast_hash": "7b64fec7976169ae9dd75eb444beccef", "semantic_hash": "7b64fec7976169ae9dd75eb444beccef" }, "remix/app/components/Feed/algorithmGrowth.test.ts": { - "mtime": 1788939901.243945, + "mtime": 1788947732.5662735, "ast_hash": "a2616715ba4901b38af437dd4191642e", "semantic_hash": "a2616715ba4901b38af437dd4191642e" }, "remix/app/components/Feed/algorithmGrowth.ts": { - "mtime": 1788939901.2441156, + "mtime": 1788947732.5662735, "ast_hash": "cdaed3a12c7bd7544362b844844c7796", "semantic_hash": "cdaed3a12c7bd7544362b844844c7796" }, "remix/app/components/Feed/emojiSplash.ts": { - "mtime": 1788939901.2445138, + "mtime": 1788947732.5662735, "ast_hash": "3d11a6c1dc6682e14ca16f8f7beb8d28", "semantic_hash": "3d11a6c1dc6682e14ca16f8f7beb8d28" }, "remix/app/components/Feed/feedTypes.test.ts": { - "mtime": 1788939901.244669, + "mtime": 1788947732.5662735, "ast_hash": "72ed71dcb184aee6623ace4049c938a2", "semantic_hash": "72ed71dcb184aee6623ace4049c938a2" }, "remix/app/components/Feed/hashtags.test.ts": { - "mtime": 1788939901.2449882, + "mtime": 1788947732.5662735, "ast_hash": "b38e57a85f8a76fd46f4fe3eca35b224", "semantic_hash": "b38e57a85f8a76fd46f4fe3eca35b224" }, "remix/app/components/Feed/hashtags.ts": { - "mtime": 1788939901.2451403, + "mtime": 1788947732.5662735, "ast_hash": "f8539b7c52941a532b8a65425032c7ee", "semantic_hash": "f8539b7c52941a532b8a65425032c7ee" }, "remix/app/components/Feed/postCardChangeContract.test.ts": { - "mtime": 1788939901.245366, + "mtime": 1788947732.5672736, "ast_hash": "0f6769f8ff3c0996c46c1ad717ac8df6", "semantic_hash": "0f6769f8ff3c0996c46c1ad717ac8df6" }, "remix/app/components/Profile/ActivityHeatmap.tsx": { - "mtime": 1788939901.2849753, + "mtime": 1788947732.5799708, "ast_hash": "6a84fdf3d53fb17766de09432c0c58c5", "semantic_hash": "6a84fdf3d53fb17766de09432c0c58c5" }, "remix/app/components/Profile/themeTryOnCore.test.ts": { - "mtime": 1788939901.2909048, + "mtime": 1788947732.5802734, "ast_hash": "f70b07775135504c0276e3cc3a94f8bc", "semantic_hash": "f70b07775135504c0276e3cc3a94f8bc" }, "remix/app/components/Profile/themeTryOnCore.ts": { - "mtime": 1788939901.2910974, + "mtime": 1788947732.5802734, "ast_hash": "d3ac73c43ab8c4996d4ca6dc6086bf6e", "semantic_hash": "d3ac73c43ab8c4996d4ca6dc6086bf6e" }, "remix/app/components/QuickSwitcher/QuickSwitcher.tsx": { - "mtime": 1788939901.292168, + "mtime": 1788947732.5802734, "ast_hash": "835428c97845ddfb8b13501c60eec00c", "semantic_hash": "835428c97845ddfb8b13501c60eec00c" }, "remix/app/components/QuickSwitcher/quickSwitcherCore.ts": { - "mtime": 1788939901.2926629, + "mtime": 1788947732.5810454, "ast_hash": "2bd87686ee525cf2b31e5d9571e93905", "semantic_hash": "2bd87686ee525cf2b31e5d9571e93905" }, "remix/app/components/Saved/SavedPage.tsx": { - "mtime": 1788939901.2950397, + "mtime": 1788947732.5810454, "ast_hash": "b78bddb4cd8a7ecf6a44b06fba8afec8", "semantic_hash": "b78bddb4cd8a7ecf6a44b06fba8afec8" }, "remix/app/components/Settings/LinkedDeployments.tsx": { - "mtime": 1788939901.3004017, + "mtime": 1788947732.5830266, "ast_hash": "8dc107912ef69b7f5d2a260c041c493a", "semantic_hash": "8dc107912ef69b7f5d2a260c041c493a" }, "remix/app/components/Settings/useLinkedDeployments.tsx": { - "mtime": 1788939901.3034365, + "mtime": 1788947732.5832734, "ast_hash": "4070f4a2e65b4ed330d467a92ce4e975", "semantic_hash": "4070f4a2e65b4ed330d467a92ce4e975" }, "remix/app/components/ThemeSettings/ThemeGallery.tsx": { - "mtime": 1788939901.322546, + "mtime": 1788947732.5852735, "ast_hash": "23d9c09644883693f0c24d929fb019d9", "semantic_hash": "23d9c09644883693f0c24d929fb019d9" }, "remix/app/components/Things/ThingAttachmentDetail.tsx": { - "mtime": 1788939901.3241022, + "mtime": 1788947732.586319, "ast_hash": "2e77058f583f96b1844401f7668801cc", "semantic_hash": "2e77058f583f96b1844401f7668801cc" }, "remix/app/components/Things/thingAttachmentDetailCore.test.ts": { - "mtime": 1788939901.3252358, + "mtime": 1788947732.586319, "ast_hash": "16ca81068a84b61779fcfa990a3170af", "semantic_hash": "16ca81068a84b61779fcfa990a3170af" }, "remix/app/components/Things/thingAttachmentDetailCore.ts": { - "mtime": 1788939901.325349, + "mtime": 1788947732.586319, "ast_hash": "633ca41563cb3d9709afd025d240eb54", "semantic_hash": "633ca41563cb3d9709afd025d240eb54" }, "remix/app/embed/bridge.tsx": { - "mtime": 1788939901.341818, + "mtime": 1788947732.593405, "ast_hash": "d0d6db0c0a5cd07d46de01b86ae3e781", "semantic_hash": "d0d6db0c0a5cd07d46de01b86ae3e781" }, "remix/app/embed/bridgeIdentity.test.ts": { - "mtime": 1788939901.3419247, + "mtime": 1788947732.5936208, "ast_hash": "4d91a2e3c323ff60342f81024297add2", "semantic_hash": "4d91a2e3c323ff60342f81024297add2" }, "remix/app/embed/bridgeIdentity.ts": { - "mtime": 1788939901.3421223, + "mtime": 1788947732.5936208, "ast_hash": "e1c87cce0c82d5ed77683cc91c7b976d", "semantic_hash": "e1c87cce0c82d5ed77683cc91c7b976d" }, "remix/app/embed/entry.ts": { - "mtime": 1788939901.3436005, + "mtime": 1788947732.5936208, "ast_hash": "4d4a3c52a49a788ddc1c71c4e4f7a0be", "semantic_hash": "4d4a3c52a49a788ddc1c71c4e4f7a0be" }, "remix/app/embed/json.ts": { - "mtime": 1788939901.3436902, + "mtime": 1788947732.5936208, "ast_hash": "06a69f8963441a51afb9dc5282e8dece", "semantic_hash": "06a69f8963441a51afb9dc5282e8dece" }, "remix/app/embed/renderer.ts": { - "mtime": 1788939901.3461032, + "mtime": 1788947732.5936208, "ast_hash": "623d169db541d1a787926d073654a70b", "semantic_hash": "623d169db541d1a787926d073654a70b" }, "remix/app/embed/runtime.ts": { - "mtime": 1788939901.3464782, + "mtime": 1788947732.5936208, "ast_hash": "4e814987964c10a60e61731cdcf18e6a", "semantic_hash": "4e814987964c10a60e61731cdcf18e6a" }, "remix/app/hooks/apiRequestLog.test.ts": { - "mtime": 1788939901.3489854, + "mtime": 1788947732.594654, "ast_hash": "4f71b515646575294d34ec3458c3a879", "semantic_hash": "4f71b515646575294d34ec3458c3a879" }, "remix/app/hooks/apiRequestLog.ts": { - "mtime": 1788939901.349128, + "mtime": 1788947732.594654, "ast_hash": "cee0ee7b6e8ef7a433b367a5f1c707f0", "semantic_hash": "cee0ee7b6e8ef7a433b367a5f1c707f0" }, "remix/app/hooks/thingsRequestPayload.test.ts": { - "mtime": 1788939901.3498707, + "mtime": 1788947732.594654, "ast_hash": "401f4868a31630189240b640cd946b9b", "semantic_hash": "401f4868a31630189240b640cd946b9b" }, "remix/app/hooks/thingsRequestPayload.ts": { - "mtime": 1788939901.3499458, + "mtime": 1788947732.594654, "ast_hash": "81ed21c4a54385b0f923e69bbb51aa1a", "semantic_hash": "81ed21c4a54385b0f923e69bbb51aa1a" }, "remix/app/hooks/useFeedShortcuts.ts": { - "mtime": 1788939901.3513997, + "mtime": 1788947732.5952733, "ast_hash": "7276fe7196470195afbbc00d59f28987", "semantic_hash": "7276fe7196470195afbbc00d59f28987" }, "remix/app/routes/api/v1/admin/ci/previews/_previews.tsx": { - "mtime": 1788939901.3631144, + "mtime": 1788947732.5972753, "ast_hash": "f63d2aabafb53d0d0caf888be03a01f9", "semantic_hash": "f63d2aabafb53d0d0caf888be03a01f9" }, "remix/app/routes/api/v1/admin/ci/stacks/_stacks.tsx": { - "mtime": 1788939901.3634567, + "mtime": 1788947732.5972753, "ast_hash": "8c869af2eb37695c8a0d50b2bd5832b4", "semantic_hash": "8c869af2eb37695c8a0d50b2bd5832b4" }, "remix/app/routes/api/v1/algorithms/shared/_shared.tsx": { - "mtime": 1788939901.3719566, + "mtime": 1788947732.5997405, "ast_hash": "5c45152766f21b30b334ee657b30736e", "semantic_hash": "5c45152766f21b30b334ee657b30736e" }, "remix/app/routes/api/v1/attachments/link/_link.tsx": { - "mtime": 1788939901.377142, + "mtime": 1788947732.6012733, "ast_hash": "6b892bb4a5e54c9a5d3225f70a816929", "semantic_hash": "6b892bb4a5e54c9a5d3225f70a816929" }, "remix/app/routes/api/v1/auth/introspect/_introspect.tsx": { - "mtime": 1788939901.3834476, + "mtime": 1788947732.602122, "ast_hash": "03ca24b00efc44110e4d02ddd41ac792", "semantic_hash": "03ca24b00efc44110e4d02ddd41ac792" }, "remix/app/routes/api/v1/deployment-links/_deployment-links.tsx": { - "mtime": 1788939901.400809, + "mtime": 1788947732.6052732, "ast_hash": "b9c478c2d8f8065ee5c447f4d1eac9c5", "semantic_hash": "b9c478c2d8f8065ee5c447f4d1eac9c5" }, "remix/app/routes/api/v1/deployment-links/sync/_sync.tsx": { - "mtime": 1788939901.4009204, + "mtime": 1788947732.605746, "ast_hash": "c4594536a6956af67b7b32a1fa77133c", "semantic_hash": "c4594536a6956af67b7b32a1fa77133c" }, "remix/app/routes/api/v1/embed/things/_things.tsx": { - "mtime": 1788939901.407864, + "mtime": 1788947732.6070216, "ast_hash": "5765e06134fc7b5c117e16be0fdeed0a", "semantic_hash": "5765e06134fc7b5c117e16be0fdeed0a" }, "remix/app/routes/api/v1/integrations/ci/progress/_progress.tsx": { - "mtime": 1788939901.4146998, + "mtime": 1788947732.6085858, "ast_hash": "8a869bbd007f06a0054b591a84e172cb", "semantic_hash": "8a869bbd007f06a0054b591a84e172cb" }, "remix/app/routes/api/v1/network-probe/download/_download.tsx": { - "mtime": 1788939901.423303, + "mtime": 1788947732.6108813, "ast_hash": "6d5ccabcf5a7e4d6f7d9ac731e229bef", "semantic_hash": "6d5ccabcf5a7e4d6f7d9ac731e229bef" }, "remix/app/routes/api/v1/network-probe/ping/_ping.tsx": { - "mtime": 1788939901.424152, + "mtime": 1788947732.6108813, "ast_hash": "6dd9c3745c96fadea48d0b04fef2e33e", "semantic_hash": "6dd9c3745c96fadea48d0b04fef2e33e" }, "remix/app/routes/api/v1/network-probe/upload/_upload.tsx": { - "mtime": 1788939901.4244423, + "mtime": 1788947732.6108813, "ast_hash": "a4a31f7b87603bbf1bad98836dc54ee0", "semantic_hash": "a4a31f7b87603bbf1bad98836dc54ee0" }, "remix/app/routes/api/v1/things/rss/_rss.tsx": { - "mtime": 1788939901.4349155, + "mtime": 1788947732.6159184, "ast_hash": "b2ea15459084f0eb2bbaf4f92ed59e3e", "semantic_hash": "b2ea15459084f0eb2bbaf4f92ed59e3e" }, "remix/app/routes/api/v1/things/saved/_saved.tsx": { - "mtime": 1788939901.435503, + "mtime": 1788947732.6159184, "ast_hash": "87be88aed2b148058f7b97d9d9dced22", "semantic_hash": "87be88aed2b148058f7b97d9d9dced22" }, "remix/app/routes/api/v1/things/trending/_trending.tsx": { - "mtime": 1788939901.4360688, + "mtime": 1788947732.6159184, "ast_hash": "cb70b98190ccc603e3ff77fe8d020786", "semantic_hash": "cb70b98190ccc603e3ff77fe8d020786" }, "remix/app/routes/api/v1/things/vote/_vote.tsx": { - "mtime": 1788939901.4366758, + "mtime": 1788947732.6162732, "ast_hash": "d54ef55b1a3ad11bd634ccd1c89c853a", "semantic_hash": "d54ef55b1a3ad11bd634ccd1c89c853a" }, "remix/app/routes/api/v1/users/activity/_activity.tsx": { - "mtime": 1788939901.4373481, + "mtime": 1788947732.6171734, "ast_hash": "bb4497b496590d385d6cc642e467088c", "semantic_hash": "bb4497b496590d385d6cc642e467088c" }, "remix/app/routes/api/v1/vercel/webhook/_webhook.tsx": { - "mtime": 1788939901.4408321, + "mtime": 1788947732.6177938, "ast_hash": "86c803f7820926e5b9d029c3bce15258", "semantic_hash": "86c803f7820926e5b9d029c3bce15258" }, "remix/app/routes/docs/ApiTryIt.tsx": { - "mtime": 1788939901.4449828, + "mtime": 1788947732.6193562, "ast_hash": "bd53a070e0fd2b6c1df550cef6e4dcb5", "semantic_hash": "bd53a070e0fd2b6c1df550cef6e4dcb5" }, "remix/app/routes/docs/mcp.tsx": { - "mtime": 1788939901.4655004, + "mtime": 1788947732.6232731, "ast_hash": "e84aa753df3a26b9118d31a01a446ed0", "semantic_hash": "e84aa753df3a26b9118d31a01a446ed0" }, "remix/app/routes/docs/mcpDemoCore.test.ts": { - "mtime": 1788939901.4657605, + "mtime": 1788947732.6232731, "ast_hash": "207ebd1989ca0c581930a4024a1efbdc", "semantic_hash": "207ebd1989ca0c581930a4024a1efbdc" }, "remix/app/routes/docs/mcpDemoCore.ts": { - "mtime": 1788939901.4658954, + "mtime": 1788947732.6232731, "ast_hash": "f7f88584c2e0a61521631a9b17f90231", "semantic_hash": "f7f88584c2e0a61521631a9b17f90231" }, "remix/app/routes/explore.tsx": { - "mtime": 1788939901.4665766, + "mtime": 1788947732.6232731, "ast_hash": "b137e7bfdd075cd0dff9cd5340037531", "semantic_hash": "b137e7bfdd075cd0dff9cd5340037531" }, "remix/app/routes/saved.tsx": { - "mtime": 1788939901.4690628, + "mtime": 1788947732.624273, "ast_hash": "61d70ee802c558f83358390d9440fc05", "semantic_hash": "61d70ee802c558f83358390d9440fc05" }, "remix/app/routes/themes.gallery.tsx": { - "mtime": 1788939901.4706986, + "mtime": 1788947732.625273, "ast_hash": "7c77ade265d60d9c7ca6b44213d1c1e6", "semantic_hash": "7c77ade265d60d9c7ca6b44213d1c1e6" }, "remix/app/schemas/postRichText.test.ts": { - "mtime": 1788939901.4746923, + "mtime": 1788947732.627273, "ast_hash": "6ea56dc73eac27e1db2a500ce1125e8c", "semantic_hash": "6ea56dc73eac27e1db2a500ce1125e8c" }, "remix/app/utils/editableTarget.test.ts": { - "mtime": 1788939901.48567, + "mtime": 1788947732.6322265, "ast_hash": "cd3feb36ac9cfee13f736136d8e44cad", "semantic_hash": "cd3feb36ac9cfee13f736136d8e44cad" }, "remix/app/utils/editableTarget.ts": { - "mtime": 1788939901.4866223, + "mtime": 1788947732.6322265, "ast_hash": "2812b7d20d9820b429e805a67fdc530a", "semantic_hash": "2812b7d20d9820b429e805a67fdc530a" }, "remix/app/utils/mentions.test.ts": { - "mtime": 1788939901.4876378, + "mtime": 1788947732.632273, "ast_hash": "fc3abc155bd046691d078d3a77ec0f89", "semantic_hash": "fc3abc155bd046691d078d3a77ec0f89" }, "remix/app/utils/mentions.ts": { - "mtime": 1788939901.48794, + "mtime": 1788947732.632273, "ast_hash": "5455bcfa16838cb3fd99d22939eeae72", "semantic_hash": "5455bcfa16838cb3fd99d22939eeae72" }, "remix/app/utils/staleChunkRecovery.test.ts": { - "mtime": 1788939901.490024, + "mtime": 1788947732.632273, "ast_hash": "d951d957ee02e4a765608621787aaf4a", "semantic_hash": "d951d957ee02e4a765608621787aaf4a" }, "remix/app/utils/staleChunkRecovery.ts": { - "mtime": 1788939901.490131, + "mtime": 1788947732.632273, "ast_hash": "b9c4641f013ae97ab2a7a3721e55260b", "semantic_hash": "b9c4641f013ae97ab2a7a3721e55260b" }, "remix/public/embed/demo-host.js": { - "mtime": 1788939902.5790455, + "mtime": 1788947732.6709688, "ast_hash": "b74e52f13f803221e896a7da64229cf1", "semantic_hash": "b74e52f13f803221e896a7da64229cf1" }, "remix/public/embed/demo-integrity.js": { - "mtime": 1788939902.5791543, + "mtime": 1788947732.6709688, "ast_hash": "4b6fbc2fddca98af1e3f6994a8af33a0", "semantic_hash": "4b6fbc2fddca98af1e3f6994a8af33a0" }, "remix/scripts/embed-bundle-source-map.mjs": { - "mtime": 1788939902.63946, + "mtime": 1788947732.6762726, "ast_hash": "24218ecefdd141de23ce9298086d0fab", "semantic_hash": "24218ecefdd141de23ce9298086d0fab" }, "remix/scripts/embed-bundle-source-map.test.mjs": { - "mtime": 1788939902.6395564, + "mtime": 1788947732.6762726, "ast_hash": "8570b2baa72fb3fe408fa03d383b00b6", "semantic_hash": "8570b2baa72fb3fe408fa03d383b00b6" }, "remix/scripts/vercel/create-webhook.mjs": { - "mtime": 1788939902.644377, + "mtime": 1788947732.6772728, "ast_hash": "aa1a349fbd6fbdb2d85afc20804ffff9", "semantic_hash": "aa1a349fbd6fbdb2d85afc20804ffff9" }, "remix/scripts/verify-embed-bundle.mjs": { - "mtime": 1788939902.6474893, + "mtime": 1788947732.6772728, "ast_hash": "78d1219abc1e7386881be5d6a6b25287", "semantic_hash": "78d1219abc1e7386881be5d6a6b25287" }, "remix/vite.embed.config.ts": { - "mtime": 1788939902.670315, + "mtime": 1788947732.6817832, "ast_hash": "5b0d39e2c8b66bd609415c6060b61412", "semantic_hash": "5b0d39e2c8b66bd609415c6060b61412" }, "remix/workflows/moderationSweep.ts": { - "mtime": 1788939902.6705627, + "mtime": 1788947732.6817832, "ast_hash": "64104004ac077556155be9de15b2a772", "semantic_hash": "64104004ac077556155be9de15b2a772" }, ".github/workflows/commander-release.yml": { - "mtime": 1788939899.699641, + "mtime": 1788947732.074611, "ast_hash": "41a47b613fa6090f88eaf652744343a9", "semantic_hash": "41a47b613fa6090f88eaf652744343a9" }, "Commander/ARCHITECTURE.md": { - "mtime": 1788939899.7131023, + "mtime": 1788947732.0759041, "ast_hash": "5a3628c64c892a09c8e3b9d67de906a1", "semantic_hash": "5a3628c64c892a09c8e3b9d67de906a1" }, "Commander/docs/RAYCAST_COMPATIBILITY.md": { - "mtime": 1788939899.8139048, + "mtime": 1788947732.0872772, "ast_hash": "acb578d05997728808c9a6c795cbad62", "semantic_hash": "acb578d05997728808c9a6c795cbad62" }, "Commander/docs/TESTING.md": { - "mtime": 1788939899.8141189, + "mtime": 1788948107.3384943, "ast_hash": "4420eb71c0fb0b72530c6007967eef49", "semantic_hash": "" }, "Commander/extensions/README.md": { - "mtime": 1788939899.8151698, + "mtime": 1788947732.0882308, "ast_hash": "7e34eb58ca30e19be553c5644817ff40", "semantic_hash": "7e34eb58ca30e19be553c5644817ff40" }, "Commander/extensions/raycast/CHANGELOG.md": { - "mtime": 1788939899.8167622, + "mtime": 1788947732.088532, "ast_hash": "11935baef16feb9985d6252de6a95a71", "semantic_hash": "11935baef16feb9985d6252de6a95a71" }, "Commander/extensions/raycast/DEVLOG.md": { - "mtime": 1788939899.8168793, + "mtime": 1788947732.088532, "ast_hash": "f89ba8abc8a34811c7de7830048b42cc", "semantic_hash": "f89ba8abc8a34811c7de7830048b42cc" }, "Commander/extensions/raycast/README.md": { - "mtime": 1788939899.8169687, + "mtime": 1788947732.088532, "ast_hash": "9e3f85ab336f15a29c79ae62e72b604c", "semantic_hash": "9e3f85ab336f15a29c79ae62e72b604c" }, "Commander/extensions/raycast/assets/webp/README.md": { - "mtime": 1788939899.8662837, + "mtime": 1788947732.096277, "ast_hash": "f162fbffa18046af73dfca08802a536f", "semantic_hash": "f162fbffa18046af73dfca08802a536f" }, "Commander/extensions/raycast/pnpm-workspace.yaml": { - "mtime": 1788939899.9528997, + "mtime": 1788947732.1552765, "ast_hash": "cb99c58fa07c0f29efd37c5b15b56380", "semantic_hash": "cb99c58fa07c0f29efd37c5b15b56380" }, "PRs/482-codex-limitless-mcp-make-thingtime-mcp-limitless-composable-and-safe.md": { - "mtime": 1788939900.0067794, + "mtime": 1788947732.1722765, "ast_hash": "1aa58e0837ee2d795a44895ce65175a0", "semantic_hash": "1aa58e0837ee2d795a44895ce65175a0" }, "PRs/489-codex-feature-stack-main-add-verified-multi-target-feature-stacks.md": { - "mtime": 1788939900.0103283, + "mtime": 1788947732.1732764, "ast_hash": "894d097cb6f4c2d8758804e26410a794", "semantic_hash": "894d097cb6f4c2d8758804e26410a794" }, "PRs/491-codex-lopu-credential-vault-add-ordered-lopu-credential-vault.md": { - "mtime": 1788939900.0104184, + "mtime": 1788947732.1732764, "ast_hash": "f77cb8e0fe7ba3e10fa154543e6cf4bf", "semantic_hash": "f77cb8e0fe7ba3e10fa154543e6cf4bf" }, "PRs/498-codex-feature-stack-saved-workflows--saved-multi-target-feature-stacks.md": { - "mtime": 1788939900.0106723, + "mtime": 1788947732.1732764, "ast_hash": "c8b4ef8eec58d9a01ce567dddcf64e7d", "semantic_hash": "c8b4ef8eec58d9a01ce567dddcf64e7d" }, "Commander/extensions/raycast/assets/command-icon.png": { - "mtime": 1788939899.817524, + "mtime": 1788947732.088532, "ast_hash": "7df98b14e65cef0ba33ba7d4adaaf883", "semantic_hash": "7df98b14e65cef0ba33ba7d4adaaf883" }, "Commander/extensions/raycast/assets/thumbnails/100x100.webp": { - "mtime": 1788939899.819182, + "mtime": 1788947732.089277, "ast_hash": "735868e81fabfad954c3534b3f5d5234", "semantic_hash": "735868e81fabfad954c3534b3f5d5234" }, "Commander/extensions/raycast/assets/thumbnails/100x1024.webp": { - "mtime": 1788939899.8194277, + "mtime": 1788947732.09008, "ast_hash": "548c67e18d4904375dbf443dbff4a3fb", "semantic_hash": "548c67e18d4904375dbf443dbff4a3fb" }, "Commander/extensions/raycast/assets/thumbnails/100x128.webp": { - "mtime": 1788939899.8195012, + "mtime": 1788947732.09008, "ast_hash": "e8de5986370da80201878eec390c7b4d", "semantic_hash": "e8de5986370da80201878eec390c7b4d" }, "Commander/extensions/raycast/assets/thumbnails/100x256.webp": { - "mtime": 1788939899.819806, + "mtime": 1788947732.09008, "ast_hash": "41d380cc159543e3ad96cccbb468a9d1", "semantic_hash": "41d380cc159543e3ad96cccbb468a9d1" }, "Commander/extensions/raycast/assets/thumbnails/100x32.webp": { - "mtime": 1788939899.8199105, + "mtime": 1788947732.09008, "ast_hash": "12f382326eaf74a5eea4f4889ee2271e", "semantic_hash": "12f382326eaf74a5eea4f4889ee2271e" }, "Commander/extensions/raycast/assets/thumbnails/100x50.webp": { - "mtime": 1788939899.8201935, + "mtime": 1788947732.09008, "ast_hash": "041d11be4cf4820f65a9656231130f16", "semantic_hash": "041d11be4cf4820f65a9656231130f16" }, "Commander/extensions/raycast/assets/thumbnails/100x512.webp": { - "mtime": 1788939899.820273, + "mtime": 1788947732.09008, "ast_hash": "c25b04b4ba3a7800b253764f97214f57", "semantic_hash": "c25b04b4ba3a7800b253764f97214f57" }, "Commander/extensions/raycast/assets/thumbnails/100x64.webp": { - "mtime": 1788939899.8203554, + "mtime": 1788947732.09008, "ast_hash": "77c5807ddd87634acbb62de1b1ece7c8", "semantic_hash": "77c5807ddd87634acbb62de1b1ece7c8" }, "Commander/extensions/raycast/assets/thumbnails/1024x100.webp": { - "mtime": 1788939899.821435, + "mtime": 1788947732.09008, "ast_hash": "01b05e27e01267fc666d7c582713f235", "semantic_hash": "01b05e27e01267fc666d7c582713f235" }, "Commander/extensions/raycast/assets/thumbnails/1024x1024.webp": { - "mtime": 1788939899.8216853, + "mtime": 1788947732.09008, "ast_hash": "9fb79365ac8284d47088751d1a0a177e", "semantic_hash": "9fb79365ac8284d47088751d1a0a177e" }, "Commander/extensions/raycast/assets/thumbnails/1024x128.webp": { - "mtime": 1788939899.8217807, + "mtime": 1788947732.09008, "ast_hash": "d6b3d3644a51fd150ae5ec6a62a988f6", "semantic_hash": "d6b3d3644a51fd150ae5ec6a62a988f6" }, "Commander/extensions/raycast/assets/thumbnails/1024x256.webp": { - "mtime": 1788939899.822074, + "mtime": 1788947732.09008, "ast_hash": "a7710eaa2749b8b8b199c0b25c65728a", "semantic_hash": "a7710eaa2749b8b8b199c0b25c65728a" }, "Commander/extensions/raycast/assets/thumbnails/1024x32.webp": { - "mtime": 1788939899.8221636, + "mtime": 1788947732.09008, "ast_hash": "9dfdeb3666a0bec63e50caab52366627", "semantic_hash": "9dfdeb3666a0bec63e50caab52366627" }, "Commander/extensions/raycast/assets/thumbnails/1024x50.webp": { - "mtime": 1788939899.8224216, + "mtime": 1788947732.09008, "ast_hash": "1e33dd955e181f6e5ceabd6b8686e221", "semantic_hash": "1e33dd955e181f6e5ceabd6b8686e221" }, "Commander/extensions/raycast/assets/thumbnails/1024x512.webp": { - "mtime": 1788939899.8224998, + "mtime": 1788947732.090277, "ast_hash": "041d11be4cf4820f65a9656231130f16", "semantic_hash": "041d11be4cf4820f65a9656231130f16" }, "Commander/extensions/raycast/assets/thumbnails/1024x64.webp": { - "mtime": 1788939899.822737, + "mtime": 1788947732.090277, "ast_hash": "1eaaf0dd19b76951ad9e849a11765fec", "semantic_hash": "1eaaf0dd19b76951ad9e849a11765fec" }, "Commander/extensions/raycast/assets/thumbnails/128x100.webp": { - "mtime": 1788939899.8228087, + "mtime": 1788947732.090277, "ast_hash": "ad8e4eb889bf1d22d0f99138e7182b55", "semantic_hash": "ad8e4eb889bf1d22d0f99138e7182b55" }, "Commander/extensions/raycast/assets/thumbnails/128x1024.webp": { - "mtime": 1788939899.82294, + "mtime": 1788947732.090277, "ast_hash": "fcac12d399356633af86adc6d16bacca", "semantic_hash": "fcac12d399356633af86adc6d16bacca" }, "Commander/extensions/raycast/assets/thumbnails/128x128.webp": { - "mtime": 1788939899.8235896, + "mtime": 1788947732.090277, "ast_hash": "fc1f3571c6107b85d2437559c3becb75", "semantic_hash": "fc1f3571c6107b85d2437559c3becb75" }, "Commander/extensions/raycast/assets/thumbnails/128x256.webp": { - "mtime": 1788939899.8236709, + "mtime": 1788947732.090277, "ast_hash": "732f430fb86a397e3ad1fa686d55abfc", "semantic_hash": "732f430fb86a397e3ad1fa686d55abfc" }, "Commander/extensions/raycast/assets/thumbnails/128x32.webp": { - "mtime": 1788939899.823861, + "mtime": 1788947732.090277, "ast_hash": "a7710eaa2749b8b8b199c0b25c65728a", "semantic_hash": "a7710eaa2749b8b8b199c0b25c65728a" }, "Commander/extensions/raycast/assets/thumbnails/128x50.webp": { - "mtime": 1788939899.824143, + "mtime": 1788947732.090277, "ast_hash": "2bf6425b05366d0ecf6c27a3b83609bd", "semantic_hash": "2bf6425b05366d0ecf6c27a3b83609bd" }, "Commander/extensions/raycast/assets/thumbnails/128x512.webp": { - "mtime": 1788939899.824318, + "mtime": 1788947732.090277, "ast_hash": "15c4bef51a849699df98c02f777ab262", "semantic_hash": "15c4bef51a849699df98c02f777ab262" }, "Commander/extensions/raycast/assets/thumbnails/128x64.webp": { - "mtime": 1788939899.824426, + "mtime": 1788947732.090277, "ast_hash": "041d11be4cf4820f65a9656231130f16", "semantic_hash": "041d11be4cf4820f65a9656231130f16" }, "Commander/extensions/raycast/assets/thumbnails/256x100.webp": { - "mtime": 1788939899.8245926, + "mtime": 1788947732.090277, "ast_hash": "2bf6425b05366d0ecf6c27a3b83609bd", "semantic_hash": "2bf6425b05366d0ecf6c27a3b83609bd" }, "Commander/extensions/raycast/assets/thumbnails/256x1024.webp": { - "mtime": 1788939899.8247051, + "mtime": 1788947732.090277, "ast_hash": "15c4bef51a849699df98c02f777ab262", "semantic_hash": "15c4bef51a849699df98c02f777ab262" }, "Commander/extensions/raycast/assets/thumbnails/256x128.webp": { - "mtime": 1788939899.8247952, + "mtime": 1788947732.090277, "ast_hash": "041d11be4cf4820f65a9656231130f16", "semantic_hash": "041d11be4cf4820f65a9656231130f16" }, "Commander/extensions/raycast/assets/thumbnails/256x256.webp": { - "mtime": 1788939899.8250113, + "mtime": 1788947732.090277, "ast_hash": "07421b07ff635559cba013803440d97c", "semantic_hash": "07421b07ff635559cba013803440d97c" }, "Commander/extensions/raycast/assets/thumbnails/256x32.webp": { - "mtime": 1788939899.8251755, + "mtime": 1788947732.090277, "ast_hash": "d6b3d3644a51fd150ae5ec6a62a988f6", "semantic_hash": "d6b3d3644a51fd150ae5ec6a62a988f6" }, "Commander/extensions/raycast/assets/thumbnails/256x50.webp": { - "mtime": 1788939899.825272, + "mtime": 1788947732.090277, "ast_hash": "cc72936f7b7da2b4008eff47efb93631", "semantic_hash": "cc72936f7b7da2b4008eff47efb93631" }, "Commander/extensions/raycast/assets/thumbnails/256x512.webp": { - "mtime": 1788939899.825364, + "mtime": 1788947732.090277, "ast_hash": "732f430fb86a397e3ad1fa686d55abfc", "semantic_hash": "732f430fb86a397e3ad1fa686d55abfc" }, "Commander/extensions/raycast/assets/thumbnails/256x64.webp": { - "mtime": 1788939899.8254418, + "mtime": 1788947732.090277, "ast_hash": "a7710eaa2749b8b8b199c0b25c65728a", "semantic_hash": "a7710eaa2749b8b8b199c0b25c65728a" }, "Commander/extensions/raycast/assets/thumbnails/32x100.webp": { - "mtime": 1788939899.8256097, + "mtime": 1788947732.090277, "ast_hash": "fd8c2a24f88965a409a0617e802341da", "semantic_hash": "fd8c2a24f88965a409a0617e802341da" }, "Commander/extensions/raycast/assets/thumbnails/32x1024.webp": { - "mtime": 1788939899.8257113, + "mtime": 1788947732.090277, "ast_hash": "66dd5687f8f9a48d3f29a8db1fa5a3fd", "semantic_hash": "66dd5687f8f9a48d3f29a8db1fa5a3fd" }, "Commander/extensions/raycast/assets/thumbnails/32x128.webp": { - "mtime": 1788939899.8258097, + "mtime": 1788947732.090277, "ast_hash": "b8681dbb626215d6450fa76723430248", "semantic_hash": "b8681dbb626215d6450fa76723430248" }, "Commander/extensions/raycast/assets/thumbnails/32x256.webp": { - "mtime": 1788939899.8259046, + "mtime": 1788947732.090277, "ast_hash": "b561610d45505d6fd54dfc3d8bfadc3e", "semantic_hash": "b561610d45505d6fd54dfc3d8bfadc3e" }, "Commander/extensions/raycast/assets/thumbnails/32x32.webp": { - "mtime": 1788939899.8259907, + "mtime": 1788947732.090277, "ast_hash": "2de1e744b5a42a3d3a8ac4d62cabc4b1", "semantic_hash": "2de1e744b5a42a3d3a8ac4d62cabc4b1" }, "Commander/extensions/raycast/assets/thumbnails/32x50.webp": { - "mtime": 1788939899.8260775, + "mtime": 1788947732.090277, "ast_hash": "67bec7b59d303942a302b537edd90bfd", "semantic_hash": "67bec7b59d303942a302b537edd90bfd" }, "Commander/extensions/raycast/assets/thumbnails/32x512.webp": { - "mtime": 1788939899.8261697, + "mtime": 1788947732.090277, "ast_hash": "7e8896196e74bdbbac7808cbb5785053", "semantic_hash": "7e8896196e74bdbbac7808cbb5785053" }, "Commander/extensions/raycast/assets/thumbnails/32x64.webp": { - "mtime": 1788939899.8282478, + "mtime": 1788947732.090277, "ast_hash": "d3ad09b4066bcdb7a5e028d42e845737", "semantic_hash": "d3ad09b4066bcdb7a5e028d42e845737" }, "Commander/extensions/raycast/assets/thumbnails/50x100.webp": { - "mtime": 1788939899.828762, + "mtime": 1788947732.090277, "ast_hash": "8b3a39c312515c385434de68b5feb173", "semantic_hash": "8b3a39c312515c385434de68b5feb173" }, "Commander/extensions/raycast/assets/thumbnails/50x1024.webp": { - "mtime": 1788939899.8288872, + "mtime": 1788947732.090277, "ast_hash": "b5211da2374a026497e6d497fc8e607f", "semantic_hash": "b5211da2374a026497e6d497fc8e607f" }, "Commander/extensions/raycast/assets/thumbnails/50x128.webp": { - "mtime": 1788939899.8291655, + "mtime": 1788947732.090277, "ast_hash": "f255f73a1c44db5ed35834c9e459498c", "semantic_hash": "f255f73a1c44db5ed35834c9e459498c" }, "Commander/extensions/raycast/assets/thumbnails/50x256.webp": { - "mtime": 1788939899.8294954, + "mtime": 1788947732.090277, "ast_hash": "06161da97ed7ce027b633f12ff9aafea", "semantic_hash": "06161da97ed7ce027b633f12ff9aafea" }, "Commander/extensions/raycast/assets/thumbnails/50x32.webp": { - "mtime": 1788939899.8299797, + "mtime": 1788947732.090277, "ast_hash": "9bcdedc562fcd893375e3ef02c487c56", "semantic_hash": "9bcdedc562fcd893375e3ef02c487c56" }, "Commander/extensions/raycast/assets/thumbnails/50x50.webp": { - "mtime": 1788939899.830319, + "mtime": 1788947732.090277, "ast_hash": "888f03c095219bf591b5bfd5edcb7229", "semantic_hash": "888f03c095219bf591b5bfd5edcb7229" }, "Commander/extensions/raycast/assets/thumbnails/50x512.webp": { - "mtime": 1788939899.830406, + "mtime": 1788947732.090277, "ast_hash": "da2d4344d0031f7c0b5f86de2234668a", "semantic_hash": "da2d4344d0031f7c0b5f86de2234668a" }, "Commander/extensions/raycast/assets/thumbnails/50x64.webp": { - "mtime": 1788939899.830659, + "mtime": 1788947732.0912771, "ast_hash": "e3a5763ca0ce945ded0b8df4834a355d", "semantic_hash": "e3a5763ca0ce945ded0b8df4834a355d" }, "Commander/extensions/raycast/assets/thumbnails/512x100.webp": { - "mtime": 1788939899.8307526, + "mtime": 1788947732.0912771, "ast_hash": "cc72936f7b7da2b4008eff47efb93631", "semantic_hash": "cc72936f7b7da2b4008eff47efb93631" }, "Commander/extensions/raycast/assets/thumbnails/512x1024.webp": { - "mtime": 1788939899.8308387, + "mtime": 1788947732.0912771, "ast_hash": "732f430fb86a397e3ad1fa686d55abfc", "semantic_hash": "732f430fb86a397e3ad1fa686d55abfc" }, "Commander/extensions/raycast/assets/thumbnails/512x128.webp": { - "mtime": 1788939899.8309107, + "mtime": 1788947732.0912771, "ast_hash": "a7710eaa2749b8b8b199c0b25c65728a", "semantic_hash": "a7710eaa2749b8b8b199c0b25c65728a" }, "Commander/extensions/raycast/assets/thumbnails/512x256.webp": { - "mtime": 1788939899.830991, + "mtime": 1788947732.0912771, "ast_hash": "041d11be4cf4820f65a9656231130f16", "semantic_hash": "041d11be4cf4820f65a9656231130f16" }, "Commander/extensions/raycast/assets/thumbnails/512x32.webp": { - "mtime": 1788939899.831068, + "mtime": 1788947732.0912771, "ast_hash": "1eaaf0dd19b76951ad9e849a11765fec", "semantic_hash": "1eaaf0dd19b76951ad9e849a11765fec" }, "Commander/extensions/raycast/assets/thumbnails/512x50.webp": { - "mtime": 1788939899.831147, + "mtime": 1788947732.0912771, "ast_hash": "01b05e27e01267fc666d7c582713f235", "semantic_hash": "01b05e27e01267fc666d7c582713f235" }, "Commander/extensions/raycast/assets/thumbnails/512x512.webp": { - "mtime": 1788939899.8312871, + "mtime": 1788947732.0912771, "ast_hash": "32567f9cf361e3672899a22d8cc61023", "semantic_hash": "32567f9cf361e3672899a22d8cc61023" }, "Commander/extensions/raycast/assets/thumbnails/512x64.webp": { - "mtime": 1788939899.8315346, + "mtime": 1788947732.0912771, "ast_hash": "d6b3d3644a51fd150ae5ec6a62a988f6", "semantic_hash": "d6b3d3644a51fd150ae5ec6a62a988f6" }, "Commander/extensions/raycast/assets/thumbnails/64x100.webp": { - "mtime": 1788939899.832396, + "mtime": 1788947732.0912771, "ast_hash": "0b24192d3e2827e3a401aca95040c22d", "semantic_hash": "0b24192d3e2827e3a401aca95040c22d" }, "Commander/extensions/raycast/assets/thumbnails/64x1024.webp": { - "mtime": 1788939899.8325236, + "mtime": 1788947732.0912771, "ast_hash": "f4d1778f5c0150f3f204a96561b29e64", "semantic_hash": "f4d1778f5c0150f3f204a96561b29e64" }, "Commander/extensions/raycast/assets/thumbnails/64x128.webp": { - "mtime": 1788939899.8327932, + "mtime": 1788947732.0912771, "ast_hash": "732f430fb86a397e3ad1fa686d55abfc", "semantic_hash": "732f430fb86a397e3ad1fa686d55abfc" }, "Commander/extensions/raycast/assets/thumbnails/64x256.webp": { - "mtime": 1788939899.8329208, + "mtime": 1788947732.0912771, "ast_hash": "15c4bef51a849699df98c02f777ab262", "semantic_hash": "15c4bef51a849699df98c02f777ab262" }, "Commander/extensions/raycast/assets/thumbnails/64x32.webp": { - "mtime": 1788939899.8331735, + "mtime": 1788947732.0912771, "ast_hash": "041d11be4cf4820f65a9656231130f16", "semantic_hash": "041d11be4cf4820f65a9656231130f16" }, "Commander/extensions/raycast/assets/thumbnails/64x50.webp": { - "mtime": 1788939899.8333163, + "mtime": 1788947732.0912771, "ast_hash": "ad8e4eb889bf1d22d0f99138e7182b55", "semantic_hash": "ad8e4eb889bf1d22d0f99138e7182b55" }, "Commander/extensions/raycast/assets/thumbnails/64x512.webp": { - "mtime": 1788939899.8334243, + "mtime": 1788947732.0912771, "ast_hash": "fcac12d399356633af86adc6d16bacca", "semantic_hash": "fcac12d399356633af86adc6d16bacca" }, "Commander/extensions/raycast/assets/thumbnails/64x64.webp": { - "mtime": 1788939899.833569, + "mtime": 1788947732.0912771, "ast_hash": "0815fe49880b0ead9e894b93b02631be", "semantic_hash": "0815fe49880b0ead9e894b93b02631be" }, "Commander/extensions/raycast/assets/thumbnails/_original.webp": { - "mtime": 1788939899.8338218, + "mtime": 1788947732.0912771, "ast_hash": "42989f6a0a723d5a36fc37f813ece386", "semantic_hash": "42989f6a0a723d5a36fc37f813ece386" }, "Commander/extensions/raycast/assets/thumbnails/bloom.webp": { - "mtime": 1788939899.8344176, + "mtime": 1788947732.0912771, "ast_hash": "905b8ee51ec19c18615b35d32b73c7e9", "semantic_hash": "905b8ee51ec19c18615b35d32b73c7e9" }, "Commander/extensions/raycast/assets/thumbnails/bokeh_blur.webp": { - "mtime": 1788939899.8350708, + "mtime": 1788947732.0912771, "ast_hash": "0942133950d62e9fe67c942ecaf98a3b", "semantic_hash": "0942133950d62e9fe67c942ecaf98a3b" }, "Commander/extensions/raycast/assets/thumbnails/box_blur.webp": { - "mtime": 1788939899.8362203, + "mtime": 1788947732.0912771, "ast_hash": "3b24ddf442102a6af69d2ddb9b91c2aa", "semantic_hash": "3b24ddf442102a6af69d2ddb9b91c2aa" }, "Commander/extensions/raycast/assets/thumbnails/checkerboard.webp": { - "mtime": 1788939899.836361, + "mtime": 1788947732.0912771, "ast_hash": "f0eb21741fb34eb1de2f732c96eced89", "semantic_hash": "f0eb21741fb34eb1de2f732c96eced89" }, "Commander/extensions/raycast/assets/thumbnails/chrome.webp": { - "mtime": 1788939899.836684, + "mtime": 1788947732.0912771, "ast_hash": "936d222a57d7bee20dde1ab96817e732", "semantic_hash": "936d222a57d7bee20dde1ab96817e732" }, "Commander/extensions/raycast/assets/thumbnails/circular_screen.webp": { - "mtime": 1788939899.8371558, + "mtime": 1788947732.0912771, "ast_hash": "4f206bbf130fc26f08fffc648ecb265a", "semantic_hash": "4f206bbf130fc26f08fffc648ecb265a" }, "Commander/extensions/raycast/assets/thumbnails/circular_wrap.webp": { - "mtime": 1788939899.8375292, + "mtime": 1788947732.092277, "ast_hash": "1b6bfc08cab1c4f708bc2aebd5b99112", "semantic_hash": "1b6bfc08cab1c4f708bc2aebd5b99112" }, "Commander/extensions/raycast/assets/thumbnails/cmyk_halftone.webp": { - "mtime": 1788939899.8381495, + "mtime": 1788947732.092277, "ast_hash": "1d2110f60ed7d9be349d37ee0c051530", "semantic_hash": "1d2110f60ed7d9be349d37ee0c051530" }, "Commander/extensions/raycast/assets/thumbnails/comic.webp": { - "mtime": 1788939899.8384607, + "mtime": 1788947732.092277, "ast_hash": "0ccc00d30a83cbddb78005f70ceed87e", "semantic_hash": "0ccc00d30a83cbddb78005f70ceed87e" }, "Commander/extensions/raycast/assets/thumbnails/constant_color.webp": { - "mtime": 1788939899.8385546, + "mtime": 1788947732.092277, "ast_hash": "95846f980ec4e631878f5a88668f05bf", "semantic_hash": "95846f980ec4e631878f5a88668f05bf" }, "Commander/extensions/raycast/assets/thumbnails/crystallize.webp": { - "mtime": 1788939899.8388617, + "mtime": 1788947732.092277, "ast_hash": "2282d54aef6a99ca29a2bc0a41539796", "semantic_hash": "2282d54aef6a99ca29a2bc0a41539796" }, "Commander/extensions/raycast/assets/thumbnails/depth_of_field.webp": { - "mtime": 1788939899.8390965, + "mtime": 1788947732.092277, "ast_hash": "8663d71c360de2419ed9f857e940948f", "semantic_hash": "8663d71c360de2419ed9f857e940948f" }, "Commander/extensions/raycast/assets/thumbnails/disc_blur.webp": { - "mtime": 1788939899.8392289, + "mtime": 1788947732.092277, "ast_hash": "b0f031da64eaac0ec0c1bbe5798d13a4", "semantic_hash": "b0f031da64eaac0ec0c1bbe5798d13a4" }, "Commander/extensions/raycast/assets/thumbnails/dither.webp": { - "mtime": 1788939899.8395789, + "mtime": 1788947732.092277, "ast_hash": "95572d605e0a0701f160a6100adc84c8", "semantic_hash": "95572d605e0a0701f160a6100adc84c8" }, "Commander/extensions/raycast/assets/thumbnails/document_enhancement.webp": { - "mtime": 1788939899.8400168, + "mtime": 1788947732.092277, "ast_hash": "0ea9e1bb6c7d0410db6f66a50502601c", "semantic_hash": "0ea9e1bb6c7d0410db6f66a50502601c" }, "Commander/extensions/raycast/assets/thumbnails/dot_screen.webp": { - "mtime": 1788939899.8424037, + "mtime": 1788947732.093277, "ast_hash": "36086cef3a65dee318937c912dc3738a", "semantic_hash": "36086cef3a65dee318937c912dc3738a" }, "Commander/extensions/raycast/assets/thumbnails/edge_work.webp": { - "mtime": 1788939899.8431568, + "mtime": 1788947732.093277, "ast_hash": "86d16e84030afa7824eaeaa260c66a54", "semantic_hash": "86d16e84030afa7824eaeaa260c66a54" }, "Commander/extensions/raycast/assets/thumbnails/edges.webp": { - "mtime": 1788939899.843963, + "mtime": 1788947732.093277, "ast_hash": "2ad52cc3af5d49b0804c7381bbba6f13", "semantic_hash": "2ad52cc3af5d49b0804c7381bbba6f13" }, "Commander/extensions/raycast/assets/thumbnails/fade.webp": { - "mtime": 1788939899.8440776, + "mtime": 1788947732.093277, "ast_hash": "3a3cf0429d02bf05e063a69d36fa84ee", "semantic_hash": "3a3cf0429d02bf05e063a69d36fa84ee" }, "Commander/extensions/raycast/assets/thumbnails/gaussian_blur.webp": { - "mtime": 1788939899.8442097, + "mtime": 1788947732.093277, "ast_hash": "16369ec24e0da7c53daf862c679aa033", "semantic_hash": "16369ec24e0da7c53daf862c679aa033" }, "Commander/extensions/raycast/assets/thumbnails/gloom.webp": { - "mtime": 1788939899.8443387, + "mtime": 1788947732.093277, "ast_hash": "b29c6e7ddb60632792dbfae9fbc890e4", "semantic_hash": "b29c6e7ddb60632792dbfae9fbc890e4" }, "Commander/extensions/raycast/assets/thumbnails/hatched_screen.webp": { - "mtime": 1788939899.844955, + "mtime": 1788947732.093277, "ast_hash": "948e165a442a0eb0a1f901b111a02467", "semantic_hash": "948e165a442a0eb0a1f901b111a02467" }, "Commander/extensions/raycast/assets/thumbnails/hexagonal_pixellate.webp": { - "mtime": 1788939899.8451421, + "mtime": 1788947732.093277, "ast_hash": "f4963b34bc1944cf2b636ad0f95da2a8", "semantic_hash": "f4963b34bc1944cf2b636ad0f95da2a8" }, "Commander/extensions/raycast/assets/thumbnails/instant.webp": { - "mtime": 1788939899.8453507, + "mtime": 1788947732.093277, "ast_hash": "f2cd7ef0a5e72b45d059aa193c0384c1", "semantic_hash": "f2cd7ef0a5e72b45d059aa193c0384c1" }, "Commander/extensions/raycast/assets/thumbnails/invert.webp": { - "mtime": 1788939899.845484, + "mtime": 1788947732.094277, "ast_hash": "d9ed13703efc39150d853b65eb0c84e0", "semantic_hash": "d9ed13703efc39150d853b65eb0c84e0" }, "Commander/extensions/raycast/assets/thumbnails/kaleidoscope.webp": { - "mtime": 1788939899.8458762, + "mtime": 1788947732.094277, "ast_hash": "be61b6db0a1f2f177d0274bd7b7cb66a", "semantic_hash": "be61b6db0a1f2f177d0274bd7b7cb66a" }, "Commander/extensions/raycast/assets/thumbnails/lenticular_halo.webp": { - "mtime": 1788939899.8462248, + "mtime": 1788947732.094277, "ast_hash": "558e8d0d77ec11a09a17bd5f8fa72ddb", "semantic_hash": "558e8d0d77ec11a09a17bd5f8fa72ddb" }, "Commander/extensions/raycast/assets/thumbnails/line_overlay.webp": { - "mtime": 1788939899.8469796, + "mtime": 1788947732.094277, "ast_hash": "8dc730c62c01f34c5ea44e11946f5496", "semantic_hash": "8dc730c62c01f34c5ea44e11946f5496" }, "Commander/extensions/raycast/assets/thumbnails/line_screen.webp": { - "mtime": 1788939899.8472042, + "mtime": 1788947732.094277, "ast_hash": "81fb85f15e2917dced6f36ae1e26f3cc", "semantic_hash": "81fb85f15e2917dced6f36ae1e26f3cc" }, "Commander/extensions/raycast/assets/thumbnails/linear_gradient.webp": { - "mtime": 1788939899.8475296, + "mtime": 1788947732.094277, "ast_hash": "a1931487888eb18e401c1f0359138f1d", "semantic_hash": "a1931487888eb18e401c1f0359138f1d" }, "Commander/extensions/raycast/assets/thumbnails/maximum_component.webp": { - "mtime": 1788939899.8476903, + "mtime": 1788947732.094277, "ast_hash": "6944d08bf12d43bc3c9844e25e1b7baa", "semantic_hash": "6944d08bf12d43bc3c9844e25e1b7baa" }, "Commander/extensions/raycast/assets/thumbnails/median.webp": { - "mtime": 1788939899.8480568, + "mtime": 1788947732.094277, "ast_hash": "9200416b8dc0677b89f9c5c1fcb2b418", "semantic_hash": "9200416b8dc0677b89f9c5c1fcb2b418" }, "Commander/extensions/raycast/assets/thumbnails/minimum_component.webp": { - "mtime": 1788939899.8494513, + "mtime": 1788947732.094277, "ast_hash": "108ff4dcfc08374d561579cd224aa4fc", "semantic_hash": "108ff4dcfc08374d561579cd224aa4fc" }, "Commander/extensions/raycast/assets/thumbnails/mono.webp": { - "mtime": 1788939899.850922, + "mtime": 1788947732.094277, "ast_hash": "21dfba9be9bf36a22422dd93e147aa87", "semantic_hash": "21dfba9be9bf36a22422dd93e147aa87" }, "Commander/extensions/raycast/assets/thumbnails/motion_blur.webp": { - "mtime": 1788939899.8548274, + "mtime": 1788947732.094277, "ast_hash": "31c7205d670ac42529ced2fb78f9da29", "semantic_hash": "31c7205d670ac42529ced2fb78f9da29" }, "Commander/extensions/raycast/assets/thumbnails/noir.webp": { - "mtime": 1788939899.8554828, + "mtime": 1788947732.094277, "ast_hash": "de551c31f5c6cea7b69889f4d4f9fcf3", "semantic_hash": "de551c31f5c6cea7b69889f4d4f9fcf3" }, "Commander/extensions/raycast/assets/thumbnails/noise_reduction.webp": { - "mtime": 1788939899.8558347, + "mtime": 1788947732.094277, "ast_hash": "43833aaa0246a1a922d3661a845c933f", "semantic_hash": "43833aaa0246a1a922d3661a845c933f" }, "Commander/extensions/raycast/assets/thumbnails/pixellate.webp": { - "mtime": 1788939899.856034, + "mtime": 1788947732.094277, "ast_hash": "1d710e4d9bdebe5ae4dd855cc8c01d9f", "semantic_hash": "1d710e4d9bdebe5ae4dd855cc8c01d9f" }, "Commander/extensions/raycast/assets/thumbnails/pointillize.webp": { - "mtime": 1788939899.8562508, + "mtime": 1788947732.094277, "ast_hash": "d58c3f4efc03f82543ac88a05c6c091b", "semantic_hash": "d58c3f4efc03f82543ac88a05c6c091b" }, "Commander/extensions/raycast/assets/thumbnails/posterize.webp": { - "mtime": 1788939899.8575206, + "mtime": 1788947732.095277, "ast_hash": "21f49b632b46029d2cca752885486e76", "semantic_hash": "21f49b632b46029d2cca752885486e76" }, "Commander/extensions/raycast/assets/thumbnails/process.webp": { - "mtime": 1788939899.857646, + "mtime": 1788947732.095277, "ast_hash": "ffb15687b1d75afbc854f299f228caa6", "semantic_hash": "ffb15687b1d75afbc854f299f228caa6" }, "Commander/extensions/raycast/assets/thumbnails/radial_gradient.webp": { - "mtime": 1788939899.8581686, + "mtime": 1788947732.095277, "ast_hash": "65d46402af8a5965626f364733308f0f", "semantic_hash": "65d46402af8a5965626f364733308f0f" }, "Commander/extensions/raycast/assets/thumbnails/random.webp": { - "mtime": 1788939899.8616288, + "mtime": 1788947732.095277, "ast_hash": "428e1dd14b1836c4965e8c32e0c457a3", "semantic_hash": "428e1dd14b1836c4965e8c32e0c457a3" }, "Commander/extensions/raycast/assets/thumbnails/sepia.webp": { - "mtime": 1788939899.8619246, + "mtime": 1788947732.095277, "ast_hash": "fe003ad29ca7f6839f5cdf0a08ce05ad", "semantic_hash": "fe003ad29ca7f6839f5cdf0a08ce05ad" }, "Commander/extensions/raycast/assets/thumbnails/sharpen_luminance.webp": { - "mtime": 1788939899.8623285, + "mtime": 1788947732.095277, "ast_hash": "c92ca1a3a6e4bd88150f84bf16aed1b4", "semantic_hash": "c92ca1a3a6e4bd88150f84bf16aed1b4" }, "Commander/extensions/raycast/assets/thumbnails/star_shine.webp": { - "mtime": 1788939899.8627374, + "mtime": 1788947732.095277, "ast_hash": "35c86ebd743f70663fbe80bd11acb428", "semantic_hash": "35c86ebd743f70663fbe80bd11acb428" }, "Commander/extensions/raycast/assets/thumbnails/stripes.webp": { - "mtime": 1788939899.8629198, + "mtime": 1788947732.096277, "ast_hash": "a148cc8b115b3a47dfef8122274c669c", "semantic_hash": "a148cc8b115b3a47dfef8122274c669c" }, "Commander/extensions/raycast/assets/thumbnails/sunbeams.webp": { - "mtime": 1788939899.8635364, + "mtime": 1788947732.096277, "ast_hash": "d7d3126133d4c94355be69b54bbb7f51", "semantic_hash": "d7d3126133d4c94355be69b54bbb7f51" }, "Commander/extensions/raycast/assets/thumbnails/thermal.webp": { - "mtime": 1788939899.863746, + "mtime": 1788947732.096277, "ast_hash": "a21d561e5aa4f1036727414d74cd02ef", "semantic_hash": "a21d561e5aa4f1036727414d74cd02ef" }, "Commander/extensions/raycast/assets/thumbnails/tonal.webp": { - "mtime": 1788939899.863881, + "mtime": 1788947732.096277, "ast_hash": "b9d4c514eaf654447e423641d9ed2a0c", "semantic_hash": "b9d4c514eaf654447e423641d9ed2a0c" }, "Commander/extensions/raycast/assets/thumbnails/transfer.webp": { - "mtime": 1788939899.8640864, + "mtime": 1788947732.096277, "ast_hash": "4e41535b1550f33c0703997e541319c5", "semantic_hash": "4e41535b1550f33c0703997e541319c5" }, "Commander/extensions/raycast/assets/thumbnails/vignette.webp": { - "mtime": 1788939899.8643553, + "mtime": 1788947732.096277, "ast_hash": "664f0310495d70138e6195e9983e88cf", "semantic_hash": "664f0310495d70138e6195e9983e88cf" }, "Commander/extensions/raycast/assets/thumbnails/x-ray.webp": { - "mtime": 1788939899.864545, + "mtime": 1788947732.096277, "ast_hash": "324eec49b1d3f209b01042fa87201684", "semantic_hash": "324eec49b1d3f209b01042fa87201684" }, "Commander/extensions/raycast/assets/thumbnails/zoom_blur.webp": { - "mtime": 1788939899.865842, + "mtime": 1788947732.096277, "ast_hash": "3db1646f29d70e7384b34ea67d1a6044", "semantic_hash": "3db1646f29d70e7384b34ea67d1a6044" }, "integrations/ChatGPT/plugin/thingtime-chatgpt/scripts/mobile-oauth-login.mjs": { - "mtime": 1788939900.9840329, + "mtime": 1788947732.4883657, "ast_hash": "3931acfe41898fa45884c3f44ef51af1", "semantic_hash": "3931acfe41898fa45884c3f44ef51af1" }, "remix/app/api/utils/ciControl/ingestPolicyCore.test.ts": { - "mtime": 1788939901.0935647, + "mtime": 1788947732.519274, "ast_hash": "2a9d6da620b82ad40e7d37f82beab61c", "semantic_hash": "2a9d6da620b82ad40e7d37f82beab61c" }, "remix/app/api/utils/ciControl/ingestPolicyCore.ts": { - "mtime": 1788939901.0936427, + "mtime": 1788947732.519274, "ast_hash": "96d6d8b99d2f9a3b3758c4fb3c2f0cd7", "semantic_hash": "96d6d8b99d2f9a3b3758c4fb3c2f0cd7" }, "remix/app/api/utils/ciControl/retentionCore.test.ts": { - "mtime": 1788939901.0964494, + "mtime": 1788947732.519274, "ast_hash": "a637471365f9c1220f85f1a2c2772ef2", "semantic_hash": "a637471365f9c1220f85f1a2c2772ef2" }, "remix/app/api/utils/ciControl/retentionCore.ts": { - "mtime": 1788939901.097231, + "mtime": 1788947732.519274, "ast_hash": "57cffb72c9c4c3e0a8f8e68e32f2e834", "semantic_hash": "57cffb72c9c4c3e0a8f8e68e32f2e834" }, "remix/app/api/utils/migrations/ciControlRelocationCore.test.ts": { - "mtime": 1788939901.1411512, + "mtime": 1788947732.5352738, "ast_hash": "f8e8b7fb57691b15fe81452f03ccdcf3", "semantic_hash": "f8e8b7fb57691b15fe81452f03ccdcf3" }, "remix/app/api/utils/migrations/ciControlRelocationCore.ts": { - "mtime": 1788939901.1422102, + "mtime": 1788947732.5352738, "ast_hash": "cca2b755e39c0c6e0d2b1a548a41c8eb", "semantic_hash": "cca2b755e39c0c6e0d2b1a548a41c8eb" }, "remix/app/api/utils/webpages/seed.ts": { - "mtime": 1788939901.1866024, + "mtime": 1788947732.5483408, "ast_hash": "1026a366dec555b03d5ab220a5ce70cc", "semantic_hash": "1026a366dec555b03d5ab220a5ce70cc" }, "remix/app/api/utils/webpages/webpageAttachments.test.ts": { - "mtime": 1788939901.18824, + "mtime": 1788947732.5483408, "ast_hash": "69eda40250043e1acd630f61b4e1fe97", "semantic_hash": "69eda40250043e1acd630f61b4e1fe97" }, "remix/app/api/utils/webpages/webpageAttachments.ts": { - "mtime": 1788939901.1884327, + "mtime": 1788947732.5483408, "ast_hash": "f997cc4eb0d4a8e2db535be267f09571", "semantic_hash": "f997cc4eb0d4a8e2db535be267f09571" }, "remix/app/api/utils/webpages/webpages.ts": { - "mtime": 1788939901.188548, + "mtime": 1788947732.5483408, "ast_hash": "3de18bc3b2f7b82702783ab961abb687", "semantic_hash": "3de18bc3b2f7b82702783ab961abb687" }, "remix/app/components/Builder/BlockContextMenu.tsx": { - "mtime": 1788939901.20908, + "mtime": 1788947732.5546892, "ast_hash": "0d0c8308268d71f97ad538f92b077578", "semantic_hash": "0d0c8308268d71f97ad538f92b077578" }, "remix/app/components/Builder/BlockInsertMenu.tsx": { - "mtime": 1788939901.2091877, + "mtime": 1788947732.5552776, "ast_hash": "4dacf15cf31ef0a1ef8c2e9bc151e74f", "semantic_hash": "4dacf15cf31ef0a1ef8c2e9bc151e74f" }, "remix/app/components/Builder/BuilderDrawer.tsx": { - "mtime": 1788939901.2094958, + "mtime": 1788947732.5552776, "ast_hash": "1d4e792e510bd80a20a1d472851fd3a2", "semantic_hash": "1d4e792e510bd80a20a1d472851fd3a2" }, "remix/app/components/Builder/BuilderPage.tsx": { - "mtime": 1788939901.2098193, + "mtime": 1788947732.5552776, "ast_hash": "f949450fbff0d7b962ea751bb8ea4cf7", "semantic_hash": "f949450fbff0d7b962ea751bb8ea4cf7" }, "remix/app/components/Builder/FigmaControls.tsx": { - "mtime": 1788939901.2115102, + "mtime": 1788947732.5552776, "ast_hash": "ae7d5bfeefde61138890d24f2cf874f9", "semantic_hash": "ae7d5bfeefde61138890d24f2cf874f9" }, "remix/app/components/Builder/InlineRichTextEditor.tsx": { - "mtime": 1788939901.2117786, + "mtime": 1788947732.5552776, "ast_hash": "e6815cb4ddaae2c1f3eda9843e8b8e0b", "semantic_hash": "e6815cb4ddaae2c1f3eda9843e8b8e0b" }, "remix/app/components/Builder/RichTextModal.tsx": { - "mtime": 1788939901.2119334, + "mtime": 1788947732.5552776, "ast_hash": "dc28d3993e330c22c2eab01348d1efc0", "semantic_hash": "dc28d3993e330c22c2eab01348d1efc0" }, "remix/app/components/Builder/SiteBlocksHost.tsx": { - "mtime": 1788939901.2120755, + "mtime": 1788947732.5552776, "ast_hash": "dd015668ce32a2aaf827cb1844ec9b50", "semantic_hash": "dd015668ce32a2aaf827cb1844ec9b50" }, "remix/app/components/Builder/WebpageBlocksRenderer.tsx": { - "mtime": 1788939901.2122571, + "mtime": 1788947732.5562737, "ast_hash": "da38c17dbd06cfa3ce706bc19c34ad85", "semantic_hash": "da38c17dbd06cfa3ce706bc19c34ad85" }, "remix/app/components/Builder/editorJsHtml.ts": { - "mtime": 1788939901.2126808, + "mtime": 1788947732.5562737, "ast_hash": "8016774b6aa0c63d1b2df4f2e92765a0", "semantic_hash": "8016774b6aa0c63d1b2df4f2e92765a0" }, "remix/app/components/Builder/figmaControlValues.test.ts": { - "mtime": 1788939901.21284, + "mtime": 1788947732.5562737, "ast_hash": "c1323f158a1725ee70f566934e7659c3", "semantic_hash": "c1323f158a1725ee70f566934e7659c3" }, "remix/app/components/Builder/figmaControlValues.ts": { - "mtime": 1788939901.2129683, + "mtime": 1788947732.5562737, "ast_hash": "2f91b6cdba13dac9b54a3362349ec290", "semantic_hash": "2f91b6cdba13dac9b54a3362349ec290" }, "remix/app/components/Builder/htmlToNode.ts": { - "mtime": 1788939901.2130365, + "mtime": 1788947732.5562737, "ast_hash": "10a2f8f2ec418504880e5340fd1bb92d", "semantic_hash": "10a2f8f2ec418504880e5340fd1bb92d" }, "remix/app/components/Builder/nativeSections.tsx": { - "mtime": 1788939901.2145946, + "mtime": 1788947732.5562737, "ast_hash": "ea04b64ae7779c34dd566fe340d93cc9", "semantic_hash": "ea04b64ae7779c34dd566fe340d93cc9" }, "remix/app/components/Builder/richHtmlStyles.ts": { - "mtime": 1788939901.2147279, + "mtime": 1788947732.5562737, "ast_hash": "f6cfff16f501a6b1b7d1d4ac70325d60", "semantic_hash": "f6cfff16f501a6b1b7d1d4ac70325d60" }, "remix/app/components/Builder/useBuilderChrome.tsx": { - "mtime": 1788939901.21488, + "mtime": 1788947732.5562737, "ast_hash": "7e711945ba18f2e28b1e25145a8b3260", "semantic_hash": "7e711945ba18f2e28b1e25145a8b3260" }, "remix/app/components/Builder/useWebpage.test.ts": { - "mtime": 1788939901.214979, + "mtime": 1788947732.5562737, "ast_hash": "507b14565f6bc92b3206a155a83c1054", "semantic_hash": "507b14565f6bc92b3206a155a83c1054" }, "remix/app/components/Builder/useWebpage.ts": { - "mtime": 1788939901.2151458, + "mtime": 1788947732.5572736, "ast_hash": "80640f7651c4813c8afae6608deb6daf", "semantic_hash": "80640f7651c4813c8afae6608deb6daf" }, "remix/app/components/Builder/webpageBlocks.test.ts": { - "mtime": 1788939901.2153254, + "mtime": 1788947732.5572736, "ast_hash": "267a80effbeafe0621af82c47f993ad2", "semantic_hash": "267a80effbeafe0621af82c47f993ad2" }, "remix/app/components/Builder/webpageBlocks.ts": { - "mtime": 1788939901.2154558, + "mtime": 1788947732.5572736, "ast_hash": "27999ae35053301c145cbae44944a872", "semantic_hash": "27999ae35053301c145cbae44944a872" }, "remix/app/components/Landing/landingSections.tsx": { - "mtime": 1788939901.2502954, + "mtime": 1788947732.5696115, "ast_hash": "a2b088326c8e8fafe6f2f1b7ab21c8dc", "semantic_hash": "a2b088326c8e8fafe6f2f1b7ab21c8dc" }, "remix/app/components/Layout/PageShell.tsx": { - "mtime": 1788939901.2505422, + "mtime": 1788947732.5699584, "ast_hash": "04a0db25dfdec5f2aa4408ecf3cbcb47", "semantic_hash": "04a0db25dfdec5f2aa4408ecf3cbcb47" }, "remix/app/components/MongoDB/mongodbStatusSections.tsx": { - "mtime": 1788939901.272037, + "mtime": 1788947732.5772734, "ast_hash": "7a9443e500ae21373ceaaac557a9a66d", "semantic_hash": "7a9443e500ae21373ceaaac557a9a66d" }, "remix/app/components/Ode/odeSections.tsx": { - "mtime": 1788939901.2844443, + "mtime": 1788947732.5793066, "ast_hash": "84708e062726a4f9f19125ba35ab70d6", "semantic_hash": "84708e062726a4f9f19125ba35ab70d6" }, "remix/app/components/Status/statusSections.tsx": { - "mtime": 1788939901.313261, + "mtime": 1788947732.5842972, "ast_hash": "6459379eecf938503c039d8581f25f83", "semantic_hash": "6459379eecf938503c039d8581f25f83" }, "remix/app/components/Welcome/welcomeSections.tsx": { - "mtime": 1788939901.3373325, + "mtime": 1788947732.589969, "ast_hash": "8c2883c94acaed2a6fe41e313f9918d8", "semantic_hash": "8c2883c94acaed2a6fe41e313f9918d8" }, "remix/app/routes/api/v1/admin/webpages/seed/_seed.tsx": { - "mtime": 1788939901.3697553, + "mtime": 1788947732.5993044, "ast_hash": "71cfb30c91e36c9d08340cc7dd36aebd", "semantic_hash": "71cfb30c91e36c9d08340cc7dd36aebd" }, "remix/app/routes/api/v1/integrations/chatgpt/oauth/relay/_relay.tsx": { - "mtime": 1788939901.4132366, + "mtime": 1788947732.608286, "ast_hash": "9ac2ec156c5d1b1d8caba77e9e1b2209", "semantic_hash": "9ac2ec156c5d1b1d8caba77e9e1b2209" }, "remix/app/routes/api/v1/webpages/resolve/_resolve.tsx": { - "mtime": 1788939901.4435263, + "mtime": 1788947732.6184208, "ast_hash": "965a9a5487862ef1fc6e7aaac6743e50", "semantic_hash": "965a9a5487862ef1fc6e7aaac6743e50" }, "remix/app/routes/builder.tsx": { - "mtime": 1788939901.4444299, + "mtime": 1788947732.6186283, "ast_hash": "3381ee3e4c6f1c6de0db81efe81ae981", "semantic_hash": "3381ee3e4c6f1c6de0db81efe81ae981" }, "remix/app/routes/docs/design-system/BrutalButtonStories.tsx": { - "mtime": 1788939901.4501586, + "mtime": 1788947732.6200933, "ast_hash": "cdcf0d2067eaa89b9771b5ea57c22f77", "semantic_hash": "cdcf0d2067eaa89b9771b5ea57c22f77" }, "remix/app/routes/docs/design-system/BuilderBlocksStories.tsx": { - "mtime": 1788939901.4506276, + "mtime": 1788947732.6203594, "ast_hash": "ef84fcfa5a3198bc30823f3d6a9ee732", "semantic_hash": "ef84fcfa5a3198bc30823f3d6a9ee732" }, "remix/app/routes/docs/design-system/FoundationsStories.tsx": { - "mtime": 1788939901.4510078, + "mtime": 1788947732.6203594, "ast_hash": "08515cc262c15a43e9c7553de9532241", "semantic_hash": "08515cc262c15a43e9c7553de9532241" }, "remix/app/routes/docs/design-system/PageScaffoldStories.tsx": { - "mtime": 1788939901.4512982, + "mtime": 1788947732.6203594, "ast_hash": "f618f0fb30d4143e329b196f43b4b218", "semantic_hash": "f618f0fb30d4143e329b196f43b4b218" }, "remix/app/routes/docs/design-system/entries/AvatarIdentityStories.tsx": { - "mtime": 1788939901.4528573, + "mtime": 1788947732.6203594, "ast_hash": "ea326130ea2c24b879f209349eada7ac", "semantic_hash": "ea326130ea2c24b879f209349eada7ac" }, "remix/app/routes/docs/design-system/entries/BrandMarkStories.tsx": { - "mtime": 1788939901.4530213, + "mtime": 1788947732.6210978, "ast_hash": "fa269604bbe4af78e05c3d6dc4db3c93", "semantic_hash": "fa269604bbe4af78e05c3d6dc4db3c93" }, "remix/app/routes/docs/design-system/entries/ButtonsStories.tsx": { - "mtime": 1788939901.4535432, + "mtime": 1788947732.6210978, "ast_hash": "901f492e0893ab35053c6db5fd106291", "semantic_hash": "901f492e0893ab35053c6db5fd106291" }, "remix/app/routes/docs/design-system/entries/CardsAndSectionsStories.tsx": { - "mtime": 1788939901.4537923, + "mtime": 1788947732.6210978, "ast_hash": "a7969b91c567ec5da384be0c0f1c17b1", "semantic_hash": "a7969b91c567ec5da384be0c0f1c17b1" }, "remix/app/routes/docs/design-system/entries/ChipsAndBadgesStories.tsx": { - "mtime": 1788939901.453895, + "mtime": 1788947732.6210978, "ast_hash": "30307e4ddc486065825c79ceb1b96ed8", "semantic_hash": "30307e4ddc486065825c79ceb1b96ed8" }, "remix/app/routes/docs/design-system/entries/ClearanceStories.tsx": { - "mtime": 1788939901.4539993, + "mtime": 1788947732.6210978, "ast_hash": "c385146486f957e376cad84c2a2aa804", "semantic_hash": "c385146486f957e376cad84c2a2aa804" }, "remix/app/routes/docs/design-system/entries/IconStories.tsx": { - "mtime": 1788939901.4541056, + "mtime": 1788947732.621273, "ast_hash": "6c0bc8867058da290e00436747ed3c09", "semantic_hash": "6c0bc8867058da290e00436747ed3c09" }, "remix/app/routes/docs/design-system/entries/InputsAndFormsStories.tsx": { - "mtime": 1788939901.4546285, + "mtime": 1788947732.621273, "ast_hash": "e7181c674f41cb46a869547a661f4a84", "semantic_hash": "e7181c674f41cb46a869547a661f4a84" }, "remix/app/routes/docs/design-system/entries/ModalsAndPopoversStories.tsx": { - "mtime": 1788939901.4549096, + "mtime": 1788947732.621273, "ast_hash": "2015b7cc829cbe14798a40c51780600f", "semantic_hash": "2015b7cc829cbe14798a40c51780600f" }, "remix/app/routes/docs/design-system/entries/NavigationStories.tsx": { - "mtime": 1788939901.4551468, + "mtime": 1788947732.621273, "ast_hash": "697078b26cb5b17ff2098080a9e3197a", "semantic_hash": "697078b26cb5b17ff2098080a9e3197a" }, "remix/app/routes/docs/design-system/entries/OptimisticRenderingStories.tsx": { - "mtime": 1788939901.4553795, + "mtime": 1788947732.621273, "ast_hash": "a74bacefa9dc8811c7e83878b94a8899", "semantic_hash": "a74bacefa9dc8811c7e83878b94a8899" }, "remix/app/routes/docs/design-system/entries/RainbowMotionStories.tsx": { - "mtime": 1788939901.4555745, + "mtime": 1788947732.621273, "ast_hash": "1714b333c27c14851747d9b97bd1fb5f", "semantic_hash": "1714b333c27c14851747d9b97bd1fb5f" }, "remix/app/routes/docs/design-system/entries/ToastsStories.tsx": { - "mtime": 1788939901.4560177, + "mtime": 1788947732.621273, "ast_hash": "c1177480740452902fd22ef9874370e3", "semantic_hash": "c1177480740452902fd22ef9874370e3" }, "remix/app/routes/docs/design-system/entries/TouchA11yStories.tsx": { - "mtime": 1788939901.456497, + "mtime": 1788947732.621273, "ast_hash": "09ea382143df11f662acbb5daf874576", "semantic_hash": "09ea382143df11f662acbb5daf874576" }, "remix/app/routes/docs/design-system/entries/TypographyAndSpacingStories.tsx": { - "mtime": 1788939901.456692, + "mtime": 1788947732.621273, "ast_hash": "4427e3d50d77c8eca40c0b7c56184540", "semantic_hash": "4427e3d50d77c8eca40c0b7c56184540" }, "remix/app/routes/docs/design-system/entries/coreControls.tsx": { - "mtime": 1788939901.459293, + "mtime": 1788947732.6222732, "ast_hash": "1bb5500d906458d839394cc3c35ae06d", "semantic_hash": "1bb5500d906458d839394cc3c35ae06d" }, "remix/app/routes/docs/design-system/entries/identity.tsx": { - "mtime": 1788939901.4596212, + "mtime": 1788947732.6222732, "ast_hash": "15f822e29d687a12b5015a90b5663ab9", "semantic_hash": "15f822e29d687a12b5015a90b5663ab9" }, "remix/app/routes/docs/design-system/entries/navigation.tsx": { - "mtime": 1788939901.459946, + "mtime": 1788947732.6222732, "ast_hash": "2331a38d832d386b3a4cb6e2be5d6963", "semantic_hash": "2331a38d832d386b3a4cb6e2be5d6963" }, "remix/app/routes/docs/design-system/entries/practices.tsx": { - "mtime": 1788939901.460443, + "mtime": 1788947732.6222732, "ast_hash": "612b167c5ebc673965b337c2ff36377d", "semantic_hash": "612b167c5ebc673965b337c2ff36377d" }, "remix/app/routes/docs/design-system/entries/surfaces.tsx": { - "mtime": 1788939901.4608028, + "mtime": 1788947732.6222732, "ast_hash": "0724027656e8577d20436faafe32174b", "semantic_hash": "0724027656e8577d20436faafe32174b" }, "remix/app/routes/p.tsx": { - "mtime": 1788939901.468336, + "mtime": 1788947732.624273, "ast_hash": "d06c2071f6f573352ca120679d6d81ba", "semantic_hash": "d06c2071f6f573352ca120679d6d81ba" }, "remix/app/schemas/webpageBlockGate.test.ts": { - "mtime": 1788939901.4795046, + "mtime": 1788947732.628273, "ast_hash": "49feeec3bfa6a71f71cd5af9fffd8a58", "semantic_hash": "49feeec3bfa6a71f71cd5af9fffd8a58" }, "remix/scripts/verify-webpages.mjs": { - "mtime": 1788939902.6584976, + "mtime": 1788947732.6802728, "ast_hash": "a3c8ac587a33ce57dcc18e341db226ea", "semantic_hash": "a3c8ac587a33ce57dcc18e341db226ea" }, "Commander/README.md": { - "mtime": 1788939899.7145574, + "mtime": 1788947732.0759041, "ast_hash": "e3752bad21bb9167cb20c68d70dea907", "semantic_hash": "e3752bad21bb9167cb20c68d70dea907" }, "Commander/THIRD_PARTY_NOTICES.md": { - "mtime": 1788939899.7152252, + "mtime": 1788947732.0759041, "ast_hash": "2dbfed92269a58a6b7790b290fdbc057", "semantic_hash": "2dbfed92269a58a6b7790b290fdbc057" }, "Commander/apps/desktop-ui/index.html": { - "mtime": 1788939899.7336764, + "mtime": 1788947732.078277, "ast_hash": "c5e5fc3cab4d3ac802c8ce8a6ad5e3c3", "semantic_hash": "c5e5fc3cab4d3ac802c8ce8a6ad5e3c3" }, "Commander/apps/desktop-ui/launcher.html": { - "mtime": 1788939899.7338226, + "mtime": 1788947732.078638, "ast_hash": "c5e5fc3cab4d3ac802c8ce8a6ad5e3c3", "semantic_hash": "c5e5fc3cab4d3ac802c8ce8a6ad5e3c3" }, "Commander/apps/desktop-ui/settings.html": { - "mtime": 1788939899.7344975, + "mtime": 1788947732.078638, "ast_hash": "19231afe43dbe81bdc945f969c00e2ce", "semantic_hash": "19231afe43dbe81bdc945f969c00e2ce" }, "Commander/crates/commander-core/README.md": { - "mtime": 1788939899.767523, + "mtime": 1788947732.082017, "ast_hash": "b1ab1088f6cd0e952e67d4f62c1b7cac", "semantic_hash": "b1ab1088f6cd0e952e67d4f62c1b7cac" }, "Commander/crates/commander-indexer/README.md": { - "mtime": 1788939899.770446, + "mtime": 1788947732.0826027, "ast_hash": "b85c0b699437315c98ae16acf071b0f2", "semantic_hash": "b85c0b699437315c98ae16acf071b0f2" }, "Commander/design/DESIGN_SYSTEM.md": { - "mtime": 1788939899.7749727, + "mtime": 1788947732.0831065, "ast_hash": "c1c9a24ce686e3795623339869dcb61f", "semantic_hash": "c1c9a24ce686e3795623339869dcb61f" }, "Commander/hosts/linux/README.md": { - "mtime": 1788939899.9625213, + "mtime": 1788947732.158163, "ast_hash": "218d1b8a094719881427511fda736f69", "semantic_hash": "218d1b8a094719881427511fda736f69" }, "Commander/hosts/windows/README.md": { - "mtime": 1788939899.9702783, + "mtime": 1788947732.160211, "ast_hash": "455e513d58c50c5758856744b18bb5ee", "semantic_hash": "455e513d58c50c5758856744b18bb5ee" }, "Commander/packages/filesystem-indexer/README.md": { - "mtime": 1788939899.9706922, + "mtime": 1788947732.160428, "ast_hash": "a7012211f36e6a08c231a568da6d1324", "semantic_hash": "a7012211f36e6a08c231a568da6d1324" }, "Commander/pnpm-workspace.yaml": { - "mtime": 1788939899.9785988, + "mtime": 1788947732.1622765, "ast_hash": "2147477c215b8b3975078ace39bca6e2", "semantic_hash": "2147477c215b8b3975078ace39bca6e2" }, "PRs/180-claude-user-birthday-scope--account-birthday-private-field-exact-scope.md": { - "mtime": 1788939899.9937515, + "mtime": 1788947732.1682765, "ast_hash": "fd8b63d9be02483e40cf5af8a32afe2b", "semantic_hash": "fd8b63d9be02483e40cf5af8a32afe2b" }, "PRs/263-codex-commander-cross-platform--add-cross-platform-commander-launcher.md": { - "mtime": 1788939899.9995203, + "mtime": 1788947732.1702764, "ast_hash": "d9144c8544f377c5d5b8d27e58b9d518", "semantic_hash": "d9144c8544f377c5d5b8d27e58b9d518" }, "PRs/315-claude-fable-five-funtime-overnight-feature-build.md": { - "mtime": 1788939900.0027337, + "mtime": 1788947732.1712763, "ast_hash": "da7bcda10b23c2c1343e700d6bfdb5fa", "semantic_hash": "da7bcda10b23c2c1343e700d6bfdb5fa" }, "PRs/389-codex-fix-commander-stuck-spinner--load-all-result-icons.md": { - "mtime": 1788939900.0044427, + "mtime": 1788947732.1722765, "ast_hash": "0ced1992dc459aff5b6f35e3234aa19c", "semantic_hash": "0ced1992dc459aff5b6f35e3234aa19c" }, "PRs/389-codex-fix-commander-stuck-spinner-launch-and-icon-beachballs.md": { - "mtime": 1788939900.0045476, + "mtime": 1788947732.1722765, "ast_hash": "49464219d7211df81b7ed3e50f4419d3", "semantic_hash": "49464219d7211df81b7ed3e50f4419d3" }, "PRs/485-thingtime-design-system-01d6ee-design-system-builder.md": { - "mtime": 1788939900.0091987, + "mtime": 1788947732.1732764, "ast_hash": "9e0ec2b7854f7287cabd5c8ae659fe3d", "semantic_hash": "9e0ec2b7854f7287cabd5c8ae659fe3d" }, "PRs/496-claude-post-editor-media-badges-7b2acd--toggle-badges-linked-attachments-edit-media.md": { - "mtime": 1788939900.0105655, + "mtime": 1788947732.1732764, "ast_hash": "c406d8a9d99c027b13118db97d3ee5b0", "semantic_hash": "c406d8a9d99c027b13118db97d3ee5b0" }, "PRs/505-codex-feature-stack-merge-status-filters-admin-ci-feature-stacks-and-pr-previews.md": { - "mtime": 1788939900.0109732, + "mtime": 1788947732.1732764, "ast_hash": "4270e04941f8a2ab11fc256de554d212", "semantic_hash": "4270e04941f8a2ab11fc256de554d212" }, "PRs/513-codex-fix-admin-ci-sort-memory-admin-ci-refresh-resilience.md": { - "mtime": 1788939900.011925, + "mtime": 1788947732.1732764, "ast_hash": "c16ab85ab35d0467134a7cb70114d68e", "semantic_hash": "c16ab85ab35d0467134a7cb70114d68e" }, "PRs/530-codex-feature-stack-run-history-fix-show-exact-feature-stack-runs-and-terminal-status.md": { - "mtime": 1788939900.0131972, + "mtime": 1788947732.1732764, "ast_hash": "beb86e636f0ab2e0283f3cdfabca1138", "semantic_hash": "beb86e636f0ab2e0283f3cdfabca1138" }, "PRs/533-codex-feature-stack-progress-heartbeats.md": { - "mtime": 1788939900.0132937, + "mtime": 1788947732.1732764, "ast_hash": "1054b9e3664b3be6bcf6abd96e5a0b58", "semantic_hash": "1054b9e3664b3be6bcf6abd96e5a0b58" }, "PRs/550-codex-feature-stack-lifecycle-main-feature-stack-run-controls.md": { - "mtime": 1788939900.0133812, + "mtime": 1788947732.1732764, "ast_hash": "daea206897f4f048c48edaaf45be4278", "semantic_hash": "daea206897f4f048c48edaaf45be4278" }, "PRs/57-codex-thingtime-embed-sdk--share-thingtime-through-a-single-file-embed-sdk.md": { - "mtime": 1788939900.013481, + "mtime": 1788947732.1732764, "ast_hash": "e941f64c4d70f381ba03e9ebcfbfb066", "semantic_hash": "e941f64c4d70f381ba03e9ebcfbfb066" }, "PRs/583-claude-thingtime-mongodb-index-storage-dffe19--ci-control-satellite-index-storage.md": { - "mtime": 1788939900.013785, + "mtime": 1788947732.1742764, "ast_hash": "398666f23808cee5db01795d49adb85b", "semantic_hash": "398666f23808cee5db01795d49adb85b" }, "PRs/74-claude-batch-collection-things-migration--batch-collection-to-things-migration-per-page.md": { - "mtime": 1788939900.0277667, + "mtime": 1788947732.1762764, "ast_hash": "97f86e317e7032a9c26235ea3d147bf6", "semantic_hash": "97f86e317e7032a9c26235ea3d147bf6" }, "PRs/92-claude-cross-tab-thingtime-sync-s4--cross-tab-sync-for-persisted-thingtime-state.md": { - "mtime": 1788939900.0279481, + "mtime": 1788947732.1762764, "ast_hash": "12e86f95b6fc2161a57b3919bf822cc8", "semantic_hash": "12e86f95b6fc2161a57b3919bf822cc8" }, "TODO/claude-todo/16-full-power-app-namespaces.md": { - "mtime": 1788939900.040493, + "mtime": 1788947732.1813653, "ast_hash": "21c290e907d4b49a899a7e3c033c71b8", "semantic_hash": "21c290e907d4b49a899a7e3c033c71b8" }, "TODO/claude-todo/22-everything-is-a-thing-collections.md": { - "mtime": 1788939900.0419104, + "mtime": 1788947732.1822762, "ast_hash": "7926510f3e70f029d560d78e104d263a", "semantic_hash": "7926510f3e70f029d560d78e104d263a" }, "TODO/claude-todo/23-declarative-schema-presentation-vocabulary.md": { - "mtime": 1788939900.0424502, + "mtime": 1788947732.1822762, "ast_hash": "e0a84524de341dcd563c974e2bf8f61d", "semantic_hash": "e0a84524de341dcd563c974e2bf8f61d" }, "TODO/claude-todo/24-migration-safe-continuous-availability.md": { - "mtime": 1788939900.042695, + "mtime": 1788947732.1822762, "ast_hash": "1bab78cbfd95472a7cf7e3b0dbed4a60", "semantic_hash": "1bab78cbfd95472a7cf7e3b0dbed4a60" }, "TODO/commander-app-registration-manager.md": { - "mtime": 1788939900.0695233, + "mtime": 1788947732.1952763, "ast_hash": "9b10931260f48992b3239095cdd4f710", "semantic_hash": "9b10931260f48992b3239095cdd4f710" }, "docs/THINGTIME_EMBED.md": { - "mtime": 1788939900.0843756, + "mtime": 1788947732.1972764, "ast_hash": "4412be2b214290cf879252706d07769f", "semantic_hash": "4412be2b214290cf879252706d07769f" }, "docs/architecture/geo-distribution.md": { - "mtime": 1788939900.0858235, + "mtime": 1788947732.19786, "ast_hash": "493fa3a1c456e85cfa9b6ed8a1b849a1", "semantic_hash": "493fa3a1c456e85cfa9b6ed8a1b849a1" }, "docs/architecture/mongodb-index-storage-audit.md": { - "mtime": 1788939900.0860655, + "mtime": 1788947732.1983404, "ast_hash": "04306b761bf6596770c864a35c469693", "semantic_hash": "04306b761bf6596770c864a35c469693" }, "docs/email-owned-architecture.md": { - "mtime": 1788939900.2196906, + "mtime": 1788947732.3142755, "ast_hash": "a0f092e7daf77051d12c99fda93258b6", "semantic_hash": "a0f092e7daf77051d12c99fda93258b6" }, "remix/public/embed/bridge.html": { - "mtime": 1788939902.5788426, + "mtime": 1788947732.6702728, "ast_hash": "10ada42753bcebb163d0dfd8e3aa14a7", "semantic_hash": "10ada42753bcebb163d0dfd8e3aa14a7" }, "remix/public/embed/demo.html": { - "mtime": 1788939902.5792584, + "mtime": 1788947732.6709688, "ast_hash": "1e2cf4cceb02ac42b5a88226a0b4ed26", "semantic_hash": "1e2cf4cceb02ac42b5a88226a0b4ed26" }, "Commander/design/commander-app-icon.png": { - "mtime": 1788939899.803616, + "mtime": 1788947732.085277, "ast_hash": "f5e1e4c6d9ff6168bc7b3548d8201f42", "semantic_hash": "f5e1e4c6d9ff6168bc7b3548d8201f42" }, "Commander/design/commander-concept.png": { - "mtime": 1788939899.813319, + "mtime": 1788947732.0872772, "ast_hash": "f37a50e8c6d924f6e25dfa800e78bb88", "semantic_hash": "f37a50e8c6d924f6e25dfa800e78bb88" }, "Commander/extensions/raycast/metadata/sips-1.png": { - "mtime": 1788939899.9198523, + "mtime": 1788947732.1352768, "ast_hash": "2ef549e62cfa889db1897b1b8b130cb4", "semantic_hash": "2ef549e62cfa889db1897b1b8b130cb4" }, "Commander/extensions/raycast/metadata/sips-2.png": { - "mtime": 1788939899.9275105, + "mtime": 1788947732.1412766, "ast_hash": "ed0dbc2303a6dad26fb30e0844bdd622", "semantic_hash": "ed0dbc2303a6dad26fb30e0844bdd622" }, "Commander/extensions/raycast/metadata/sips-3.png": { - "mtime": 1788939899.936559, + "mtime": 1788947732.1472766, "ast_hash": "67ff5fa3f6758b5d34e8942d98eda6bb", "semantic_hash": "67ff5fa3f6758b5d34e8942d98eda6bb" }, "Commander/extensions/raycast/metadata/sips-4.png": { - "mtime": 1788939899.9510067, + "mtime": 1788947732.1542766, "ast_hash": "60a7fb5a6eedd8efc2c1da97c3aa0bab", "semantic_hash": "60a7fb5a6eedd8efc2c1da97c3aa0bab" }, "integrations/ChatGPT/plugin/thingtime-chatgpt/scripts/desktop-oauth-login.mjs": { - "mtime": 1788939900.983838, + "mtime": 1788947732.4880013, "ast_hash": "3597bd870bf2baa64fdec022cb7d68cf", "semantic_hash": "3597bd870bf2baa64fdec022cb7d68cf" }, "PRs/597-codex-preview-pr-environment-links-publish-multi-environment-preview-links-on-prs.md": { - "mtime": 1788939900.019203, + "mtime": 1788947732.1742764, "ast_hash": "257143ed4c212d2484ae25ab10d48c95", "semantic_hash": "257143ed4c212d2484ae25ab10d48c95" }, "remix/app/api/utils/storage/userStorageReadiness.test.ts": { - "mtime": 1788939901.1709144, + "mtime": 1788947732.5423644, "ast_hash": "e872edc6102e3b317ff981368ca61795", "semantic_hash": "e872edc6102e3b317ff981368ca61795" }, "remix/app/api/utils/storage/userStorageReadiness.ts": { - "mtime": 1788939901.1712077, + "mtime": 1788947732.5423644, "ast_hash": "d3134682082203de852fc3c3bb4c3217", "semantic_hash": "d3134682082203de852fc3c3bb4c3217" }, "PRs/601-codex-fix-image-upload-migrations--storage-migration-readiness.md": { - "mtime": 1788939900.0195186, + "mtime": 1788947732.1742764, "ast_hash": "a7b54a5e1d91d80100e2b27d511fe17f", "semantic_hash": "a7b54a5e1d91d80100e2b27d511fe17f" }, "remix/app/api/utils/ciControl/adminPreviewController.test.ts": { - "mtime": 1788939901.0914397, + "mtime": 1788947732.5182738, "ast_hash": "b6a28ba8c7085d0e22d11ce5c8a7f3fa", "semantic_hash": "b6a28ba8c7085d0e22d11ce5c8a7f3fa" }, "remix/app/api/utils/ciControl/adminPreviewController.ts": { - "mtime": 1788939901.0915937, + "mtime": 1788947732.5187266, "ast_hash": "0faa99678a26ef00fece091a75cedf16", "semantic_hash": "0faa99678a26ef00fece091a75cedf16" }, "remix/app/components/Attachments/AudioAttachmentPlayer.tsx": { - "mtime": 1788939901.204987, + "mtime": 1788947732.5533717, "ast_hash": "2583626a58548af4531b46ff8a41dc2e", "semantic_hash": "2583626a58548af4531b46ff8a41dc2e" }, "remix/app/components/Attachments/audioPlaybackCache.test.ts": { - "mtime": 1788939901.2063751, + "mtime": 1788947732.5533717, "ast_hash": "ef732934ac15476fb51b71715e4c5b06", "semantic_hash": "ef732934ac15476fb51b71715e4c5b06" }, "remix/app/components/Attachments/audioPlaybackCache.ts": { - "mtime": 1788939901.2064588, + "mtime": 1788947732.5533717, "ast_hash": "fa58d4ae5a9b8a69c6bc609e3108eca3", "semantic_hash": "fa58d4ae5a9b8a69c6bc609e3108eca3" }, "remix/app/components/Attachments/audioPlaybackCore.test.ts": { - "mtime": 1788939901.2065368, + "mtime": 1788947732.5533717, "ast_hash": "d7a14b2f402a52fc55036d05c6ee267f", "semantic_hash": "d7a14b2f402a52fc55036d05c6ee267f" }, "remix/app/components/Attachments/audioPlaybackCore.ts": { - "mtime": 1788939901.2066176, + "mtime": 1788947732.5533717, "ast_hash": "d5dac8ac5b2eb787a68f135a0e2cf059", "semantic_hash": "d5dac8ac5b2eb787a68f135a0e2cf059" }, "PRs/604-codex-admin-preview-thin-dispatch.md": { - "mtime": 1788939900.0198495, + "mtime": 1788947732.1742764, "ast_hash": "3e9c5abf5790b6ef5e37e743281acab6", "semantic_hash": "3e9c5abf5790b6ef5e37e743281acab6" }, "macos/ThingtimeRecovery/Services/RecoveryArchive.swift": { - "mtime": 1788939901.030046, + "mtime": 1788947732.4942741, "ast_hash": "fbe8c0dc5aa649f7c7129f64d455293d", "semantic_hash": "fbe8c0dc5aa649f7c7129f64d455293d" }, "PRs/627-codex-recovery-release-sync-github-catalogue-and-installer.md": { - "mtime": 1788939900.0205102, + "mtime": 1788947732.1752765, "ast_hash": "9a87e30c965de4a61c2b393bc38e926c", "semantic_hash": "9a87e30c965de4a61c2b393bc38e926c" }, "remix/app/api/utils/auth/appleAppAssociation.test.ts": { - "mtime": 1788939901.0829022, + "mtime": 1788947732.514274, "ast_hash": "91ed45abfe0ee2ec15d676557c7b71f4", "semantic_hash": "91ed45abfe0ee2ec15d676557c7b71f4" }, "remix/app/api/utils/auth/appleAppAssociation.ts": { - "mtime": 1788939901.0829911, + "mtime": 1788947732.514274, "ast_hash": "93060e374178dbf4545708711588fd11", "semantic_hash": "93060e374178dbf4545708711588fd11" }, "remix/app/api/utils/auth/webauthnChallenge.test.ts": { - "mtime": 1788939901.0891874, + "mtime": 1788947732.516274, "ast_hash": "e8179a153d0233d6a45303e0306e5ec1", "semantic_hash": "e8179a153d0233d6a45303e0306e5ec1" }, "remix/app/hooks/passkeyCapabilities.test.ts": { - "mtime": 1788939901.3494585, + "mtime": 1788947732.594654, "ast_hash": "7c1dc7f1a0b810a037e2e2aef7d864e4", "semantic_hash": "7c1dc7f1a0b810a037e2e2aef7d864e4" }, "remix/app/hooks/passkeyCapabilities.ts": { - "mtime": 1788939901.3495362, + "mtime": 1788947732.594654, "ast_hash": "cf1a26d7fe1704e29c3ff036f38de636", "semantic_hash": "cf1a26d7fe1704e29c3ff036f38de636" }, "remix/app/hooks/passkeyCeremony.test.ts": { - "mtime": 1788939901.3496614, + "mtime": 1788947732.594654, "ast_hash": "edfabc11db12fe4af2c6935c98b57d15", "semantic_hash": "edfabc11db12fe4af2c6935c98b57d15" }, "remix/app/hooks/passkeyCeremony.ts": { - "mtime": 1788939901.349794, + "mtime": 1788947732.594654, "ast_hash": "b7961b25c085c5c9e65962568d48f721", "semantic_hash": "b7961b25c085c5c9e65962568d48f721" }, "remix/server/handlers/apple-app-association.ts": { - "mtime": 1788939902.6600237, + "mtime": 1788947732.6807272, "ast_hash": "3906f4c1be29ad1b8a879944a7d24dcb", "semantic_hash": "3906f4c1be29ad1b8a879944a7d24dcb" }, "PRs/641-passkey-reliability-fix-passkey-cancellation-concurrent-challenges-and-native-app-association.md": { - "mtime": 1788939900.0215452, + "mtime": 1788947732.1752765, "ast_hash": "7be20b0196c6d44f4c144eeecdbe7175", "semantic_hash": "7be20b0196c6d44f4c144eeecdbe7175" }, "Commander/apps/daemon/src/services/networkProbe.test.ts": { - "mtime": 1788939899.7236025, + "mtime": 1788947732.0772772, "ast_hash": "3df30dd556c2c00fb094ebbcb6924a97", "semantic_hash": "3df30dd556c2c00fb094ebbcb6924a97" }, "Commander/apps/daemon/src/services/networkProbe.ts": { - "mtime": 1788939899.724999, + "mtime": 1788947732.0772772, "ast_hash": "2de1fa71e2b3350f9601cdbd5ca3c8a4", "semantic_hash": "2de1fa71e2b3350f9601cdbd5ca3c8a4" }, "Commander/apps/desktop-ui/src/components/ActivitySettings.test.tsx": { - "mtime": 1788939899.7366023, + "mtime": 1788947732.078957, "ast_hash": "e8eecb29a0b87e96f640ca1941029133", "semantic_hash": "e8eecb29a0b87e96f640ca1941029133" }, "Commander/script/build-production-release.sh": { - "mtime": 1788939899.9787965, + "mtime": 1788947732.1622765, "ast_hash": "0f88d3f207b726eb866fdaea143e1cb6", "semantic_hash": "0f88d3f207b726eb866fdaea143e1cb6" }, "Commander/script/release-packaging.test.mjs": { - "mtime": 1788939899.9791152, + "mtime": 1788947732.1628764, "ast_hash": "cfc5deef1c60bb74f98e334f8bea4f39", "semantic_hash": "cfc5deef1c60bb74f98e334f8bea4f39" }, "Commander/script/verify-production-bundle.sh": { - "mtime": 1788939899.9807577, + "mtime": 1788947732.1628764, "ast_hash": "882e3699912c30431cab850aa281cba0", "semantic_hash": "882e3699912c30431cab850aa281cba0" }, "configurations/AWS/S3/develop/bucket-policy.json": { - "mtime": 1788939900.0703254, + "mtime": 1788947732.1960742, "ast_hash": "216725f03649625a2c3e654a7cfccdd0", "semantic_hash": "216725f03649625a2c3e654a7cfccdd0" }, "configurations/AWS/S3/develop/cors.json": { - "mtime": 1788939900.0715332, + "mtime": 1788947732.1961274, "ast_hash": "b6ad737abe492aba03911cae7370c272", "semantic_hash": "b6ad737abe492aba03911cae7370c272" }, "configurations/AWS/S3/develop/encryption.json": { - "mtime": 1788939900.0717092, + "mtime": 1788947732.1961274, "ast_hash": "ce7fbe3e234ee2970aed0f6bedfbd065", "semantic_hash": "ce7fbe3e234ee2970aed0f6bedfbd065" }, "configurations/AWS/S3/develop/environment.json": { - "mtime": 1788939900.0744345, + "mtime": 1788947732.1961274, "ast_hash": "4ff41f9f87bf331594b0dce16bcddf7e", "semantic_hash": "4ff41f9f87bf331594b0dce16bcddf7e" }, "configurations/AWS/S3/develop/lifecycle.json": { - "mtime": 1788939900.0752285, + "mtime": 1788947732.1961274, "ast_hash": "ae658dd3dcea95c1cd420ee7b18c906b", "semantic_hash": "ae658dd3dcea95c1cd420ee7b18c906b" }, "configurations/AWS/S3/develop/ownership-controls.json": { - "mtime": 1788939900.075524, + "mtime": 1788947732.1961274, "ast_hash": "c0221d07692b8b9768d5ea0f380c0a78", "semantic_hash": "c0221d07692b8b9768d5ea0f380c0a78" }, "configurations/AWS/S3/develop/public-access-block.json": { - "mtime": 1788939900.0756626, + "mtime": 1788947732.1961274, "ast_hash": "8da5543f953d401d140b640cad3ef167", "semantic_hash": "8da5543f953d401d140b640cad3ef167" }, "configurations/AWS/S3/develop/versioning.json": { - "mtime": 1788939900.0757608, + "mtime": 1788947732.1961274, "ast_hash": "31de3c92c6a88a9f923955851f1881af", "semantic_hash": "31de3c92c6a88a9f923955851f1881af" }, "configurations/AWS/S3/production/bucket-policy.json": { - "mtime": 1788939900.0759063, + "mtime": 1788947732.1961274, "ast_hash": "cbd27fc8fcf7cc8aa0c7650164289caf", "semantic_hash": "cbd27fc8fcf7cc8aa0c7650164289caf" }, "configurations/AWS/S3/production/cors.json": { - "mtime": 1788939900.0760012, + "mtime": 1788947732.1964045, "ast_hash": "c660ffa273ad1c7beb6bcf61a2256bb8", "semantic_hash": "c660ffa273ad1c7beb6bcf61a2256bb8" }, "configurations/AWS/S3/production/encryption.json": { - "mtime": 1788939900.0760772, + "mtime": 1788947732.1964045, "ast_hash": "febf19d78829e8d9a87ef34615ce30b3", "semantic_hash": "febf19d78829e8d9a87ef34615ce30b3" }, "configurations/AWS/S3/production/environment.json": { - "mtime": 1788939900.0761514, + "mtime": 1788947732.1964045, "ast_hash": "470b59f0a869c447ba814f73313beba4", "semantic_hash": "470b59f0a869c447ba814f73313beba4" }, "configurations/AWS/S3/production/lifecycle.json": { - "mtime": 1788939900.0762217, + "mtime": 1788947732.1964045, "ast_hash": "eb51574f9688957318711eac53b6a108", "semantic_hash": "eb51574f9688957318711eac53b6a108" }, "configurations/AWS/S3/production/notifications.json": { - "mtime": 1788939900.0762868, + "mtime": 1788947732.1964045, "ast_hash": "54b4f8e5c278ff0c64c4731ebd8ce8f4", "semantic_hash": "54b4f8e5c278ff0c64c4731ebd8ce8f4" }, "configurations/AWS/S3/production/ownership-controls.json": { - "mtime": 1788939900.0763576, + "mtime": 1788947732.1964045, "ast_hash": "c0221d07692b8b9768d5ea0f380c0a78", "semantic_hash": "c0221d07692b8b9768d5ea0f380c0a78" }, "configurations/AWS/S3/production/public-access-block.json": { - "mtime": 1788939900.0764196, + "mtime": 1788947732.1964045, "ast_hash": "8da5543f953d401d140b640cad3ef167", "semantic_hash": "8da5543f953d401d140b640cad3ef167" }, "configurations/AWS/S3/production/versioning.json": { - "mtime": 1788939900.076479, + "mtime": 1788947732.1964045, "ast_hash": "31de3c92c6a88a9f923955851f1881af", "semantic_hash": "31de3c92c6a88a9f923955851f1881af" }, "configurations/AWS/SES/account.json": { - "mtime": 1788939900.0766807, + "mtime": 1788947732.1967423, "ast_hash": "1d972dbec8deb9eb924d500bd081bc3b", "semantic_hash": "1d972dbec8deb9eb924d500bd081bc3b" }, "configurations/AWS/SES/configuration-sets/my-first-configuration-set.json": { - "mtime": 1788939900.0767972, + "mtime": 1788947732.1967423, "ast_hash": "b393b6112929d272c1f3ceb1ccebb33a", "semantic_hash": "b393b6112929d272c1f3ceb1ccebb33a" }, "configurations/AWS/SES/configuration-sets/observations.json": { - "mtime": 1788939900.0770788, + "mtime": 1788947732.1968405, "ast_hash": "c3e984ac361d71f8091f47e8b022116d", "semantic_hash": "c3e984ac361d71f8091f47e8b022116d" }, "configurations/AWS/SES/configuration-sets/thingtime.json": { - "mtime": 1788939900.0771687, + "mtime": 1788947732.1968405, "ast_hash": "60deeefbe889a2e62410e14aa23281d2", "semantic_hash": "60deeefbe889a2e62410e14aa23281d2" }, "configurations/AWS/SES/develop/application.json": { - "mtime": 1788939900.077284, + "mtime": 1788947732.1968405, "ast_hash": "2ac64efa05cd1959396c33ada8888e0e", "semantic_hash": "2ac64efa05cd1959396c33ada8888e0e" }, "configurations/AWS/SES/domain.json": { - "mtime": 1788939900.0773542, + "mtime": 1788947732.1968405, "ast_hash": "31469abbc545e114da0ade99c5a670b6", "semantic_hash": "31469abbc545e114da0ade99c5a670b6" }, "configurations/AWS/SES/production/application.json": { - "mtime": 1788939900.077787, + "mtime": 1788947732.1968405, "ast_hash": "35017d5a5b9184df73f3d8e094584489", "semantic_hash": "35017d5a5b9184df73f3d8e094584489" }, "electron/scripts/production-signing-identity.mjs": { - "mtime": 1788939900.2300348, + "mtime": 1788947732.3172753, "ast_hash": "6b5698e361069406c54717bdc5d816e0", "semantic_hash": "6b5698e361069406c54717bdc5d816e0" }, "macos/ThingtimeRecovery/Models/RecoveryBuildMetadata.swift": { - "mtime": 1788939901.0287113, + "mtime": 1788947732.4937832, "ast_hash": "20ca22ef748541847d390251a404785d", "semantic_hash": "20ca22ef748541847d390251a404785d" }, "macos/ThingtimeRecovery/Views/CacheListView.swift": { - "mtime": 1788939901.0307903, + "mtime": 1788947732.4947686, "ast_hash": "b20e1daf1ab6dff327aafc99a1edaa2f", "semantic_hash": "b20e1daf1ab6dff327aafc99a1edaa2f" }, "macos/ThingtimeRecovery/Views/ReleaseCardView.swift": { - "mtime": 1788939901.0310154, + "mtime": 1788947732.494992, "ast_hash": "00fe314b656d9805a0fde4794a9bc15a", "semantic_hash": "00fe314b656d9805a0fde4794a9bc15a" }, "macos/ThingtimeRecovery/Views/ReleaseDetailView.swift": { - "mtime": 1788939901.0312004, + "mtime": 1788947732.494992, "ast_hash": "86cfe813e63139ab2ec845d253ce9bfb", "semantic_hash": "86cfe813e63139ab2ec845d253ce9bfb" }, "remix/app/api/utils/attachments/imageVariants.test.ts": { - "mtime": 1788939901.0803046, + "mtime": 1788947732.513274, "ast_hash": "85c86f474060ba9ff5d7245fd768f973", "semantic_hash": "85c86f474060ba9ff5d7245fd768f973" }, "remix/app/api/utils/attachments/imageVariants.ts": { - "mtime": 1788939901.0807407, + "mtime": 1788947732.513274, "ast_hash": "54d141027951812933605a253e2affdc", "semantic_hash": "54d141027951812933605a253e2affdc" }, "remix/app/api/utils/notifications/listQuery.test.ts": { - "mtime": 1788943126.4368937, + "mtime": 1788948107.3954937, "ast_hash": "03db8bf4ccd70159ebcd0f88a1738a7a", "semantic_hash": "" }, "remix/app/api/utils/notifications/listQuery.ts": { - "mtime": 1788943126.4371574, + "mtime": 1788948107.3954937, "ast_hash": "4b508efe058c608a8246f3046f05aa7e", "semantic_hash": "" }, "remix/app/components/Attachments/ProgressiveImage.tsx": { - "mtime": 1788939901.2055383, + "mtime": 1788947732.5533717, "ast_hash": "6184cf8bb76ddc4f33be967c8eea915c", "semantic_hash": "6184cf8bb76ddc4f33be967c8eea915c" }, "remix/app/components/Lopu/LopuPositionSelect.tsx": { - "mtime": 1788939901.2556343, + "mtime": 1788947732.5712736, "ast_hash": "8b38cd4035b2c21703270fb1d8c28d96", "semantic_hash": "8b38cd4035b2c21703270fb1d8c28d96" }, "remix/app/components/Lopu/lopuPosition.test.ts": { - "mtime": 1788939901.2569847, + "mtime": 1788947732.5722735, "ast_hash": "937e398f7d34deb5ff4e62b9b21a0bf2", "semantic_hash": "937e398f7d34deb5ff4e62b9b21a0bf2" }, "remix/app/components/Lopu/lopuPosition.ts": { - "mtime": 1788939901.257053, + "mtime": 1788947732.5722735, "ast_hash": "f3318d3ff7ed9bee5921b26101657da8", "semantic_hash": "f3318d3ff7ed9bee5921b26101657da8" }, "remix/app/components/Lopu/useLopuPosition.tsx": { - "mtime": 1788939901.260628, + "mtime": 1788947732.5732734, "ast_hash": "e10b978c5975ef4b28d7bf295c594f70", "semantic_hash": "e10b978c5975ef4b28d7bf295c594f70" }, "remix/app/components/Notifications/NotificationRow.tsx": { - "mtime": 1788943126.4401126, + "mtime": 1788948107.3974938, "ast_hash": "380e01f20f14c1de4bbec1b990ac34c0", "semantic_hash": "" }, "remix/app/components/Notifications/NotificationsPage.tsx": { - "mtime": 1788943126.4406548, + "mtime": 1788948107.3974938, "ast_hash": "ca4042b13eb8f2eb08a868555504ba20", "semantic_hash": "" }, "remix/app/components/Notifications/notificationCore.test.ts": { - "mtime": 1788939901.276234, + "mtime": 1788947732.5793066, "ast_hash": "76f99e0e0b645326dcb73908f27a38f1", "semantic_hash": "76f99e0e0b645326dcb73908f27a38f1" }, "remix/app/components/Notifications/notificationCore.ts": { - "mtime": 1788943126.4410126, + "mtime": 1788948107.3974938, "ast_hash": "82503c72e6872316ceab3ec789afa43b", "semantic_hash": "" }, "remix/app/components/Settings/MediaCacheSettings.tsx": { - "mtime": 1788939901.300487, + "mtime": 1788947732.5830266, "ast_hash": "ba71d0db01a5dad9ed55969fc50524b8", "semantic_hash": "ba71d0db01a5dad9ed55969fc50524b8" }, "remix/app/components/Things/thingDetailSectionsCore.test.ts": { - "mtime": 1788939901.325493, + "mtime": 1788947732.586319, "ast_hash": "a003598041fd5a78577d7dbd1612e41d", "semantic_hash": "a003598041fd5a78577d7dbd1612e41d" }, "remix/app/components/Things/thingDetailSectionsCore.ts": { - "mtime": 1788939901.3257937, + "mtime": 1788947732.586319, "ast_hash": "84fed19d1e34c3e31ffb318c281ebe49", "semantic_hash": "84fed19d1e34c3e31ffb318c281ebe49" }, "remix/app/routes/notifications.tsx": { - "mtime": 1788939901.468154, + "mtime": 1788947732.624273, "ast_hash": "d25575865764e799a7d99a2d2c46d1b4", "semantic_hash": "d25575865764e799a7d99a2d2c46d1b4" }, "remix/app/schemas/notificationCategories.test.ts": { - "mtime": 1788943126.4563925, + "mtime": 1788948107.4029338, "ast_hash": "ca127f60a6ce32dc6bad2209bf160bc4", "semantic_hash": "" }, "remix/app/utils/mediaCache.client.ts": { - "mtime": 1788939901.4873457, + "mtime": 1788947732.632273, "ast_hash": "b42359235505598e726510c6a04f04ff", "semantic_hash": "b42359235505598e726510c6a04f04ff" }, "remix/public/media-cache-core.mjs": { - "mtime": 1788939902.6318412, + "mtime": 1788947732.6752727, "ast_hash": "c03f449c98b38566e841a7bca8b523b8", "semantic_hash": "c03f449c98b38566e841a7bca8b523b8" }, "remix/public/media-cache-store.mjs": { - "mtime": 1788939902.6323445, + "mtime": 1788947732.6752727, "ast_hash": "b06f3d4684420c6ddb82cd9a13d41dd7", "semantic_hash": "b06f3d4684420c6ddb82cd9a13d41dd7" }, "remix/public/media-cache-sw.mjs": { - "mtime": 1788939902.6331153, + "mtime": 1788947732.6752727, "ast_hash": "8794580062bdca3b2fdd91a27637a10e", "semantic_hash": "8794580062bdca3b2fdd91a27637a10e" }, "remix/scripts/media-cache.test.mjs": { - "mtime": 1788939902.640179, + "mtime": 1788947732.6762726, "ast_hash": "1028f8c46fd1d39f6fb8dc8e2f61a02c", "semantic_hash": "1028f8c46fd1d39f6fb8dc8e2f61a02c" }, "remix/scripts/serve-media-cache-qa.mjs": { - "mtime": 1788939902.6423345, + "mtime": 1788947732.6762726, "ast_hash": "039a6c86eb1d1b2ba8f359a574cd2fb1", "semantic_hash": "039a6c86eb1d1b2ba8f359a574cd2fb1" }, "remix/tests/media-cache.tsx": { - "mtime": 1788939902.6692736, + "mtime": 1788947732.6817832, "ast_hash": "5d6a4fdc1bf4670fc2543a037de67d50", "semantic_hash": "5d6a4fdc1bf4670fc2543a037de67d50" }, "PRs/611-claude-lopu-toast-position-notifications-history--lopu-toast-position-notifications-history.md": { - "mtime": 1788939900.0199952, + "mtime": 1788947732.1742764, "ast_hash": "95f9119e40d37cb788f227430a4cb535", "semantic_hash": "95f9119e40d37cb788f227430a4cb535" }, "PRs/648-commander-cloud-releases-publish-installable-signed-commander-builds-with-recovery-provenance.md": { - "mtime": 1788939900.0216389, + "mtime": 1788947732.1752765, "ast_hash": "64270c671eb713c8c81aed8602f7e2e7", "semantic_hash": "64270c671eb713c8c81aed8602f7e2e7" }, "PRs/650-codex-persistent-media-cache-responsive-previews-and-aws-configurations.md": { - "mtime": 1788939900.021931, + "mtime": 1788947732.1752765, "ast_hash": "be09fc35a56688a5553dee4f5f6cd293", "semantic_hash": "be09fc35a56688a5553dee4f5f6cd293" }, "PRs/652-codex-commander-app-name-ranking-complete-search-catalogues-and-pin-toggle.md": { - "mtime": 1788939900.0224924, + "mtime": 1788947732.1752765, "ast_hash": "411bc153e105006e1fbffcf68b555736", "semantic_hash": "411bc153e105006e1fbffcf68b555736" }, "PRs/654-codex-persistent-media-cache-main-production-promotion.md": { - "mtime": 1788939900.022926, + "mtime": 1788947732.1752765, "ast_hash": "e44c07148c3d73719513ac81fba60cb0", "semantic_hash": "e44c07148c3d73719513ac81fba60cb0" }, "PRs/657-codex-commander-main-fixes-search-and-network-repairs.md": { - "mtime": 1788939900.0237846, + "mtime": 1788947732.1752765, "ast_hash": "c8719c85c8a5d2eeb8bc5898693f2636", "semantic_hash": "c8719c85c8a5d2eeb8bc5898693f2636" }, "configurations/AWS/README.md": { - "mtime": 1788939900.0700426, + "mtime": 1788947732.1959097, "ast_hash": "dc079da3042aa889d9130b3018127d56", "semantic_hash": "dc079da3042aa889d9130b3018127d56" }, "configurations/AWS/S3/README.md": { - "mtime": 1788939900.0702083, + "mtime": 1788947732.195987, "ast_hash": "4fdb02a815badcc6c61e9e4d810e1c62", "semantic_hash": "4fdb02a815badcc6c61e9e4d810e1c62" }, "configurations/AWS/SES/README.md": { - "mtime": 1788939900.0766056, + "mtime": 1788947732.1964045, "ast_hash": "7becaeec9fba5b15f812d3ed4037bf1d", "semantic_hash": "7becaeec9fba5b15f812d3ed4037bf1d" }, "configurations/README.md": { - "mtime": 1788939900.0779088, + "mtime": 1788947732.1968405, "ast_hash": "28649ded2db936ca52092b92fa480f8d", "semantic_hash": "28649ded2db936ca52092b92fa480f8d" }, "iOS/LopuVoiceWidget/LopuVoiceWidget.swift": { - "mtime": 1788939900.9662561, + "mtime": 1788947732.4833586, "ast_hash": "ca74d6089f251dbc30a5cddf0efc21f8", "semantic_hash": "ca74d6089f251dbc30a5cddf0efc21f8" }, "iOS/Shared/LopuVoiceActivityAttributes.swift": { - "mtime": 1788939900.9665606, + "mtime": 1788947732.4833586, "ast_hash": "c3e0765b5a0055cf3905cc02da51e062", "semantic_hash": "c3e0765b5a0055cf3905cc02da51e062" }, "iOS/Thingtime/Lopu/LopuVoiceSessionController.swift": { - "mtime": 1788939900.9679933, + "mtime": 1788947732.4838178, "ast_hash": "c6716df43c5051d90b709543b920704d", "semantic_hash": "c6716df43c5051d90b709543b920704d" }, "remix/app/api/utils/actions/packs/astro/aspects.ts": { - "mtime": 1788939901.0504093, + "mtime": 1788947732.4996586, "ast_hash": "c050e532f2874ee932a83d6dcdcd3276", "semantic_hash": "c050e532f2874ee932a83d6dcdcd3276" }, "remix/app/api/utils/actions/packs/astro/astro.test.ts": { - "mtime": 1788939901.051014, + "mtime": 1788947732.499725, "ast_hash": "4ad4751579dd155fcaf65a6148a65266", "semantic_hash": "4ad4751579dd155fcaf65a6148a65266" }, "remix/app/api/utils/actions/packs/astro/compose.ts": { - "mtime": 1788939901.0513587, + "mtime": 1788947732.499725, "ast_hash": "77d1dda703976f1c36a1d406bf203d1a", "semantic_hash": "77d1dda703976f1c36a1d406bf203d1a" }, "remix/app/api/utils/actions/packs/astro/content/cities.json": { - "mtime": 1788939901.0520792, + "mtime": 1788947732.499725, "ast_hash": "a692796e1603117292db4035e431fafe", "semantic_hash": "a692796e1603117292db4035e431fafe" }, "remix/app/api/utils/actions/packs/astro/content/houses.json": { - "mtime": 1788939901.0524125, + "mtime": 1788947732.5001035, "ast_hash": "211b328dd919bfb105598a2fe7b0671a", "semantic_hash": "211b328dd919bfb105598a2fe7b0671a" }, "remix/app/api/utils/actions/packs/astro/content/index.json": { - "mtime": 1788939901.0540628, + "mtime": 1788947732.501274, "ast_hash": "d73d7f72dc8175e0c5c1f51638db8de7", "semantic_hash": "d73d7f72dc8175e0c5c1f51638db8de7" }, "remix/app/api/utils/actions/packs/astro/content/planet-house.json": { - "mtime": 1788939901.0553217, + "mtime": 1788947732.502274, "ast_hash": "872ac87424417b30345e02bdfc97bc4e", "semantic_hash": "872ac87424417b30345e02bdfc97bc4e" }, "remix/app/api/utils/actions/packs/astro/content/planet-sign.json": { - "mtime": 1788939901.0580075, + "mtime": 1788947732.503274, "ast_hash": "64cad3326245c8559d3e7c48e8f941e0", "semantic_hash": "64cad3326245c8559d3e7c48e8f941e0" }, "remix/app/api/utils/actions/packs/astro/content/planets.json": { - "mtime": 1788939901.0583003, + "mtime": 1788947732.504274, "ast_hash": "6f589bc8408d15685a186ee3ca6823f4", "semantic_hash": "6f589bc8408d15685a186ee3ca6823f4" }, "remix/app/api/utils/actions/packs/astro/content/sign-house.json": { - "mtime": 1788939901.0597403, + "mtime": 1788947732.505274, "ast_hash": "fe3d02de7aeb4282c284f8603eef3b2d", "semantic_hash": "fe3d02de7aeb4282c284f8603eef3b2d" }, "remix/app/api/utils/actions/packs/astro/content/signs.json": { - "mtime": 1788939901.0602899, + "mtime": 1788947732.505274, "ast_hash": "68dd246ffa71c7f45d793d40f1bab7e6", "semantic_hash": "68dd246ffa71c7f45d793d40f1bab7e6" }, "remix/app/api/utils/actions/packs/astro/engine.ts": { - "mtime": 1788939901.0604627, + "mtime": 1788947732.506274, "ast_hash": "02932b6508cf4063ce5983f7c9ecbfdd", "semantic_hash": "02932b6508cf4063ce5983f7c9ecbfdd" }, "remix/app/api/utils/actions/packs/astro/index.ts": { - "mtime": 1788939901.0606382, + "mtime": 1788947732.506274, "ast_hash": "1c052c64b9fd99410b7999cb19410072", "semantic_hash": "1c052c64b9fd99410b7999cb19410072" }, "remix/app/api/utils/actions/packs/astro/meta.ts": { - "mtime": 1788939901.0610077, + "mtime": 1788947732.506274, "ast_hash": "1b76084547b34ec78e999f6f4e340f35", "semantic_hash": "1b76084547b34ec78e999f6f4e340f35" }, "remix/app/api/utils/actions/packs/astro/school.ts": { - "mtime": 1788939901.0612803, + "mtime": 1788947732.506274, "ast_hash": "c6a0ca0cf07247105169602cc6a1b4ee", "semantic_hash": "c6a0ca0cf07247105169602cc6a1b4ee" }, "remix/app/api/utils/actions/packs/astro/wheel.ts": { - "mtime": 1788939901.0614297, + "mtime": 1788947732.506274, "ast_hash": "6befb2aff8e97d47acce7137062c4edb", "semantic_hash": "6befb2aff8e97d47acce7137062c4edb" }, "remix/app/api/utils/actions/packs/index.ts": { - "mtime": 1788939901.0615485, + "mtime": 1788947732.506274, "ast_hash": "9d596afc525b5ec163da27e90d18a8e1", "semantic_hash": "9d596afc525b5ec163da27e90d18a8e1" }, "remix/app/api/utils/actions/packs/packs.test.ts": { - "mtime": 1788939901.061667, + "mtime": 1788947732.506274, "ast_hash": "718bbd722d4705710a45c1c5be93807a", "semantic_hash": "718bbd722d4705710a45c1c5be93807a" }, "remix/app/api/utils/actions/packs/pokeworld/battle.ts": { - "mtime": 1788939901.061934, + "mtime": 1788947732.506274, "ast_hash": "7c8b4159ed3b8fa9b3fb581ce2dcd9b3", "semantic_hash": "7c8b4159ed3b8fa9b3fb581ce2dcd9b3" }, "remix/app/api/utils/actions/packs/pokeworld/data/pokedex.json": { - "mtime": 1788939901.0627975, + "mtime": 1788947732.507274, "ast_hash": "464f0baaf8a891a7c567c420338f3fb3", "semantic_hash": "464f0baaf8a891a7c567c420338f3fb3" }, "remix/app/api/utils/actions/packs/pokeworld/encounters.ts": { - "mtime": 1788939901.0629885, + "mtime": 1788947732.507274, "ast_hash": "f4163de365131d3ede34cad9e57c2d2e", "semantic_hash": "f4163de365131d3ede34cad9e57c2d2e" }, "remix/app/api/utils/actions/packs/pokeworld/index.ts": { - "mtime": 1788939901.06312, + "mtime": 1788947732.507274, "ast_hash": "18eecc1ef1b7a36623e72d603f5013dc", "semantic_hash": "18eecc1ef1b7a36623e72d603f5013dc" }, "remix/app/api/utils/actions/packs/pokeworld/pokedex.ts": { - "mtime": 1788939901.0634227, + "mtime": 1788947732.507274, "ast_hash": "e972f342839e24e98a725082b5199df5", "semantic_hash": "e972f342839e24e98a725082b5199df5" }, "remix/app/api/utils/actions/packs/pokeworld/pokeworld.test.ts": { - "mtime": 1788939901.063621, + "mtime": 1788947732.507274, "ast_hash": "9421b6c289a08d7dac049d5b458a1242", "semantic_hash": "9421b6c289a08d7dac049d5b458a1242" }, "remix/app/api/utils/actions/packs/pokeworld/rules.ts": { - "mtime": 1788939901.0642297, + "mtime": 1788947732.508274, "ast_hash": "9315644fb9505ef0b90c7b893f6a2a0f", "semantic_hash": "9315644fb9505ef0b90c7b893f6a2a0f" }, "remix/app/api/utils/actions/packs/pokeworld/trainer.ts": { - "mtime": 1788939901.0644338, + "mtime": 1788947732.508274, "ast_hash": "063025e683e3a6cb372d07a4cf2dbd33", "semantic_hash": "063025e683e3a6cb372d07a4cf2dbd33" }, "remix/app/api/utils/actions/packs/pokeworld/world.ts": { - "mtime": 1788939901.0655053, + "mtime": 1788947732.508274, "ast_hash": "50c63024b541f0865b1299d7ead29019", "semantic_hash": "50c63024b541f0865b1299d7ead29019" }, "remix/app/api/utils/actions/packs/types.ts": { - "mtime": 1788939901.065765, + "mtime": 1788947732.508274, "ast_hash": "f2a61f617782375dbed82f88672d7935", "semantic_hash": "f2a61f617782375dbed82f88672d7935" }, "remix/app/api/utils/ai/models.route.test.ts": { - "mtime": 1788939901.0682747, + "mtime": 1788947732.5089266, "ast_hash": "a71f9c4141c9435a77a0c63c0c2125cc", "semantic_hash": "a71f9c4141c9435a77a0c63c0c2125cc" }, "remix/app/api/utils/ai/models.test.ts": { - "mtime": 1788939901.0684116, + "mtime": 1788947732.5094469, "ast_hash": "fbf56c05f6a3e04ca47d6d307092699e", "semantic_hash": "fbf56c05f6a3e04ca47d6d307092699e" }, "remix/app/api/utils/ai/models.ts": { - "mtime": 1788939901.068526, + "mtime": 1788947732.5094469, "ast_hash": "eabc4972eee46be3d7cc537b9286b097", "semantic_hash": "eabc4972eee46be3d7cc537b9286b097" }, "remix/app/api/utils/ai/modelsCore.test.ts": { - "mtime": 1788939901.0688386, + "mtime": 1788947732.5094469, "ast_hash": "683b6816c333db85ca5ce8ec3aa65d17", "semantic_hash": "683b6816c333db85ca5ce8ec3aa65d17" }, "remix/app/api/utils/ai/modelsCore.ts": { - "mtime": 1788939901.069003, + "mtime": 1788947732.5094469, "ast_hash": "da195449315ecd172fdbe0582d097c04", "semantic_hash": "da195449315ecd172fdbe0582d097c04" }, "remix/app/api/utils/ai/providerProbe.test.ts": { - "mtime": 1788939901.0693753, + "mtime": 1788947732.5094469, "ast_hash": "1b4ccf0fde3f043804d6994c807a5be3", "semantic_hash": "1b4ccf0fde3f043804d6994c807a5be3" }, "remix/app/api/utils/ai/providerProbe.ts": { - "mtime": 1788939901.0694683, + "mtime": 1788947732.5094469, "ast_hash": "b96b8b0f31b3e7809e68584c9ec0e7c7", "semantic_hash": "b96b8b0f31b3e7809e68584c9ec0e7c7" }, "remix/app/api/utils/lopu/chat.ts": { - "mtime": 1788939901.1230066, + "mtime": 1788947732.5242739, "ast_hash": "c3a08df9093d76112815295ab1efc606", "semantic_hash": "c3a08df9093d76112815295ab1efc606" }, "remix/app/api/utils/lopu/chatEvents.ts": { - "mtime": 1788939901.1231906, + "mtime": 1788947732.5242739, "ast_hash": "442230ad473b5dbaa67366b07a943810", "semantic_hash": "442230ad473b5dbaa67366b07a943810" }, "remix/app/api/utils/lopu/chatPrompt.test.ts": { - "mtime": 1788939901.1232917, + "mtime": 1788947732.5242739, "ast_hash": "346b2e9e2d9afa209a532bea0b43dd6f", "semantic_hash": "346b2e9e2d9afa209a532bea0b43dd6f" }, "remix/app/api/utils/lopu/chatPrompt.ts": { - "mtime": 1788939901.1237445, + "mtime": 1788947732.5242739, "ast_hash": "922bae844c3c5486c2daf78a1b274e32", "semantic_hash": "922bae844c3c5486c2daf78a1b274e32" }, "remix/app/api/utils/lopu/chatTestProvider.test.ts": { - "mtime": 1788939901.1241322, + "mtime": 1788947732.5242739, "ast_hash": "fd665bfcfe2f4aab63e11234fa8fdd6d", "semantic_hash": "fd665bfcfe2f4aab63e11234fa8fdd6d" }, "remix/app/api/utils/lopu/chatTestProvider.ts": { - "mtime": 1788939901.1259131, + "mtime": 1788947732.5252738, "ast_hash": "6ce7eca4e98517cb1281e707207ccbe9", "semantic_hash": "6ce7eca4e98517cb1281e707207ccbe9" }, "remix/app/api/utils/lopu/chatTools.test.ts": { - "mtime": 1788939901.1261044, + "mtime": 1788947732.5252738, "ast_hash": "f86b6e9575f12eb19caff407aa32d601", "semantic_hash": "f86b6e9575f12eb19caff407aa32d601" }, "remix/app/api/utils/lopu/chatTools.ts": { - "mtime": 1788939901.1263847, + "mtime": 1788947732.5252738, "ast_hash": "1ea2cdd14927f375f9e8f71700232268", "semantic_hash": "1ea2cdd14927f375f9e8f71700232268" }, "remix/app/api/utils/lopu/confirmations.test.ts": { - "mtime": 1788939901.1265407, + "mtime": 1788947732.5252738, "ast_hash": "e3fc4a8959a67ce5ada82fb2b91dc26f", "semantic_hash": "e3fc4a8959a67ce5ada82fb2b91dc26f" }, "remix/app/api/utils/lopu/confirmations.ts": { - "mtime": 1788939901.1267116, + "mtime": 1788947732.5252738, "ast_hash": "eef7128d9994247b5afa488edd9cc22e", "semantic_hash": "eef7128d9994247b5afa488edd9cc22e" }, "remix/app/api/utils/lopu/pageOps.test.ts": { - "mtime": 1788939901.1288395, + "mtime": 1788947732.5262737, "ast_hash": "27dd24815230927f1db1a7aa56eac209", "semantic_hash": "27dd24815230927f1db1a7aa56eac209" }, "remix/app/api/utils/lopu/pageOps.ts": { - "mtime": 1788939901.1289995, + "mtime": 1788947732.5262737, "ast_hash": "ccf87a218df6faaeb7bb12c391fe3d98", "semantic_hash": "ccf87a218df6faaeb7bb12c391fe3d98" }, "remix/app/api/utils/lopu/userVault.ts": { - "mtime": 1788940285.3017476, + "mtime": 1788948107.3954937, "ast_hash": "6e73181ba023db8c75459f8bab8f5f64", "semantic_hash": "" }, "remix/app/api/utils/lopu/userVaultCore.test.ts": { - "mtime": 1788939901.1300979, + "mtime": 1788947732.5262737, "ast_hash": "1c7c7805e651702b99783307a45f3d95", "semantic_hash": "1c7c7805e651702b99783307a45f3d95" }, "remix/app/api/utils/lopu/userVaultCore.ts": { - "mtime": 1788939901.1302922, + "mtime": 1788947732.5262737, "ast_hash": "2c9342e0b808ea3b2567854bee3ec762", "semantic_hash": "2c9342e0b808ea3b2567854bee3ec762" }, "remix/app/api/utils/lopu/vaultProviderClient.ts": { - "mtime": 1788939901.130553, + "mtime": 1788947732.5262737, "ast_hash": "0650a37875d8b065fe17ce904f38dbfa", "semantic_hash": "0650a37875d8b065fe17ce904f38dbfa" }, "remix/app/api/utils/lopu/vaultProviders.test.ts": { - "mtime": 1788939901.1309147, + "mtime": 1788947732.5262737, "ast_hash": "8820e7110952f391d36b8e9d85640cfc", "semantic_hash": "8820e7110952f391d36b8e9d85640cfc" }, "remix/app/api/utils/lopu/vaultProviders.ts": { - "mtime": 1788939901.1311483, + "mtime": 1788947732.5262737, "ast_hash": "88370171544fc51ea5375047524d5956", "semantic_hash": "88370171544fc51ea5375047524d5956" }, "remix/app/api/utils/lopu/voice.test.ts": { - "mtime": 1788939901.1313126, + "mtime": 1788947732.5262737, "ast_hash": "1d5f719e579ae6403c6da7bc88e293a1", "semantic_hash": "1d5f719e579ae6403c6da7bc88e293a1" }, "remix/app/api/utils/lopu/voice.ts": { - "mtime": 1788939901.1316454, + "mtime": 1788947732.527274, "ast_hash": "4dd405e4fd92c35064738553d8d6651f", "semantic_hash": "4dd405e4fd92c35064738553d8d6651f" }, "remix/app/api/utils/messenger/lopuChats.test.ts": { - "mtime": 1788939901.1340523, + "mtime": 1788947732.5276182, "ast_hash": "ccfed9bfa5f515c083eb27a99f1d4790", "semantic_hash": "ccfed9bfa5f515c083eb27a99f1d4790" }, "remix/app/api/utils/messenger/lopuChats.ts": { - "mtime": 1788939901.1342313, + "mtime": 1788947732.5276182, "ast_hash": "4b8cace0246cb5bdbb655d11b407595c", "semantic_hash": "4b8cace0246cb5bdbb655d11b407595c" }, "remix/app/api/utils/settings/lopuChatDefaults.test.ts": { - "mtime": 1788939901.1677907, + "mtime": 1788947732.5415852, "ast_hash": "6afed21232e05f01a86552fb575feb26", "semantic_hash": "6afed21232e05f01a86552fb575feb26" }, "remix/app/api/utils/settings/lopuChatDefaults.ts": { - "mtime": 1788939901.1678834, + "mtime": 1788947732.5415852, "ast_hash": "d2193f5714e5169acdb837b8a62dd386", "semantic_hash": "d2193f5714e5169acdb837b8a62dd386" }, "remix/app/api/utils/settings/lopuChatDefaultsRoute.test.ts": { - "mtime": 1788939901.1680276, + "mtime": 1788947732.5415852, "ast_hash": "5c339713aaf88ed5335133c373149a01", "semantic_hash": "5c339713aaf88ed5335133c373149a01" }, "remix/app/api/utils/webpages/demos.ts": { - "mtime": 1788939901.1855378, + "mtime": 1788947732.5476372, "ast_hash": "b55f3184afa9ffd4b1d35429167d06bc", "semantic_hash": "b55f3184afa9ffd4b1d35429167d06bc" }, "remix/app/api/utils/webpages/suites.ts": { - "mtime": 1788939901.1875038, + "mtime": 1788947732.5483408, "ast_hash": "91afb2aecaac993837a905ff7bfab7de", "semantic_hash": "91afb2aecaac993837a905ff7bfab7de" }, "remix/app/components/Actions/ActionRunConfirm.tsx": { - "mtime": 1788939901.1910896, + "mtime": 1788947732.5496216, "ast_hash": "b7794f28d048c9e391ba78b34caebe45", "semantic_hash": "b7794f28d048c9e391ba78b34caebe45" }, "remix/app/components/Actions/useTtActionClicks.test.ts": { - "mtime": 1788939901.1917279, + "mtime": 1788947732.5496216, "ast_hash": "7221662b3ae34a3e0091466bc676a0c5", "semantic_hash": "7221662b3ae34a3e0091466bc676a0c5" }, "remix/app/components/Admin/LopuModelsEditor.tsx": { - "mtime": 1788939901.1960907, + "mtime": 1788947732.5512736, "ast_hash": "b94259f71db211430a09a50e255434e2", "semantic_hash": "b94259f71db211430a09a50e255434e2" }, "remix/app/components/Builder/DemoDetailPage.tsx": { - "mtime": 1788939901.2100327, + "mtime": 1788947732.5552776, "ast_hash": "6dced6086a978ad1cdc4b8cf72f32d42", "semantic_hash": "6dced6086a978ad1cdc4b8cf72f32d42" }, "remix/app/components/Builder/DemoLibraryPage.tsx": { - "mtime": 1788939901.2102818, + "mtime": 1788947732.5552776, "ast_hash": "285194ba1f5c1c156105ee66a023dca9", "semantic_hash": "285194ba1f5c1c156105ee66a023dca9" }, "remix/app/components/Builder/installSuite.ts": { - "mtime": 1788939901.2137792, + "mtime": 1788947732.5562737, "ast_hash": "dd5df3327c96ba521adcd68d0dc45b58", "semantic_hash": "dd5df3327c96ba521adcd68d0dc45b58" }, "remix/app/components/Builder/liveComponent.tsx": { - "mtime": 1788939901.214226, + "mtime": 1788947732.5562737, "ast_hash": "7675c16855df014c353d561d8588183c", "semantic_hash": "7675c16855df014c353d561d8588183c" }, "remix/app/components/Builder/webpageRuntime.test.ts": { - "mtime": 1788939901.2156675, + "mtime": 1788947732.5572736, "ast_hash": "a0091f1a942c8b6f31fafec8e038e3ee", "semantic_hash": "a0091f1a942c8b6f31fafec8e038e3ee" }, "remix/app/components/Builder/webpageRuntime.tsx": { - "mtime": 1788939901.2158306, + "mtime": 1788947732.5572736, "ast_hash": "a5203801487b044b7e30c48c0c44f2e9", "semantic_hash": "a5203801487b044b7e30c48c0c44f2e9" }, "remix/app/components/Kinds/HtmlThingRenderer.test.ts": { - "mtime": 1788939901.2475913, + "mtime": 1788947732.568182, "ast_hash": "ff68513d8a35a6cb755dc2dda47238d9", "semantic_hash": "ff68513d8a35a6cb755dc2dda47238d9" }, "remix/app/components/Lopu/LopuActivityBadge.tsx": { - "mtime": 1788939901.251101, + "mtime": 1788947732.5701847, "ast_hash": "99db3bbdca9d32efe6afab7d5cecb1ef", "semantic_hash": "99db3bbdca9d32efe6afab7d5cecb1ef" }, "remix/app/components/Lopu/LopuChatView.tsx": { - "mtime": 1788939901.2518873, + "mtime": 1788947732.5703382, "ast_hash": "6f03e393aa839a1c5413ee30641fb10c", "semantic_hash": "6f03e393aa839a1c5413ee30641fb10c" }, "remix/app/components/Lopu/LopuComposer.tsx": { - "mtime": 1788939901.252105, + "mtime": 1788947732.5703382, "ast_hash": "8a170e4c0129f224fb34536ab5aea52d", "semantic_hash": "8a170e4c0129f224fb34536ab5aea52d" }, "remix/app/components/Lopu/LopuHost.tsx": { - "mtime": 1788939901.2537453, + "mtime": 1788947732.5703382, "ast_hash": "0e5cf4221a372e80251b0f3713dc1b88", "semantic_hash": "0e5cf4221a372e80251b0f3713dc1b88" }, "remix/app/components/Lopu/LopuLivePreview.tsx": { - "mtime": 1788939901.254201, + "mtime": 1788947732.5703382, "ast_hash": "ed883a68f6996fc4b56dfdacbdd66cc2", "semantic_hash": "ed883a68f6996fc4b56dfdacbdd66cc2" }, "remix/app/components/Lopu/LopuMarkdown.tsx": { - "mtime": 1788939901.254653, + "mtime": 1788947732.5703382, "ast_hash": "adac1df0a39e5d8ecede8b4057b5a3d2", "semantic_hash": "adac1df0a39e5d8ecede8b4057b5a3d2" }, "remix/app/components/Lopu/LopuModelPicker.tsx": { - "mtime": 1788939901.2551217, + "mtime": 1788947732.5703382, "ast_hash": "4176cde1d753d027ea0a09a288511cbf", "semantic_hash": "4176cde1d753d027ea0a09a288511cbf" }, "remix/app/components/Lopu/LopuNavButton.test.ts": { - "mtime": 1788939901.255309, + "mtime": 1788947732.5703382, "ast_hash": "636fe5e193b37ae912a75831a5fd7231", "semantic_hash": "636fe5e193b37ae912a75831a5fd7231" }, "remix/app/components/Lopu/LopuNavButton.tsx": { - "mtime": 1788939901.2554016, + "mtime": 1788947732.5703382, "ast_hash": "e66cda7dbe79825755f4dc17d00feb89", "semantic_hash": "e66cda7dbe79825755f4dc17d00feb89" }, "remix/app/components/Lopu/LopuPage.tsx": { - "mtime": 1788939901.2555308, + "mtime": 1788947732.5712736, "ast_hash": "f28a4c8401e061c45b0190ff8cc1cf0e", "semantic_hash": "f28a4c8401e061c45b0190ff8cc1cf0e" }, "remix/app/components/Lopu/LopuToolCard.tsx": { - "mtime": 1788939901.2557368, + "mtime": 1788947732.5712736, "ast_hash": "dc88308584aa3c275bd90015f08341f2", "semantic_hash": "dc88308584aa3c275bd90015f08341f2" }, "remix/app/components/Lopu/LopuVoiceChat.tsx": { - "mtime": 1788939901.255812, + "mtime": 1788947732.5712736, "ast_hash": "30ff42ac5c94752dc7460be1973d96dd", "semantic_hash": "30ff42ac5c94752dc7460be1973d96dd" }, "remix/app/components/Lopu/LopuVoiceControls.tsx": { - "mtime": 1788939901.2559807, + "mtime": 1788947732.5712736, "ast_hash": "18610efa1707f4c25513451a9099d2de", "semantic_hash": "18610efa1707f4c25513451a9099d2de" }, "remix/app/components/Lopu/lopuBuildBridge.test.ts": { - "mtime": 1788939901.2561252, + "mtime": 1788947732.5712736, "ast_hash": "0c754c10b56e2264d377cc65fbd376f9", "semantic_hash": "0c754c10b56e2264d377cc65fbd376f9" }, "remix/app/components/Lopu/lopuBuildBridge.ts": { - "mtime": 1788939901.2562547, + "mtime": 1788947732.5712736, "ast_hash": "4a060d95fcb03770d71ec8d36d0b7bb6", "semantic_hash": "4a060d95fcb03770d71ec8d36d0b7bb6" }, "remix/app/components/Lopu/lopuChatStore.test.ts": { - "mtime": 1788939901.2563627, + "mtime": 1788947732.5712736, "ast_hash": "f4f4849460264578c78b478cc184ff1d", "semantic_hash": "f4f4849460264578c78b478cc184ff1d" }, "remix/app/components/Lopu/lopuChatStore.ts": { - "mtime": 1788939901.2565324, + "mtime": 1788947732.5722735, "ast_hash": "5e4e1aabb75201374f63a764c33ec3ac", "semantic_hash": "5e4e1aabb75201374f63a764c33ec3ac" }, "remix/app/components/Lopu/lopuChatStream.test.ts": { - "mtime": 1788939901.2566226, + "mtime": 1788947732.5722735, "ast_hash": "722991bc0bcf50da57e37d846c5778c9", "semantic_hash": "722991bc0bcf50da57e37d846c5778c9" }, "remix/app/components/Lopu/lopuChatStream.ts": { - "mtime": 1788939901.2567692, + "mtime": 1788947732.5722735, "ast_hash": "fac3fa62b8384a9add1647a9ecd7cc43", "semantic_hash": "fac3fa62b8384a9add1647a9ecd7cc43" }, "remix/app/components/Lopu/lopuProviderCore.test.ts": { - "mtime": 1788939901.2571728, + "mtime": 1788947732.5722735, "ast_hash": "7e98446f20ba9b9ca076cbb2167eff79", "semantic_hash": "7e98446f20ba9b9ca076cbb2167eff79" }, "remix/app/components/Lopu/lopuProviderCore.ts": { - "mtime": 1788939901.2573931, + "mtime": 1788947732.5722735, "ast_hash": "dfa949507c494dc98a2d2dcfd7fcffd2", "semantic_hash": "dfa949507c494dc98a2d2dcfd7fcffd2" }, "remix/app/components/Lopu/lopuTheme.ts": { - "mtime": 1788939901.2575712, + "mtime": 1788947732.5722735, "ast_hash": "50c06ff853a4921d11d8101e1726fcc2", "semantic_hash": "50c06ff853a4921d11d8101e1726fcc2" }, "remix/app/components/Lopu/lopuTurnCore.test.ts": { - "mtime": 1788939901.2577112, + "mtime": 1788947732.5722735, "ast_hash": "3b8cbfb54e6b8e6ff6e222e94998ffcc", "semantic_hash": "3b8cbfb54e6b8e6ff6e222e94998ffcc" }, "remix/app/components/Lopu/lopuTurnCore.ts": { - "mtime": 1788939901.2579136, + "mtime": 1788947732.5722735, "ast_hash": "1303d7bb428a8ff5cdfa0d3e0de580c7", "semantic_hash": "1303d7bb428a8ff5cdfa0d3e0de580c7" }, "remix/app/components/Lopu/lopuVoiceRealtime.ts": { - "mtime": 1788939901.258504, + "mtime": 1788947732.5732734, "ast_hash": "a4897f58b23edcc2c3d5a0dd0e8f6859", "semantic_hash": "a4897f58b23edcc2c3d5a0dd0e8f6859" }, "remix/app/components/Lopu/useLopuChat.ts": { - "mtime": 1788939901.2598362, + "mtime": 1788947732.5732734, "ast_hash": "f26d9f7e2731a28b9b805910795ae3b5", "semantic_hash": "f26d9f7e2731a28b9b805910795ae3b5" }, "remix/app/components/Lopu/useLopuSettings.test.ts": { - "mtime": 1788939901.2607532, + "mtime": 1788947732.5732734, "ast_hash": "48abd307ad26f2eb598eaac0415fb96a", "semantic_hash": "48abd307ad26f2eb598eaac0415fb96a" }, "remix/app/components/Lopu/useLopuSettings.ts": { - "mtime": 1788939901.2609346, + "mtime": 1788947732.5732734, "ast_hash": "7a3559c092670c390d7fb4f247b1892e", "semantic_hash": "7a3559c092670c390d7fb4f247b1892e" }, "remix/app/components/Nav/lopuDrawerEntry.test.ts": { - "mtime": 1788939901.2757185, + "mtime": 1788947732.5782735, "ast_hash": "3cb691e62de7c9242e8d56c6c95dfac7", "semantic_hash": "3cb691e62de7c9242e8d56c6c95dfac7" }, "remix/app/components/Schemas/SchemaDetailPage.tsx": { - "mtime": 1788939901.2955313, + "mtime": 1788947732.5812733, "ast_hash": "cdcb2a89afe8234b081ffd995c050677", "semantic_hash": "cdcb2a89afe8234b081ffd995c050677" }, "remix/app/components/Settings/SecureVault.tsx": { - "mtime": 1788941168.8902576, + "mtime": 1788948107.3974938, "ast_hash": "1846d932743493e79fb60e31c3c6851a", "semantic_hash": "" }, "remix/app/routes/api/v1/admin/ai/models/_models.tsx": { - "mtime": 1788939901.360442, + "mtime": 1788947732.596949, "ast_hash": "f2313dbaed5919166402c901610fa993", "semantic_hash": "f2313dbaed5919166402c901610fa993" }, "remix/app/routes/api/v1/admin/webpages/seed-demos/_seed-demos.tsx": { - "mtime": 1788939901.3696315, + "mtime": 1788947732.5993044, "ast_hash": "ca11529ab0dca72c02e11ed897203891", "semantic_hash": "ca11529ab0dca72c02e11ed897203891" }, "remix/app/routes/api/v1/ai/models/_models.tsx": { - "mtime": 1788939901.3701172, + "mtime": 1788947732.599501, "ast_hash": "0d4d963ae16b6fa68129d4ce5a43257d", "semantic_hash": "0d4d963ae16b6fa68129d4ce5a43257d" }, "remix/app/routes/api/v1/lopu/chats/_chats.tsx": { - "mtime": 1788939901.416332, + "mtime": 1788947732.6091712, "ast_hash": "f95a81b6b97ccc4b44eaed771eae48af", "semantic_hash": "f95a81b6b97ccc4b44eaed771eae48af" }, "remix/app/routes/api/v1/lopu/chats/delete/_delete.tsx": { - "mtime": 1788939901.4164732, + "mtime": 1788947732.609395, "ast_hash": "0abdce3ad72e86d526341e2714ac1adc", "semantic_hash": "0abdce3ad72e86d526341e2714ac1adc" }, "remix/app/routes/api/v1/lopu/chats/reply/_reply.tsx": { - "mtime": 1788939901.4170732, + "mtime": 1788947732.609395, "ast_hash": "46a56a085a860d83433b5553f2e37c4a", "semantic_hash": "46a56a085a860d83433b5553f2e37c4a" }, "remix/app/routes/api/v1/lopu/chats/update/_update.tsx": { - "mtime": 1788939901.4175801, + "mtime": 1788947732.609395, "ast_hash": "462f81c9fd46248ddac26383c8ec190d", "semantic_hash": "462f81c9fd46248ddac26383c8ec190d" }, "remix/app/routes/api/v1/lopu/vault/_vault.tsx": { - "mtime": 1788939901.418112, + "mtime": 1788947732.609395, "ast_hash": "c13370aecefc87145418494834e94871", "semantic_hash": "c13370aecefc87145418494834e94871" }, "remix/app/routes/api/v1/lopu/voice/reply/_reply.tsx": { - "mtime": 1788939901.4182897, + "mtime": 1788947732.6100073, "ast_hash": "b74b6b99eaeb229f1ae2a853e4ce19e1", "semantic_hash": "b74b6b99eaeb229f1ae2a853e4ce19e1" }, "remix/app/routes/api/v1/lopu/voice/session/_session.tsx": { - "mtime": 1788939901.4184015, + "mtime": 1788947732.6100073, "ast_hash": "cce092504087a3585ba8e833fd6ea22d", "semantic_hash": "cce092504087a3585ba8e833fd6ea22d" }, "remix/app/routes/api/v1/settings/lopu-chat-defaults/_lopu-chat-defaults.tsx": { - "mtime": 1788939901.4286065, + "mtime": 1788947732.612701, "ast_hash": "9722a6d0839491cc22adfe416e18122f", "semantic_hash": "9722a6d0839491cc22adfe416e18122f" }, "remix/app/routes/api/v1/webpages/demos/_demos.tsx": { - "mtime": 1788939901.4433973, + "mtime": 1788947732.6184208, "ast_hash": "fad3707c64c0da766dde0c8fb5795548", "semantic_hash": "fad3707c64c0da766dde0c8fb5795548" }, "remix/app/routes/api/v1/webpages/suites/install/_install.tsx": { - "mtime": 1788939901.443733, + "mtime": 1788947732.6186283, "ast_hash": "bc642a4c462a96099521ec3a614ca943", "semantic_hash": "bc642a4c462a96099521ec3a614ca943" }, "remix/app/routes/builder-demo-detail.tsx": { - "mtime": 1788939901.4442918, + "mtime": 1788947732.6186283, "ast_hash": "b06c8bc2c6967ca914e594eaa9beeab0", "semantic_hash": "b06c8bc2c6967ca914e594eaa9beeab0" }, "remix/app/routes/builder-demos.tsx": { - "mtime": 1788939901.444357, + "mtime": 1788947732.6186283, "ast_hash": "d37c0f747faf551fd12a7171019ad324", "semantic_hash": "d37c0f747faf551fd12a7171019ad324" }, "remix/app/routes/lopu-voice.tsx": { - "mtime": 1788939901.4674284, + "mtime": 1788947732.624273, "ast_hash": "f13b63283ab2d64104d444f60e15efbf", "semantic_hash": "f13b63283ab2d64104d444f60e15efbf" }, "remix/app/routes/lopu.tsx": { - "mtime": 1788939901.46751, + "mtime": 1788947732.624273, "ast_hash": "122687ff63152e1d125e785a1c179b16", "semantic_hash": "122687ff63152e1d125e785a1c179b16" }, "remix/app/routes/schema-detail.tsx": { - "mtime": 1788939901.4691522, + "mtime": 1788947732.624273, "ast_hash": "ae2ea0d4e2fe58ee74f82fd771bc72d7", "semantic_hash": "ae2ea0d4e2fe58ee74f82fd771bc72d7" }, "remix/app/schemas/actionExpressions.test.ts": { - "mtime": 1788939901.4728646, + "mtime": 1788947732.626385, "ast_hash": "4e73ac225be7d749b24e162bd2ee82bd", "semantic_hash": "4e73ac225be7d749b24e162bd2ee82bd" }, "remix/app/schemas/actionExpressions.ts": { - "mtime": 1788939901.4730654, + "mtime": 1788947732.626385, "ast_hash": "f9c0a625438e719b46697e289d2c6bbe", "semantic_hash": "f9c0a625438e719b46697e289d2c6bbe" }, "remix/app/schemas/appSuites/index.ts": { - "mtime": 1788939901.4733467, + "mtime": 1788947732.626385, "ast_hash": "414e5143bae69405a895c8a38ee3c9d0", "semantic_hash": "414e5143bae69405a895c8a38ee3c9d0" }, "remix/app/schemas/appSuites/pokeworld.ts": { - "mtime": 1788939901.4735334, + "mtime": 1788947732.6268876, "ast_hash": "1b4a173684c059214e7784cb2f6ce3ff", "semantic_hash": "1b4a173684c059214e7784cb2f6ce3ff" }, "remix/app/schemas/appSuites/starsalign.ts": { - "mtime": 1788939901.4737518, + "mtime": 1788947732.6268876, "ast_hash": "5bbf37d64ac2236e30c92aaa56ba8604", "semantic_hash": "5bbf37d64ac2236e30c92aaa56ba8604" }, "remix/app/schemas/behaviourSuites.test.ts": { - "mtime": 1788939901.474076, + "mtime": 1788947732.6268876, "ast_hash": "55dad86499b2f3fc48272bbfdf5bc16d", "semantic_hash": "55dad86499b2f3fc48272bbfdf5bc16d" }, "remix/app/schemas/behaviourSuites.ts": { - "mtime": 1788939901.4742718, + "mtime": 1788947732.627273, "ast_hash": "5de88bfe8cadc8c3e19ceacfca8c9b49", "semantic_hash": "5de88bfe8cadc8c3e19ceacfca8c9b49" }, "remix/app/schemas/webpageDemos.test.ts": { - "mtime": 1788939901.479667, + "mtime": 1788947732.628273, "ast_hash": "9454cf1148fff1fd3e35c5409ea8914d", "semantic_hash": "9454cf1148fff1fd3e35c5409ea8914d" }, "remix/app/schemas/webpageDemos.ts": { - "mtime": 1788939901.479913, + "mtime": 1788947732.6292732, "ast_hash": "544764d417e08d76a33b79a907cfc926", "semantic_hash": "544764d417e08d76a33b79a907cfc926" }, "remix/app/utils/partialJson.test.ts": { - "mtime": 1788939901.4883764, + "mtime": 1788947732.632273, "ast_hash": "ca5629ff5b72882971f223ea8f8f3cb2", "semantic_hash": "ca5629ff5b72882971f223ea8f8f3cb2" }, "remix/app/utils/partialJson.ts": { - "mtime": 1788939901.4885914, + "mtime": 1788947732.632273, "ast_hash": "f2d16d4ae86cd2b04b90c7ae944513d2", "semantic_hash": "f2d16d4ae86cd2b04b90c7ae944513d2" }, "remix/scripts/verify-app-suites.mjs": { - "mtime": 1788939902.6462855, + "mtime": 1788947732.6772728, "ast_hash": "0bf63171833f68e053ba746c59c5da03", "semantic_hash": "0bf63171833f68e053ba746c59c5da03" }, "remix/scripts/verify-lopu.mjs": { - "mtime": 1788939902.6524916, + "mtime": 1788947732.6782727, "ast_hash": "614037ac3fc96e1a224709393b29727d", "semantic_hash": "614037ac3fc96e1a224709393b29727d" }, "PRs/578-builder-demo-library-app-suites-pokeworld-starsalign.md": { - "mtime": 1788939900.013613, + "mtime": 1788947732.1742764, "ast_hash": "a074837fd815800da328bb391bbd67fd", "semantic_hash": "a074837fd815800da328bb391bbd67fd" }, "PRs/592-claude-lopu-ai-chatbot-358029--lopu-ai-assistant.md": { - "mtime": 1788939900.0182219, + "mtime": 1788947732.1742764, "ast_hash": "c85ae482209996b3e45e99e440c06a8b", "semantic_hash": "c85ae482209996b3e45e99e440c06a8b" }, "iOS/Shared/WatchAttachments/ThingtimeWatchAttachmentTransfer.swift": { - "mtime": 1788939900.9667675, + "mtime": 1788947732.4835782, "ast_hash": "1489aabcd29b33880b96b6552b4a7fd2", "semantic_hash": "1489aabcd29b33880b96b6552b4a7fd2" }, "iOS/Shared/WatchNotifications/ThingtimeWatchApprovalHandoff.swift": { - "mtime": 1788939900.966913, + "mtime": 1788947732.4835782, "ast_hash": "175886ba85d53d0bc6a50087d3ac153c", "semantic_hash": "175886ba85d53d0bc6a50087d3ac153c" }, "iOS/Shared/WatchNotifications/ThingtimeWatchPayload.swift": { - "mtime": 1788939900.9673462, + "mtime": 1788947732.483718, "ast_hash": "72a0df90454778de28b811235546a3a1", "semantic_hash": "72a0df90454778de28b811235546a3a1" }, "iOS/Thingtime/Native/ThingtimeAppDelegate.swift": { - "mtime": 1788939900.9681432, + "mtime": 1788947732.4838178, "ast_hash": "5c50a68167a6ecf0f7f25bc0046c5d69", "semantic_hash": "5c50a68167a6ecf0f7f25bc0046c5d69" }, "iOS/Thingtime/Native/ThingtimeNativeNotifications.swift": { - "mtime": 1788939900.9683707, + "mtime": 1788947732.484117, "ast_hash": "b58483260e0f54a3220b1e9691add50f", "semantic_hash": "b58483260e0f54a3220b1e9691add50f" }, "iOS/Thingtime/Native/ThingtimeWatchAttachmentUploader.swift": { - "mtime": 1788939900.968631, + "mtime": 1788947732.484117, "ast_hash": "5d08ba7ccde5cc98b90f2bb0ef9fe8dd", "semantic_hash": "5d08ba7ccde5cc98b90f2bb0ef9fe8dd" }, "iOS/ThingtimeTests/ThingtimeWatchPayloadTests.swift": { - "mtime": 1788939900.9726372, + "mtime": 1788947732.4857883, "ast_hash": "6d18319a7b7d988f0a90546f5c6793d5", "semantic_hash": "6d18319a7b7d988f0a90546f5c6793d5" }, "iOS/ThingtimeWatch/App/ThingtimeWatchApp.swift": { - "mtime": 1788939900.973614, + "mtime": 1788947732.4860263, "ast_hash": "a032ec6e9079436affc7e06bd4677b7f", "semantic_hash": "a032ec6e9079436affc7e06bd4677b7f" }, "iOS/ThingtimeWatch/App/ThingtimeWatchAppDelegate.swift": { - "mtime": 1788939900.9737372, + "mtime": 1788947732.4861102, "ast_hash": "d83966869c7cc34d49dbebb9c8483e40", "semantic_hash": "d83966869c7cc34d49dbebb9c8483e40" }, "iOS/ThingtimeWatch/Attachments/ThingtimeWatchAudioRecorder.swift": { - "mtime": 1788939900.9740815, + "mtime": 1788947732.4861102, "ast_hash": "037472f228731cf9981311ba829cd002", "semantic_hash": "037472f228731cf9981311ba829cd002" }, "iOS/ThingtimeWatch/Networking/ThingtimeWatchAPIClient.swift": { - "mtime": 1788939900.9744587, + "mtime": 1788947732.4861102, "ast_hash": "7ee15a694af29acd10584096d8d42aa0", "semantic_hash": "7ee15a694af29acd10584096d8d42aa0" }, "iOS/ThingtimeWatch/Networking/ThingtimeWatchAccount.swift": { - "mtime": 1788939900.9750104, + "mtime": 1788947732.4864397, "ast_hash": "91016dbc8140b2a417f4bec3ffd600d8", "semantic_hash": "91016dbc8140b2a417f4bec3ffd600d8" }, "iOS/ThingtimeWatch/Notifications/ThingtimeWatchStore.swift": { - "mtime": 1788939900.975373, + "mtime": 1788947732.4864397, "ast_hash": "c82a5d8006ceb470573c798afe02317d", "semantic_hash": "c82a5d8006ceb470573c798afe02317d" }, "iOS/ThingtimeWatch/Views/ThingtimeWatchAttachmentView.swift": { - "mtime": 1788939900.9763935, + "mtime": 1788947732.4867918, "ast_hash": "a1457aeea2f99fe4aac4c93888a606da", "semantic_hash": "a1457aeea2f99fe4aac4c93888a606da" }, "iOS/ThingtimeWatch/Views/ThingtimeWatchConnectionSection.swift": { - "mtime": 1788939900.976714, + "mtime": 1788947732.48692, "ast_hash": "749313def0cb6694792b67671b2f3773", "semantic_hash": "749313def0cb6694792b67671b2f3773" }, "iOS/ThingtimeWatch/Views/ThingtimeWatchNotificationHistoryView.swift": { - "mtime": 1788939900.977003, + "mtime": 1788947732.48692, "ast_hash": "c3cc749f4bbb7ca4ed0538254a32e34d", "semantic_hash": "c3cc749f4bbb7ca4ed0538254a32e34d" }, "iOS/ThingtimeWatch/Views/ThingtimeWatchPairingOptions.swift": { - "mtime": 1788939900.9773684, + "mtime": 1788947732.48692, "ast_hash": "da2e67a7b3b27bc5d2c1d9c3f9bc84cb", "semantic_hash": "da2e67a7b3b27bc5d2c1d9c3f9bc84cb" }, "iOS/ThingtimeWatch/Views/ThingtimeWatchPairingSection.swift": { - "mtime": 1788939900.9775434, + "mtime": 1788947732.48692, "ast_hash": "878b9ad1cacc9e2d24cedc3d52577cf1", "semantic_hash": "878b9ad1cacc9e2d24cedc3d52577cf1" }, "iOS/ThingtimeWatch/Views/ThingtimeWatchRootView.swift": { - "mtime": 1788939900.9785159, + "mtime": 1788947732.48692, "ast_hash": "137f44b9c862070b3289cfbea073602a", "semantic_hash": "137f44b9c862070b3289cfbea073602a" }, "iOS/ThingtimeWatch/Views/ThingtimeWatchSavedRecordingsView.swift": { - "mtime": 1788939900.978751, + "mtime": 1788947732.48692, "ast_hash": "d52c9b643f35b9ae5ccc9109d457ca84", "semantic_hash": "d52c9b643f35b9ae5ccc9109d457ca84" }, "iOS/ThingtimeWatch/Views/ThingtimeWatchSettingsView.swift": { - "mtime": 1788939900.978966, + "mtime": 1788947732.48692, "ast_hash": "572698775f3ff165f45983a5e5c51d86", "semantic_hash": "572698775f3ff165f45983a5e5c51d86" }, "remix/app/api/utils/attachments/attachmentResponses.test.ts": { - "mtime": 1788939901.0779548, + "mtime": 1788947732.5123737, "ast_hash": "4440c06f624b1afb679b9891092fc84f", "semantic_hash": "4440c06f624b1afb679b9891092fc84f" }, "remix/app/api/utils/networkProbeAccess.ts": { - "mtime": 1788939901.162183, + "mtime": 1788947732.5392737, "ast_hash": "093c70b75a0fb2bb15aac9ba433a2823", "semantic_hash": "093c70b75a0fb2bb15aac9ba433a2823" }, "remix/app/api/utils/notifications/apns.ts": { - "mtime": 1788939901.1626716, + "mtime": 1788947732.5392737, "ast_hash": "ba34a4b743a6bfafd5e90a158deb6205", "semantic_hash": "ba34a4b743a6bfafd5e90a158deb6205" }, "remix/app/api/utils/notifications/notificationListOptions.test.ts": { - "mtime": 1788939901.1636524, + "mtime": 1788947732.5402014, "ast_hash": "03307479d5fc7213634249b1326de6c7", "semantic_hash": "03307479d5fc7213634249b1326de6c7" }, "remix/app/api/utils/notifications/pushDevices.test.ts": { - "mtime": 1788939901.1639109, + "mtime": 1788947732.5402737, "ast_hash": "2cd8bab6cdb04f35479eab264cb13e21", "semantic_hash": "2cd8bab6cdb04f35479eab264cb13e21" }, "remix/app/api/utils/notifications/pushDevices.ts": { - "mtime": 1788939901.164263, + "mtime": 1788947732.5402737, "ast_hash": "8aabf20f7657404a9486782d90af614f", "semantic_hash": "8aabf20f7657404a9486782d90af614f" }, "remix/app/api/utils/watch/watchPairing.ts": { - "mtime": 1788939901.1849797, + "mtime": 1788947732.5476372, "ast_hash": "6eb8711d34faaca13666847e5a12441d", "semantic_hash": "6eb8711d34faaca13666847e5a12441d" }, "remix/app/components/Builder/demoDetail.test.ts": { - "mtime": 1788939901.21239, + "mtime": 1788947732.5562737, "ast_hash": "edafd604205abe019a2b0ac1a823f5aa", "semantic_hash": "edafd604205abe019a2b0ac1a823f5aa" }, "remix/app/components/Builder/demoDetail.ts": { - "mtime": 1788939901.2125013, + "mtime": 1788947732.5562737, "ast_hash": "9def98a34c5d5a61817d24faebae3724", "semantic_hash": "9def98a34c5d5a61817d24faebae3724" }, "remix/app/components/Builder/editorJsHtml.test.ts": { - "mtime": 1788939901.2125776, + "mtime": 1788947732.5562737, "ast_hash": "4b23d138d1a39a1899b5845e6b3b2bdb", "semantic_hash": "4b23d138d1a39a1899b5845e6b3b2bdb" }, "remix/app/components/ComponentsLibrary/componentBrowseTypes.test.ts": { - "mtime": 1788939901.2200882, + "mtime": 1788947732.5590262, "ast_hash": "d22416030685108833535461bb5756c1", "semantic_hash": "d22416030685108833535461bb5756c1" }, "remix/app/components/Devices/WatchDeviceDetails.tsx": { - "mtime": 1788939901.2237272, + "mtime": 1788947732.5602736, "ast_hash": "2cd0af345e97763d53011dd84e6dff5f", "semantic_hash": "2cd0af345e97763d53011dd84e6dff5f" }, "remix/app/components/Editor/EditorHistoryControls.tsx": { - "mtime": 1788939901.2301147, + "mtime": 1788947732.5623264, "ast_hash": "34dd860004d55cd6b25b11f272d21e0e", "semantic_hash": "34dd860004d55cd6b25b11f272d21e0e" }, "remix/app/components/Editor/InlineStyle.ts": { - "mtime": 1788939901.2302778, + "mtime": 1788947732.5623264, "ast_hash": "b99761f2f7146231ad2e332ad41841cf", "semantic_hash": "b99761f2f7146231ad2e332ad41841cf" }, "remix/app/components/Editor/StyleDialog.ts": { - "mtime": 1788939901.23083, + "mtime": 1788947732.5623264, "ast_hash": "f1db281856a25119131d18959e44416f", "semantic_hash": "f1db281856a25119131d18959e44416f" }, "remix/app/components/Editor/editorBlockChrome.ts": { - "mtime": 1788939901.2318008, + "mtime": 1788947732.5623264, "ast_hash": "68c42a3da9a5d819d8587bdc2988596a", "semantic_hash": "68c42a3da9a5d819d8587bdc2988596a" }, "remix/app/components/Editor/editorDraftSnapshot.test.ts": { - "mtime": 1788939901.2322485, + "mtime": 1788947732.5623264, "ast_hash": "1f9934426df98b260b6611fd60e5dbb9", "semantic_hash": "1f9934426df98b260b6611fd60e5dbb9" }, "remix/app/components/Editor/editorDraftSnapshot.ts": { - "mtime": 1788939901.2324038, + "mtime": 1788947732.5623264, "ast_hash": "60aafbf3ce325f31de77675662bd6e1a", "semantic_hash": "60aafbf3ce325f31de77675662bd6e1a" }, "remix/app/components/Editor/editorHistory.test.ts": { - "mtime": 1788939901.2326536, + "mtime": 1788947732.5623264, "ast_hash": "2fe49d5f6ebdd2797f5792c688689603", "semantic_hash": "2fe49d5f6ebdd2797f5792c688689603" }, "remix/app/components/Editor/editorHistory.ts": { - "mtime": 1788939901.2329, + "mtime": 1788947732.5623264, "ast_hash": "42acbe4e12c2dc0d7d8e2c5b4cab2474", "semantic_hash": "42acbe4e12c2dc0d7d8e2c5b4cab2474" }, "remix/app/components/Editor/editorJsInlinePosition.ts": { - "mtime": 1788939901.233902, + "mtime": 1788947732.5632737, "ast_hash": "66e5f5e043ca93ac6dac9fa2aea10fd4", "semantic_hash": "66e5f5e043ca93ac6dac9fa2aea10fd4" }, "remix/app/components/Editor/editorOverlayLayout.test.ts": { - "mtime": 1788939901.2368302, + "mtime": 1788947732.5632737, "ast_hash": "5b3d03aeed3ed381038e09347c17c28f", "semantic_hash": "5b3d03aeed3ed381038e09347c17c28f" }, "remix/app/components/Editor/editorOverlayLayout.ts": { - "mtime": 1788939901.2374394, + "mtime": 1788947732.5632737, "ast_hash": "2055acf9ecfe13559419565f1ab8e1ae", "semantic_hash": "2055acf9ecfe13559419565f1ab8e1ae" }, "remix/app/components/Editor/editorStyleCarry.ts": { - "mtime": 1788939901.237548, + "mtime": 1788947732.5632737, "ast_hash": "dae039f253f954fdf7099ff14a203091", "semantic_hash": "dae039f253f954fdf7099ff14a203091" }, "remix/app/components/Editor/floatingEditorPanel.ts": { - "mtime": 1788939901.2377315, + "mtime": 1788947732.5632737, "ast_hash": "60b5b9947a803a33cd5ceae968bc4b86", "semantic_hash": "60b5b9947a803a33cd5ceae968bc4b86" }, "remix/app/components/Editor/sharedEditorContract.test.ts": { - "mtime": 1788939901.2383437, + "mtime": 1788947732.5642736, "ast_hash": "80bfa5180f8251eebf03e20aeaf6a2b4", "semantic_hash": "80bfa5180f8251eebf03e20aeaf6a2b4" }, "remix/app/components/Editor/styleColor.ts": { - "mtime": 1788939901.23843, + "mtime": 1788947732.5642736, "ast_hash": "d24fa63293c92ef3359171d65c955b8f", "semantic_hash": "d24fa63293c92ef3359171d65c955b8f" }, "remix/app/components/Editor/styleTokens.test.ts": { - "mtime": 1788939901.2385194, + "mtime": 1788947732.5642736, "ast_hash": "c61bbb50db5e6334afe543c239b559f3", "semantic_hash": "c61bbb50db5e6334afe543c239b559f3" }, "remix/app/components/Schemas/schemaBrowseTypes.test.ts": { - "mtime": 1788939901.2961645, + "mtime": 1788947732.5812733, "ast_hash": "b4fcbf747bfd032aa37d7e01eea7c0f5", "semantic_hash": "b4fcbf747bfd032aa37d7e01eea7c0f5" }, "remix/app/components/Subscriptions/TierFeatureComparison.tsx": { - "mtime": 1788939901.3135877, + "mtime": 1788947732.5846577, "ast_hash": "5045546e8331cc05b94da1b8774ec459", "semantic_hash": "5045546e8331cc05b94da1b8774ec459" }, "remix/app/components/Watch/WatchCodeField.tsx": { - "mtime": 1788939901.333213, + "mtime": 1788947732.5892735, "ast_hash": "5d97fe51d6ecda72b7be8b9850fdc4bf", "semantic_hash": "5d97fe51d6ecda72b7be8b9850fdc4bf" }, "remix/app/components/Watch/WatchPairingPage.tsx": { - "mtime": 1788939901.3333752, + "mtime": 1788947732.589969, "ast_hash": "8ee68b644ecaa10deb721592c0bcb40a", "semantic_hash": "8ee68b644ecaa10deb721592c0bcb40a" }, "remix/app/components/Watch/WatchPendingApprovals.tsx": { - "mtime": 1788939901.3335419, + "mtime": 1788947732.589969, "ast_hash": "c603e7ec9e9e19f62d68bb466ca191ea", "semantic_hash": "c603e7ec9e9e19f62d68bb466ca191ea" }, "remix/app/components/Watch/watchApprovalCapabilities.test.ts": { - "mtime": 1788939901.3336294, + "mtime": 1788947732.589969, "ast_hash": "327ac5f4de16d8da45a6e9b76900a802", "semantic_hash": "327ac5f4de16d8da45a6e9b76900a802" }, "remix/app/components/Watch/watchApprovalCapabilities.ts": { - "mtime": 1788939901.3337173, + "mtime": 1788947732.589969, "ast_hash": "2c280848ed7700905e1f0a74633d0c91", "semantic_hash": "2c280848ed7700905e1f0a74633d0c91" }, "remix/app/components/Watch/watchCodeInput.test.ts": { - "mtime": 1788939901.3337986, + "mtime": 1788947732.589969, "ast_hash": "bc1efa7e80220d8f26db79bbe76b10e9", "semantic_hash": "bc1efa7e80220d8f26db79bbe76b10e9" }, "remix/app/components/Watch/watchCodeInputCore.ts": { - "mtime": 1788939901.333881, + "mtime": 1788947732.589969, "ast_hash": "2b88c335c7df620943ccee27a6573b9a", "semantic_hash": "2b88c335c7df620943ccee27a6573b9a" }, "remix/app/hooks/localCache.test.ts": { - "mtime": 1788939901.3492537, + "mtime": 1788947732.594654, "ast_hash": "4c2c5a76cb12c49458f458cc113568c8", "semantic_hash": "4c2c5a76cb12c49458f458cc113568c8" }, "remix/app/routes/api/v1/notifications/_notifications.test.ts": { - "mtime": 1788939901.425021, + "mtime": 1788947732.6108813, "ast_hash": "9e63d0500216d53a3d9890ffe9fac233", "semantic_hash": "9e63d0500216d53a3d9890ffe9fac233" }, "remix/app/routes/api/v1/notifications/devices/_devices.tsx": { - "mtime": 1788939901.4252884, + "mtime": 1788947732.6111343, "ast_hash": "f82ae13b3572764cefdb91ebaf2a4956", "semantic_hash": "f82ae13b3572764cefdb91ebaf2a4956" }, "remix/app/routes/api/v1/watch/pairing/_pairing.tsx": { - "mtime": 1788939901.4424877, + "mtime": 1788947732.6181524, "ast_hash": "f311f0630b3fa84ae8f78f6daed64e25", "semantic_hash": "f311f0630b3fa84ae8f78f6daed64e25" }, "remix/app/routes/api/v1/watch/sync/_sync.tsx": { - "mtime": 1788939901.4428692, + "mtime": 1788947732.6181524, "ast_hash": "4c607f06514c7c8c4e79750d2c52041c", "semantic_hash": "4c607f06514c7c8c4e79750d2c52041c" }, "remix/app/routes/api/v1/watch/things/_things.tsx": { - "mtime": 1788939901.4430828, + "mtime": 1788947732.6181524, "ast_hash": "2bb28b79632c07bdbf7fb864e6d7b940", "semantic_hash": "2bb28b79632c07bdbf7fb864e6d7b940" }, "remix/app/routes/watch.pair.tsx": { - "mtime": 1788939901.4721365, + "mtime": 1788947732.625273, "ast_hash": "4df76eee1780a4573512cf0fd4179ba0", "semantic_hash": "4df76eee1780a4573512cf0fd4179ba0" }, "remix/app/tests/api/healthResponse.test.ts": { - "mtime": 1788939901.4818287, + "mtime": 1788947732.631273, "ast_hash": "dfe81c2cc27545ded129a1f9891957ee", "semantic_hash": "dfe81c2cc27545ded129a1f9891957ee" }, "remix/app/tests/api/healthResponse.ts": { - "mtime": 1788939901.4819002, + "mtime": 1788947732.631273, "ast_hash": "27cd696a816c67b84e5574859c9bd3dc", "semantic_hash": "27cd696a816c67b84e5574859c9bd3dc" }, "remix/app/tests/api/watchPairingTests.ts": { - "mtime": 1788939901.4820476, + "mtime": 1788947732.631273, "ast_hash": "65ea478ee0babe3979f5607c29180566", "semantic_hash": "65ea478ee0babe3979f5607c29180566" }, "remix/app/tests/api/watchQuickApprovalTests.ts": { - "mtime": 1788939901.4823582, + "mtime": 1788947732.631273, "ast_hash": "0e19a1e7e8c9d70ac6a9e7b3ad89bb0e", "semantic_hash": "0e19a1e7e8c9d70ac6a9e7b3ad89bb0e" }, "remix/ecosystem.rich-text-qa.config.js": { - "mtime": 1788939901.490638, + "mtime": 1788947732.632273, "ast_hash": "45808bba51cde5cf45f543378a07789c", "semantic_hash": "45808bba51cde5cf45f543378a07789c" }, "remix/tests/editor-rich-text.tsx": { - "mtime": 1788939902.6686807, + "mtime": 1788947732.6817832, "ast_hash": "f22da882cbaa8393fe1513440ac7e036", "semantic_hash": "f22da882cbaa8393fe1513440ac7e036" }, ".github/workflows/ios-testflight.yml": { - "mtime": 1788939899.7020974, + "mtime": 1788947732.074611, "ast_hash": "ec56e116b81416220769180e51043cbf", "semantic_hash": "ec56e116b81416220769180e51043cbf" }, "PRs/291-claude-schema-drawer-components-lib-441b3b--components-library-1000-component-catalog.md": { - "mtime": 1788939900.0001152, + "mtime": 1788947732.1702764, "ast_hash": "9f3539b55cafa8f20fc9f868dc3105dd", "semantic_hash": "9f3539b55cafa8f20fc9f868dc3105dd" }, "PRs/596-codex-watch-app--add-native-apple-watch-notifications.md": { - "mtime": 1788939900.0189438, + "mtime": 1788947732.1742764, "ast_hash": "c4847b65de2256625dbd65dd20bfe4ab", "semantic_hash": "c4847b65de2256625dbd65dd20bfe4ab" }, "PRs/612-claude-builder-live-detail-pages--every-card-opens-a-dedicated-live-page.md": { - "mtime": 1788939900.02022, + "mtime": 1788947732.1752765, "ast_hash": "ca7e1062c2e1de89bda5dd12faa9c4ef", "semantic_hash": "ca7e1062c2e1de89bda5dd12faa9c4ef" }, "PRs/635-editor-rich-text-controls-complete-editorjs-rich-text-styling.md": { - "mtime": 1788939900.0212753, + "mtime": 1788947732.1752765, "ast_hash": "aa1a87d9d939c918d3e58cca25dcdeee", "semantic_hash": "aa1a87d9d939c918d3e58cca25dcdeee" }, "PRs/656-codex-passkey-ios-release-restore-native-passkeys-with-watch-companion.md": { - "mtime": 1788939900.0236657, + "mtime": 1788947732.1752765, "ast_hash": "5c229b035891f9ce5b868a4fe9c08101", "semantic_hash": "5c229b035891f9ce5b868a4fe9c08101" }, "PRs/664-speed-test-tier-allowances-account-tier-speed-test-allowances-and-feature-comparison.md": { - "mtime": 1788939900.024459, + "mtime": 1788947732.1762764, "ast_hash": "ce37198df4c0743b498f1ee84c39df5e", "semantic_hash": "ce37198df4c0743b498f1ee84c39df5e" }, "remix/tests/editor-rich-text.html": { - "mtime": 1788939902.6672244, + "mtime": 1788947732.6816258, "ast_hash": "6f42ee6e03d9bd63492669bf7f37005a", "semantic_hash": "6f42ee6e03d9bd63492669bf7f37005a" }, "remix/app/components/Watch/watchPendingCore.test.ts": { - "mtime": 1788939901.3339543, + "mtime": 1788947732.589969, "ast_hash": "3275c6198437271e3da1c9176c46afaf", "semantic_hash": "3275c6198437271e3da1c9176c46afaf" }, "remix/app/components/Watch/watchPendingCore.ts": { - "mtime": 1788939901.3340342, + "mtime": 1788947732.589969, "ast_hash": "09d9ad4e1aa740574c9a5f5ab9392bc9", "semantic_hash": "09d9ad4e1aa740574c9a5f5ab9392bc9" }, "PRs/668-codex-lopu-builder-main-release-integrate-assistant-builder-rich-text.md": { - "mtime": 1788939900.0247524, + "mtime": 1788947732.1762764, "ast_hash": "874d323f91720166a48c8147bc3d90c8", "semantic_hash": "874d323f91720166a48c8147bc3d90c8" }, "remix/app/components/Editor/StyleTune.test.ts": { - "mtime": 1788939901.2309368, + "mtime": 1788947732.5623264, "ast_hash": "931cc3c1ccd8e5d90f09f6d1ad95dde5", "semantic_hash": "931cc3c1ccd8e5d90f09f6d1ad95dde5" }, "remix/app/api/utils/ai/pricing.test.ts": { - "mtime": 1788939901.06917, + "mtime": 1788947732.5094469, "ast_hash": "4d2bb9f46ad2e81aca25736dc8833afd", "semantic_hash": "4d2bb9f46ad2e81aca25736dc8833afd" }, "remix/app/api/utils/ai/pricing.ts": { - "mtime": 1788939901.0692792, + "mtime": 1788947732.5094469, "ast_hash": "d3becfcba16d7b4cb9d1f5f3d1c74854", "semantic_hash": "d3becfcba16d7b4cb9d1f5f3d1c74854" }, "remix/app/api/utils/groups/groups.ts": { - "mtime": 1788939901.1162395, + "mtime": 1788947732.523274, "ast_hash": "e4ff6f80faad82b45f1c9acc279c2b6a", "semantic_hash": "e4ff6f80faad82b45f1c9acc279c2b6a" }, "remix/app/api/utils/lopu/access.test.ts": { - "mtime": 1788939901.1167336, + "mtime": 1788947732.523274, "ast_hash": "c0fed283b0e45eb3d30fd54d5f73c845", "semantic_hash": "c0fed283b0e45eb3d30fd54d5f73c845" }, "remix/app/api/utils/lopu/access.ts": { - "mtime": 1788939901.116881, + "mtime": 1788947732.5239935, "ast_hash": "40c772754295d744fff9089ea3f8b03e", "semantic_hash": "40c772754295d744fff9089ea3f8b03e" }, "remix/app/api/utils/lopu/accessCore.ts": { - "mtime": 1788939901.1170187, + "mtime": 1788947732.5239935, "ast_hash": "578b7808cc2569fc7fecd5c514a3c690", "semantic_hash": "578b7808cc2569fc7fecd5c514a3c690" }, "remix/app/api/utils/lopu/accountRoutes.test.ts": { - "mtime": 1788939901.1200125, + "mtime": 1788947732.5239935, "ast_hash": "7a9d38bcc4e04c20cd08f443ad7b5550", "semantic_hash": "7a9d38bcc4e04c20cd08f443ad7b5550" }, "remix/app/api/utils/lopu/accounting.test.ts": { - "mtime": 1788939901.1203341, + "mtime": 1788947732.5239935, "ast_hash": "2d910599c489226928819e7b6c107f08", "semantic_hash": "2d910599c489226928819e7b6c107f08" }, "remix/app/api/utils/lopu/accounting.ts": { - "mtime": 1788939901.1210783, + "mtime": 1788947732.5242739, "ast_hash": "3463888cd4e39097910e4b271eb04d5e", "semantic_hash": "3463888cd4e39097910e4b271eb04d5e" }, "remix/app/api/utils/lopu/accountingMemory.testutil.ts": { - "mtime": 1788939901.1219654, + "mtime": 1788947732.5242739, "ast_hash": "a6dcfde316ea6a609734f488bf689f5b", "semantic_hash": "a6dcfde316ea6a609734f488bf689f5b" }, "remix/app/api/utils/settings/lopuAccess.test.ts": { - "mtime": 1788939901.1669884, + "mtime": 1788947732.5412738, "ast_hash": "f195244084101280527e2831feedda0c", "semantic_hash": "f195244084101280527e2831feedda0c" }, "remix/app/api/utils/settings/lopuAccess.ts": { - "mtime": 1788939901.1673176, + "mtime": 1788947732.5415852, "ast_hash": "2d478cb09ec681d19b9a99988d52e80d", "semantic_hash": "2d478cb09ec681d19b9a99988d52e80d" }, "remix/app/api/utils/settings/lopuAccessRoute.test.ts": { - "mtime": 1788939901.1676702, + "mtime": 1788947732.5415852, "ast_hash": "83c52e23a995d2d6f9ca2f736bd1070f", "semantic_hash": "83c52e23a995d2d6f9ca2f736bd1070f" }, "remix/app/api/utils/subspaces/gate.ts": { - "mtime": 1788939901.172472, + "mtime": 1788947732.5432737, "ast_hash": "2f49fccb96b20abb40e8a5e23965ad66", "semantic_hash": "2f49fccb96b20abb40e8a5e23965ad66" }, "remix/app/api/utils/subspaces/subspaceCore.test.ts": { - "mtime": 1788939901.1726608, + "mtime": 1788947732.5432737, "ast_hash": "d7ab1d53eda1480f7ba88b0c6cdfe2a7", "semantic_hash": "d7ab1d53eda1480f7ba88b0c6cdfe2a7" }, "remix/app/api/utils/subspaces/subspaceCore.ts": { - "mtime": 1788939901.1729712, + "mtime": 1788947732.5432737, "ast_hash": "6b6477781634899aa10e2c04b516d3e9", "semantic_hash": "6b6477781634899aa10e2c04b516d3e9" }, "remix/app/api/utils/subspaces/subspaces.ts": { - "mtime": 1788939901.1735544, + "mtime": 1788947732.5432737, "ast_hash": "8d02fd19bafffa30c53d0f6eae9a0521", "semantic_hash": "8d02fd19bafffa30c53d0f6eae9a0521" }, "remix/app/api/utils/things/updown.ts": { - "mtime": 1788939901.180614, + "mtime": 1788947732.5462737, "ast_hash": "d3cda9334c8edf27ec6275e288bf2adc", "semantic_hash": "d3cda9334c8edf27ec6275e288bf2adc" }, "remix/app/api/utils/things/updownCore.test.ts": { - "mtime": 1788939901.180828, + "mtime": 1788947732.5462737, "ast_hash": "21a2e0bce9b5137e0ca800ca9f58dbfb", "semantic_hash": "21a2e0bce9b5137e0ca800ca9f58dbfb" }, "remix/app/api/utils/things/updownCore.ts": { - "mtime": 1788939901.1822846, + "mtime": 1788947732.5462737, "ast_hash": "52db1a5e8b9eea0452233ec32462c873", "semantic_hash": "52db1a5e8b9eea0452233ec32462c873" }, "remix/app/components/Admin/LopuAccountsAdmin.tsx": { - "mtime": 1788939901.1957688, + "mtime": 1788947732.5512736, "ast_hash": "c7346e72455d610419de44b77c3bdf1c", "semantic_hash": "c7346e72455d610419de44b77c3bdf1c" }, "remix/app/components/Feed/CustomAudienceModal.tsx": { - "mtime": 1788939901.240286, + "mtime": 1788947732.5652814, "ast_hash": "4e950dba914c03fc2e222f8f0a8e7a62", "semantic_hash": "4e950dba914c03fc2e222f8f0a8e7a62" }, "remix/app/components/Feed/UpdownControl.tsx": { - "mtime": 1788939901.2432046, + "mtime": 1788947732.5662735, "ast_hash": "c736ef65958369ad4b67dbd4efef27ff", "semantic_hash": "c736ef65958369ad4b67dbd4efef27ff" }, "remix/app/components/Feed/audienceCancelContract.test.ts": { - "mtime": 1788939901.2442842, + "mtime": 1788947732.5662735, "ast_hash": "19ce6f08c3ddf210dce3be19b62a30ab", "semantic_hash": "19ce6f08c3ddf210dce3be19b62a30ab" }, "remix/app/components/Feed/hiddenLinkContract.test.ts": { - "mtime": 1788939901.245224, + "mtime": 1788947732.5672736, "ast_hash": "b70ca5dc3abd202a5ec299fbfd2ff9c5", "semantic_hash": "b70ca5dc3abd202a5ec299fbfd2ff9c5" }, "remix/app/components/Lopu/LopuBalanceChip.tsx": { - "mtime": 1788939901.2516656, + "mtime": 1788947732.5703382, "ast_hash": "f734e3ea7ff9324fef38e05832e7c63d", "semantic_hash": "f734e3ea7ff9324fef38e05832e7c63d" }, "remix/app/components/Lopu/LopuCreditsPanel.tsx": { - "mtime": 1788939901.2528486, + "mtime": 1788947732.5703382, "ast_hash": "39f2e6e9e8ca6a96a1cc15ed0e86b6ff", "semantic_hash": "39f2e6e9e8ca6a96a1cc15ed0e86b6ff" }, "remix/app/components/Lopu/LopuLockedState.tsx": { - "mtime": 1788939901.2544525, + "mtime": 1788947732.5703382, "ast_hash": "363064826cd78d3c4bfca9e7fe4fd350", "semantic_hash": "363064826cd78d3c4bfca9e7fe4fd350" }, "remix/app/components/Lopu/useLopuAccount.test.ts": { - "mtime": 1788939901.25896, + "mtime": 1788947732.5732734, "ast_hash": "1a81062e56e784dcdffae28a7c1f77e3", "semantic_hash": "1a81062e56e784dcdffae28a7c1f77e3" }, "remix/app/components/Lopu/useLopuAccount.ts": { - "mtime": 1788939901.2592301, + "mtime": 1788947732.5732734, "ast_hash": "e063cb41192e590a4bbc58f717ea3b16", "semantic_hash": "e063cb41192e590a4bbc58f717ea3b16" }, "remix/app/components/Subspaces/CreateSubspaceModal.tsx": { - "mtime": 1788939901.313788, + "mtime": 1788947732.5846577, "ast_hash": "f3e1c0333bfecd6db506d6a7ed05e0b6", "semantic_hash": "f3e1c0333bfecd6db506d6a7ed05e0b6" }, "remix/app/components/Subspaces/ModerationModals.tsx": { - "mtime": 1788939901.313939, + "mtime": 1788947732.5848029, "ast_hash": "925fcb47ca6b19d4f53870f5c79fb294", "semantic_hash": "925fcb47ca6b19d4f53870f5c79fb294" }, "remix/app/components/Subspaces/SubspaceCard.tsx": { - "mtime": 1788939901.3168392, + "mtime": 1788947732.5848029, "ast_hash": "8752dd4be42261b62dae1b5a1e84081a", "semantic_hash": "8752dd4be42261b62dae1b5a1e84081a" }, "remix/app/components/Subspaces/SubspaceModPage.tsx": { - "mtime": 1788939901.3171706, + "mtime": 1788947732.5848029, "ast_hash": "affa4a75b01d08131551f417a2dbd293", "semantic_hash": "affa4a75b01d08131551f417a2dbd293" }, "remix/app/components/Subspaces/SubspacePage.tsx": { - "mtime": 1788939901.3214028, + "mtime": 1788947732.5848029, "ast_hash": "3b771bcaaa83c0bafc013746b20481cc", "semantic_hash": "3b771bcaaa83c0bafc013746b20481cc" }, "remix/app/components/Subspaces/SubspacePreferencesSection.tsx": { - "mtime": 1788939901.3215947, + "mtime": 1788947732.5852735, "ast_hash": "67c1e4412f3b2cbdf1d07736c9d868d8", "semantic_hash": "67c1e4412f3b2cbdf1d07736c9d868d8" }, "remix/app/components/Subspaces/SubspacesDirectoryPage.tsx": { - "mtime": 1788939901.3217402, + "mtime": 1788947732.5852735, "ast_hash": "05dfaf2d33abfc4352f799f07c009e09", "semantic_hash": "05dfaf2d33abfc4352f799f07c009e09" }, "remix/app/components/Subspaces/moderationModalsCore.test.ts": { - "mtime": 1788939901.3218856, + "mtime": 1788947732.5852735, "ast_hash": "d14dfca10c0a2d60ce8ce64729e7a031", "semantic_hash": "d14dfca10c0a2d60ce8ce64729e7a031" }, "remix/app/components/Subspaces/moderationModalsCore.ts": { - "mtime": 1788939901.3220384, + "mtime": 1788947732.5852735, "ast_hash": "3a18dfbe40622d8dc41086ab1cb4da35", "semantic_hash": "3a18dfbe40622d8dc41086ab1cb4da35" }, "remix/app/components/Subspaces/subspaceTypes.test.ts": { - "mtime": 1788939901.3221214, + "mtime": 1788947732.5852735, "ast_hash": "6d4365b8d84377070fb645b1ebecf5ca", "semantic_hash": "6d4365b8d84377070fb645b1ebecf5ca" }, "remix/app/components/Subspaces/subspaceTypes.ts": { - "mtime": 1788939901.3222485, + "mtime": 1788947732.5852735, "ast_hash": "37c24f9bb56f86be6cca639164750740", "semantic_hash": "37c24f9bb56f86be6cca639164750740" }, "remix/app/components/Subspaces/useSubspacePrefs.ts": { - "mtime": 1788939901.3223317, + "mtime": 1788947732.5852735, "ast_hash": "857e04e93fb7061204fae2a658051b4f", "semantic_hash": "857e04e93fb7061204fae2a658051b4f" }, "remix/app/routes/api/v1/admin/lopu/accounts/_accounts.tsx": { - "mtime": 1788939901.3640785, + "mtime": 1788947732.5981116, "ast_hash": "9bb6c934f54a50679ff906501ff415f1", "semantic_hash": "9bb6c934f54a50679ff906501ff415f1" }, "remix/app/routes/api/v1/admin/lopu/credits/_credits.tsx": { - "mtime": 1788939901.3642619, + "mtime": 1788947732.5981116, "ast_hash": "e49ad32799fe9a81d72cf4d52d91e648", "semantic_hash": "e49ad32799fe9a81d72cf4d52d91e648" }, "remix/app/routes/api/v1/admin/users/lopu-access/_lopu-access.tsx": { - "mtime": 1788939901.3689272, + "mtime": 1788947732.599058, "ast_hash": "b0ccbd28cb25ebf45c2690d3a430debf", "semantic_hash": "b0ccbd28cb25ebf45c2690d3a430debf" }, "remix/app/routes/api/v1/get/_get.tsx": { - "mtime": 1788939901.4093754, + "mtime": 1788947732.6072738, "ast_hash": "a2d90aaffe289c070f857666f2271efe", "semantic_hash": "a2d90aaffe289c070f857666f2271efe" }, "remix/app/routes/api/v1/groups/_groups.tsx": { - "mtime": 1788939901.4095566, + "mtime": 1788947732.6072738, "ast_hash": "a34792c05fbd3d3a7c2fc025de9d8b46", "semantic_hash": "a34792c05fbd3d3a7c2fc025de9d8b46" }, "remix/app/routes/api/v1/groups/audience-sources/_audience-sources.tsx": { - "mtime": 1788939901.4096987, + "mtime": 1788947732.6077821, "ast_hash": "b47bdd6c23b2931dd078a4bf1c83878f", "semantic_hash": "b47bdd6c23b2931dd078a4bf1c83878f" }, "remix/app/routes/api/v1/lopu/account/_account.tsx": { - "mtime": 1788939901.415517, + "mtime": 1788947732.6090906, "ast_hash": "814c2a0a89b388d91f5e5708e036d2fc", "semantic_hash": "814c2a0a89b388d91f5e5708e036d2fc" }, "remix/app/routes/api/v1/lopu/account/history/_history.tsx": { - "mtime": 1788939901.4156494, + "mtime": 1788947732.6091712, "ast_hash": "13db604b0045a0b856a82e0302b58432", "semantic_hash": "13db604b0045a0b856a82e0302b58432" }, "remix/app/routes/api/v1/lopu/account/topup-request/_topup-request.tsx": { - "mtime": 1788939901.4161618, + "mtime": 1788947732.6091712, "ast_hash": "acdd297f982eee0bdfe21587d67a2f73", "semantic_hash": "acdd297f982eee0bdfe21587d67a2f73" }, "remix/app/routes/api/v1/settings/lopu-access/_lopu-access.tsx": { - "mtime": 1788939901.428416, + "mtime": 1788947732.612701, "ast_hash": "5d2c34d12ab3b688ad65f8680b67028a", "semantic_hash": "5d2c34d12ab3b688ad65f8680b67028a" }, "remix/app/routes/api/v1/subspaces/_subspaces.tsx": { - "mtime": 1788939901.42889, + "mtime": 1788947732.612701, "ast_hash": "9ef835b27ba60c382c22842da8e86cc8", "semantic_hash": "9ef835b27ba60c382c22842da8e86cc8" }, "remix/app/routes/api/v1/subspaces/delete/_delete.tsx": { - "mtime": 1788939901.4290233, + "mtime": 1788947732.6131043, "ast_hash": "3b12ed8cfdb13d6e978c66605267c67b", "semantic_hash": "3b12ed8cfdb13d6e978c66605267c67b" }, "remix/app/routes/api/v1/subspaces/feed/_feed.tsx": { - "mtime": 1788939901.4291437, + "mtime": 1788947732.6131043, "ast_hash": "a6a81171794664492294032adbc9f69b", "semantic_hash": "a6a81171794664492294032adbc9f69b" }, "remix/app/routes/api/v1/subspaces/get/_get.tsx": { - "mtime": 1788939901.4292676, + "mtime": 1788947732.6131043, "ast_hash": "f659c908f4a3d5d45d12e977f8b69094", "semantic_hash": "f659c908f4a3d5d45d12e977f8b69094" }, "remix/app/routes/api/v1/subspaces/join/_join.tsx": { - "mtime": 1788939901.4293954, + "mtime": 1788947732.6131043, "ast_hash": "d6836f94d3e703d20b412d86012e7dc2", "semantic_hash": "d6836f94d3e703d20b412d86012e7dc2" }, "remix/app/routes/api/v1/subspaces/leave/_leave.tsx": { - "mtime": 1788939901.4295127, + "mtime": 1788947732.6132731, "ast_hash": "631317f3d23c6153209010e72d273c35", "semantic_hash": "631317f3d23c6153209010e72d273c35" }, "remix/app/routes/api/v1/subspaces/members/_members.tsx": { - "mtime": 1788939901.4296343, + "mtime": 1788947732.6132731, "ast_hash": "04b153d7af89ba98282b273076c198c0", "semantic_hash": "04b153d7af89ba98282b273076c198c0" }, "remix/app/routes/api/v1/subspaces/moderate/_moderate.tsx": { - "mtime": 1788939901.4297712, + "mtime": 1788947732.6132731, "ast_hash": "95c0e82632e1ddae39d870bb9439bc06", "semantic_hash": "95c0e82632e1ddae39d870bb9439bc06" }, "remix/app/routes/api/v1/subspaces/modlog/_modlog.tsx": { - "mtime": 1788939901.4299088, + "mtime": 1788947732.6132731, "ast_hash": "3e09f7864012f3d252ea9bc56ae69bd8", "semantic_hash": "3e09f7864012f3d252ea9bc56ae69bd8" }, "remix/app/routes/api/v1/subspaces/report/_report.tsx": { - "mtime": 1788939901.4300292, + "mtime": 1788947732.6132731, "ast_hash": "f31a43b4f8a64baac7f83e63766d7972", "semantic_hash": "f31a43b4f8a64baac7f83e63766d7972" }, "remix/app/routes/api/v1/subspaces/reports/_reports.tsx": { - "mtime": 1788939901.4301715, + "mtime": 1788947732.6132731, "ast_hash": "fe24d3988df8ff341907ff30a95b2960", "semantic_hash": "fe24d3988df8ff341907ff30a95b2960" }, "remix/app/routes/api/v1/subspaces/transfer/_transfer.tsx": { - "mtime": 1788939901.430402, + "mtime": 1788947732.6132731, "ast_hash": "b6caa88083904a868a303ed4baa9e556", "semantic_hash": "b6caa88083904a868a303ed4baa9e556" }, "remix/app/routes/api/v1/subspaces/update/_update.tsx": { - "mtime": 1788939901.4305682, + "mtime": 1788947732.6132731, "ast_hash": "6fad7dfe8cb4936704067c5272d17bb8", "semantic_hash": "6fad7dfe8cb4936704067c5272d17bb8" }, "remix/app/routes/api/v1/things/updown/_updown.tsx": { - "mtime": 1788939901.4363267, + "mtime": 1788947732.6162732, "ast_hash": "2ea620ccb0d8212e1b28501943e882a0", "semantic_hash": "2ea620ccb0d8212e1b28501943e882a0" }, "remix/app/routes/subspace-mod.tsx": { - "mtime": 1788939901.4696753, + "mtime": 1788947732.624273, "ast_hash": "8f0a05b6d3fcd960e1d12f8ba27a792d", "semantic_hash": "8f0a05b6d3fcd960e1d12f8ba27a792d" }, "remix/app/routes/subspace.tsx": { - "mtime": 1788939901.469875, + "mtime": 1788947732.624273, "ast_hash": "af4ab6dd1ab5b1589f3085c265d64c92", "semantic_hash": "af4ab6dd1ab5b1589f3085c265d64c92" }, "remix/app/routes/subspaces.tsx": { - "mtime": 1788939901.4699502, + "mtime": 1788947732.625273, "ast_hash": "cae716ac27a81ceb1e5e0e2121589992", "semantic_hash": "cae716ac27a81ceb1e5e0e2121589992" }, "remix/app/schemas/acl.test.ts": { - "mtime": 1788939901.4726973, + "mtime": 1788947732.625273, "ast_hash": "8a8a8315efb603e10036c952f4f615f1", "semantic_hash": "8a8a8315efb603e10036c952f4f615f1" }, "remix/app/schemas/subspaceNotifications.test.ts": { - "mtime": 1788939901.4792552, + "mtime": 1788947732.628273, "ast_hash": "c2bd5877af78d3003d0788b673271451", "semantic_hash": "c2bd5877af78d3003d0788b673271451" }, "remix/scripts/verify-subspaces.mjs": { - "mtime": 1788939902.655638, + "mtime": 1788947732.6792727, "ast_hash": "060dcb95ee6602aeef0b097cab8b18c8", "semantic_hash": "060dcb95ee6602aeef0b097cab8b18c8" }, "PRs/613-claude-hidden-links-custom-audiences-reland--re-land-hidden-links-get-bridge-custom-audiences.md": { - "mtime": 1788939900.0203903, + "mtime": 1788947732.1752765, "ast_hash": "cc7f261b6b6137bde30b5eb8cee8a639", "semantic_hash": "cc7f261b6b6137bde30b5eb8cee8a639" }, "PRs/lopu-verified-credits-design.md": { - "mtime": 1788939900.0288618, + "mtime": 1788947732.1772764, "ast_hash": "66849e8ca623821da781258aeac72fae", "semantic_hash": "66849e8ca623821da781258aeac72fae" }, "PRs/subspaces-communities-and-updown-votes.md": { - "mtime": 1788939900.0302079, + "mtime": 1788947732.1772764, "ast_hash": "62d9783f17ddd601ef3824633b6dbeca", "semantic_hash": "62d9783f17ddd601ef3824633b6dbeca" }, "TODO/claude-todo/25-subspaces.md": { - "mtime": 1788939900.043019, + "mtime": 1788947732.1822762, "ast_hash": "88b751fd0c2553dd494c7c97fd7e86b5", "semantic_hash": "88b751fd0c2553dd494c7c97fd7e86b5" }, "remix/app/api/utils/webpages/hiddenPageContract.test.ts": { - "mtime": 1788939901.186145, + "mtime": 1788947732.5483408, "ast_hash": "b0b086e51b20b0583ef0f91c8db15cfb", "semantic_hash": "b0b086e51b20b0583ef0f91c8db15cfb" }, "remix/app/components/Sharing/ThingAudienceControl.tsx": { - "mtime": 1788939901.303594, + "mtime": 1788947732.5832734, "ast_hash": "3781eb68c600641bd96c1cad362aecdf", "semantic_hash": "3781eb68c600641bd96c1cad362aecdf" }, "remix/app/components/Sharing/audienceCore.test.ts": { - "mtime": 1788939901.3044345, + "mtime": 1788947732.5838966, "ast_hash": "4e5a51db105c37ecc1a55e7e78cf0ddc", "semantic_hash": "4e5a51db105c37ecc1a55e7e78cf0ddc" }, "remix/app/components/Sharing/audienceCore.ts": { - "mtime": 1788939901.3045142, + "mtime": 1788947732.5838966, "ast_hash": "2a0acd75025ba856bd1ed39b7af94615", "semantic_hash": "2a0acd75025ba856bd1ed39b7af94615" }, "macos/ThingtimeNode/Sources/ThingtimeNodeCore/NodeAboutInfo.swift": { - "mtime": 1788939900.9985878, + "mtime": 1788947732.4902742, "ast_hash": "d067ee3fd91b248801a8bc17115ab995", "semantic_hash": "d067ee3fd91b248801a8bc17115ab995" }, "macos/ThingtimeNode/Tests/ThingtimeNodeCoreTests/NodeAboutInfoTests.swift": { - "mtime": 1788939901.0241566, + "mtime": 1788947732.4923093, "ast_hash": "d74dd4b03f096e900932ed8248d7f33a", "semantic_hash": "d74dd4b03f096e900932ed8248d7f33a" }, "remix/app/components/Devices/localNodePermissions.test.ts": { - "mtime": 1788939901.2255576, + "mtime": 1788947732.5612736, "ast_hash": "49c54e7ef4ca19883276b59965ad407b", "semantic_hash": "49c54e7ef4ca19883276b59965ad407b" }, "remix/app/components/Devices/localNodePermissions.ts": { - "mtime": 1788939901.2256827, + "mtime": 1788947732.5612736, "ast_hash": "a87d3a9dbd739d7f98b1f31c6ace8f91", "semantic_hash": "a87d3a9dbd739d7f98b1f31c6ace8f91" }, "remix/app/components/Feed/customAudienceStacking.test.ts": { - "mtime": 1788939901.2443686, + "mtime": 1788947732.5662735, "ast_hash": "3ef34c6da8115a668c69843c9d507d44", "semantic_hash": "3ef34c6da8115a668c69843c9d507d44" }, "remix/app/components/Nav/Drawer/DesktopNodeControls.tsx": { - "mtime": 1788941746.290947, + "mtime": 1788948107.3974938, "ast_hash": "32e791d30d9db8f2646c3badd5930834", "semantic_hash": "" }, "PRs/682-desktop-node-ownership-controls-and-permissions.md": { - "mtime": 1788939900.025266, + "mtime": 1788947732.1762764, "ast_hash": "e9ebe30d7e4f28284d878cd08956efe2", "semantic_hash": "e9ebe30d7e4f28284d878cd08956efe2" }, "remix/app/api/utils/mongodb/indexAudit.test.ts": { - "mtime": 1788939901.1574297, + "mtime": 1788947732.5382738, "ast_hash": "821f5c4c3a07cca0805512113806debb", "semantic_hash": "821f5c4c3a07cca0805512113806debb" }, "remix/app/api/utils/mongodb/indexAudit.ts": { - "mtime": 1788939901.157611, + "mtime": 1788947732.5382738, "ast_hash": "10b2c63aa195077e54f61acdd6aea78e", "semantic_hash": "10b2c63aa195077e54f61acdd6aea78e" }, "docs/architecture/thing-index-consolidation.md": { - "mtime": 1788939900.0864394, + "mtime": 1788947732.1983404, "ast_hash": "e2066ad3e76d0eba53f1a2203427d3d7", "semantic_hash": "e2066ad3e76d0eba53f1a2203427d3d7" }, "remix/app/api/utils/migrations/relationshipKeys.test.ts": { - "mtime": 1788939901.147445, + "mtime": 1788947732.5362737, "ast_hash": "eea19760702b89e2b823bca081bc8558", "semantic_hash": "eea19760702b89e2b823bca081bc8558" }, "remix/app/api/utils/migrations/relationshipKeys.ts": { - "mtime": 1788939901.1479752, + "mtime": 1788947732.5362737, "ast_hash": "9233152b00fb712f0f8fe672ab4af03b", "semantic_hash": "9233152b00fb712f0f8fe672ab4af03b" }, "PRs/692-thing-index-consolidation-shared-plan-audit.md": { - "mtime": 1788939900.0274773, + "mtime": 1788947732.1762764, "ast_hash": "f487f590d07c358731ced7e16f464347", "semantic_hash": "f487f590d07c358731ced7e16f464347" }, "remix/app/api/utils/mongodb/relationshipIndexLayout.test.ts": { - "mtime": 1788939901.159978, + "mtime": 1788947732.5392737, "ast_hash": "e59ec2ad4ae988b21477c36193db0391", "semantic_hash": "e59ec2ad4ae988b21477c36193db0391" }, "remix/app/api/utils/mongodb/relationshipIndexLayout.ts": { - "mtime": 1788939901.160147, + "mtime": 1788947732.5392737, "ast_hash": "c109787ad578aac049dad9bb34125ba3", "semantic_hash": "c109787ad578aac049dad9bb34125ba3" }, "remix/app/api/utils/mongodb/relationshipLookup.ts": { - "mtime": 1788939901.160223, + "mtime": 1788947732.5392737, "ast_hash": "3f62d2d94369fb004954d93e640de971", "semantic_hash": "3f62d2d94369fb004954d93e640de971" }, "remix/app/api/utils/mongodb/indexLayoutActivation.test.ts": { - "mtime": 1788939901.1578698, + "mtime": 1788947732.5382738, "ast_hash": "0005a2cd222ceb00778b60073eb90485", "semantic_hash": "0005a2cd222ceb00778b60073eb90485" }, "remix/app/api/utils/mongodb/indexLayoutActivation.ts": { - "mtime": 1788939901.1579719, + "mtime": 1788947732.5382738, "ast_hash": "bcee12a67b66e16372be608beae0e66c", "semantic_hash": "bcee12a67b66e16372be608beae0e66c" }, "remix/app/api/utils/mongodb/legacyThingLayout.test.ts": { - "mtime": 1788939901.1581163, + "mtime": 1788947732.5382738, "ast_hash": "f0ca979920b32e08d81fbe06daed0bcc", "semantic_hash": "f0ca979920b32e08d81fbe06daed0bcc" }, "remix/app/api/utils/mongodb/legacyThingLayout.ts": { - "mtime": 1788939901.1582568, + "mtime": 1788947732.5382738, "ast_hash": "2fc577ea9631b731ef474cc94e8822d9", "semantic_hash": "2fc577ea9631b731ef474cc94e8822d9" }, "remix/scripts/verify-poll-unique-keys.ts": { - "mtime": 1788939902.6546228, + "mtime": 1788947732.6782727, "ast_hash": "f972a38b8b70a9927bf86d929fd5d4c9", "semantic_hash": "f972a38b8b70a9927bf86d929fd5d4c9" }, "remix/app/components/Feed/postComposerPaste.test.ts": { - "mtime": 1788939901.245469, + "mtime": 1788948107.3964937, "ast_hash": "bee385194727123b3caa8ba32fd40f51", "semantic_hash": "bee385194727123b3caa8ba32fd40f51" }, "remix/app/api/utils/notifications/recordMessage.test.ts": { - "mtime": 1788943126.437697, + "mtime": 1788948107.3954937, "ast_hash": "8a8a32da759eafb37dd55b55fe16040a", "semantic_hash": "" }, "remix/app/api/utils/notifications/recordMessage.ts": { - "mtime": 1788943126.4380012, + "mtime": 1788948107.3954937, "ast_hash": "ae22e88d8d72cf7f2ad77f51912f6116", "semantic_hash": "" }, "remix/app/components/Lopu/notificationHistory.client.ts": { - "mtime": 1788943126.4388704, + "mtime": 1788948107.3974938, "ast_hash": "8fed3e8235456f6ccc1318d8c57379c9", "semantic_hash": "" }, "remix/app/components/Lopu/notificationHistory.test.ts": { - "mtime": 1788943126.4391108, + "mtime": 1788948107.3974938, "ast_hash": "355beb6ab2250e5128a5548ea84b7d5a", "semantic_hash": "" }, "remix/app/routes/api/v1/notifications/record/_record.tsx": { - "mtime": 1788943126.455132, + "mtime": 1788948107.4014938, "ast_hash": "26203c97f4a4e5573a030a5633591b73", "semantic_hash": "" }, "PRs/705-codex-system-notification-history-save-system-events-and-retain-user-history.md": { - "mtime": 1788943126.1508038, + "mtime": 1788948107.3394942, "ast_hash": "f684262398f9a4ce0237e910b9180870", "semantic_hash": "" }, "PRs/662-codex-commander-emoji-paste-recovery-picker-overflow.md": { - "mtime": 1788939900.0243146, + "mtime": 1788948107.3394942, "ast_hash": "a243a34752eaa1f2f1bb185cf65e6c75", "semantic_hash": "" }, "remix/app/components/Devices/PermissionRecoveryControls.tsx": { - "mtime": 1788941746.290601, + "mtime": 1788948107.3964937, "ast_hash": "a80ddf066bbecb159a47bc5efaca32c8", "semantic_hash": "" }, "remix/app/api/utils/auth/vaultPasskey.test.ts": { - "mtime": 1788941202.7525282, + "mtime": 1788948107.3944938, "ast_hash": "5790edf0bd7b7a3d6643d7ad5b25d0de", "semantic_hash": "" }, "remix/app/components/Settings/VaultReveal.tsx": { - "mtime": 1788941441.3485253, + "mtime": 1788948107.3974938, "ast_hash": "38dd376fc9629155edbda4c0ec34ab69", "semantic_hash": "" }, "remix/app/routes/api/v1/vault/reveal/_reveal.tsx": { - "mtime": 1788941202.7131855, + "mtime": 1788948107.4028468, "ast_hash": "50c00526e56df6960771f25aec63a243", "semantic_hash": "" }, "remix/app/routes/api/v1/vault/reveal/reveal.test.ts": { - "mtime": 1788941202.7399035, + "mtime": 1788948107.4029338, "ast_hash": "ed26649b5178ddf405f69c2a8927f445", "semantic_hash": "" + }, + "remix/app/api/utils/meta/socialCard.test.ts": { + "mtime": 1788947732.5291188, + "ast_hash": "f145b01bdd0961d585a58f58688229d8", + "semantic_hash": "" + }, + "remix/app/api/utils/meta/socialCard.ts": { + "mtime": 1788947732.5291188, + "ast_hash": "632a8c6620925324f72e8da77d1ff8f1", + "semantic_hash": "" + }, + "remix/app/api/utils/meta/socialCardFontData.ts": { + "mtime": 1788947732.5342739, + "ast_hash": "b05392de523e6cf39e8b5f5e0bda5ad7", + "semantic_hash": "" + }, + "remix/app/api/utils/meta/socialPreview.test.ts": { + "mtime": 1788947732.5342739, + "ast_hash": "22250e11c7e342809a9fa50d9039556f", + "semantic_hash": "" + }, + "remix/app/api/utils/meta/socialPreview.ts": { + "mtime": 1788947732.5342739, + "ast_hash": "dab17694e6232e94312bb558febbf80c", + "semantic_hash": "" + }, + "remix/scripts/generate-social-card-font.mjs": { + "mtime": 1788947732.6762726, + "ast_hash": "9af303b505a1d686292da2936d252011", + "semantic_hash": "" + }, + "PRs/607-codex-rich-link-previews--rich-route-aware-thingtime-link-previews.md": { + "mtime": 1788947732.1742764, + "ast_hash": "a2430f059c0530f74302c7730959a1ae", + "semantic_hash": "" + }, + "remix/app/api/utils/meta/LICENSE-Liberation.txt": { + "mtime": 1788947732.5282738, + "ast_hash": "e697e008a59a314532b75aa82e4ce758", + "semantic_hash": "" } } \ No newline at end of file diff --git a/graphify-out/snapshots/v1/96364f533539f7e0a309f8170f65e72edfa29a2a8670c1e5ac758257ff7c8372/7e6b7dbc2c48b212ec1c9e897971a814765e541a14f737ee90d1ba2cf1a6fb39/snapshot.json b/graphify-out/snapshots/v1/96364f533539f7e0a309f8170f65e72edfa29a2a8670c1e5ac758257ff7c8372/7e6b7dbc2c48b212ec1c9e897971a814765e541a14f737ee90d1ba2cf1a6fb39/snapshot.json new file mode 100644 index 0000000000..409e3965a1 --- /dev/null +++ b/graphify-out/snapshots/v1/96364f533539f7e0a309f8170f65e72edfa29a2a8670c1e5ac758257ff7c8372/7e6b7dbc2c48b212ec1c9e897971a814765e541a14f737ee90d1ba2cf1a6fb39/snapshot.json @@ -0,0 +1,9 @@ +{ + "schema": "thingtime.graphify-snapshot.v1", + "source_fingerprint": "96364f533539f7e0a309f8170f65e72edfa29a2a8670c1e5ac758257ff7c8372", + "source_tree": "47296237022ee6ac44b49c865eb68bfd7494e8ec", + "artifact_hash": "7e6b7dbc2c48b212ec1c9e897971a814765e541a14f737ee90d1ba2cf1a6fb39", + "graphify_version": "graphify 0.9.4", + "node_count": 41204, + "link_count": 103540 +} diff --git a/remix/CHANGELOG.md b/remix/CHANGELOG.md index b1248b0e4f..c384e70bc1 100644 --- a/remix/CHANGELOG.md +++ b/remix/CHANGELOG.md @@ -290,6 +290,22 @@ assistant and manual changes attributed so future PR archaeology is less cursed. from `post.linkKey`, which is already owner-only and hidden-only, and a new `hiddenLinkContract.test.ts` pins the derivation. — Lopu (AI) +### 2026-09-04 — Rich public link previews — Codex (AI) + +- Shared public pages now publish route-aware Open Graph/Twitter metadata and + colourful 1200×630 Thingtime PNG cards. Posts carry author/excerpt/context; + image posts safely render up to four stored images as a collage; text, + marketplace, structured Thingtime, poll, share, comment, reply, standalone + image/video/audio/file, profile, Thing, published page, feed and public + catalogue/docs variants each have their own preview treatment. +- Cards ship their own copy of Liberation Sans (SIL OFL 1.1, metric-compatible + with Arial) embedded in the server bundle. The deployed Vercel Node runtime + has no fonts installed, so the renderer previously drew every card's artwork + and not one glyph; CI and dev machines have system fonts and looked fine. — + Lopu (AI) +- Details in the PR note + (`PRs/607-codex-rich-link-previews--rich-route-aware-thingtime-link-previews.md`). + ### 2026-09-02 — Lopu toast position setting + `/notifications` history page — Claude (AI) - Grouped summary; details in the PR note (`PRs/611-claude-lopu-toast-position-notifications-history--lopu-toast-position-notifications-history.md`). diff --git a/remix/app/api/utils/meta/LICENSE-Liberation.txt b/remix/app/api/utils/meta/LICENSE-Liberation.txt new file mode 100644 index 0000000000..066d673180 --- /dev/null +++ b/remix/app/api/utils/meta/LICENSE-Liberation.txt @@ -0,0 +1,123 @@ +Liberation Sans is bundled with the Thingtime social-card renderer +(socialCardFontData.ts, generated by remix/scripts/generate-social-card-font.mjs) +so server-rendered link preview PNGs have a font to draw with. +Upstream: https://github.com/liberationfonts + +---------------------------------------------------------------------- + +Digitized data copyright (c) 2010 Google Corporation with Reserved Font Arimo, Tinos and Cousine. +Copyright (c) 2012 Red Hat, Inc. with Reserved Font Name Liberation. +License: SIL-OFL-1.1 +This Font Software is licensed under the SIL Open Font License, +Version 1.1. + +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 + +PREAMBLE The goals of the Open Font License (OFL) are to stimulate +worldwide development of collaborative font projects, to support the font +creation efforts of academic and linguistic communities, and to provide +a free and open framework in which fonts may be shared and improved in +partnership with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. +The fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply to +any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. +This may include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components +as distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting ? in part or in whole ? +any of the components of the Original Version, by changing formats or +by porting the Font Software to a new environment. + +"Author" refers to any designer, engineer, programmer, technical writer +or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS + +Permission is hereby granted, free of charge, to any person obtaining a +copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components,in + Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, + redistributed and/or sold with any software, provided that each copy + contains the above copyright notice and this license. These can be + included either as stand-alone text files, human-readable headers or + in the appropriate machine-readable metadata fields within text or + binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font + Name(s) unless explicit written permission is granted by the + corresponding Copyright Holder. This restriction only applies to the + primary font name as presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font + Software shall not be used to promote, endorse or advertise any + Modified Version, except to acknowledge the contribution(s) of the + Copyright Holder(s) and the Author(s) or with their explicit written + permission. + +5) The Font Software, modified or unmodified, in part or in whole, must + be distributed entirely under this license, and must not be distributed + under any other license. The requirement for fonts to remain under + this license does not apply to any document created using the Font + Software. + +TERMINATION +This license becomes null and void if any of the above conditions are not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER +DEALINGS IN THE FONT SOFTWARE. + +Files: debian/* +Copyright: +2008 Alan Baghumian +2008-2018 Holger Levsen +2009-2012 Christian Perrier +2011-2023 Fabian Greffrath +2018 Rene Engelhard +License: GPL-2+ +This package is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This package is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see + +On Debian systems, the complete text of the GNU General +Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". diff --git a/remix/app/api/utils/meta/socialCard.test.ts b/remix/app/api/utils/meta/socialCard.test.ts new file mode 100644 index 0000000000..b1251cf964 --- /dev/null +++ b/remix/app/api/utils/meta/socialCard.test.ts @@ -0,0 +1,528 @@ +import assert from 'node:assert/strict'; +import test from 'node:test'; +import { deflateSync } from 'node:zlib'; + +import { Resvg } from '@resvg/resvg-js'; + +import { + buildSocialCardSvg, + readBodyWithin, + renderSocialCardPng, + socialCardImageExtent, + socialCardRenderOptions, + socialTextWidth +} from './socialCard'; +import type { SocialPreview } from './socialPreview'; +import { staticSocialPreview } from './socialPreview'; + +const gallery: SocialPreview = { + kind: 'gallery', + variant: 'gallery', + path: '/post/cats', + title: 'Nikk: This mah cat 😻', + description: 'A very important six-photo cat post.', + eyebrow: 'THINGTIME · PHOTO SET', + article: true, + author: 'Nikk', + initial: 'N', + badges: ['6 photos', '#cats'], + options: [], + images: [ + { attachmentId: 'one', label: 'Cat one' }, + { attachmentId: 'two', label: 'Cat two' }, + { attachmentId: 'three', label: 'Cat three' }, + { attachmentId: 'four', label: 'Cat four' } + ], + imageCount: 6 +}; + +const ONE_PIXEL_PNG = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVQIHWP4z8DwHwAFgAI/ScL5+QAAAABJRU5ErkJggg=='; + +test('gallery cards lay out each available image as a collage and escape post text', () => { + const svg = buildSocialCardSvg({ ...gallery, title: '' }, [ONE_PIXEL_PNG, ONE_PIXEL_PNG, ONE_PIXEL_PNG, ONE_PIXEL_PNG]); + assert.match(svg, /clip-0/); + assert.match(svg, /clip-3/); + assert.match(svg, /<Cats & things>/); + assert.doesNotMatch(svg, //); +}); + +test('the social-card renderer emits a standard PNG for a no-media route', async () => { + const png = await renderSocialCardPng({ ...gallery, kind: 'feed', variant: 'feed', images: [], imageCount: 0, author: undefined }); + assert.deepEqual([...png.slice(0, 8)], [137, 80, 78, 71, 13, 10, 26, 10]); + assert.ok(png.byteLength > 1_000); +}); + +test('every post-shaped card variant gets its own deliberate visual panel', () => { + const variants: SocialPreview['variant'][] = [ + 'text-post', + 'image-post', + 'gallery', + 'poll', + 'listing', + 'thingtime', + 'share', + 'comment', + 'reply', + 'media-video', + 'media-audio', + 'media-file' + ]; + for (const variant of variants) { + const svg = buildSocialCardSvg({ + ...gallery, + kind: variant === 'reply' ? 'reply' : variant === 'comment' ? 'comment' : 'text-post', + variant, + images: [], + imageCount: 0 + }); + assert.match(svg, new RegExp(`data-preview-variant="${variant}"`)); + assert.match(svg, new RegExp(`data-preview-panel="${variant}"`)); + } +}); + +const titleLinesOf = (svg: string): Array<{ y: number; text: string }> => + [...svg.matchAll(/]*>([^<]*)<\/text>/g)].map((match) => ({ y: Number(match[1]), text: match[2] })); + +test('multi-line titles stack instead of overprinting, with and without an author', () => { + const longTitle = 'Nikolaj Lopusanschi: we spent the whole weekend rebuilding the little garden bed out the back'; + for (const author of ['Nikolaj Lopusanschi', undefined]) { + const lines = titleLinesOf(buildSocialCardSvg({ ...gallery, title: longTitle, author, images: [], imageCount: 0 })); + assert.ok(lines.length > 1, `expected a wrapped title (author: ${String(author)})`); + assert.equal(new Set(lines.map((line) => line.y)).size, lines.length, `title lines share a baseline (author: ${String(author)})`); + } +}); + +// The media/art panel starts at x=700 and the text column at x=86, so no line +// may measure wider than 594px. A character budget cannot express that: these +// titles are all legal 27-character lines under the old rule and every one of +// them printed under the panel. +test('headlines are wrapped by measured width, never by character count', () => { + const titles = [ + 'Nikk: Where should we go on Sunday?', + 'WOW MMM WWW MMM WWW MMM WWW MMM WOW', + 'Someone: A MASSIVE ANNOUNCEMENT ABOUT THE WEEKEND MARKET', + `Someone: ${'https://thingtime.example/a/very/long/unbroken/permalink/nobody/can/wrap'}`, + 'Someone: 🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉' + ]; + for (const title of titles) { + for (const kind of ['text-post', 'profile'] as const) { + const fontSize = kind === 'profile' ? 42 : 38; + for (const line of titleLinesOf(buildSocialCardSvg({ ...gallery, kind, title, images: [], imageCount: 0 }))) { + const width = socialTextWidth(line.text, fontSize); + assert.ok(width <= 594, `"${line.text}" measures ${width.toFixed(0)}px, past the x=700 art panel (${kind})`); + } + } + } +}); + +test('descriptions are wrapped by measured width too', () => { + const svg = buildSocialCardSvg({ + ...gallery, + description: 'MMMM WWWW MMMM WWWW MMMM WWWW MMMM WWWW MMMM WWWW MMMM WWWW MMMM WWWW MMMM', + images: [], + imageCount: 0 + }); + const lines = [...svg.matchAll(/]*>([^<]*)<\/text>/g)].map((match) => match[1]); + assert.ok(lines.length > 1, 'expected the description to wrap'); + for (const line of lines) assert.ok(socialTextWidth(line, 21) <= 594, `description line "${line}" runs past the art panel`); +}); + +const rectsFilled = (svg: string, fill: string): Array<{ y: number; height: number }> => + [...svg.matchAll(/]*y="(\d+)"[^>]*height="(\d+)"[^>]*fill="([^"]+)"/g)] + .filter((match) => match[3] === fill) + .map((match) => ({ y: Number(match[1]), height: Number(match[2]) })); + +test('poll option rows never overprint the badge pills, with or without an author', () => { + const poll: SocialPreview = { + ...gallery, + kind: 'poll', + variant: 'poll', + title: 'Nikk: Where should we go on Sunday?', + description: 'Poll: Where should we go on Sunday? · Park / Beach / Gallery', + eyebrow: 'THINGTIME · POLL', + images: [], + imageCount: 0, + options: ['Park', 'Beach', 'Gallery'], + badges: ['#weekend', 'Poll'] + }; + for (const author of ['Nikk', undefined]) { + const svg = buildSocialCardSvg({ ...poll, author }); + const rows = rectsFilled(svg, '#F0EAFF'); + const pills = rectsFilled(svg, '#F2EEF9'); + assert.equal(rows.length, 3, `expected every poll option to render (author: ${String(author)})`); + assert.equal(pills.length, 2, `expected both badge pills to render (author: ${String(author)})`); + const rowsEnd = Math.max(...rows.map((row) => row.y + row.height)); + const pillsStart = Math.min(...pills.map((pill) => pill.y)); + assert.ok(rowsEnd <= pillsStart, `poll rows reach y=${rowsEnd}, past the badge row at y=${pillsStart} (author: ${String(author)})`); + } +}); + +// Same defect class as the headline: 'Build with Thingtime' is exactly the 20 +// characters the badge row used to allow, and printed 187px wide inside a 150px +// pill. +test('badge and poll labels are clamped to their pill, not to a character count', () => { + const svg = buildSocialCardSvg({ + ...gallery, + kind: 'poll', + variant: 'poll', + images: [], + imageCount: 0, + options: ['WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW', 'A shortish option'], + badges: ['Build with Thingtime', 'WWWWWWWWWWWWWWWWWWWW', 'API + SDK'] + }); + const badgeLabels = [...svg.matchAll(/]*>([^<]*)<\/text>/g)].map((match) => match[1]); + const pollLabels = [...svg.matchAll(/]*>([^<]*)<\/text>/g)].map((match) => match[1]); + assert.equal(badgeLabels.length, 3, 'expected three badge pills'); + assert.equal(pollLabels.length, 2, 'expected two poll rows'); + for (const label of badgeLabels) assert.ok(socialTextWidth(label, 13) <= 134, `badge "${label}" overflows its 150px pill`); + for (const label of pollLabels) assert.ok(socialTextWidth(label, 14) <= 506, `poll label "${label}" overflows its row`); + assert.ok( + badgeLabels.some((label) => label.endsWith('…')), + 'an over-long badge should be visibly truncated' + ); +}); + +// The same defect class on the two single-line labels above the headline, which +// wrap() never sees. A display name is allowed 80 characters +// (MAX_DISPLAY_NAME_CHARS) and its line starts at x=136, so anything past ~41 +// reached the art panel — drawn last, so it painted over the overflow and the +// name was sliced mid-word with no ellipsis, reading as a complete wrong name. +// The eyebrow additionally carries letter-spacing="2", which the width estimate +// does not model on its own: a label it calls safe is 2px per glyph wider here. +test('the eyebrow and author line are clamped to the text column too', () => { + const svg = buildSocialCardSvg({ + ...gallery, + eyebrow: 'THINGTIME · A VERY LONG ROUTE DESCRIPTION THAT KEEPS GOING AND GOING', + author: 'Bartholomew Featherstonehaugh-Cholmondeley the Third of Melbourne', + images: [], + imageCount: 0 + }); + const eyebrow = svg.match(/]*letter-spacing="(\d+)"[^>]*>([^<]*)<\/text>/); + const author = svg.match(/]*>([^<]*)<\/text>/); + assert.ok(eyebrow, 'expected the eyebrow to render'); + assert.ok(author, 'expected the author line to render'); + const spacing = Number(eyebrow[1]); + const eyebrowWidth = socialTextWidth(eyebrow[2], 15) + Math.max(0, Array.from(eyebrow[2]).length - 1) * spacing; + assert.ok(eyebrowWidth <= 594, `eyebrow measures ${eyebrowWidth.toFixed(0)}px, past the x=700 art panel`); + assert.ok(eyebrow[2].endsWith('…'), 'an over-long eyebrow should be visibly truncated'); + // x=136 (clear of the avatar disc) to the art panel at x=700. + const authorWidth = socialTextWidth(author[1], 19); + assert.ok(authorWidth <= 564, `author name measures ${authorWidth.toFixed(0)}px, past the x=700 art panel`); + assert.ok(author[1].endsWith('…'), 'an over-long display name should be visibly truncated'); +}); + +// The card is only ever drawn on Linux hosts, and the deployed Vercel Node +// runtime has NO fonts installed. `font-family="Arial, sans-serif"` therefore +// resolved to nothing there and every production card came back with its +// gradient, browser chrome and panel art drawn and not one glyph on it — while +// CI and dev machines, which do have DejaVu/Liberation, rendered perfectly. +// Asserting PNG magic bytes and a plausible byte length cannot tell those two +// apart, so count the ink the text actually lays down instead. +const inkInBand = (png: Buffer | Uint8Array, options: { top: number; bottom: number; left: number; right: number; dark: boolean }): number => { + let count = 0; + for (let y = options.top; y < options.bottom; y += 1) { + for (let x = options.left; x < options.right; x += 1) { + const index = (y * 1200 + x) * 4; + const [red, green, blue] = [png[index], png[index + 1], png[index + 2]]; + const total = red + green + blue; + if (options.dark ? total < 260 : total > 700) count += 1; + } + } + return count; +}; + +const cardPixels = (preview: SocialPreview, imageDataUris: readonly (string | null)[] = []): Buffer => + new Resvg(buildSocialCardSvg(preview, imageDataUris), socialCardRenderOptions()).render().pixels; + +test('cards draw real glyphs on a host with no system fonts (the deployed runtime)', () => { + const preview: SocialPreview = { ...gallery, kind: 'feed', variant: 'feed', title: 'Nikk: the weekend garden bed', images: [], imageCount: 0 }; + // The card renderer must not depend on the host having fonts at all. + assert.equal(socialCardRenderOptions()?.font?.loadSystemFonts, false, 'the bundled face must be the only one in play'); + + const pixels = cardPixels(preview); + // Dark headline ink on the white panel, in the title band above the art panel. + const titleInk = inkInBand(pixels, { top: 200, bottom: 340, left: 86, right: 700, dark: true }); + assert.ok(titleInk > 500, `expected a drawn headline, found ${titleInk} dark pixels in the title band`); + + // The same band with the text removed is the "blank card" this shipped as. + const blank = cardPixels({ ...preview, title: '', description: '', author: undefined, eyebrow: '', badges: [] }); + const blankInk = inkInBand(blank, { top: 200, bottom: 340, left: 86, right: 700, dark: true }); + assert.ok(titleInk > blankInk * 20, `headline ink (${titleInk}) is indistinguishable from an empty card (${blankInk})`); + + // White wordmark ink inside the dark browser chrome bar. + const wordmarkInk = inkInBand(pixels, { top: 52, bottom: 80, left: 130, right: 320, dark: false }); + assert.ok(wordmarkInk > 100, `expected the THINGTIME wordmark to render, found ${wordmarkInk} light pixels`); +}); + +test('nothing on a card is drawn as a missing-glyph box', () => { + // resvg paints an unmapped code point as `.notdef` — a hollow rectangle. Two + // of the chrome's decorative marks used to be U+2726/U+271A, which Liberation + // Sans does not have, and post titles routinely carry emoji. + const tofu = new Resvg( + `\u{1F63B}`, + socialCardRenderOptions() + ) + .render() + .pixels.reduce((total, channel, index) => (index % 4 === 0 && channel < 128 ? total + 1 : total), 0); + assert.ok(tofu > 0, 'expected an unmapped code point to prove it draws a visible .notdef box'); + + const withEmoji = buildSocialCardSvg({ ...gallery, title: 'Nikk: this mah cat 😻', badges: ['6 photos 🎉'], images: [], imageCount: 0 }); + assert.doesNotMatch(withEmoji, /\p{Extended_Pictographic}/u, 'emoji must be dropped from the card, never handed to the renderer as tofu'); + assert.match(withEmoji, /Nikk: this mah cat/, 'the words around an emoji must survive'); + assert.doesNotMatch(buildSocialCardSvg({ ...gallery, images: [], imageCount: 0 }), /[✦✚]/, 'the chrome marks must be drawn, not typed'); +}); + +// The emoji strip is applied at paint time, but the avatar letter and the three +// badge pills are both CHOSEN before anything is measured. So a value that is +// entirely unrenderable still took its slot and drew nothing into it: a leading +// emoji in a display name (`🌸 Rosie` — an ordinary name, not an edge case) left +// the avatar disc blank, because `initial || 'T'` sees a truthy emoji and only +// the escape drops it. Badges were worse than blank: `#🎉` spent a pill on a +// bare `#` and, since the slice to three ran first, pushed a real `#garden` off +// the card entirely. +test('a value the card cannot draw never takes the slot of one it can', () => { + const svg = buildSocialCardSvg({ ...gallery, author: '🌸 Rosie', initial: '🌸', badges: ['🎉', '#🎉', '#garden', 'Photo'], images: [], imageCount: 0 }); + const avatar = svg.match(/]*>([^<]*)<\/text>/); + assert.ok(avatar, 'expected the avatar disc to render'); + assert.equal(avatar[1], 'R', 'the avatar letter must come from what the card can actually draw'); + + const labels = [...svg.matchAll(/]*>([^<]*)<\/text>/g)].map((match) => match[1]); + assert.deepEqual(labels, ['#garden', 'Photo'], 'unrenderable badges must not occupy — or displace — a pill'); + assert.equal(rectsFilled(svg, '#F2EEF9').length, labels.length, 'every badge pill drawn must carry a label'); + + // A name with nothing renderable in it at all still gets the site letter. + const allEmoji = buildSocialCardSvg({ ...gallery, author: '🎉🎉', initial: '🎉', images: [], imageCount: 0 }); + assert.equal(allEmoji.match(/]*>([^<]*)<\/text>/)?.[1], 'T'); +}); + +// U+FFFE/U+FFFF are \p{Cn} noncharacters, so `cleanSocialText`'s \p{Cc} strip +// keeps them and they are legal in a JS string, in UTF-8, in Mongo and in a +// percent-encoded URL — but they are not XML characters at all, and escaping +// cannot express them. resvg therefore rejects the whole document, so one of +// them anywhere in a post's text meant that post got no card. Worse, a crafted +// `/social-card?path=/docs/` lands it in `staticSocialPreview`'s own +// title, which is exactly what the route's catch block re-renders as its safe +// fallback — both renders threw and the public endpoint answered 500. +test('a character XML cannot carry never reaches the renderer', () => { + const nonXml = '\uFFFF'; + const svg = buildSocialCardSvg({ + ...gallery, + title: `Nikk: cat${nonXml} pictures`, + description: `Six${nonXml} very important cats.`, + eyebrow: `THINGTIME · PHOTO${nonXml} SET`, + author: `Nikk${nonXml}`, + initial: `N${nonXml}`, + badges: [`#cats${nonXml}`], + options: [`Yes${nonXml}`], + images: [], + imageCount: 0 + }); + assert.doesNotMatch(svg, /[\u0000-\u0008\u000B\u000C\u000E-\u001F\uFFFE\uFFFF]/, 'a non-XML character must never enter the SVG'); + assert.match(svg, /Nikk: cat pictures/, 'the words around it must survive'); + assert.doesNotThrow(() => new Resvg(svg, socialCardRenderOptions()).render().asPng(), 'the card must still render'); + + // The route's own fallback card, built from the raw `?path=` leaf. + const fallback = buildSocialCardSvg(staticSocialPreview(`/docs/${nonXml}api`)); + assert.doesNotMatch(fallback, /[\uFFFE\uFFFF]/, 'the safe fallback card must be safe for the input that reached it'); + assert.doesNotThrow(() => new Resvg(fallback, socialCardRenderOptions()).render().asPng(), 'the fallback card must render'); +}); + +test('empty-panel copy stays legible over its own artwork', () => { + // The art is positioned per variant but the copy sits at fixed baselines, so + // the poll axis stroke and the docs page rect both ran through it. Once the + // font landed this became two lines of white text on a yellow rectangle. + for (const variant of ['poll', 'docs', 'webpage', 'media-file', 'collection'] as const) { + const svg = buildSocialCardSvg({ ...gallery, kind: 'text-post', variant, images: [], imageCount: 0 }); + const scrim = svg.match(/= 458, `${variant} scrim ends at y=${top + height}, above the second copy line`); + } +}); + +test('the social-card renderer emits a real multi-image collage PNG', async () => { + const png = await renderSocialCardPng(gallery, [ONE_PIXEL_PNG, ONE_PIXEL_PNG, ONE_PIXEL_PNG, ONE_PIXEL_PNG]); + assert.deepEqual([...png.slice(0, 8)], [137, 80, 78, 71, 13, 10, 26, 10]); + assert.ok(png.byteLength > 1_000); +}); + +// An whose bytes will not decode draws NOTHING — resvg has no error +// treatment and the white card panel showed through as a blank slab. Only the +// Content-Type header and a size bound are checked before the bytes reach the +// renderer, so this is reachable from a stored object that does not match its +// declared type, not just from an unlikely corruption in flight. +test('a photo tile whose bytes will not decode falls back to the branded tile', () => { + // Mean colour of the single-image tile (x=700..1130, y=92..538), sampled + // well inside it. White is the card panel showing through — the defect. + const tileIsBlank = (dataUri: string | null): boolean => { + const pixels = cardPixels({ ...gallery, kind: 'image-post', variant: 'image-post', images: [], imageCount: 1 }, [dataUri]); + let total = 0; + let samples = 0; + for (let y = 200; y < 400; y += 2) { + for (let x = 800; x < 1050; x += 2) { + const index = (y * 1200 + x) * 4; + total += pixels[index] + pixels[index + 1] + pixels[index + 2]; + samples += 1; + } + } + return total / samples > 740; + }; + + assert.ok(!tileIsBlank(null), 'a tile with no image at all must already draw the branded gradient'); + // A PNG header with its image data cut off: valid enough to be fetched and + // labelled image/png, impossible for the renderer to draw. + const truncated = `data:image/png;base64,${ONE_PIXEL_PNG.split(',')[1].slice(0, 24)}`; + assert.ok(!tileIsBlank(truncated), 'an undecodable photo must fall back to the branded tile, not a blank white slab'); +}); + +// A collage cell that is never drawn is not blank — it is the white card panel +// showing through, which is the same slab the branded tile exists to prevent. +// A 2×2 grid drawn for exactly three photos left its fourth cell undrawn, so +// every three-photo post (an ordinary post, not an edge case) shipped with a +// white square in the corner of its collage. +test('every photo count fills the media panel, with no undrawn collage cell', () => { + // Bottom-right quadrant of the media panel (x=700..1130, y=92..538), sampled + // well inside it. White is the card panel showing through — the defect. + const quadrantIsBlank = (imageCount: number): boolean => { + const pixels = cardPixels({ ...gallery, images: [], imageCount }, []); + let total = 0; + let samples = 0; + for (let y = 340; y < 520; y += 2) { + for (let x = 940; x < 1120; x += 2) { + const index = (y * 1200 + x) * 4; + total += pixels[index] + pixels[index + 1] + pixels[index + 2]; + samples += 1; + } + } + return total / samples > 740; + }; + + for (const imageCount of [1, 2, 3, 4, 6]) { + assert.ok(!quadrantIsBlank(imageCount), `a ${imageCount}-photo collage leaves the panel's bottom-right corner undrawn`); + } +}); + +// The cap on card imagery has to survive a response that declines to say how +// big it is. S3 sends content-length today, so a header-only check looks fine +// in production right up until a proxy, a range response or a compressed +// transfer drops it — and then the only bound on a public, unauthenticated +// endpoint is gone. These pin the bound to the read itself. +const streamed = (chunks: readonly Uint8Array[]): Response => + new Response( + new ReadableStream({ + start(controller) { + for (const chunk of chunks) controller.enqueue(chunk); + controller.close(); + } + }) + ); + +test('a body that never declares its length is still cut off at the cap', async () => { + const oversize = [new Uint8Array(600), new Uint8Array(600)]; + assert.equal(streamed(oversize).headers.get('content-length'), null, 'the case only bites when the header is absent'); + assert.equal(await readBodyWithin(streamed(oversize), 1_000), null); +}); + +test('a body inside the cap is returned whole and in order', async () => { + const bytes = await readBodyWithin(streamed([new Uint8Array([1, 2, 3]), new Uint8Array([4, 5])]), 1_000); + assert.deepEqual(bytes && Array.from(bytes), [1, 2, 3, 4, 5]); +}); + +test('a body exactly at the cap is kept, not rejected off by one', async () => { + const bytes = await readBodyWithin(streamed([new Uint8Array(1_000)]), 1_000); + assert.equal(bytes?.byteLength, 1_000); +}); + +test('a response with no body at all reads as nothing rather than throwing', async () => { + assert.equal(await readBodyWithin(new Response(null, { status: 204 }), 1_000), null); +}); + +// A byte cap is not a memory cap. Every format the loader accepts compresses +// uniform pixels to almost nothing, so the bound that actually protects a +// public, unauthenticated renderer is on the decoded pixels — read from the +// image's own header, before resvg is asked to allocate them. +const pngOfSize = (width: number, height: number): Uint8Array => { + const crcTable = Array.from({ length: 256 }, (_, n) => { + let c = n; + for (let k = 0; k < 8; k++) c = c & 1 ? 0xedb88320 ^ (c >>> 1) : c >>> 1; + return c >>> 0; + }); + const crc = (buffer: Buffer): number => { + let c = 0xffffffff; + for (const byte of buffer) c = crcTable[(c ^ byte) & 0xff] ^ (c >>> 8); + return (c ^ 0xffffffff) >>> 0; + }; + const chunk = (type: string, data: Buffer): Buffer => { + const length = Buffer.alloc(4); + length.writeUInt32BE(data.length); + const body = Buffer.concat([Buffer.from(type, 'ascii'), data]); + const checksum = Buffer.alloc(4); + checksum.writeUInt32BE(crc(body)); + return Buffer.concat([length, body, checksum]); + }; + const header = Buffer.alloc(13); + header.writeUInt32BE(width, 0); + header.writeUInt32BE(height, 4); + header[8] = 8; // bit depth + header[9] = 0; // greyscale + return new Uint8Array( + Buffer.concat([ + Buffer.from([137, 80, 78, 71, 13, 10, 26, 10]), + chunk('IHDR', header), + chunk('IDAT', deflateSync(Buffer.alloc((width + 1) * Math.min(height, 64)))), + chunk('IEND', Buffer.alloc(0)) + ]) + ); +}; + +test('image dimensions are read from the header of each accepted format', () => { + assert.deepEqual(socialCardImageExtent(pngOfSize(1200, 630)), { width: 1200, height: 630 }); + // GIF87a, 8×5: logical screen width/height are little-endian at offset 6. + assert.deepEqual( + socialCardImageExtent(new Uint8Array([0x47, 0x49, 0x46, 0x38, 0x37, 0x61, 8, 0, 5, 0, 0, 0, 0])), + { width: 8, height: 5 } + ); + // JPEG: SOI, an APP0 segment that must be skipped by its length, then SOF0 + // carrying height before width. + assert.deepEqual( + socialCardImageExtent( + new Uint8Array([0xff, 0xd8, 0xff, 0xe0, 0x00, 0x04, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x11, 0x08, 0x02, 0x76, 0x04, 0xb0, 0x03, 0, 0, 0]) + ), + { width: 1200, height: 630 } + ); + // Lossy WebP: a VP8 keyframe's 14-bit dimensions follow the start code. + const webp = new Uint8Array(30); + webp.set(Buffer.from('RIFF', 'ascii'), 0); + webp.set(Buffer.from('WEBP', 'ascii'), 8); + webp.set(Buffer.from('VP8 ', 'ascii'), 12); + webp.set([0x9d, 0x01, 0x2a], 23); + webp.set([0xb0, 0x04, 0x76, 0x02], 26); + assert.deepEqual(socialCardImageExtent(webp), { width: 1200, height: 630 }); +}); + +test('an unmeasurable or mislabelled body never reaches the renderer', () => { + // The declared Content-Type is author-supplied metadata, so the extent is + // dispatched on magic bytes; anything unrecognised fails closed. + assert.equal(socialCardImageExtent(new Uint8Array([0x3c, 0x73, 0x76, 0x67, 0x20, 0x2f, 0x3e])), null); + assert.equal(socialCardImageExtent(new Uint8Array(0)), null); + // A truncated PNG header must not read past the bytes it actually has. + assert.equal(socialCardImageExtent(new Uint8Array([137, 80, 78, 71, 13, 10, 26, 10])), null); + // A zero dimension is not a renderable image. + assert.deepEqual(socialCardImageExtent(pngOfSize(0, 630)), null); +}); + +test('a decompression bomb is rejected on its pixel count, not its byte count', () => { + // 40000×40000 of one flat colour: a 1.5 MiB file that passes the 2 MiB byte + // cap and asks resvg for 5.96 GiB of RGBA. + const bomb = pngOfSize(40_000, 40_000); + assert.ok(bomb.byteLength < 2 * 1024 * 1024, `the bomb only bites while it fits the byte cap (was ${bomb.byteLength})`); + const extent = socialCardImageExtent(bomb); + assert.deepEqual(extent, { width: 40_000, height: 40_000 }); + assert.ok((extent!.width * extent!.height) > 40_000_000, 'the guard must reject this on pixels'); + // An ordinary phone photo stays well inside the same bound. + const photo = socialCardImageExtent(pngOfSize(4032, 3024))!; + assert.ok(photo.width * photo.height < 40_000_000); +}); diff --git a/remix/app/api/utils/meta/socialCard.ts b/remix/app/api/utils/meta/socialCard.ts new file mode 100644 index 0000000000..65e6294cd0 --- /dev/null +++ b/remix/app/api/utils/meta/socialCard.ts @@ -0,0 +1,735 @@ +import { existsSync, mkdirSync, writeFileSync } from 'node:fs'; +import { tmpdir } from 'node:os'; +import { join } from 'node:path'; + +import { Resvg } from '@resvg/resvg-js'; + +import { SOCIAL_CARD_FONTS, SOCIAL_CARD_FONT_FAMILY } from './socialCardFontData'; +import type { SocialPreview, SocialPreviewVariant } from './socialPreview'; +import { SOCIAL_PREVIEW_HEIGHT, SOCIAL_PREVIEW_WIDTH, cleanSocialText } from './socialPreview'; + +const SAFE_IMAGE_TYPES = new Set(['image/avif', 'image/gif', 'image/jpeg', 'image/png', 'image/webp']); +const MAX_CARD_IMAGE_BYTES = 2 * 1024 * 1024; +// A byte cap is not a memory cap. resvg decodes an embedded raster to RGBA8 +// before it scales it into the tile, and every one of these formats compresses +// uniform pixels to almost nothing: a 1.5 MiB PNG of 40000×40000 zero bytes +// passes SAFE_IMAGE_TYPES and MAX_CARD_IMAGE_BYTES and then asks for 5.96 GiB. +// resvg-js exposes no input-pixel limit of its own, so the bound has to be +// applied before the bytes reach it — the same order `readBodyWithin` exists +// for. 40 MP matches the `limitInputPixels` that attachments/imageVariants.ts +// already imposes on the very same user images, so a photo the resize endpoint +// refuses cannot slip in here instead. The collage budget is separate because +// the loader fetches up to four tiles at once, which would otherwise multiply +// the per-image ceiling by four on a public, unauthenticated request. +const MAX_CARD_IMAGE_PIXELS = 40_000_000; +const MAX_CARD_COLLAGE_PIXELS = 80_000_000; + +// The badge pills are pinned to the bottom of the white panel, so the poll +// strip above them cannot shift with the author line: three rows at this pitch +// end exactly one pixel above the pills, and an author-offset copy of these +// numbers overprinted them on any tagged poll. Two lines of description (the +// cap whenever options exist) end near y=444, which clears POLL_ROW_TOP. +const POLL_ROW_TOP = 454; +const POLL_ROW_PITCH = 34; +const POLL_ROW_HEIGHT = 25; +const BADGE_ROW_TOP = 548; +// Inner label widths: the poll row runs x=86..616 with its text inset at x=98, +// and each badge is a 150px pill. Both labels were budgeted in characters, so +// "Build with Thingtime" (exactly the 20 allowed) printed 187px wide and hung +// out of both ends of its pill. +const POLL_LABEL_WIDTH = 506; +const BADGE_LABEL_WIDTH = 134; +// The eyebrow starts at x=86 and the author name at x=136 (clear of the avatar +// disc); both run at the media/art panel, which is drawn last and therefore +// paints over anything that reaches x=700. Neither line is wrapped, so — like +// the pills above — the cap has to be a measured width. A display name is +// allowed 80 characters (MAX_DISPLAY_NAME_CHARS) and anything past ~41 was +// sliced off mid-word by the panel with no ellipsis, so a card for +// "Bartholomew Featherstonehaugh-Cholmondeley" read as a complete, wrong name. +const AUTHOR_LABEL_WIDTH = 564; +const EYEBROW_LETTER_SPACING = 2; + +type CardTheme = { primary: string; end: string; panelStart: string; panelEnd: string }; + +const CARD_THEMES: Record = { + app: { primary: '#5B3CC4', end: '#EC4899', panelStart: '#46308C', panelEnd: '#E060B6' }, + feed: { primary: '#7C3AED', end: '#EC4899', panelStart: '#6D3EC7', panelEnd: '#EC71BA' }, + explore: { primary: '#0E7490', end: '#7C3AED', panelStart: '#0F766E', panelEnd: '#7C3AED' }, + docs: { primary: '#2563EB', end: '#7C3AED', panelStart: '#1D4ED8', panelEnd: '#8B5CF6' }, + collection: { primary: '#0F766E', end: '#2563EB', panelStart: '#047857', panelEnd: '#2563EB' }, + 'text-post': { primary: '#7C3AED', end: '#DB2777', panelStart: '#5B21B6', panelEnd: '#DB2777' }, + 'image-post': { primary: '#DB2777', end: '#7C3AED', panelStart: '#BE185D', panelEnd: '#7C3AED' }, + gallery: { primary: '#C026D3', end: '#2563EB', panelStart: '#A21CAF', panelEnd: '#2563EB' }, + poll: { primary: '#2563EB', end: '#06B6D4', panelStart: '#1D4ED8', panelEnd: '#0891B2' }, + listing: { primary: '#EC4899', end: '#F97316', panelStart: '#DB2777', panelEnd: '#EA580C' }, + thingtime: { primary: '#0F766E', end: '#7C3AED', panelStart: '#047857', panelEnd: '#6D28D9' }, + share: { primary: '#D97706', end: '#DB2777', panelStart: '#B45309', panelEnd: '#DB2777' }, + comment: { primary: '#DB2777', end: '#7C3AED', panelStart: '#BE185D', panelEnd: '#7C3AED' }, + reply: { primary: '#7C3AED', end: '#2563EB', panelStart: '#6D28D9', panelEnd: '#2563EB' }, + 'media-image': { primary: '#C026D3', end: '#2563EB', panelStart: '#A21CAF', panelEnd: '#2563EB' }, + 'media-video': { primary: '#2563EB', end: '#DB2777', panelStart: '#1D4ED8', panelEnd: '#BE185D' }, + 'media-audio': { primary: '#0891B2', end: '#7C3AED', panelStart: '#0E7490', panelEnd: '#6D28D9' }, + 'media-file': { primary: '#475569', end: '#2563EB', panelStart: '#334155', panelEnd: '#2563EB' }, + webpage: { primary: '#0F766E', end: '#0891B2', panelStart: '#047857', panelEnd: '#0E7490' }, + profile: { primary: '#7C3AED', end: '#EC4899', panelStart: '#6D28D9', panelEnd: '#DB2777' }, + thing: { primary: '#4F46E5', end: '#0F766E', panelStart: '#4338CA', panelEnd: '#047857' } +}; + +// The bundled face is a Latin/Greek/Cyrillic text font with no pictographs, and +// resvg draws a missing glyph as `.notdef` — a literal tofu box. Emoji are +// common in post titles, so strip them from the PNG rather than print squares +// in a headline. The Open Graph text tags keep them: the unfurler renders those +// with its own fonts, and only the image is limited to what we ship. +const CARD_UNRENDERABLE = /[\p{Extended_Pictographic}\u{200D}\u{FE0E}\u{FE0F}\u{20E3}\u{1F3FB}-\u{1F3FF}]/gu; + +// Escaping is not enough to make a value XML: the characters below have no +// representation at all in XML 1.0 — not literal, not as a numeric reference — +// so resvg's parser rejects the WHOLE document rather than the one glyph, and +// `new Resvg(...)` throws before anything is drawn. `cleanSocialText` strips +// \p{Cc}, but U+FFFE/U+FFFF are \p{Cn} noncharacters: legal in a JS string, +// legal UTF-8, legal in Mongo, and legal in a percent-encoded URL. So they pass +// every existing filter and reach the parser. Two ways that bites: +// - Any public post/profile/page whose text contains one renders no card at +// all — the route falls back to the generic one for a perfectly good post. +// - `/social-card?path=/docs/` puts it in `staticSocialPreview`'s own +// title, which is exactly what the route's catch block re-renders as its +// "safe fallback" — so both renders throw and the public, unauthenticated +// endpoint answers 500 instead of a card. +// Tab/LF/CR are the three controls XML does allow and the `\s+` collapse below +// handles them; this class is the rest, kept self-contained rather than relying +// on which upstream helper happened to run first. +const CARD_NON_XML = /[\u0000-\u0008\u000B\u000C\u000E-\u001F\uFFFE\uFFFF]/g; + +// Single choke point for every user-authored value entering the SVG, so the +// drop and the escape can never be applied to one field and skipped on another. +const escapeXml = (value: string): string => + value + .replace(CARD_UNRENDERABLE, '') + .replace(CARD_NON_XML, '') + .replace(/\s+/g, ' ') + .trim() + .replace(/&/g, '&') + .replace(//g, '>') + .replace(/"/g, '"') + .replace(/'/g, '''); + +// A character budget cannot express "must not run under the art panel": the +// same 27 characters are 470px of narrow letters or 700px of capitals, and the +// card is drawn where `Arial` does not exist (Vercel/CI resolve the +// `sans-serif` fallback), which is wider again than the Arial these numbers +// were first eyeballed against. So measure instead, with the widest advance +// resvg reported per class for that Linux fallback face — an estimate that is +// never under the real width, and comfortably over it on a machine with real +// Arial. Unknown scripts and emoji bill at a full em. +const glyphEm = (character: string): number => { + if (character === ' ') return 0.35; + if (/[iljI.,;:!'|]/.test(character)) return 0.46; + if (/[MWmw@%]/.test(character)) return 1.11; + if (/[A-Z]/.test(character)) return 0.85; + if (/[a-z0-9]/.test(character)) return 0.72; + return 1.1; +}; + +export const socialTextWidth = (value: string, fontSize: number): number => + Array.from(value).reduce((total, character) => total + glyphEm(character) * fontSize, 0); + +// The text column runs from x=86 to the media/art panel at x=700. +const TEXT_COLUMN_WIDTH = 594; + +// Drop what the bundled face cannot draw before anything is measured, so wrap +// and clamp budget the column against the glyphs that actually get painted. +// Both classes, for the same reason `escapeXml` applies both: a value that +// survives here but is dropped there would be measured, given a slot, and then +// painted as nothing — the exact mismatch `badgeRenders`/`cardInitial` exist to +// prevent. +const cardText = (value: string): string => value.replace(CARD_UNRENDERABLE, '').replace(CARD_NON_XML, '').replace(/\s+/g, ' ').trim(); + +// The strip above runs inside `cardText`/`escapeXml` — downstream of every +// decision about WHAT to draw — so a value that is entirely unrenderable still +// claimed its slot and then painted nothing into it. Two places chose before +// they measured, and both are common rather than exotic: +// +// - `🌸 Rosie` put a blank disc where the avatar letter goes. The `|| 'T'` +// fallback cannot catch it: the emoji is a perfectly truthy `initial`, and +// only the escape at paint time drops it. +// - An emoji tag or structured status spent a badge pill on an empty pill, +// and — because the slice to three happens first — pushed a real `#garden` +// off the card to do it. +// +// Both now choose from what survives the strip. +const cardInitial = (preview: SocialPreview): string => { + const explicit = cardText(preview.initial || ''); + if (explicit) return explicit; + return (Array.from(cardText(preview.author || ''))[0] || 'T').toUpperCase(); +}; + +// A badge that strips to a bare hashtag marker (`#🎉`) is as empty as one that +// strips to nothing at all. +const badgeRenders = (badge: string): boolean => cardText(badge).replace(/^#/, '').length > 0; + +// `letterSpacing` is the SVG attribute of the same name: resvg adds it after +// every glyph but the last, so a label the width estimate calls safe is really +// that much wider on the eyebrow line. +const clampToWidth = (input: string, maxWidth: number, fontSize: number, letterSpacing = 0): string => { + const width = (text: string): number => socialTextWidth(text, fontSize) + Math.max(0, Array.from(text).length - 1) * letterSpacing; + const value = cardText(input); + if (width(value) <= maxWidth) return value; + const codePoints = Array.from(value); + while (codePoints.length && width(`${codePoints.join('')}…`) > maxWidth) codePoints.pop(); + return `${codePoints.join('').trimEnd()}…`; +}; + +const wrap = (value: string, fontSize: number, maxLines: number, maxWidth = TEXT_COLUMN_WIDTH): string[] => { + const words = cardText(cleanSocialText(value)).split(' ').filter(Boolean); + const lines: string[] = []; + let line = ''; + for (const word of words) { + const next = line ? `${line} ${word}` : word; + if (socialTextWidth(next, fontSize) <= maxWidth || !line) line = next; + else { + lines.push(line); + line = word; + if (lines.length === maxLines) break; + } + } + if (line && lines.length < maxLines) lines.push(line); + // Dropped words must stay visible as an ellipsis. A last line that already + // fits the column is not shortened by the clamp, so mark it here rather than + // letting a cut-off headline read like a complete one. Every line is clamped + // because a single unbroken word (a pasted URL, say) is never wrapped above + // and would otherwise print straight through the panel. + const dropped = words.join(' ').length > lines.join(' ').length; + return lines.map((entry, index) => { + const clamped = clampToWidth(entry, maxWidth, fontSize); + if (index < lines.length - 1 || !dropped || clamped.endsWith('…')) return clamped; + return clampToWidth(`${clamped}…`, maxWidth, fontSize); + }); +}; + +const plusMark = (x: number, y: number, size = 22): string => { + const cells = [ + [1, 0], + [0, 1], + [1, 1], + [2, 1], + [1, 2] + ]; + const colours = ['#FFFFFF', '#FDE047', '#FDA4AF', '#C4B5FD', '#86EFAC']; + return `${cells + .map( + ([cx, cy], index) => + `` + ) + .join('')}`; +}; + +const colourTile = (index: number, x: number, y: number, width: number, height: number): string => { + const palettes = [ + ['#F5B4E3', '#E589CE'], + ['#B8A3FF', '#8067E8'], + ['#7DD3FC', '#3B82F6'], + ['#86EFAC', '#22C55E'] + ]; + const [start, end] = palettes[index % palettes.length]; + return ``; +}; + +// The branded tile is painted first and the photo lands on top of it, so a +// href resvg cannot decode degrades to exactly the treatment the no-image +// case already uses. SVG has no "image failed" hook: an whose bytes +// will not decode simply draws nothing, and what showed through was the white +// card panel — a blank slab where a photo was promised. The loader only +// checks the Content-Type header and a size bound, so any object whose stored +// bytes do not match their declared type reaches the renderer, as does any +// SAFE_IMAGE_TYPES spelling this resvg build happens not to decode. +const imageTile = (href: string | undefined, index: number, x: number, y: number, width: number, height: number): string => { + const tile = colourTile(index, x, y, width, height); + if (!href) return tile; + const clip = `clip-${index}`; + return `${tile}`; +}; + +const panelArt = (variant: SocialPreviewVariant): string => { + switch (variant) { + case 'text-post': + return ''; + case 'image-post': + case 'gallery': + case 'media-image': + return ''; + case 'poll': + return ''; + case 'listing': + return '$'; + case 'thingtime': + case 'thing': + return ''; + case 'share': + return ''; + case 'comment': + case 'reply': + return ''; + case 'media-video': + return ''; + case 'media-audio': + return ''; + case 'media-file': + return ''; + case 'webpage': + case 'docs': + return ''; + case 'collection': + return ''; + case 'profile': + return ''; + case 'feed': + case 'explore': + return ''; + case 'app': + default: + return `${plusMark( + 824, + 200, + 40 + )}`; + } +}; + +const panelCopy = (variant: SocialPreviewVariant): [string, string] => { + switch (variant) { + case 'text-post': + return ['A thought,', 'with its context.']; + case 'poll': + return ['A question worth', 'answering together.']; + case 'listing': + return ['A good find,', 'ready to share.']; + case 'thingtime': + case 'thing': + return ['A thing with', 'its own little world.']; + case 'share': + return ['Pass the good', 'things along.']; + case 'comment': + case 'reply': + return ['A conversation', 'keeps its thread.']; + case 'media-video': + return ['Press play on', 'the full moment.']; + case 'media-audio': + return ['Listen to the', 'little details.']; + case 'media-file': + return ['The file, with', 'its useful context.']; + case 'webpage': + case 'docs': + return ['A page made', 'to be shared.']; + default: + return ['Every thing deserves', 'a little context.']; + } +}; + +const mediaLayout = (preview: SocialPreview, images: readonly (string | null)[], theme: CardTheme): string => { + const x = 700; + const y = 92; + const width = 430; + const height = 446; + const available = images.filter(Boolean); + const tiles = Math.max(preview.imageCount, available.length); + if (!tiles) { + const [firstLine, secondLine] = panelCopy(preview.variant); + // Each variant positions its illustration independently, but the copy sits + // at two fixed baselines — so the poll's white axis stroke ran through + // "answering together" and the docs page rect put white text on yellow. + // A scrim is the one treatment that works for every variant without + // pinning twenty pieces of art to a shared bottom edge; it is clipped to + // the panel so it cannot square off the panel's rounded corners. + const scrimTop = y + height - 220; + return ` + ${panelArt(preview.variant)} + + + + ${escapeXml(firstLine)} + ${escapeXml(secondLine)}`; + } + const count = Math.min(4, Math.max(1, tiles)); + if (count === 1) return imageTile(images[0] || undefined, 0, x, y, width, height); + if (count === 2) + return `${imageTile(images[0] || undefined, 0, x, y, width / 2 - 8, height)}${imageTile( + images[1] || undefined, + 1, + x + width / 2 + 8, + y, + width / 2 - 8, + height + )}`; + const tileWidth = width / 2 - 8; + const tileHeight = height / 2 - 8; + // Three photos get a tall-left/stacked-right collage rather than the 2×2 grid + // with its fourth cell left undrawn. An undrawn cell is not "empty": nothing + // is painted there, so the white card panel shows through as a blank slab in + // the corner of the collage — the exact treatment `imageTile` paints its + // branded tile to avoid, and the only count that had it (1, 2 and 4 all fill + // the panel). Exactly three photos is an ordinary post, not an edge case. + if (count === 3) { + return `${imageTile(images[0] || undefined, 0, x, y, tileWidth, height)}${imageTile( + images[1] || undefined, + 1, + x + tileWidth + 16, + y, + tileWidth, + tileHeight + )}${imageTile(images[2] || undefined, 2, x + tileWidth + 16, y + tileHeight + 16, tileWidth, tileHeight)}`; + } + return Array.from({ length: count }, (_, index) => + imageTile( + images[index] || undefined, + index, + x + (index % 2) * (tileWidth + 16), + y + Math.floor(index / 2) * (tileHeight + 16), + tileWidth, + tileHeight + ) + ).join(''); +}; + +export const buildSocialCardSvg = (preview: SocialPreview, imageDataUris: readonly (string | null)[] = []): string => { + const titleFontSize = preview.kind === 'profile' ? 42 : 38; + const titleLines = wrap(preview.title, titleFontSize, 3); + const descriptionLines = wrap(preview.description, 21, preview.options.length ? 2 : 3); + const badges = preview.badges.filter(badgeRenders).slice(0, 3); + const pollRows = preview.options.slice(0, 3); + const theme = CARD_THEMES[preview.variant]; + const primary = theme.primary; + return ` + + + + + + + + + + + ${plusMark(74, 49, 13)} + THINGTIME + + + + + + + + + ${escapeXml( + clampToWidth(preview.eyebrow, TEXT_COLUMN_WIDTH, 15, EYEBROW_LETTER_SPACING) + )} + ${ + preview.author + ? `${escapeXml( + cardInitial(preview) + )}${escapeXml( + clampToWidth(preview.author, AUTHOR_LABEL_WIDTH, 19) + )}` + : '' + } + ${titleLines + .map( + (line, index) => + `${escapeXml(line)}` + ) + .join('')} + ${descriptionLines + .map( + (line, index) => + `${escapeXml(line)}` + ) + .join('')} + ${pollRows + .map( + (option, index) => + `${escapeXml( + clampToWidth(option, POLL_LABEL_WIDTH, 14) + )}` + ) + .join('')} + ${badges + .map( + (badge, index) => + `${escapeXml( + clampToWidth(badge, BADGE_LABEL_WIDTH, 13) + )}` + ) + .join('')} + ${mediaLayout(preview, imageDataUris, theme)} + `; +}; + +// resvg only loads fonts from a path, so the embedded faces are materialised +// once per process into the runtime's temp dir (writable on Vercel) and reused. +// `loadSystemFonts` is then off deliberately: it keeps the deployed card +// byte-identical to the one CI renders, so the width estimate in +// `socialTextWidth` is calibrated against the face that actually draws. +let cardFontFiles: string[] | null = null; + +export const socialCardFontFiles = (): string[] => { + if (cardFontFiles) return cardFontFiles; + const directory = join(tmpdir(), 'thingtime-social-card-fonts'); + const files: string[] = []; + try { + mkdirSync(directory, { recursive: true }); + for (const font of SOCIAL_CARD_FONTS) { + const path = join(directory, font.file); + if (!existsSync(path)) writeFileSync(path, Buffer.from(font.base64, 'base64')); + files.push(path); + } + } catch (error) { + // Never fail a card over this: fall back to whatever the host provides. + // That is nothing on Vercel — hence the loud log — but it is a full font + // set on a developer machine, so local rendering still works. + console.error('[social-card] could not materialise the bundled card font; falling back to system fonts:', error); + cardFontFiles = []; + return cardFontFiles; + } + cardFontFiles = files; + return cardFontFiles; +}; + +export const socialCardRenderOptions = (): ConstructorParameters[1] => { + const fontFiles = socialCardFontFiles(); + return { + fitTo: { mode: 'width', value: SOCIAL_PREVIEW_WIDTH }, + font: { + loadSystemFonts: fontFiles.length === 0, + fontFiles, + // `Arial` does not exist on Linux and the card markup asks for + // `Arial, sans-serif`, so both the generic fallback and the + // nothing-matched default have to land on the bundled face. + defaultFontFamily: SOCIAL_CARD_FONT_FAMILY, + sansSerifFamily: SOCIAL_CARD_FONT_FAMILY + } + }; +}; + +/** + * Read at most `limit` bytes of a response body, giving up the moment the cap + * is passed. + * + * `arrayBuffer()` cannot enforce a cap: it buffers the whole body first and can + * only be measured afterwards, which is the opposite order from what a limit + * means. A `content-length` pre-check does not stand in for it either — the + * header is absent on a chunked response, so the check silently passes and the + * bound stops existing exactly when it is load-bearing. This endpoint is public + * and unauthenticated and renders up to four images at once, so the read is + * bounded as it happens instead. + * + * Exported for the unit suite: the caller reaches S3 and cannot be tested here. + */ +export const readBodyWithin = async (response: Response, limit: number): Promise => { + const reader = response.body?.getReader(); + if (!reader) return null; + const chunks: Uint8Array[] = []; + let total = 0; + for (;;) { + const { done, value } = await reader.read(); + if (done) break; + if (!value) continue; + total += value.byteLength; + if (total > limit) { + // Cancelling closes the connection rather than draining bytes we have + // already decided to throw away. + await reader.cancel(); + return null; + } + chunks.push(value); + } + const bytes = new Uint8Array(total); + let offset = 0; + for (const chunk of chunks) { + bytes.set(chunk, offset); + offset += chunk.byteLength; + } + return bytes; +}; + +const readUint32BE = (bytes: Uint8Array, offset: number): number => + bytes[offset] * 0x1000000 + ((bytes[offset + 1] << 16) | (bytes[offset + 2] << 8) | bytes[offset + 3]); +const readUint16BE = (bytes: Uint8Array, offset: number): number => (bytes[offset] << 8) | bytes[offset + 1]; +const readUint16LE = (bytes: Uint8Array, offset: number): number => bytes[offset] | (bytes[offset + 1] << 8); +const readUint24LE = (bytes: Uint8Array, offset: number): number => bytes[offset] | (bytes[offset + 1] << 8) | (bytes[offset + 2] << 16); +const asciiAt = (bytes: Uint8Array, offset: number, length: number): string => + Array.from(bytes.subarray(offset, offset + length), (byte) => String.fromCharCode(byte)).join(''); + +type ImageExtent = { width: number; height: number }; +const larger = (a: ImageExtent | null, b: ImageExtent | null): ImageExtent | null => + !a ? b : !b ? a : b.width * b.height > a.width * a.height ? b : a; + +// AVIF keeps its intrinsic size in an `ispe` box nested meta → iprp → ipco. +// Walk the boxes rather than scanning the file for the fourcc: a raw scan can +// match inside compressed image data and read a bogus — possibly small — size, +// and under-reading is the one direction this guard must never fail in. The +// largest `ispe` wins for the same reason (a multi-item file can describe +// thumbnails alongside the full-size item). +const AVIF_CONTAINER_BOXES = new Set(['meta', 'iprp', 'ipco']); +const avifExtent = (bytes: Uint8Array, start: number, end: number, depth = 0): ImageExtent | null => { + let offset = start; + let found: ImageExtent | null = null; + while (offset + 8 <= end && depth < 6) { + const size = readUint32BE(bytes, offset); + const type = asciiAt(bytes, offset + 4, 4); + // size 0 means "runs to the end of the file"; size 1 means a 64-bit + // length, which no `ispe` ancestor needs, so stop rather than guess. + const boxEnd = size === 0 ? end : offset + size; + if (size === 1 || size < 8 || boxEnd > end) break; + if (type === 'ispe' && offset + 20 <= end) { + found = larger(found, { width: readUint32BE(bytes, offset + 12), height: readUint32BE(bytes, offset + 16) }); + } else if (AVIF_CONTAINER_BOXES.has(type)) { + // `meta` is a full box: a version/flags word precedes its children. + found = larger(found, avifExtent(bytes, offset + 8 + (type === 'meta' ? 4 : 0), boxEnd, depth + 1)); + } + offset = boxEnd; + } + return found; +}; + +const jpegExtent = (bytes: Uint8Array): ImageExtent | null => { + let offset = 2; + while (offset + 9 <= bytes.length) { + if (bytes[offset] !== 0xff) return null; + const marker = bytes[offset + 1]; + // Padding, standalone markers (RSTn/TEM/SOI) carry no length word. + if (marker === 0xff) { + offset += 1; + continue; + } + if (marker === 0x01 || (marker >= 0xd0 && marker <= 0xd8)) { + offset += 2; + continue; + } + // SOS begins entropy-coded data and EOI ends the image; a frame header + // always precedes both, so anything not found by here is not there. + if (marker === 0xda || marker === 0xd9) return null; + // SOFn — every frame flavour except DHT (C4), JPG (C8) and DAC (CC). + if (marker >= 0xc0 && marker <= 0xcf && marker !== 0xc4 && marker !== 0xc8 && marker !== 0xcc) { + return { width: readUint16BE(bytes, offset + 7), height: readUint16BE(bytes, offset + 5) }; + } + const segment = readUint16BE(bytes, offset + 2); + if (segment < 2) return null; + offset += 2 + segment; + } + return null; +}; + +const webpExtent = (bytes: Uint8Array): ImageExtent | null => { + const chunk = asciiAt(bytes, 12, 4); + if (chunk === 'VP8X' && bytes.length >= 30) { + // The extended header stores canvas dimensions minus one. + return { width: readUint24LE(bytes, 24) + 1, height: readUint24LE(bytes, 27) + 1 }; + } + if (chunk === 'VP8L' && bytes.length >= 25 && bytes[20] === 0x2f) { + // 14 bits of width-1 then 14 bits of height-1, little-endian. + const packed = readUint16LE(bytes, 21) + readUint16LE(bytes, 23) * 0x10000; + return { width: (packed & 0x3fff) + 1, height: ((packed >>> 14) & 0x3fff) + 1 }; + } + if (chunk === 'VP8 ' && bytes.length >= 30 && bytes[23] === 0x9d && bytes[24] === 0x01 && bytes[25] === 0x2a) { + return { width: readUint16LE(bytes, 26) & 0x3fff, height: readUint16LE(bytes, 28) & 0x3fff }; + } + return null; +}; + +/** + * Intrinsic pixel dimensions of an encoded image, read from its own header. + * + * Dispatched on the magic bytes, never on the declared Content-Type: the type + * a stored attachment serves is author-supplied metadata, so trusting it is + * exactly the gap that lets un-measured bytes reach the decoder. Returns null + * for anything this cannot measure with certainty, and every caller treats + * null as "do not render" — the branded tile that `imageTile` already paints + * for an undecodable href. + * + * Exported for the unit suite. + */ +export const socialCardImageExtent = (bytes: Uint8Array): ImageExtent | null => { + const extent = + bytes.length >= 24 && asciiAt(bytes, 0, 8) === '\x89PNG\r\n\x1a\n' && asciiAt(bytes, 12, 4) === 'IHDR' + ? { width: readUint32BE(bytes, 16), height: readUint32BE(bytes, 20) } + : bytes.length >= 10 && asciiAt(bytes, 0, 4) === 'GIF8' + ? { width: readUint16LE(bytes, 6), height: readUint16LE(bytes, 8) } + : bytes.length >= 4 && bytes[0] === 0xff && bytes[1] === 0xd8 + ? jpegExtent(bytes) + : bytes.length >= 16 && asciiAt(bytes, 0, 4) === 'RIFF' && asciiAt(bytes, 8, 4) === 'WEBP' + ? webpExtent(bytes) + : bytes.length >= 12 && asciiAt(bytes, 4, 4) === 'ftyp' + ? avifExtent(bytes, 0, bytes.length) + : null; + return extent && Number.isFinite(extent.width) && Number.isFinite(extent.height) && extent.width > 0 && extent.height > 0 ? extent : null; +}; + +type CardImage = { uri: string; pixels: number }; + +const loadAttachmentDataUri = async (attachmentId: string): Promise => { + try { + const { getAttachmentDownload } = await import('../attachments/attachments'); + const download = await getAttachmentDownload(null, attachmentId, false); + if (!download.ok) return null; + // The record's own size is verified against the stored object's head and + // pinned to an immutable objectVersionId, so a known-oversize attachment + // can be dropped before a byte is fetched. Only a definite overage skips + // the fetch — anything else still goes through the bounded read below. + if (Number.isFinite(download.size) && download.size > MAX_CARD_IMAGE_BYTES) return null; + const response = await fetch(download.url, { signal: AbortSignal.timeout(5_000) }); + const contentType = response.headers.get('content-type')?.split(';')[0]?.toLowerCase() || ''; + if (!response.ok || !SAFE_IMAGE_TYPES.has(contentType)) return null; + const bytes = await readBodyWithin(response, MAX_CARD_IMAGE_BYTES); + if (!bytes || bytes.byteLength === 0) return null; + const extent = socialCardImageExtent(bytes); + if (!extent) return null; + const pixels = extent.width * extent.height; + if (pixels > MAX_CARD_IMAGE_PIXELS) return null; + return { uri: `data:${contentType};base64,${Buffer.from(bytes).toString('base64')}`, pixels }; + } catch { + return null; + } +}; + +export const renderSocialCardPng = async (preview: SocialPreview, providedImageDataUris?: readonly (string | null)[]): Promise => { + let imageDataUris = providedImageDataUris; + if (!imageDataUris) { + // The fetches stay concurrent — they are S3 round trips — but the decode + // budget is spent in tile order afterwards, so four in-budget photos still + // cannot hand the renderer four times the per-image ceiling at once. A + // dropped tile is not a blank slab: `imageTile` paints its branded tile + // wherever an href is missing. + const loaded = await Promise.all(preview.images.slice(0, 4).map((image) => loadAttachmentDataUri(image.attachmentId))); + let budget = MAX_CARD_COLLAGE_PIXELS; + imageDataUris = loaded.map((image) => { + if (!image || image.pixels > budget) return null; + budget -= image.pixels; + return image.uri; + }); + } + const svg = buildSocialCardSvg(preview, imageDataUris); + return new Resvg(svg, socialCardRenderOptions()).render().asPng(); +}; diff --git a/remix/app/api/utils/meta/socialCardFontData.ts b/remix/app/api/utils/meta/socialCardFontData.ts new file mode 100644 index 0000000000..1c6a38a254 --- /dev/null +++ b/remix/app/api/utils/meta/socialCardFontData.ts @@ -0,0 +1,5534 @@ +// GENERATED FILE — do not hand-edit. +// +// Liberation Sans, embedded as base64 so the social-card renderer always has +// a face to draw with. Regenerate with scripts/generate-social-card-font.mjs. +// +// Why the bytes live in a JS module rather than beside it on disk: resvg-js +// 2.6 can only load fonts from a filesystem PATH (there is no fontBuffers +// option), and the deployed Vercel Node runtime ships no fonts at all — so +// `font-family="Arial, sans-serif"` resolved to nothing and every card came +// out with its artwork drawn and not one glyph on it. A sibling .ttf would +// have to survive Nitro bundling AND Vercel dependency tracing to be there at +// runtime; bytes inside the bundle simply cannot go missing, and the unit +// tests then exercise the exact code path production uses. +// +// Liberation Sans is metric-compatible with Arial, which is what the card was +// designed and measured against (see socialTextWidth). +// +// SIL Open Font License 1.1 — see ./LICENSE-Liberation.txt. + +export const SOCIAL_CARD_FONT_FAMILY = 'Liberation Sans'; + +export const SOCIAL_CARD_FONTS: ReadonlyArray<{ file: string; base64: string }> = [ + { + file: 'LiberationSans-Regular.ttf', + base64: + 'AAEAAAATAQAABAAwRkZUTYXAJxQABkSoAAAAHEdERUbiP+wQAAUOwAAAASpHUE9T8uAO6wAFGTAAASt4R1NVQgaZyakABQ/sAAAJRE9TLzIApsu2AAABuAAAAGBjbWFwVR/lJwAAKwgAAAaYY3Z0IEraS/oAADyYAAACiGZwZ21+YbYRAAAxoAAAB7RnYXNwABgACQAF' + + 'DrAAAAAQZ2x5Zv4DV7YAAGgUAAQcKGhlYWQLAIuxAAABPAAAADZoaGVhDZQNuQAAAXQAAAAkaG10eHzU0x0AAAIYAAAo8Gtlcm4AQh1CAASEPAAAFVpsb2NhFpT/rAAAPyAAACj0bWF4cA2rA+QAAAGYAAAAIG5hbWXbMnL/AASZmAAAC4hwb3N0Gh9yXwAEpSAAAGmN' + + 'cHJlcP2uR0kAADlUAAADQwABAAAAAhmZJQjTVF8PPPUAHwgAAAAAAMhA+ZoAAAAA3XsuFvum/ZMKagfXAAAACAACAAEAAAAAAAEAAAc+/k4AQwq0+6b6egpqAAEAAAAAAAAAAAAAAAAAAAo8AAEAAAo8AVIAVABcAAYAAgAQAC8AXAAAAqQCBAAEAAEAAwSjAZAABQAA' + + 'BZoFMwAAARsFmgUzAAAD0QBmAhIIBQILBgQCAgICAgTgAAr/UAB4/wAAACEAAAAAMUFTQwBAACD//AXT/lEBMwc+AbJgAAG/3/cAAAQ6BYEAAAAgACwGAADNAAAAAAI5AAACOQAAAjkAuQLXAFcEcwAJBHMAFgcdAEkFVgBIAYcAaAKqAH8CqgAMAx0AIQSsAGQCOQC4' + + 'AqoAWwI5ALsCOQAABHMAUARzAJwEcwBnBHMATgRzAC8EcwBSBHMAaARzAGkEcwBZBHMAYAI5ALsCOQC4BKwAZQSsAGQErABlBHMAVAgfAKEFVgAEBVYAqAXHAGgFxwCoBVYAqATjAKgGOQBnBccAqAI5AL0EAAAgBVYAqARzAKgGqgCoBccAqAY5AGEFVgCoBjkAYQXH' + + 'AKgFVgBdBOMALgXHAJ4FVgAJB40ACQVWAC4FVgAtBOMAQQI5AJICOQAAAjkAEAPBAAoEc//hAqoAagRzAFcEcwCEBAAAVwRzAFYEcwBXAjkAHQRzAFYEcwCOAccAiQHH/84EAACKAccAigaqAIgEcwCIBHMAVgRzAIQEcwBWAqoAiAQAADkCOQAfBHMAhQQAAAcFx//9' + + 'BAAAFwQAAAUEAABTAqwAIgIUALcCrAAiBKwAXAI5AAACqgDyBHMAhwRzADoEcwBxBHP//gIUALcEcwBzAqoALQXlAB8C9gAaBHMAUwSsAGQCqgBbBeUAHwRr/+8DMwB6BGQAQQKqACkCqgAbAqoASAScAIwETABQAqoA8wKqAHcCqgBQAuwAGwRzAFMGrAA4BqwAOAas' + + 'AEkE4wCDBVYABAVWAAQFVgAEBVYABAVWAAQFVgAECAAAGAXHAGgFVgCoBVYAqAVWAKgFVgCoAjkACQI5AI4COf/SAjkABwXHAA4FxwCoBjkAYQY5AGEGOQBhBjkAYQY5AGEErACOBjkARwXHAJ4FxwCeBccAngXHAJ4FVgAtBVYAqATjAI4EcwBXBHMAVwRzAFcEcwBX' + + 'BHMAVwRzAFcHHQBCBAAAVwRzAFcEcwBXBHMAVwRzAFcCOQAKAjkAhwI5/9MCOQAIBHMAVgRzAIwEcwBWBHMAVgRzAFYEcwBWBHMAVgRkAEEE4wAsBHMAiwRzAIsEcwCLBHMAiwQAAAUEcwCKBAAABQVWAAQEcwBXBVYABARzAFcFVgAEBHMAVwXHAGgEAABXBccAaAQA' + + 'AFcFxwBoBAAAVwXHAGgEAABXBccAqATrAFYFxwAOBHMAVgVWAKgEcwBXBVYAqARzAFcFVgCoBHMAVwVWAKgEcwBXBVYAqARzAFcGOQBnBHMAVgY5AGcEcwBWBjkAZwRzAFYGOQBnBHMAVgXHAKgEcwCOBccADgRzAAoCOf+4Ajn/uAI5AAwCOQAMAjn/0gI5/9ICOQBc' + + 'AccAHwI5AL0COQDCBeEAqgONAIkEAAAgAcf/mQVWAKgEAACKBAAAigRzAKgBxwBbBHMAqAHHAH4EcwCoAlUAigRzAKgCrACKBHMAFAHHABAFxwCoBHMAjAXHAKgEcwCMBccAqARzAIwE1f/+BckApQRzAIwGOQBhBHMAVgY5AGEEcwBWBjkAYQRzAFYIAABhB40AVgXH' + + 'AKgCqgCIBccAqAKqAIEFxwCoAqoAOAVWAF0EAAA5BVYAXQQAADkFVgBdBAAAOQVWAF0EAAA5BOMALgI5AB8E4wAuAwAAHwTjAC4COQAfBccAngRzAIUFxwCeBHMAhQXHAJ4EcwCFBccAngRzAIUFxwCeBHMAhQXHAJ4EcwCFB40ACQXH//0FVgAtBAAABQVWAC0E4wBB' + + 'BAAAUwTjAEEEAABTBOMAQQQAAFMBxwCKBHMACwYRABQFQACoBHMAhAVAAAoEcwAKBccAWwXHAGgEAABXBccADgZ6ABQFQABRBHMAUgR0AFYFVgBZBgUAXgTVAFgE4//GBHMAwAY5AGcE/gAKBwwAjgHHAIoCOQAeBVYAqAQAAIoBxwAUBAAADgcgAJ4Fx//QBHMAiAY5' + + 'AGEG3ABhBT8AVgbyAGEFVwBWBgkAFARzAIoFVgCoBVYAYgQAAE8E8gBsAwsAQwI5AB8E4wAUAjkAHwTjAC4G1QCeBVsAhQX7AFcFxwCeBi4ALQQAAAUE4wA+BAAALwTjAC0E4wBGBFwAXQRcAE4EcwBaBHMAWQOrAC4D5QAkBHMAigIUALADTgCzBKwAcgI5ALkKqgCo' + + 'CccAqAhkAFYIfwCoBqoAqAOcAIoJxwCoB44AqAYrAIgFVgAEBHMAVwI5/9YBx/+JBjkAYQRzAFYFxwCeBHMAhQXHAJ4EcwCFBccAngRzAIUFxwCeBHMAhQXHAJ4EcwCFBHMAVgVWAAQEcwBXBVYABARzAFcIAAAYBx0AQgY5AGcEcwBWBjkAZwRzAFYFVgCoBAAAigY5' + + 'AGEEcwBWBjkAYQRzAFYE4wAtBFwARAHH/5IKqgCoCccAqAhkAFYGOQBnBHMAVghGAKgE8gCoBccAqARzAIgFVgAEBHMAVwgAABgHHQBCBjkARwTjACwFVgAEBHMAVwVWAAQEcwBXBVYAqARzAFcFVgCoBHMAVwI5/2kCOf9XAjkACAI5//oGOQBhBHMAVgY5AGEEcwBW' + + 'BccAqAKq/78FxwCoAqoAbAXHAJ4EcwBpBccAngRzAIUFVgBdBAAAOQTjAC4COQAfBFwAQAN+ACEFxwCoBHMAjgWmAKQFdABWBNYAXQSGAF8E4wBBBAAAMQVWAAQEcwBXBVYAqARzAFcGOQBhBHMAVgY5AGEEcwBWBjkAYQRzAFYGOQBhBHMAVgVWAC0EAAAFAsv/qQV6' + + 'AIgC8P+3Acf/zgcYAFMHGABTBVYABAXHAGgEAAAKBHMAGgTjAC4EAABHBAAAMQSlADMDoAAUBVYAIQXHACkFWAAJBVYAqARzAEQEAAAgAcf/zgXmAGEEcwBWBccAAAKqABQFVgAtBAAABQRzAAEEcwBWBHMAfgRzAIQEAAA9BAAATQRzAFYEcwBWBHMAVwRzAFcF6QBX' + + 'A6sASAOrADUFDQA1BA8ASwI5AAgEcwBWBHMAVgR4AF4EAgAHBO8AFgRzAI4EcwCOBHMAjgHHABgBxwBWAtkARAKeAAACbgAPAccAhgSTAIMGqgCJBqoAiQaqAIgEc/+hBHMAiARsAI4EcwBWBlMAVgY/AFcEZgBWAqoAKwKqACsCqgArAqoAiAKqAIgCqgCOAqoAIARV' + + 'AI4EVQCOBAAAOQHH/4oCFP/DAcf/ggLLAAACOQAfAjkAHwRzABoEjABUBGAAhQQAAAcFxwAGBAAADwQoABsEAAAxBFQAMQRcAEQEXABsBAAAOQQAAFsEAAA5BAAAVwY5AGEEQACOBA8ASQR4AF4EawCGAy4AAQQAAAEDOwCGBHMAVgQAAC8EAABPB7cAVgdAAFYICwBW' + + 'BbMAKQNvACkFwAAfBhwAHQVKAIoFDwCKA+IAGQQ4AGMFfwAnBX8AJwMRAGEDEQBhAUb/6QHrAGcB6wAoAesAFgLqAGQD2f/yApH/9QGHAGgC1wBXAccAfwHHAHYBxwCKAqoA9gKqAPoCygA0AsoAMwSsAGUErABlBKwAZQSsAGUCqgAAAqoAAAKqARwCqgAzAqoAxwKq' + + 'AJUCqgEcAqoAQwKqAHcCqgDlAjkAsQI5ALECqgD2AqoA+gKqAKECqgChAqoAoQKqAB0Cqv/dAqoAnAKqADMCqgBQAqr/6QKqABYCqv/mAqoAAwKU//IBQgBkArgALAKgAAQCygAzAxAAoAMQAKADEACgAxAAoAMQAKACqgBiAqoAYgKqAAACqgAdAqoAUAKqAIECqgCB' + + 'AqoAyAKqAMgCqgCNAqoAjQKq/+YCqv/nAqr/6QI5ALsCqgCKAqoAigKqAIoCqgCKAy4AHgMuABcCqgA6AAD9/AAA/pUAAP61AAD/6QAA/u0AAP2rAAD+3AAA/6YAAP7pAAD+FwAA/zgAAP5/AAD+tQAA/8kAAP9ZAAD+fwAA/twAAP7cAAD/mwAA/5sAAP+bAAD/mwAA' + + '/1sAAP9PAAD/PwAA/14AAP6HAAAAPgAA/6YAAP9MAAD/TQAA/0sAAP7JAAD/EQAAAAAAAPz/AAD+6QAA/zgAAP+ZAAD/SgAA/0wAAP+9AAD+hwAA/p0AAP65AAD+tQAA/twAAP7cAAD+mgAA/u0AAP2rAAD+yQAA/poAAP6hAAD9rQAA/gAAAP7mAAD/owAA/ocAAP9E' + + 'AAD+ogAA/yUAAP+XAAD9rAAA/rMAAAASAAD+pAAA/5wAAP6rAAD/ugAA/ocAAP4NAAD/RwAA/zUAAP6ZAAD+nwAA/p8AAP7vAAD/TwAA/RYAAP90AAD/owAA/twAAP8lAAD/dAAA/3QAAP7oAAD/pAAAAPUAAP9BAAD+vwAA/zgAAP9TAAD/UwAA/aUAAP3NAAD/UwAA' + + '/1MAAP9TAAD+uwAA/roAAP/EAAD+uQAA/toAAP7NAAD+yAAA/tcAAP4ZAAD/YwAA/1cAAP6qAAD+tgKqAPkCqgB1AqoA8AQAAD4EAABXBAAAPgI5ALgCqgDNAqoAHQVXAAQCOQC7Bkb/9Qa0//IDEv/oBjL/uwbYAEEGBf+7Acf/sAVWAAQFVgCoBGgAqAVYAD0FVgCo' + + 'BOMAQQXHAKgGOQBhAjkAvQVWAKgFWAAKBqoAqAXHAKgFMwBaBjkAYQXHAKgFVgCoBPIAbATjAC4FVgAtBmIAdQVWAC4GrwCRBfsAVwI5AAcFVgAtBKAAVgORAEYEcwBqAccAiQRgAIUEoABWBJoAjgQAAAcEdABWA5EARgOHAFYEcwBqBHMAagHHAIkEAACKBAAADgSc' + + 'AIoEAAAAA5UAVgRzAFYFhQBPBI0AhAPbAFYE8ABWAykAHQRgAIUFMABVBDMAFQW0AIcGPwBTAcf/zQRgAIUEcwBWBGAAhQY/AFMEmgBzBGAACQYuADkHqgAcBi4AOQR7AFAGPwBSBM8ARAY5AGEEcwBWBccAcgQAAFoE4wCoAzsAiAT/AAEEPAAyBg0ALgSdAGMHIACm' + + 'BqoAhAVlAGQEcwCOBWQApAQAAAoFVgBuBVYAbgTgAAcExQAWBeUAYQRuAEkDtgAUA0cAKATPAEQElQBiBAAAVwHH/84GOQBhA4kAUAOJAFAFVgCoBHMAigXHAGgGqgCoBYAAjgSNAAoFxwBbBccAaAXHAFsFVgCoBVcAqAbrAC4EVQCoBcAAaAVWAF0COQC9AjkABwQA' + + 'ACAIdQASCBUAqAbVAC4EqQCoBcAAqAUVADcFwACoBVYABAVAAKgFVgCoBFUAqAVrAA8FVgCoB2MAHATVAEMFwACoBcAAqASpAKgFQAASBqoAqAXHAKgGOQBhBcAApgVWAKgFxwBoBOMALgUVADcGFQB2BVYALgXrAKgFVQCgB1UAqAeAAKgGVQAuBxUAqAVAAKgFwABp' + + 'CBUAqAXHAGAEcwBXBJUAeARAAI4C6wCOBKsAFARzAFcFWgAHA6sAMQR4AI4EeACOA4AAigSrAAsFgACOBGsAjgRzAFYEVQCOBHMAhAQAAFcDqgAjBAAABQaVAFYEAAAXBJUAjgQrAHoGawCOBpUAjgUAAC0FwACOBCsAjgQVADcGAACOBFUAEQRzAFcEcwBXBHMACgLr' + + 'AI4EFQBXBAAAOQHHAIkCOf/4Acf/zgdAAAsGgACOBHMACgOAAIoEeACOBAAABQRrAI4KtAByBP4ADwY5ABUE5wAVB5kAvQW1AIgFWAAEBAAABgcuAL8FkACGBqEAeQV7AHoIbQC9BvAAiATVAGADqwAgBl8AQwWCAEQGOQBhBHMAVgZtAAkFDAAHBm0ACQUMAAcImABh' + + 'BywAVQaqADYE5gArCYcAbAbQAFcKtAByBP4ADwXHAGgEAABQBAcACwAA/qIAAP68AAD/nwAA/58AAP3TAAD8JQAA/GsFwACoBHgAjgVAAAQEKwAUBVYAqARzAIQD6QCoA0oAjgRV//8C6wAUBV0ApwRkAI0HYwAcBVoABwTVAEMDqwAxBKkAqAOAAIoEqQCoA4AAigSp' + + 'AAQDgAAKBe8AKQRJACgFxwCoBGsAjgcJAKgFLwCOCRgAqAb2AIgGBgA+BCsAIwXHAGgEAABXBOMALgOqACMEcwAUBAAABwRzABQEAAAHBVYALgQAABcHZwAxBYcAJgVVAKAEKwBFBVUAoAQrAHoFVQCpBHMAjgbkAAoFVAAKBuQACgVUAAoCOQC9B2MAHAVaAAcFVwCo' + + 'BGgAjQVAABIEqwALBccAqARrAI4FxwCoBGsAjgVVAKAEKwB6BqoAqAWAAI4BxwCKBVYABARzAFcFVgAEBHMAVwgAABgHHQBCBVYAqARzAFcGBQBeBHMAVwYFAF4EcwBXB2MAHAVaAAcE1QBDA6sAMQTVAE0EXABEBcAAqAR4AI4FwACoBHgAjgY5AGEEcwBWBjkAYQRz' + + 'AFYGOQBhBHMAVgXAAGkEFQA3BRUANwQAAAUFFQA3BAAABQUVADcEAAAFBVUAoAQrAHoEVQCoAusAjgcVAKgFwACOBFX//wLrAAAFVgAuBAAAFwVWAC4EAAAXBUAAWARzAFYHvwBbBwMAVgemAGAGhgBVBU0AYAQTAFUHwwASB0cACwhGAKgHBwCOBjkAZwR4AF4F+QAu' + + 'BVMAIwTVAFIDqwBJBUAAEgSrAAsGOQBhBHMAVgeNAAkFx//9AAD/RAAAACsAAP9tAAAAXgAAAGAAAP9OAAD/aAAA/tUAAP64AAAAAAAA/ykAAAAAAAAAAAAA/rgAAP32AAAAAAAA/1wAAP9EAAD/SAAA/14AAP9qAAD+uAAA/2IAAP9cAAD+FAAA/0QAAP9eAAD/SAAA' + + 'AAAAAP2qAAD/KQAA/7AAAP7TAAD+8gAA/vIAAP+wAAD/PQAA/z0AAP9cAAD/XAAA/7AAAP+wAAD/EgAA/7AAAP/JAxAAhQAA/1wEgQH0AAD/sAAA/7ACOQC6AAD/sAAA/7ADCACaAAAANQUGAEIEyQBSA2IAPwRvACkFEgCYAhQArgKWADMFRACuBTkApAIUAK4ERgAn' + + 'BDMAUAQ9AEYFbQCuBX8ANwIUAK4DHQBIBT8AMwSoACkE/ACFBOEAjwQIAAoEXAAKBLgAewRGACcF1wAzBYcAPQQSAK4EEgCuBBIArgMUANcE0wDXA/gAFQX7ABkHHQBCBEAAGQQAAFcEaQCHBGkAAAPrAIcDqwAxAccAiQNhADAEAACKAzYAEAWAAI4EeACOBHMAVgQA' + + 'AD0E3gA+BN4AQQTeAC8HjQBXA6gAQwRzAFYEcwBWBCsAjgRVABEEVQARA6oAIwRgAIUExgBEBd4ARQTGAD8EAAAHBcf//QQAAFMDqwAxA2sAQQTbACkC6wCOBAAABwRVAI4EKwCOBbQAfgSrAAsDoP/8BU8ACwNRADUDUf/cA5gAMgNIADEDSAAgA/gAMANuAC4BVgBj' + + 'AoQAEQNmADEC0AAtBBUANANxAC4DbwAuBBgAKwMPADQDWQAtA5wALQN2ACoDbwAnBPsAAQL6ADsC+v/sAwQAOwTMAC0DBQBaAwUAOwL5ADsC+QA7AowAOAKMADADBAA7AUIAXgK2AF4ElQBdAw8AXQMFADsC1QBIAwUAOwMFADsDBgBaAcIAIAMPAFsDQgArBJUAXQKS' + + '//MDIAAEAxUAYAKSAAIDBgA7A4UAOgK/AAQBQgBlAesAZwMPAGACkv/zAxUAYgKS//MDCQA8A4UAOgK/AAQHRACFBHP/kgRzAFYCOf+9Bqr/xwRz/7MEc/+WAqr/ngKq/54EAP/5Ajn/sgQAADEEcwCHAwsAYgR0AE0GSQAqAccAGgHHABoEcwAeBGAAHgSMAAoEcwCE' + + 'BHMAVgI5AB0FtABWBAAAigHHAA8GqgCIBHMAiARzAIQCqgAABAAAOQMY/6cEAAAHBAAAFwQAADEEcwBXBHMAVgRzAFYEcwBXA6sASQOrADUFNABYAccAiQQAAD0Bx/+RBHMAhQRcAEQDBABXAtUAQALJADMC/AAyAowAJwHVAC4B1QAsAwQAOwMRAGABQgARAUIAZAFC' + + 'AGQBQgARAir//wFCAFcBQgADAjMAWASTAFsEkwBbAw//wQMPAF8DDgBfAwUAOgMAADcCuAAvAUL/rwHCACIDDwATAxoAOAMGAFsC1ABXApL/8wLeADwC3gAuAt4AJQL0AC4C6gA8AAD+sAAA/oQAAP+FAAD+qQAA/sYAAP7UAAD+xgAA/tQAAP5iAAD+YgAA/28AAP90' + + 'AAD+6AVWAAQEcwBXBVYAqARzAIQFVgCoBHMAhAVWAKgEcwCEBccAaAQAAFcFxwCoBHMAVgXHAKgEcwBWBccAqARzAFYFxwCoBHMAVgXHAKgEcwBWBVYAqARzAFcFVgCoBHMAVwVWAKgEcwBXBVYAqARzAFcFVgCoBHMAVwTjAKgCOQAdBjkAZwRzAFYFxwCoBHMAjgXH' + + 'AKgEcwCOBccAqARzAI4FxwCRBHMAbAXHAKgEcwCOAjn/tQHH/3wCOf/4AjkABwVWAKgEAACKBVYAqAQAAIoFVgCoBAAAigRzAKgBxwCJBHMAqAHH/9AEcwCoAcf/0wRzAKgBx/+aBqoAqAaqAIgGqgCoBqoAiAaqAKgGqgCIBccAqARzAIgFxwCoBHMAiAXHAKgEcwCI' + + 'BccAqARzAIgGOQBhBHMAVgY5AGEEcwBWBjkAYQRzAFYGOQBhBHMAVgVWAKgEcwCEBVYAqARzAIQFxwCoAqoAiAXHAKgCqgCIBccAqAKqAHQFxwCoAqoAVAVWAF0EAAA5BVYAXQQAADkFVgBdBAAAOQVWAF0EAAA5BVYAXQQAADkE4wAuAjkAHwTjAC4COQAfBOMALgI5' + + 'AB8E4wAuAjkACAXHAJ4EcwCFBccAngRzAIUFxwCeBHMAhQXHAJ4EcwCFBccAngRzAIUFVgAJBAAABwVWAAkEAAAHB40ACQXH//0HjQAJBcf//QeNAAkFx//9B40ACQXH//0HjQAJBcf//QVWAC4EAAAXBVYALgQAABcFVgAtBAAABQTjAEEEAABTBOMAQQQAAFME4wBB' + + 'BAAAUwRzAI4COQALBcf//QQAAAUEcwBXAccAigWfAKgFVgAEBHMAVwVWAAQEcwBXBVYABARzAFcFVgAEBHMAMQVWAAQEcwBXBVYABARzAFcFVgAEBHMAVwVWAAQEcwBXBVYABARzAFcFVgAEBHMAVwVWAAQEcwBXBVYABARzAFcFVgCoBHMAVwVWAKgEcwBXBVYAqARz' + + 'AFcFVgCoBHMAVwVWAKgEcwAxBVYAqARzAFcFVgCoBHMAVwVWAKgEcwBXAjkAUQHHAAoCOQC8AccAiQY5AGEEcwBWBjkAYQRzAFYGOQBhBHMAVgY5AGEEcwAlBjkAYQRzAFYGOQBhBHMAVgY5AGEEcwBWBtwAYQU/AFYG3ABhBT8AVgbcAGEFPwBWBtwAYQU/AFYG3ABh' + + 'BT8AVgXHAJ4EcwCFBccAngRzAIUG1QCeBVsAhQbVAJ4FWwCFBtUAngVbAIUG1QCeBVsAhQbVAJ4FWwCFBVYALQQAAAUFVgAtBAAABQVWAC0EAAAFBVYALQQAAAUEoABWBKAAVgSgAFYEoABWBKAAVgSgAFYEoABWBKAAVgVWAAQFVgAEBoIAKgaCACoGggAqBoIAKgaC' + + 'AD8GggA/A5EARgORAEYDkQBGA5EARgORAEYDkQBGBh4ADwYeAAgHbAAYB2wAGAdsABgHbAAYBHMAagRzAGoEcwBqBHMAagRzAGoEcwBqBHMAagRzAGoGjwAPBo8ACAgfABgIHwAqCB8AGAgfABgIH//6CB//+gHHAIkBxwCJAcf/swHH/7MBxwADAccAAwHH/4wBx/+M' + + 'AwEADwMBAAgEkQAYBJEAGASRABgEkQAYBJH/+gSR//oEcwBWBHMAVgRzAFYEcwBWBHMAVgRzAFYGnQAPBp0ACAgtABgILQAYB8kAGAfJABgEYACFBGAAhQRgAIUEYACFBGAAhQRgAIUEYACFBGAAhQaCAAgHrgAYCBIAGAeu/+8GPwBTBj8AUwY/AFMGPwBTBj8AUwY/' + + 'AFMGPwBTBj8AUwZfAA8GXwAIB+8AGAfvABgHiwAYB4sAGAeL/+kHi//pBKAAVgSgAFYDkQBGA5EARgRzAGoEcwBqAccAEAHHAIkEcwBWBHMAVgRgAIUEYACFBj8AUwY/AFMEoABWBKAAVgSgAFYEoABWBKAAVgSgAFYEoABWBKAAVgVWAAQFVgAEBoIAKgaCACoGggAq' + + 'BoIAKgaCAD8GggA/BHMAagRzAGoEcwBqBHMAagRzAGoEcwBqBHMAagRzAGoGjwAPBo8ACAgfABgIHwAYCB8AGAgfABgIH//dCB//3QY/AFMGPwBTBj8AUwY/AFMGPwBTBj8AUwY/AFMGPwBTBl8ADwZfAAgH7wAYB+8AGAeLABgHiwAYB4v/6QeL/+kEoABWBKAAVgSg' + + 'AFYEoABWBKAAVgSgAFYEoABWBVYABAVWAAQFVgAEBVYABAVWAAQCqgDzAqoBFAKqAPMCqv/pAqoAEQRzAGoEcwBqBHMAagRzAGoEcwBqBoIAIgaCAEIG8wAiBvMAQgXHAKgCqgAqAqoAKgKq/+8Bx/+WAcf/zwHH/8kBx//IAcf/dwHH/6ICOf/KAjkADANlACADZQBX' + + 'AqoAKgKqACoCqv/vBGAAhQRgAIUEYACFBGAAhQSNAIQEjQCEBGAAhQRgAIUFVgAtBVYALQbmAEsHGAB6Bh4ACAKq/+oCqv/qAqoAywY/AFMGPwBTBj8AUwY/AFMGPwBTB2UAXAad/+kHJwBcBl8ALwX7AFcCqgDzAqoA7AQAAAAIAAAABAAAAAgAAAACqwAAAgAAAAFV' + + 'AAAEcwAAAjkAAAGaAAAAqwAAAAAAAAAA/9YAAP8gAAD/1wAA/kwCqgBbBHMAAARzAAAIAAAACAAAAANOALMEa//hAccAfwHHAH8BxwB/AccAfgKqAEsCqgBLAqoASwKqAEgEcwCKBHMAiALNAFEIAAEWAAD/1wAA/k0AAP8SAAD/EgAA/xIBmgAACAAANwGAAFUC1QBV' + + 'AtX/pAKqAFgCqgBZBAAAuQKq/8ABVv5gAjkAuwAA/xIAAP8SAAD/EAAA/xAAAP8RAAD/EgNwAHwDUQBsA0sAewLlAEQDYACGA20AiwLrAGUDUgB2ArMATgMbAGYDQgBmA0QAZwM5AGcDOgB0AsAAKgNRAHoDLABmAvoAPQL5ADYDBQA7AqAABAL5ADYEcwAOBccAaAXH' + + 'AGgEcwAEBHMAOgaqAIgFxwAZCMAAnglQAKgHjQATBssAtAQbAKEEcwAQBVYAHwTjAC4IAAApBCsABQVWABkGOQBnBVYAAARzAA8FxwBoBewAlAAA/psHFQBFApYAEwiVALwF5QAfCAAAvAYlAGwEzQBYB4sACAPrAGAGrABQBqwAIgasAFAGrAA9BqwAlAasAKoEAAA7' + + 'CAABogQAARAIAAGiBAABEAgAAaIEAAEQBAABEAgAAaID9AA4BOUABAaWAOsFtACaBKwAZQFW/mACOQC7BGQAMwW0AFcH1QGYBcABFgIx/54EZAA4BGQAQQSrAGQIAABkBGQAPwRkAEEE1QCdBKwAZATVAiIE1QEFBav/9gUAAdgFqwKNBav/9gWrAo0Fq//2BasCjQWr' + + '//YFq//2Bav/9gWr//YFq//2BasB2QWrAo0FqwHZBasB2QWr//YFq//2Bav/9gWrAo0FqwHZBasB2QWr//YFq//2Bav/9gWrAo0FqwHZBasB2QWr//YFq//2Bav/9gWr//YFq//2Bav/9gWr//YFq//2Bav/9gWr//YFq//2Bav/9gWrAAAFqwAABasAAAWrAAAFqwLV' + + 'BasAZwWrAAAF1QAABNUAewTVAAYC1gBtAtYAbQgAAAAH6wGeB+sBkQfrAZ4H6wGRA/QACATVAKcEwQBiBNUAsgTVALIE1QCyBNUAsgTVALIE1QCyBNUAsgTVAZgE1QGZBNUAKQTVACkC1gBzCCsBsQhrAdEHVQFGBgAB2gYAAdoGAAHaBgABUQYAAU8GAAG8BgABLAYA' + + 'AXAGAAHqBEAAOwVAADwEwABmBBUAQggAAMQEAADEBgABEAgAARAEAAAyBHMAGQHHABwEc//zBVYAGgXHAKgEcwBQAjn/egXHAKgEcwCOBVYAqAQAAIoE4wBBBAAAMQXcAGEExgAHCEwACQa6//0EAAAtBJ4AqANnAI4FMABVAqoAQQAA/0oAAP+zAAD+7gAA/u4EAACZ' + + 'BAAAmQI5ALACOQCwAjkAsAAA/qAAAP6gAqoAHAI5ALsDgABkAYcAZAGHAGQEAAAdBAAAHQIUAK4AAP62BBIArgSoACkFBgBCBG8AKQUSAJgEMwBQBD0ARgVtAK4ERgAnBYcAPQR/AFoF1wAzBdcAMwXXADMF1wAzBQYAQgUGAEIFBgBCBMkAUgNiAD8EbwApBRIAmAIU' + + '/7oClv/LBTkApAIU/7oERgAnBDMAUAQ9AEYFfwA3Ax0ASAU/ADME/ACFBOEAjwRcAAoEuAB7BEYAJwXXADMFhwA9AhQArgTJAFIEMwBQBOEAjwUGAFAAAPzpAAD//QAA/PwAAAAACAAAAAKqAH8Cqv/lAccAfAHHAIICWgBqAloASAKYAAACmAAAAocALQKg/+kDLwAg' + + 'Akj/6AAAAGoAAABqAAAAagAAAEgAAABIAAAASAAA/hcAAP0RAAD8WAAA/+kAAP/pAAD/3QAAAAAAAP8PAAAASAAAAEgAAABqAAAAagAA/hcAAP4XAAD/6QAA/+kAAP/pAAD/6QAA/+kAAP/pAAD8/wAA/IsAAPvrAAD8zwAA+6YAAP/pAAD9bQAA/oQAAP7KAAD8+QAA' + + '/XoAAP1mAAD8ngAA/SMAAPw6AAD/6QAA/+kAAP/pAAD/6QHHAIgAAP7WAAD+1gAA/s8AAP7WAAD+7gAA/sIEVwCgBFcAoARXAKAEVwCgBFcATQRXAFIEVwBNBFcATQRXAEYDEABGBFcANQRXADUEVwBPBFcALQRXAEgDEAAtBFcAJARXACUEVwAlBFcAJwRXAC8DEAAl' + + 'BFcAHQRXABcEVwA2BFcANgRXADADEAApBFcATwRXAEwEVwBMBFcATARXAF4DEABMBFcAoARXAKAEVwCgBFcAoARXAFAEVwBMBFcARgRXAEwEVwBMAxAATARXAC8EVwA5BFcAPwRXAD8EVwA/AxAAPwRXADYEVwA1BFcANgRXADYEVwA2AxAANQRXAEwEVwBMBFcATARX' + + 'AEwEVwBMAxAAaARXAEwEVwBGBFcATARXAEwEVwBMAxAATARXAKAEVwCgBFcAoARXAKAEVwBWBFcAVwRXAFkEVwBXBFcAVgMQAFwEVwA4BFcANwRXADcEVwA4BFcAOAMQADgEVwBHBFcARQRXAEUEVwBFBFcARQMQAEUEVwCBBFcAgQRXADkEVwA5BFcAOgMQADkEVwCR' + + 'BFcAkQRXAJEEVwCRBFcAkQMQAEwEVwCgBFcAoARXAKAEVwCgBFcATARXAEwEVwBMBFcATARXAE8DEABPBFcAMARXADYEVwA2BFcAFwRXAB0DEAApBFcALwRXACcEVwAlBFcAJQRXACQDEAAlBFcASARXAC0EVwBPBFcANQRXADUDEAAtBFcARgRXAE0EVwBNBFcAUgRX' + + 'AE0DEABGBFcAoARXAKAEVwCgBFcAoAAA/jcAAP7uAAD+7gAA/sIAAP7CAAD/WQAA/rUAAP7WAccAGgSgAFYEoABWBKAAVgSgAFYEoABWBKAAVgSgAFYEoABWAcf/wgHH/9UBx/+9Acf/1QHH/8IBx//CAcf/wgHH/8IEYACFBGAAhQRgAIUEYACFBGAAhQRgAIUEYACF' + + 'BGAAhQHH/88Bx//PAcf/wgHH/8IEYACFBGAAhQRgAIUEYACFAccAaAXJAKgFxwCoBckAqAAA/swAAP9YAAD+3QAA/tAAAP7CAAD+zwAA/tcAAP7dAAD+1wAA/tgAAP63AAD97AAA/rcAAP7CAAD+xwAA/scAAP7HAAD+wgAA/rcAAP3sAAD+twAA/rUAAP6zAAD+swAA' + + '/rMAAP6zAqoAywKqAMsEPf9rBD3/awRGACcERgAnBQYAUAUGAFAFBgBQBD0ARgUGAEIAAP4mAAD+EgAA/lwEdABWAAAAAwAAAAMAAAAcAAEAAAAABI4AAwABAAAAHAAEBHIAAAC8AIAABgA8AH4DbwN1A34DigOMA6EDzgUTBR0FxwXqBfQdyh6bHp4e+R8VHx0fRR9N' + + 'H1cfXR99H7QfxB/TH9sf7x/0H/4gECAiICYgMCA0ID4gRCBeIG8geSCJIJQgtSC/IPAhBSEXISYhLiFOIVQhXiGEIZUhqCHUIgYiHyIrIkgiZSMCIxAjISUCJRwlJCUsJTQlPCVsJZMloSWsJbIlvCXEJcwl2SXmJjwmRyZvLG0sdy4XpyGnjPsC+0/+I//8//8AAAAg' + + 'AKADdAN6A4QDjAOOA6MD0AUaBZEF0AXwHQAd/h6eHqAfAB8YHyAfSB9QH1kfXx+AH7Yfxh/WH90f8h/2IAAgEiAmICogMiA5IEQgXiBqIHQgfyCQIKAgvyDwIQUhEyEiIS4hTSFTIVshhCGQIagh1CICIg8iKSJIImAjAiMQIyAlACUMJSQlLCU0JTwlUCWAJaAlqiWy' + + 'JbolxCXKJc8l5iY6Jj8mYCxgLHEuF6cXp4j7Afsd/iD//P///+P/wv++/7r/tf+0/7P/sv+x/6v/OP8w/yvoIOft5+vn6ufk5+Ln4Ofe59wAAOfY59bn1efU59Ln0efP587nzefM58nnxufFAADnuueh55bnkueN54fnfOdz50PnLwAAAADnDObu5urm5Oa/5rTmouZ3' + + 'AAAAAAAA5hAAAOVc5U/lQAAAAADjReM+4zfjMOMdAADi8uLq4uUAAOLW4tHiz+LD4nDibgAA3F/cXNq9AAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAA' + + 'AAAAAAAAAAAAAAAAAAAAAAAAAHQAfAAAAAAAAAAAAAAAAAAAAAAAdAB8AJwAAACeAAAAAAAAAKIApgAAAAAAAAAAAAAAvAAAAAAAAADcAAAAAAAAAAAAAAAAANQAAAAAAAAA7AEAAQgBCgFuAXQAAAc0AAAHNQAABzYH+gf7AAAH/AAAB/0INQAAAAAINgg3CDgAAAAA' + + 'AAAIOQhMAAAAAAAACE0ITgAACE8IUAAAAAAIUQAAAAAAAAhSCFMAAAAAAAAIVAhVCFYAAAhXCFkIWghbAAAIXAhdCGIAAAhjCGQAAAAAAAAIZQAAAAAAAAhmAAAAAAAACGcAAAAAAAAIaAiKAAAAAAAACIsAAAAAAAAIjAAAAAAAAAiNAAAAAAAACI4IjwiQCJEImAAA' + + 'CJkItgAAAAAItwAACLgIuQAAAAAIugi7CLwIvQAAAAAIvgjVCNYI1wjYCNkI2gjbCNwI3QjeCN8I4AjhCOII4wjkCOUI5gjnCOgI6QjqCOsI7AjtCO4I7wjwCPEI8gjzCPQI9Qj2CPcI+Aj5CPoI+wj8CP0I/gj/CQAAAAkBCQIJAwkECQUAAAkGAAAJBwkIAAAJCQkK' + + 'AAAJCwkMCQ0JDgkPCRAJEQkSCRMJFAkVCRYJFwkYCRkABgIKAAAAAAEAAAEAAAAAAAAAAAAAAAAAAAABAAIAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAADAAQABQAGAAcACAAJAAoACwAMAA0ADgAPABAAEQASABMAFAAVABYAFwAY' + + 'ABkAGgAbABwAHQAeAB8AIAAhACIAIwAkACUAJgAnACgAKQAqACsALAAtAC4ALwAwADEAMgAzADQANQA2ADcAOAA5ADoAOwA8AD0APgA/AEAAQQBCAEMARABFAEYARwBIAEkASgBLAEwATQBOAE8AUABRAFIAUwBUAFUAVgBXAFgAWQBaAFsAXABdAF4AXwBgAGEAAACG' + + 'AIcAiQCLAJMAmACeAKMAogCkAKYApQCnAKkAqwCqAKwArQCvAK4AsACxALMAtQC0ALYAuAC3ALwAuwC9AL4H7AByAGQAZQBpB+4AeAChAHAAawg4AHYAaghZAIgAmghUAHMIXAhdAGcAdwhMCE8ITgNyCFcAbAB8A1sAqAC6AIEAYwBuCFMBVAhYCE0AbQB9B+8AYgCC' + + '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' + + 'JVOwAYiwQFFasAaIsABVWltYsQEBjlmFjY0AQh1LsDJTWLBgHVlLsGRTWLBAHVlLsIBTWLAQHbEWAEJZc3RzdHUrKysrKwFzdHUrKysAdCsrc3N1KysrASsrKwArKysrKysBKysAKysBK3MrAHRzdHVzdHMrASt0dQBzK3N0AXNzdABzdHRzdHMBXnNzdHNzAHNzK3Nz' + + 'ASsAKwErAHMrdHUrKysrKysrKysrKwErK3QrK15zKwArXnN0ASsrKwArc3Nec3NzAXNzcwArKysrKysYXgAFzAXMAH0FgQAVAHkFgQAVAAAAAAAAAAAAAAAAAAAEOgAUAHcAAP/sAAAAAP/sAAAAAP/sAAD+VwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA' + + 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAC0AL0ArwCgAAAAAAAAAAAAAAAAAIgAfgAAAKwAAAAAAAAAAAAAAAAAvwDDAKsAAAAAAJsAjQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALkAqgAAAAAAAACUAJkAhwAA' + + 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABqAIMAjQCkALQAAAAAAAAAAAAAAGAAagB5AJgArAC4AKcAAAEiATMAwwBrAAAAAAAAANsAyQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4QHJAJIAqABrAJIAtwBrAJsAAAJ7AvIAkgJSAG4C1wOBAIIAiQCgAJ8BaQCPAAABYACk' + + 'AVsAXgCCAAAAAAAAAF4AZQBvAAAAAAAAAAAAAAAAAAAAigCQAKUAegCAAAAAAAAAAAAAAAWB//MADfyzAIMAiQCPAJYAaQBxBcwAD/we//IANATmAA3+1AC/Ax8ApwCuALUAAAAAAIEAAAAAAAAAAAdIA2oCtgIC/ZMAAACRAGcAkQBhAdkAAAKNA0EAAAAAAAAAAAAA' + + 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaBBGgAFATLAAD/7P/T/n8AgwDbAKoAugCgAM8AAAAAAAAATAAAAEwAAABMAAAATAAAAlgAAAKoAAAD0AAABVAAAAZI' + + 'AAAHbAAAB6AAAAgAAAAIZAAACPwAAAlwAAAJvAAACfQAAAokAAAKVAAACtgAAAswAAALzAAADKgAAA0sAAAN6AAADqwAAA8MAAAP8AAAELwAABEIAAARaAAAEcwAABI0AAASmAAAE1gAABTEAAAVbAAAFkQAABcIAAAXiAAAGAwAABhwAAAZQAAAGeQAABqIAAAbDAAA' + + 'G3gAABu0AAAdaAAAHfAAAB6MAAAfEAAAH9gAACCEAAAhnAAAIvQAACOEAAAj8AAAJlAAACeYAAApeAAAKfAAACo8AAAqcAAAKrwAACwgAAAsUAAALJwAAC28AAAuiAAAL0gAADAMAAAw4AAAMbQAADLkAAAzlAAANCgAADVcAAA2IAAANrAAADioAAA5XAAAOfgAADrI' + + 'AAA7vAAAPCAAAD0EAAA9jAAAPkAAAD/MAABBzAAAQ2AAAEWYAABHKAAAR/AAAElMAABKFAAAStAAAErgAABMzAAATUwAAE5IAABPCAAAT+QAAFFkAABSwAAAUwgAAFQ8AABVSAAAVdAAAFYMAABWHAAAV1gAAFeIAABYAAAAWJQAAFksAABaIAAAWmQAAFsYAABbfAAA' + + 'W5wAAFwoAABclAAAXSgAAF2sAABdzAAAXhgAAF44AABfBAAAXzgAAF9oAABfmAAAX8gAAF/8AABgRAAAYQQAAGEsAABhYAAAYZAAAGHEAABh/AAAYiwAAGJYAABiiAAAYrwAAGN4AABjqAAAY9wAAGQMAABkPAAAZHAAAGSoAABlEAAAZdwAAGYQAABmQAAAZnAAAGao' + + 'AABm2AAAZ2AAAGhgAABolAAAaMQAAGj4AABpLAAAaWQAAGmcAABrAAAAaygAAGtcAABrjAAAa7wAAGvwAABsIAAAbEwAAGx8AABssAAAbaQAAG3UAABuCAAAbjgAAG5oAABumAAAbswAAG9MAABwQAAAcHQAAHCkAABw2AAAcRAAAHFAAABx6AAAciAAAHJQAAByhAAA' + + 'crQAAHLoAABzFAAAc0AAAHNwAABzoAAAc9AAAHQAAAB0MAAAdGAAAHSQAAB0wAAAdPQAAHUkAAB1NAAAdigAAHZcAAB2jAAAdsAAAHbwAAB3IAAAd1AAAHd8AAB3qAAAd9wAAHgQAAB4QAAAeHAAAHigAAB40AAAeQAAAHkwAAB5WAAAeYwAAHm8AAB58AAAesAAAHuU' + + 'AAB7xAAAe/gAAHwoAAB8WAAAfIgAAHy4AAB83AAAfQgAAH04AAB+XAAAfnQAAH6oAAB+2AAAgEAAAIBsAACAmAAAgRAAAIFAAACBbAAAgZgAAIHAAACB8AAAgjQAAIJcAACCiAAAgwgAAIOAAACDsAAAg+AAAIQMAACENAAAhGgAAIScAACEzAAAhXwAAIYkAACGVAAA' + + 'hoQAAIa0AACG5AAAhxgAAIdMAACIIAAAiTQAAIlkAACJlAAAicAAAInoAACKHAAAikwAAIp8AACKrAAAitwAAIsMAACLNAAAi1wAAIuMAACLvAAAi+QAAIyYAACMzAAAjPgAAI2AAACOSAAAjngAAI6oAACO2AAAjwwAAI88AACPcAAAj8AAAI/0AACQKAAAkFwAAJCc' + + 'AACQyAAAkPwAAJEwAACRZAAAkZQAAJHIAACR+AAAkigAAJJYAACSgAAAkrAAAJLkAACTeAAAlGQAAJVIAACV7AAAlqwAAJc0AACX7AAAmIgAAJlYAACaGAAAmigAAJrUAACbZAAAnCQAAJzQAACdOAAAnfAAAJ7AAACfPAAAn8wAAKCsAAChWAAAoggAAKI4AACikAAA' + + 'oyQAAKPEAACkHAAApLAAAKVgAACl4AAApmgAAKZ4AACnRAAAp/QAAKigAACpSAAAqfAAAKq0AACrWAAArBgAAKzIAACs2AAArYAAAK4cAACujAAAryQAAK+MAACwLAAAsPAAALGwAACyOAAAsrgAALNgAACz8AAAtIAAALUwAAC13AAAtoQAALdYAAC4GAAAuLgAALlQ' + + 'AAC6DAAAuqAAALrQAAC7FAAAu6wAALu8AAC76AAAvBQAALxAAAC8WAAAvHAAALyIAAC8oAAAvLgAALzQAAC9AAAAvTQAAL1kAAC9xAAAvfgAAL4oAAC+XAAAvpAAAL7IAAC/LAAAv2QAAL+wAAC/6AAAwDQAAMBsAADAuAAAwVQAAMGMAADB0AAAwgQAAMJIAADCfAAA' + + 'wqwAAMOYAADEoAAAxNAAAMUEAADFOAAAxWwAAMWEAADFnAAAxdQAAMYMAADGPAAAxmwAAMacAADGtAAAxswAAMbkAADHFAAAx0QAAMf4AADIlAAAyMgAAMj8AADKRAAAyqgAAMrYAADLCAAAyzgAAMtoAADLoAAAy9gAAMwIAADMOAAAzHAAAMyoAADM2AAAzQgAAM1A' + + 'AADNeAAAzagAAM3YAADOEAAAzkgAAM54AADOqAAAzuAAAM8YAADPSAAAz3gAAM+wAADP6AAA0BgAANBIAADQcAAA0JgAANDAAADRfAAA0jgAANLwAADTJAAA01QAANPMAADU4AAA1dQAANbAAADXRAAA18QAANf0AADYKAAA2EAAANhYAADYkAAA2NgAANkMAADZUAAA' + + '2YAAANmwAADZ5AAA2igAANpYAADaiAAA2ygAANwoAADc+AAA3UgAAN5YAADfZAAA4EAAAOFMAADiNAAA4qgAAONEAADkRAAA5OAAAOVsAADl7AAA5tQAAOeEAADn7AAA6OQAAOoIAADqrAAA60gAAOwIAADs1AAA7YAAAO4UAADuqAAA73QAAPBcAADxCAAA8bQAAPKA' + + 'AADzEAAA8/wAAPTAAAD1iAAA9jAAAPbQAAD3tAAA+JQAAPl8AAD6kAAA+1gAAPvYAAD8zAAA/NwAAP2AAAD+JAAA/yAAAP+cAAEANAABAOwAAQFcAAEBrAABAhAAAQKoAAEDQAABA5AAAQRMAAEFEAABBcAAAQagAAEHRAABB+gAAQhcAAEJCAABCeAAAQqoAAELbAAB' + + 'C9wAAQxMAAEM0AABDTwAAQ3MAAEOHAABDnAAAQ8IAAEPnAABEIgAAREAAAERpAABEhwAARLkAAETaAABE+AAARSoAAEVfAABFfAAARZMAAEW2AABF1gAARewAAEYNAABGPgAARmkAAEalAABGyAAARusAAEcMAABHMQAAR14AAEeVAABHxwAAR/sAAEgdAABISwAASGk' + + 'AAEh5AABIqgAASN0AAEkPAABJSgAASZsAAEntAABKLAAASmYAAEqwAABK7QAASyMAAEtAAABLawAAS4wAAEu0AABL4wAAS+gAAEwPAABMKQAATEQAAExgAABMgQAATKQAAEzGAABM5AAATOgAAEzsAABM/gAATRAAAE0iAABNNgAATUsAAE1tAABNjwAATZMAAE2XAAB' + + 'NqAAATbkAAE3MAABN3wAATesAAE34AABOBQAAThIAAE4eAABOKQAATjYAAE5DAABOVAAATmAAAE50AABOiAAATpkAAE6qAABOwAAATssAAE7jAABO7wAATxUAAE80AABPyAAAT94AAE/zAABQCwAAUDIAAFA+AABQbAAAUHEAAFB1AABQgwAAUJUAAFCnAABQuQAAUMc' + + 'AAFDVAABQ5wAAUOwAAFD+AABRGwAAUSoAAFE5AABRSQAAUVkAAFF0AABRggAAUZgAAFGtAABRxwAAUdkAAFHoAABR9wAAUgcAAFIXAABSKQAAUjgAAFJRAABSXAAAUmcAAFJ2AABSegAAUoQAAFKOAABSnwAAUqgAAFK2AABSzgAAUuUAAFL2AABTBAAAUw0AAFMaAAB' + + 'TLAAAU0EAAFNSAABTYAAAU24AAFN8AABTigAAU5YAAFOiAABTswAAU8MAAFPOAABT3AAAU+0AAFP7AABUCQAAVBsAAFQlAABUNQAAVEUAAFRKAABUWAAAVG8AAFR+AABUkwAAVKUAAFSwAABUvgAAVNgAAFTpAABU+gAAVQwAAFUeAABVOQAAVUMAAFVNAABVXgAAVXU' + + 'AAFV+AABVhwAAVZIAAFWcAABVrwAAVb0AAFXMAABV5gAAVfkAAFYSAABWIAAAVisAAFY2AABWTwAAVl0AAFZwAABWgQAAVo4AAFafAABWrgAAVroAAFbVAABW+QAAVyUAAFczAABXQQAAV+AAAFfsAABX/AAAWBIAAFglAABYMgAAWD8AAFhUAABYZAAAWHEAAFiKAAB' + + 'YsgAAWL8AAFjQAABY4QAAWOoAAFjzAABZCwAAWRwAAFkoAABZLQAAWTIAAFk/AABZRAAAWUkAAFlkAABZaQAAWYIAAFmHAABZnAAAWaEAAFmmAABZuwAAWcgAAFnVAABZ2gAAWgkAAFoaAABaKwAAWi8AAFo8AABaWQAAWmsAAFqxAABaxAAAWtkAAFrwAABbAAAAW34' + + 'AAFuSAABb1gAAW9oAAFveAABb7gAAXA8AAFwTAABcFwAAXBsAAFxNAABcUQAAXFUAAFxwAABcdAAAXHgAAFyVAABcmQAAXLIAAFy2AABc1QAAXNkAAFzdAABdHAAAXSAAAF1WAABdiQAAXZYAAF4VAABeIQAAXi0AAF45AABeRgAAXlUAAF6LAABewQAAXucAAF8UAAB' + + 'fSgAAX38AAF+nAABf1wAAYBAAAGAuAABgVAAAYH4AAGDUAABhGQAAYR0AAGFIAABhdgAAYasAAGHQAABh9gAAYhoAAGJNAABifwAAYqwAAGLrAABi+QAAYwcAAGMTAABjHwAAYysAAGNoAABjpgAAY8YAAGPPAABj3QAAZA4AAGRIAABkfwAAZKkAAGTNAABk8gAAZSI' + + 'AAGU9AABlWAAAZY0AAGWmAABl1gAAZfgAAGYsAABmYQAAZoUAAGatAABm1AAAZxEAAGdJAABnfAAAZ7MAAGfmAABoFwAAaEIAAGhoAABohQAAaLIAAGjkAABo6AAAaOwAAGjwAABpFAAAaTcAAGk7AABpPwAAaUMAAGlgAABpgQAAabMAAGm3AABpvQAAacMAAGnQAAB' + + 'p6AAAahgAAGokAABqYAAAamQAAGpoAABqdQAAankAAGqsAABq2AAAawMAAGsPAABrHAAAaygAAGtHAABrSwAAa3cAAGt7AABrfwAAa6gAAGusAABr8AAAbC8AAGxLAABsVwAAbH4AAGygAABspAAAbKgAAGysAABsuAAAbLwAAGzAAABsxAAAbOcAAG0hAABtJQAAbUI' + + 'AAG1mAABthwAAbawAAG3SAABt/QAAbiAAAG5ZAABukAAAbrsAAG6/AABu8gAAbysAAG87AABvYQAAb2UAAG+zAABv8QAAcBIAAHAeAABwSgAAcHAAAHCVAABwuwAAcL8AAHDaAABw3gAAcOIAAHD6AABw/gAAcVcAAHFbAABxdgAAcZQAAHG2AABx3QAAcgoAAHIzAAB' + + 'yXwAAcp0AAHLKAABy8wAAcwAAAHMNAABzSQAAc1UAAHOUAABzmAAAc5wAAHOqAABzrgAAc+sAAHQgAAB0VAAAdGAAAHRtAAB0eQAAdJgAAHTaAAB0/gAAdSgAAHVRAAB1jwAAdc4AAHXzAAB2EwAAdkIAAHZsAAB2nAAAds0AAHcFAAB3PgAAd50AAHf3AAB4HQAAeEI' + + 'AAHh/AAB4tAAAeNEAAHjsAAB4+gAAeQgAAHlCAAB5eAAAebUAAHnsAAB6SwAAep0AAHqqAAB6tgAAetsAAHr8AAB7IgAAezcAAHtNAAB7WwAAe2kAAHt/AAB70AAAfBkAAHxJAAB8egAAfKQAAHzNAAB8/AAAfTYAAH1JAAB9XAAAfXkAAH2WAAB9xgAAffQAAH42AAB' + + '+dgAAfrkAAH77AAB/JQAAf08AAH99AAB/qAAAf9UAAIADAACALAAAgFIAAIByAACAkwAAgLAAAIDNAACA/gAAgS8AAIFxAACBrwAAge4AAIIuAACCRwAAgmAAAIJ2AACCjQAAgqwAAILMAACC8gAAgxgAAIM3AACDVgAAg3gAAIOaAACDxAAAg+4AAIQJAACEDQAAhEk' + + 'AAIR8AACEvgAAhPcAAIT7AACFBwAAhRMAAIVGAACFeAAAhZ4AAIXDAACF6gAAhhEAAIYwAACGUAAAhnMAAIaUAACGxQAAhu0AAIbxAACG/QAAhwoAAIcXAACHJQAAhykAAIctAACHOgAAh0YAAIdKAACHTgAAh1wAAIdqAACHeAAAh4UAAIeSAACHnwAAh8sAAIfPAAC' + + 'H2wAAh+cAAIf1AACIAwAAiBAAAIgdAACISgAAiHIAAIh/AACIjAAAiJoAAIioAACItAAAiMAAAIjNAACI2gAAiOcAAIj0AACJAQAAiQ4AAIkkAACJOgAAiUgAAIlWAACJgAAAiasAAInWAACKAQAAiioAAIpTAACKcgAAinYAAIqoAACK3QAAixAAAItCAACLcgAAi6A' + + 'AAIvNAACL+AAAjB8AAIxEAACMSAAAjEwAAIxsAACMjQAAjMIAAIz2AACNHgAAjUQAAI1IAACNTAAAjVAAAI1UAACNbQAAjZIAAI2iAACNvgAAjd4AAI3rAACN9QAAjhcAAI4lAACOLwAAjkUAAI5SAACOVgAAjmsAAI6cAACOtwAAjswAAI7kAACO7wAAjvkAAI8GAAC' + + 'PGgAAjycAAI8sAACPRwAAj0sAAI9WAACPYgAAj2cAAI9sAACPgwAAj5sAAI/PAACP7AAAkAwAAJAZAACQMAAAkFIAAJBcAACQZgAAkHQAAJB4AACQmQAAkKYAAJCuAACQuQAAkMMAAJDOAACQ0gAAkNYAAJDsAACQ+QAAkQYAAJEiAACRLgAAkVkAAJF2AACRmwAAka8' + + 'AAJHMAACR2AAAkfQAAJINAACSMwAAkj8AAJJUAACScQAAkpAAAJKsAACS2QAAkuYAAJMBAACTLAAAk0kAAJNnAACTjgAAk68AAJPTAACT9gAAlAsAAJQ6AACUXwAAlGUAAJRrAACUcQAAlH8AAJSVAACUsgAAlN0AAJUxAACVZgAAlWoAAJWFAACVrgAAlcwAAJYAAAC' + + 'WEgAAli0AAJYxAACWTgAAlnIAAJaTAACWlwAAlpsAAJa5AACW2gAAlwkAAJdKAACXeAAAl44AAJelAACXwwAAl+kAAJgOAACYJgAAmCoAAJhKAACYeAAAmKYAAJiqAACYrgAAmLIAAJjcAACZEgAAmUUAAJlVAACZWQAAmXQAAJl4AACZnQAAmcQAAJnjAACaEwAAmkA' + + 'AAJpxAACajAAAmqoAAJrIAACa8QAAmwoAAJsWAACbMwAAm1EAAJthAACbhQAAm58AAJu4AACb1wAAnAYAAJwjAACcTAAAnF8AAJx4AACclgAAnNQAAJ0RAACdPAAAnY8AAJ26AACd5QAAng8AAJ41AACeaQAAnp4AAJ7XAACe6gAAnwgAAJ81AACfWgAAn3cAAJ+YAAC' + + 'frgAAn8QAAJ/vAACgDgAAoCwAAKBMAACgfAAAoJAAAKC/AACg8wAAoQkAAKE0AAChYQAAoYMAAKGIAAChjQAAoZIAAKGXAAChywAAoeQAAKISAACiQQAAokYAAKKCAACixgAAowkAAKNDAACjmQAAo9kAAKQbAACkTAAApHgAAKS1AACk7QAApSAAAKVVAAClcQAApac' + + 'AAKXvAACmBwAApgsAAKZJAACmdQAAprMAAKbsAACnJAAAp1AAAKebAACnxgAAp98AAKgdAACoTQAAqIgAAKiyAACo7AAAqRwAAKlBAACpawAAqY4AAKnTAACqDQAAqkQAAKp4AACqtwAAqvQAAKsrAACrTAAAq3kAAKuiAACr0AAArAoAAKw1AACsVAAArIcAAKy8AAC' + + 's9gAArRgAAK06AACtPgAArV8AAK19AACtiQAArZUAAK2uAACt2wAArfAAAK4KAACuGgAArk8AAK59AACuowAArskAAK7lAACvDwAArz8AAK93AACvlgAAr74AAK/vAACwIwAAsDoAALBWAACwagAAsIMAALCoAACw1wAAsQAAALEqAACxPwAAsVMAALF2AACxiwAAsZk' + + 'AALGoAACxtgAAscUAALHVAACx5gAAsfkAALIFAACyGQAAsiQAALIvAACyPAAAskUAALJQAACyWgAAsmUAALJwAACyfAAAsogAALKVAACyngAAsqkAALK0AACyvwAAsskAALLUAACy3wAAsuoAALL1AACzAwAAsxQAALMhAACzMgAAsz0AALNHAACzUgAAs10AALNrAAC' + + 'zeQAAs4UAALORAACznQAAs6kAALO1AACzwQAAs8wAALPXAACz5QAAs/IAALP4AACz/gAAtAkAALQTAAC0HgAAtCgAALQ2AAC0RwAAtFMAALRgAAC0awAAtHYAALSBAAC0jAAAtJYAALShAAC0rAAAtLcAALTCAAC0zAAAtNcAALTiAAC07gAAtPoAALUGAAC1EgAAtRw' + + 'AALUmAAC1MwAAtT8AALVKAAC1VQAAtWAAALVrAAC1dgAAtYEAALWOAAC1oQAAta8AALXPAAC13QAAtfEAALX+AAC2EgAAth8AALYrAAC2OAAAtkQAALZRAAC2XQAAtmgAALZzAAC2gQAAto8AALaaAAC2pQAAtrEAALa9AAC2xwAAttEAALbeAAC26wAAtvkAALcGAAC' + + '3FAAAtyIAALcuAAC3OwAAt0UAALdPAAC3WgAAt2QAALdvAAC3eQAAt4QAALePAAC3mQAAt6MAALeuAAC3uQAAt8YAALfZAAC36AAAuAIAALgOAAC4GgAAuCUAALgwAAC4PQAAuEoAALhWAAC4YgAAuG8AALh8AAC4iAAAuJQAALieAAC4qAAAuLQAALjBAAC4zgAAuNw' + + 'AALjoAAC49AAAuQAAALkNAAC5GAAAuSMAALktAAC5OAAAuUMAALlRAAC5XwAAuWwAALl4AAC5hQAAubgAALnDAAC5zgAAudoAALnnAAC59AAAugEAALoPAAC6HQAAuioAALo3AAC6RAAAulIAALpgAAC6bgAAunsAALqJAAC6lgAAuqQAALqxAAC6vwAAuswAALraAAC' + + '67AAAuv4AALsJAAC7EwAAuyAAALssAAC7OAAAu0QAALtRAAC7XgAAu2wAALt6AAC7hwAAu5QAALuiAAC7rwAAu8EAALvMAAC76gAAvAIAALwNAAC8FwAAvCIAALwtAAC8OQAAvEYAALxTAAC8YAAAvG4AALx8AAC8iQAAvJYAALyjAAC8sQAAvMMAALzVAAC84gAAvO8' + + 'AALz8AAC9CQAAvRYAAL0jAAC9LwAAvTsAAL1GAAC9UQAAvVwAAL1nAAC9dAAAvYEAAL2OAAC9mwAAvagAAL21AAC9wgAAvc8AAL3bAAC95wAAvfIAAL39AAC+CgAAvhYAAL4gAAC+JgAAvjIAAL4+AAC+SgAAvlYAAL5iAAC+bwAAvnwAAL6KAAC+lwAAvqQAAL6yAAC' + + '+wAAAvsgAAL7QAAC+2QAAvuIAAL7rAAC+9AAAvv0AAL8GAAC/EgAAvx4AAL8rAAC/OQAAv0YAAL9TAAC/XAAAv2UAAL9uAAC/dwAAv4AAAL+JAAC/lQAAv6EAAL+uAAC/vAAAv8kAAL/WAAC/4wAAv/AAAL/5AADAAgAAwAsAAMAUAADAHQAAwCYAAMAvAADAOAAAwEQ' + + 'AAMBQAADAXQAAwGsAAMB3AADAhAAAwJIAAMCgAADAqQAAwLIAAMC7AADAxAAAwM0AAMDWAADA3wAAwOgAAMD0AADBAQAAwQ4AAMEcAADBKQAAwTYAAME/AADBSAAAwVEAAMFaAADBYwAAwWwAAMF4AADBhQAAwZIAAMGgAADBrQAAwboAAMHIAADB1gAAwd8AAMHoAAD' + + 'B8QAAwfoAAMIGAADCEwAAwiAAAMIuAADCOwAAwkgAAMJWAADCZAAAwm0AAMJ2AADCfwAAwogAAMKRAADCmgAAwqMAAMKsAADCuQAAwsYAAMLSAADC3gAAwusAAML3AADDBAAAwxAAAMMdAADDKQAAwzUAAMNBAADDTgAAw1oAAMNoAADDdwAAw4YAAMOWAADDpQAAw7Q' + + 'AAMPEAADD1AAAw94AAMPoAADD8wAAw/4AAMQJAADEFAAAxB8AAMQqAADEOAAAxEYAAMRVAADEZQAAxHQAAMSDAADEkgAAxKEAAMSsAADEtwAAxMIAAMTNAADE2AAAxOMAAMTuAADE+QAAxQcAAMUVAADFJAAAxTQAAMVDAADFUgAAxWIAAMVyAADFfQAAxYgAAMWTAAD' + + 'FngAAxakAAMW0AADFvwAAxcoAAMXXAADF5AAAxfIAAMX9AADGDAAAxhgAAMYmAADGMgAAxj4AAMZHAADGTwAAxlkAAMZsAADGfgAAxpEAAMatAADG1QAAxuQAAMbqAADG+QAAxwUAAMcTAADHIAAAxykAAMcyAADHOwAAx0UAAMdhAADHfQAAx6wAAMe4AADHxAAAx94' + + 'AAMf4AADIBAAAyBMAAMggAADILAAAyDUAAMg+AADIWQAAyHUAAMibAADIqAAAyLUAAMjPAADI6QAAyPUAAMkCAADJDgAAyRwAAMkpAADJNQAAyT4AAMlHAADJUAAAyWgAAMmAAADJjQAAyZUAAMmfAADJrQAAybkAAMnHAADJ0AAAydkAAMniAADJ6wAAyfUAAMoCAAD' + + 'KFgAAyhYAAMoWAADKFgAAyhYAAMoWAADKFgAAyhYAAMoWAADKFgAAyhYAAMoWAADKFgAAyh8AAMo3AADKSQAAylwAAMpgAADKZAAAyncAAMqKAADKnQAAyqEAAMq0AADKxwAAytoAAMrtAADLAAAAyyMAAMtHAADLagAAy3AAAMuMAADLuwAAy88AAMvmAADL8QAAy/w' + + 'AAMwKAADMHAAAzC4AAMwyAADM4gAAzPAAAMz5AADNAQAAzRYAAM0qAADNNgAAzUEAAM1NAADNbgAAzYMAAM2WAADNowAAzbEAAM3GAADN2QAAzesAAM3/AADOFQAAziIAAM5BAADOWgAAzoUAAM6XAADOogAAzrkAAM7UAADO5QAAzvkAAM8PAADPHAAAzzsAAM9VAAD' + + 'PWgAAz18AAM9kAADPaQAAz24AAM+jAADP7AAA0C4AANBaAADQoQAA0N0AANEkAADRwAAA0cYAANIVAADSRgAA0oIAANLPAADS9wAA0yAAANOQAADTyAAA1BYAANRSAADUjAAA1NQAANUKAADVLwAA1TQAANV7AADVrAAA1eIAANYiAADWTwAA1oAAANarAADW9wAA1xA' + + 'AANcbAADXJgAA1y4AANc2AADXPgAA10YAANd1AADXjAAA16MAANe6AADX0AAA1/QAANgWAADYPgAA2FgAANiQAADYzwAA2OIAANkBAADZDQAA2REAANkgAADZVAAA2YwAANmaAADZswAA2iwAANqAAADarQAA2tAAANroAADbCAAA2ygAANtBAADbUAAA22kAANuBAAD' + + 'bjgAA25sAANutAADbvwAA29AAANviAADb9wAA3AsAANwgAADcNQAA3FAAANxmAADcegAA3JQAANytAADcywAA3OQAANz9AADdGwAA3TQAAN1MAADdagAA3YMAAN2cAADdugAA3dYAAN3zAADeFwAA3jMAAN5PAADecwAA3pAAAN6sAADe0QAA3u4AAN8KAADfLwAA31c' + + 'AAN9+AADfsAAA37wAAN/IAADf1AAA3+AAAN/sAADgawAA4VkAAOI5AADiRAAA4lYAAOJjAADieQAA4oQAAOKQAADinAAA4qkAAOK1AADizwAA4vAAAONEAADjWAAA43AAAOOIAADjoAAA47gAAOPTAADj6gAA4/QAAOP/AADkGAAA5D8AAOReAADkqwAA5OoAAOU0AAD' + + 'lZwAA5YYAAOWlAADlzgAA5egAAOYHAADmKgAA5lUAAOZoAADmjwAA5sMAAObfAADm9wAA5wYAAOcmAADnPwAA51wAAOeSAADnwQAA5+gAAOgPAADoOAAA6GcAAOi8AADo7AAA6QwAAOk1AADpWgAA6X8AAOmbAADptgAA6d0AAOn9AADqLAAA6lgAAOqLAADqnwAA6rM' + + 'AAOrcAADq8AAA6v4AAOsOAADrHAAA6ycAAOs7AADrTwAA62IAAOt1AADrhwAA65UAAOujAADrswAA68QAAOvWAADr5AAA6/IAAOwfAADsRgAA7EwAAOxdAADsZQAA7GkAAOxtAADscQAA7HUAAOx5AADsfQAA7IEAAOyFAADsiQAA7J4AAOyoAADsrgAA7MEAAOzSAAD' + + 's2AAA7N4AAOzoAADs8QAA7PsAAO0EAADtDQAA7RYAAO0fAADtKAAA7TYAAO0/AADtSAAA7VQAAO1hAADtagAA7XMAAO15AADtfwAA7YwAAO2WAADtnwAA7a4AAO23AADtvQAA7cMAAO3JAADtzwAA7fMAAO4BAADuDwAA7iAAAO4xAADuywAA7uEAAO72AADvCwAA7yM' + + 'AAO81AADvRwAA714AAO90AADvhgAA76wAAO/EAADv2wAA798AAO/jAADv5wAA7+sAAO/vAADv8wAA8AYAAPAZAADwLAAA8DAAAPA0AADwOAAA8DwAAPBEAADwSAAA8EwAAPBQAADwVAAA8FgAAPBcAADwYAAA8GQAAPBoAADwbAAA8HAAAPB0AADweQAA8H4AAPCDAAD' + + 'wiAAA8I0AAPCRAADwlgAA8JsAAPCfAADwpAAA8KkAAPCuAADwswAA8LgAAPC9AADwwQAA8MUAAPDJAADwzQAA8NkAAPDvAADxEgAA8TgAAPFaAADxbQAA8ZIAAPGnAADxvAAA8dEAAPHlAADx+gAA8hAAAPIkAADyOgAA8k8AAPJjAADyeAAA8pEAAPKmAADyvAAA8s4' + + 'AAPLiAADy9wAA8xAAAPMpAADzPgAA81EAAPNlAADzegAA85EAAPOoAADzvwAA89EAAPPjAADz9gAA9A8AAPQnAAD0PgAA9FQAAPRmAAD0eQAA9JAAAPSmAAD0ugAA9NAAAPTqAAD1AAAA9RQAAPUoAAD1PAAA9VIAAPVsAAD1hgAA9ZwAAPWwAAD1xAAA9doAAPXyAAD' + + '2CgAA9iIAAPY1AAD2RwAA9loAAPZzAAD2jAAA9qQAAPa6AAD2zAAA9t4AAPb1AAD3DwAA9ykAAPc/AAD3VAAA92cAAPd+AAD3lQAA96kAAPe/AAD32QAA9/MAAPgJAAD4GwAA+C8AAPhFAAD4XgAA+HcAAPiPAAD4ogAA+LQAAPjHAAD44AAA+PkAAPkSAAD5KAAA+To' + + 'AAPlOAAD5ZAAA+X4AAPmXAAD5rQAA+cIAAPnWAAD56wAA+gIAAPocAAD6MwAA+kgAAPpcAAD6cwAA+ooAAPqdAAD6swAA+ssAAPrkAAD6/QAA+xAAAPsiAAD7MwAA+0sAAPtiAAD7eQAA+48AAPuhAAD7tAAA+8kAAPviAAD7+wAA/BIAAPwmAAD8NwAA/E0AAPxiAAD' + + '8ewAA/JEAAPylAAD8uAAA/M4AAPziAAD8+AAA/Q4AAP0iAAD9NgAA/UwAAP1iAAD9eAAA/YoAAP2fAAD9swAA/dsAAP4SAAD+IwAA/jgAAP5SAAD+agAA/oAAAP6WAAD+rAAA/sIAAP7XAAD+7AAA/wEAAP8WAAD/LAAA/0IAAP9YAAD/bgAA/4MAAP+YAAD/rQAA/8I' + + 'AAP/ZAAD/8AABAAcAAQAeAAEAMwABAEgAAQBdAAEAcgABAKkAAQDfAAEBEgABAUQAAQF6AAEBsQABAeEAAQIRAAECIAABAksAAQJvAAECnwABArsAAQLOAAEC9gABAygAAQNIAAEDeQABA6UAAQO9AAED8AABBB0AAQQyAAEESAABBGYAAQSLAAEErQABBNAAAQT9AAE' + + 'FLAABBUAAAQVTAAEFcAABBZgAAQWuAAEFxAABBeIAAQYIAAEGFQABBiIAAQYqAAEGMAABBjYAAQY8AAEGQgABBkgAAQZOAAEGUgABBlwAAQaWAAEGuAABBuEAAQcKAACAM0AAAUyBYEAAwAHAB9ADQIGBQMGAwkIBQMEAAMAP80vzRESATk5ETMRMzEwEyERIRMRIRHN' + + 'BGX7m0wDzQWB+n8FNfsXBOkAAAAAAgC5AAABfwWBAAMABwHkQP8DBwcCBAQJCCABAQ8BAQ4DAQVABAWcWwQCA5IJAYQJAXIJAWIJAVQJAUQJATIJASIJARQJAQQJAfIJAeIJAdQJAcQJAbIJAaQJAZQJAYQJAXIJAWQJAVQJAUQJATQJASQJARQJAQQJAWf0CQG5CQGp' + + 'CQGZCQGJCQF5CQFJCQE9CQEtCQEfCQEPCQH/CQHvCQHbCQHLCQG7CQGrCQGdCQGNCQF9CQFvCQFfCQFLCQE7CQErCQEbCQELCQH9CQHtCQHdCQHNCQG7CQGrCQGbCQGLCQF9CQFrCQFbCQFNCQE9CQEpCQEZCQELCQE3+wkB6wkB3QkBzQkBuwkBqwkBmQlAWwGJCQF5' + + 'CQFpCQFbCQFLCQE7CQEtCQEdCQEB6wkB2wkBywkBvwkBrwkBnwkBewkBawkBOwkBKwkBGwkBDwkBAs8JAb8JAZ8JAY8JAX8JAWAJAUAJAR8JAQ8JAQdeXV1dXV1dXV1dX3FxcXFxcXFxcXFxcV9ycnJycnJycnJycnJycnJeXV1dXV1dXV1dXV1dXV1dXXFxcXFxcXFx' + + 'cXFxcXFxcXFycnJycnJycnJycl5dXV1dXV1dXV1dXV1dXV1dcXFxcXFxcXFxcQA/LysAGhgQzl9eXV0REgE5ETMzETMxMAEjAzMDNTMVAWeUGMTGwgGNA/T6f8nJAAACAFcDxgKABYEAAwAHACNAEAMCBwYCBgkIBSAAAQAGAgMAPzPNXTIREgE5OREzETMxMAEjAzMB' + + 'IwMzAmqOFLj+eY0VuAPGAbv+RQG7AAAAAAIACQAABGkFeQAbAB8AtUBoBAEAGQQYBQceHxYEFwYIHRwVBBQJCw4PEgQTChcYBgUUEwkKChMYBQQaDAwdHxoEISALCAcEDA0eHQ4BDR8cDwAQERkWFRIREA0B0A0BTxGPEZ8RAz8RTxECDRENEQUYFxQTAwoJBgUALzMz' + + 'Mz8zMzMSOTkvL11xXXERMzMzMxDNMjIyMhEzMzMzEM0yMjIyERIBFzkREhc5ETMRMxEzETMREhc5ERIXORESFzkREhc5MTABAyEVIQMjEyEDIxMjNTMTIzUhEzMDIRMzAzMVIQMhEwOATgEE/uVYblb+lVRuVMnhTvwBElluWAFrWG5Y0/1AUAFqTgN1/o9s/mgBmP5o' + + 'AZhsAXFsAZj+aAGY/mhs/o8BcQAAAwAW/3IEUgXsACQALAAzANZAjAMCLQwSGhopKSMjJA8xMQcHJBYVJR8fFSQMAgU0NRkyDzJzWc8pAZ0pAQWIKQF4B9gHAsca1xoCthoBhxqnGgLXMQGmMQF3MQEtDDEaBykfJQgAfRaNFgIaFgEWEhBAExdIEEAPDwEJAw9ACxBI' + + 'DyoGAAZzWSMilAOkAwJwA4ADAgUDFQNVA2UDBAMAAC8yXV1dMs0rEQAzGC8rX15dGs0rMzNdXRIXOV1dXV1dXV1dX11dKxEAMxESARc5ETMRMxEzETMRMxEzETMRMxEzETMRMzEwJSQDNx4BFxEuAzU0Njc1MxUeARcHLgEnER4DFRQGBxUjATQuAScRPgEBFB4BFxEE' + + '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' + + 'MAUBIAUBEAUBAAUBOfAFAbAFAaAFAXAFAWAFAVAFAUAFAQAFAfAFAcAFAbAFAaAFAVAFAUAFARAFAQAFAfAFAa8FAZAFAXAFAWAFAVAFAUAFASAFAV1dXV1dXV1dcXFxcXFxcXFycnJycnJycl5dXV1dXQA/PxESATkRMzEwMxEzEb2/BYH6fwABACD/7ANoBYEAEABG' + + 'QCoDAgkODgsCAxESDAtfWQwDAAZfWUADAQMDABMgEgFgEgFQEgFAEgEgEgFdXV1dcQA/Mi9dKwAYPysREgEXOREzETMxMAUgAzceATMyNjURITUhERQGAcn+mkO7En5faHj+8QHN3hQBch90go+KA0Wc/CPN6wABAKgAAAU/BYEACwA0QBsACwgJBwMDBAsJCgQEDA0K' + + 'BwECBAQIBQMABBIAPzM/MxIXORESARc5ETMRMxEzETMxMCEBBxEjETMRATMJAQRS/c24v78Cp+H9qAKoAqiM/eQFgf0+AsL9nPzjAAABAKgAAAQvBYEABQAfQA4DAAAEBgcBAwADX1kAEgA/KwAYPxESATk5ETMxMDMRMxEhFai/AsgFgfsbnAABAKgAAAYCBYEAGgFS' + + 'QO8YABoQDQ4aDhwbAwoYCg8DAAcUAw4SkBwBhBwBcBwBZBwBRBwBNBwBIBwBFBwB9BwB0BwBxBwBpBwBhBwBdBwBYBwBVBwBNBwBEBwBBBwBZ+QcAcQcAbQcAZQcAXQcAVAcAUQcASQcAQQcAfQcAdQcAbQcAYQcAWQcAUQcATQcARQcAfQcAcQcAaQcAYscAXQcAVQc' + + 'ATQcAQQcATfkHAHLHAG0HAGUHAF0HAFEHAEkHAELHAH0HAHUHAG7HAGEHAFkHAFLHAE0HAEUHAH7HAHkHAHEHAGkHAGAHAECcBwBUBwBQBwBPxwBIBwBABwBB15dXV1dXV1fXV1dXV1xcXFxcXFxcXJycnJycnJyXl1dXV1dXV1dcXFxcXFxcXFycnJycnJycnJeXV1d' + + 'XV1dXV1dXV1xcXFxcXFxcQA/FzM/MzMRMxESATk5ETMzETMzMTAhETQ3BgcBIwEvAR8BESMRMwEeARc+ATcBMxEFVgkxJ/6Uhv6POCEDBKr7AXcUJQYIMwkBcPUDrJyQs2X8QAPAqm5vvfxUBYH8LzuHHiijFQPR+n8AAQCoAAAFIAWBAA0AUEAvAAoKDQcEBAUNBQ8O' + + 'CwEGAwgABRIgDwHADwGwDwGgDwGADwFwDwFgDwFQDwEgDwFdXV1dXV1dXXEAPzMzPzMzERIBOTkRMxEzETMRMzEwIQEfAREjETMBJjURMxEEOv0OBQWq3gL6DKwEsGGn/FgFgftIxFgDnPp/AAIAYf/sBdcFlgAOABoAMEAaFQgPAAgAGxwLEl9ZCwQEGF9ZBBOAHAEg' + + 'HAFdXQA/KwAYPysREgE5OREzETMxMAEUAgQjIiQCNRAAITIEEgcQACMiABEQADMyAAXXqf7E19n+xaYBcgFK1wE8p8P++fDy/vgBC+30AQUCx93+tLKwAU3eAVIBfav+ut4BBwEs/tj+9f73/skBLQAAAAIAqAAABOoFgQAKABEAPEAgDwUFBgsABgASEw8EX1kPDwUH' + + 'Bw5fWQcDBRIgEwEgEwFdcQA/PysREgA5GC8rERIBOTkRMxEzETMxMAEUBCMhESMRITIEBxApAREhIATq/vvg/mK/AlHtAQTA/rj+hQGDAUAD2cjs/dsFgd7MARH91AAAAAIAYf59BdcFlgAYACQAP0AkHxIZAAAIAw4SBSUmFRxfWRUEDiJfWQMOEwsGX1kLgCYBICYB' + + 'XV0ALysAGD8zKwAYPysREgEXOREzETMxMAEQAAUeATMyNxUGIyImJyYkAjUQACEyBBIHEAAjIgAREAAzMgAF1/7U/vUphWY3PF1Vl8M+xv7hlwFyAUrXATynw/758PL++AEL7fQBBQLH/tb+gCN+cA2GFqvICrUBQ9UBUgF9q/663gEHASz+2P71/vf+yQEtAAAAAgCo' + + 'AAAFaAWBAA0AFgBXQC8BDAwTCRMDAwQOCQANDQkEAxcYDAITAl9ZExMABQUSX1kFAwQAEoAYAXAYASAYAV1dXQA/Mj8rERIAORgvKxEAMxESARc5ETMRMxEzETMREjkRMzEwIQEhESMRITIEFRQGBwEDNCYjIREhMjYEjP6S/km/ApfuAQO3oQGQ+Ked/jsBzZelAkn9' + + 'twWB1b6d1hz9oQPse4H9+I0AAAEAXf/sBPgFlgAtAI5AHwwAHRwjFgYFBRYcAAQvLgwQExZISQxZDGkMAw8MASO4//BAORMWSEYjViNmIwMNIwEMBAwjAxkZIF9Zbx0BWR0BSx0BAwAdAQkFHRkEAwlfWWAGAVIGAUQGAQYDEwA/M11dXSsAGD8zX15dX11dXSsREgA5' + + 'OV9eXV0rXV0rERIBFzkRMxEzETMRMzEwARQEISADNx4BMzI2NTQuAicuAzU0JCEyFhcHLgEjIgYVFB4BFx4FBPj+z/7r/f1SuSDQs7nJP3KeYKetZDUBFQEC8P4zvB+umqmyRYLCQYF2Z0wrAYXD1gFmJX93f3tFVjgmFiVKW3pPtcSTsSFwZXBvQVU7Kw8fKzpUcgAB' + + 'AC4AAAS0BYEABwEwQNkBAgQCBwMJCAAEBQRfWQUDARJ7CQFLCQE7CQEkCQH7CQHLCQG7CQGbCQGLCQF/CQECXwkBTwkBMAkBDwkBZ98JAc8JAbAJAY8JAV8JAU8JAQ8JAfAJAd8JAc8JAa8JAZ8JAXAJAV8JAUAJAR8JAe8JAd8JAZ8JAW8JAV8JAT8JAR8JAQAJATfv' + + 'CQHQCQGQCQGACQFvCQFQCQEvCQEACQHQCQGvCQGQCQF/CQFvCQFQCQFACQEgCQEQCQH/CQHgCQG/CQGgCQGQCQFgCQFACQE/CQEgCQEPCQEHXl1dXV1dXV1dXV1xcXFxcXFxcXFycnJycnJycl5dXV1dXV1dXXFxcXFxcXFxcXJycnJycnJeXV1dXV9dXV1dXV1xcXFx' + + 'AD8/KxEAMxESARc5ETMxMAERIxEhNSEVAtC+/hwEhgTl+xsE5ZycAAAAAAEAnv/sBSkFgQATAElALA0QBwQQBBUUDgUDAApfWQATIBUBwBUBsBUBoBUBgBUBcBUBYBUBUBUBIBUBXV1dXV1dXV1xAD8rABg/MxESATk5ETMRMzEwBSIkJjURMxEUFjMyNjURMxEUBgQC' + + '263+/o6/xLm+076R/vcUfvCmA4H8j8HIz8cDZPyRq/iDAAAAAAEACQAABU0FgQAIAD5AJgcIAQAFAwICBQgDCgkgClAKAjAKYAqQCsAK8AoFLwoBBwIDBQESAD8zPzMBXV1xERIXOREzETMzETMxMCEjATMBFzcBMwMOxv3ByQGGVFQBhMkFgfwg+fkD4AAAAAEACQAA' + + 'B4YFgQAZAfxA/xgZCAEBAQAUBxEBCBABERAECAcHAQsDBw0KCQkNBBQZBRsaixsBG8B8f0g5GwEqGwEZGwEKGwH5GwHqGwHZGwHKGwG4GwGJG5kbqRsDeBsBaRsBOhtKG1obAykbARobAQwbAWj9GwHsGwHdGwHMGwG9GwGrGwGcGwGLGwF8GwFrGwFcGwFLGwE8GwEr' + + 'GwEcGwELGwH8GwHrGwHcGwHLGwG8GwGrGwGcGwEAjRsBfxsBbRsBXxsBTRsBLxs/GwIdGwEPGwH9GwHvGwHdGwHPGwG9GwGvGwGdGwGPGwFtG30bAlsbAU0bATsbAS0bARsbAQ0bATj7GwHtGwHbGwHNG0BvAbsbAa0bAZsbAY0bAXsbAW0bAUsbWxsCORsBKxsBGRsB' + + 'CxsB+RsB6xsB3RsByxsBvRsBqxsBnRsBixsBfRsBaxsBXRsBSxsBPRsBASsbAR8bAQJfG38bnxu/G98b/xsGABsBCBgQBAkDFA0NAQgSAD8zMxEzPzMzMwFeXV1fcXFfcXFxcXFxcXFxcXFxcXJycnJycnJycnJycnJycl5dXV1dXV1dXV1dXV1dXV1xcXFxcXFxcV9x' + + 'cXFxcXFxcnJycnJycnJycnJycnJycl5dXV1dXV1dXV1dXV1xcXFxK3EREhc5ETMRM19eXTMRMzNdXREzM10RMzEwISMDJicOAQMjATMTFhc2EhMzExYXNz4BATMF5+T0GC4aJP/k/mHH/S0mGD/2t/U4IAkbIgEIxwN/VNl0nPxkBYH8gaiybgEEA2f8k9eVI3ORA7IA' + + 'AAAAAQAuAAAFKwWBAAsBCEDFCAkGBQIDAAsDBQQKCQsGDQwbDUsNAosNuw3rDQMEDRQNNA1EDQRqVA1kDYQNlA20DcQN5A30DQg7DQEkDQELDQH0DQHbDQHEDQGrDQGUDQF7DQFkDQEwDQEkDQEADQH0DQHQDQHEDQGgDQGUDQFwDQFkDQFADQE0DQEQDQEEDQE54A0B' + + '1A0BsA0BpA0BgA0BFA1EDXQNAyQNVA2EDbQN5A0FVA1kDZQN9A0EQA0BAgANMA0CdwcBeAEBAQQKBwQIBQMDABIAPzI/Mxc5XV0BXV9dXXFycnJycnJeXV1dXV1dXV1dXV1xcXFxcXFxcXFxcnJycl5dXXEREhc5ETMRMxEzETMxMCEJASMJATMJATMJAQRY/ln+UNMC' + + 'GP4R0wGIAX3T/h4CCwJo/ZgC3AKl/dcCKf1i/R0AAAEALQAABSkFgQAIAbBA/wYBAQICBAcIBQQIBAoJBgADCAMYA0gDAwwDAQgEAwESdgoBYgoBVAoBRgoBNgoBJAoBFgoBBAoB8goBAeAKAdAKAcQKAbAKAaAKAZQKAXAKAWQKAUAKATQKASQKARQKAQAKAWn0CgHk' + + 'CgHQCgHECgG0CgGkCgGQCgGACgF0CgFgCgFQCgFECgEgCgEUCgEECgH0CgHgCgHUCgHECgGwCgGkCgGUCgF0CgFkCgFUCgFACgEwCgEkCgEACgH0CgHECgGQCgGECgF0CgFUCgFECgEkCgEUCgEECgE54AoB1AoBpAoBhAoBcAoBZAoBVAoBNAoBJAoBBAoB9AoB5AoB' + + 'wEAzCgG0CgGQCgGECgFUCgE0CgEUCgEECgHkCgHUCgG7CgGkCgFwCgECYAoBMAoBLwoBDwoBXV1dXV9dXV1dXXFxcXFxcXFxcXFycnJycnJycnJyXl1dXV1dXV1dXV1xcXFxcXFxcXFxcXFxcXJycnJycnJycnJycnJycl5dXV1dXV1dXV1dXV1dX11xcXFxcXFxcQA/' + + 'PzMSOV5dETMzERIBOTkRMxEzEjkRMxI5MTABESMRATMJATMDCb794tIBrQGr0gJI/bgCSAM5/WECnwAAAAEAQQAABKMFgQAJAEpAKwgCAwcJBwQCBAoLBwMEBQRfWQUDAggBCF9ZARKACwFwCwFgCwFQCwFACwFdXV1dXQA/KxEAMxg/KxEAMzMREgEXOREzETMxMCkB' + + 'NQEhNSEVASEEo/ueA1r87wPq/KYDiY8EVpyL+6YAAAEAkv5XAikFzAAHACZAFAUABgMAAwgJAQT1WQEAAAX1WQAbAD8rABg/KxESARc5ETMxMBMRIRUjETMVkgGX6en+Vwd1gfmNgQAAAAABAAD/7AI5BcwAAwATtwMFAQQBAAATAD8/EQEzETMxMAUBMwEBl/5pngGb' + + 'FAXg+iAAAAAAAQAQ/lcBpwXMAAcAJkAUAgcEAQcDCQgFBPVZBQAAAfVZABsAPysAGD8rERIBFzkRMzEwEzUzESM1IREQ6ekBl/5XgQZzgfiLAAAAAAEACgKhA7cFgQAGATdAbwUEAQAGAgMDAQYDCAcDBAMJCBkIKQhpCMkI2QgGFgYIAX5GCFYIpggDhgiWCPYIAwYI' + + 'FghWCGYItgjGCAZOJgg2CGYIhgiWCKYI1gjmCAg2CHYIhgiWCOYI9ggGBggWCEYIVgiGCJYIpgjGCAgICLj/wLNIS0gIuP/AQExCRUgECBQIRAhUCKQItAgGdXQIhAikCLQI1AjkCAYECBQIpAi0COQI9AgGBAhUCLQI9AgEQVQIlAikCAPkCPQIAgQIFAhUCHQIBA4I' + + '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' + + 'DQIzsnfHu8nNc6kuAggEqwazSINTin52j1WESP5Xi4AaS1EBO65oaQEIARsBHwERaWEelAc2qvzF/jgDxoS/Zcjg3sJkuwAAAAEAjgAAA+4FzAAYAGBAOxURERIIBxIHGRoTAAADEgcVAw1QWQMQ0BoBwBoBsBoB8BoBsBoB/xoB4BoB0BoBwBoBsBoBoBoBcBoBXV1d' + + 'XV1dXXFxcnJyAD8rABg/MxI5PxESATk5ETMRMxEzMTABPgEzMhYVESMRNC4BIyIGFREjETMRFAYHAT06o32wp7UqYFV/mbS0BwEDgWpjr879LwKucm80sJX9ggXM/n49ggoAAgCJAAABPQXMAAMABwBuQEgDBwcABAQICQUPBBUBAFNZAQD/CQHgCQHfCQHACQGwCQGf' + + 'CQGACQFwCQEfCQEACQHwCQHfCQHACQGwCQGgCQGQCQFPCQEfCQFdcXFxcXFxcXJycnJycnJycnIAPysAGD8/ERIBOREzMxEzMTATNTMVAxEzEYm0tLQFIKys+uAEOvvGAAL/zv5XAT0FzAADABAA90CsCgMEBAAODhESDw8HC1BZBxsBAFNZAQDPEgG/EgGPEgEAEgFv' + + '7xIB0BIBjxIBPxIB/xIBrxIBnxIBjxIBbxIBUBIBQBIBMBIBIBIB3xIBsBIBoBIBkBIBTxIBPxIBLxIBABIBPf8SAe8SAd8SAc8SAbASAZASAYASAXASAR8SAQ8SAf8SAd8SAc8SAb8SAa8SAZASAU8SAf8SAeASAdASAcASAYASAXASAR8SAV1dXV1dXV1xcXFxcXFx' + + 'cnJycnJycnJycl5dXV1dXV1dXXFxcXFxcXFxcXJycnJeXV1dXQA/KwAYPysAGD8REgE5ETMzETMyMTATNTMVERQGIyInNRcyNjURM4m0eHhNMj5FOLQFIKys+lqZigmLBkhoBKUAAAAAAQCKAAAEAwXMAAsAjUBnCAkBCgkKBAALCwcDBAQNDB8NPw0CHw0/DV8N/w0E' + + 'Dw0fDT8NXw1/DQU5DUBTVkhgDYANoA3ADdANBd8NAQANYA2ADaANBAANEA0wDUANgA2gDcAN4A3wDQkHAgEHCgQIDwUABBUAFQA/Pz8/FzkBXl1xcXIrXl1xchESOREzMzIRMxI5OREzETMxMCEBBxEjETMRATMJAQMw/pKEtLQB29P+SQHOAe5t/n8FzPxhAg3+L/2X' + + 'AAEAigAAAT4FzAADAHZAUQMAAAUEAQAAFfAFAeAFAd8FAcAFAbAFAZ8FAYAFAXAFAR8FAQ8FAfAFAd8FAcAFAbAFAaAFAZAFAU8FAf8FAeAFAdAFAcAFAYAFAXAFAR8FAV1dXV1dXV1xcXFxcXFxcnJycnJycnJycgA/PxESATkRMzEwMxEzEYq0Bcz6NAAAAAEAiAAA' + + 'BiMETgApAX5A/xgpAAAhCSEgEggJIAkrKhwlUFkcEBgRABUVBFBZFRAMDyEJABVkKwFLKwE/KwErKwEfKwEPKwHrKwHfKwG7KwGrKwGLKwF7KwFvKwE7KwEfKwELKwFq6ysByysBuysBrysBiysBfysBWysBTysBGysB+ysB7ysB3ysByysBuysBrysBlCsBZCsBSysB' + + 'KysBGysBBCsB9CsB2ysBqysBiysBfysBaysBNCsBGysBDysBOfsrAdsrAbsrAaArAZQrAXQrAVsrAUsrASsrAR8rAQsrAfsrAesrAcsrAaQrAXsrAVsrAUsrARsrAfQrAdArAQLAKwGgKwGQKwFgKwFPK0ALATArAS8rAQArAQheXV1dXV1dXV1fXV1xcXFxcXFxcXJy' + + 'cnJycnJycnJyXl1dXV1dXV1dXXFxcXFxcXFxcXFxcXJycnJycnJycl5dXV1dXV1dXV1dcXFxcXFxAD8yMj8/KxESADk5GD8rERIBOTkRMzMRMxESOREzMzEwIRE0JiMiBhURIxE0JzMeAhczPgEzMhYXMz4BMzIWFREjETQmIyIGFREDAFZwc4azBqoBAgMCAzqWbHuP' + + 'HAM4n3GklbJWcHaDAq6deLCg/Y0DU70qBSw5T3NaYmttYLLL/S8Crp14r6H9jQAAAAEAiAAAA+4ETgAaAGFAPBIJCQoAGgoaGxwSFgAWBVBZFhANDwoAFdAcAcAcAbAcAfAcAbAcAf8cAeAcAdAcAcAcAbAcAaAcAXAcAV1dXV1dXV1xcXJycgA/Mj8/KxESADkREgE5' + + 'OREzETMRMzEwIRE0LgEjIgYVESMRNCczHgIXMz4BMzIWFREDOSpcWYKWtAaqAQIDAgM+o3mypQKua3Y0sp79jQNTvSoFLDlPcF2xzP0vAAIAVv/sBB0ETgAKABYASEAsEQYLAAYAFxgIDlBZCBADFFBZAxagGAGQGAGAGAFwGAFgGAFQGAEwGAHfGAFdcXFxcXFxcQA/' + + 'KwAYPysREgE5OREzETMxMAEQAiMiAhEQITISAzQmIyIGFRQWMzI2BB367u3yAeX46r2FnZ6Ni5WiiwIe/uT+6gEhARECMP7v/uHgy8/c1tfQAAAAAAIAhP5XBB0ETQAXACQAXUA3GAAfEQgICQAJJiURBBUCFRtQWRUQDA8IGwIiUFkCFrAmAT8mAZAmAXAmAR8mAf8m' + + 'AeAmAcAmAV1dXXFxcXJyAD8rABg/Pz8rERIAOTkREgE5OREzETMzETMxMAEQISInIxYVESMRNCczHgIVMz4BMzISAzQmIyIOARUUFjMyNgQd/nL6VgUEtAauAQQFBDCegcjGvXqFa3k/iJmGewIi/cq8CKL+WQUGpzYEMWYTZF3+9P7d4sJav5nVysUAAAACAFb+VwPw' + + 'BE4AFgAiAIZAVBcIEREQHQMQAyQjEBsMEAgTBQAFGlBZBRAAIFBZABZAJAEgJAHPJAGwJAGQJAEgJAEAJAFQ3yQBwCQBTyQBoCQBgCQBLyQBDyQB8CQB0CQBDyQBCF5dXV1xcXFxcnJyXl1dXV1dcXEAPysAGD8rERIAOTkYPz8REgE5OREzETMRMzMxMAUiAhEQITIW' + + 'FzM0NjczBhURIxE3Iw4BEzQmIyIGFRQWMzI2AeTOwAGOe6A2AggErQe0BAI2ntKKl4l4eYaZihQBFgEWAjZXZR6TBTvs+zYBt6RrWwI+08zM3+PE2gAAAQCIAAACiAROABMAI0AQBhMTAAAMFBUPBgoQBA8AFQA/Pz8zMxESATk5ETMRMzEwMxE0JzMWFTM+ATMyFxUm' + + 'IyIGFRGOBqoIBCtwZiQlJDxwdgM+coq4JYtmCqUKwbT9zAAAAAEAOf/sA7YESwAqAGRAPAcGIhUcGw0AABsVBgQrLA0iAxgYH1BZHBgQAwpQWQcDFhAsAQAsAfAsAeAsAcAsAWAsAYAsAT8sARAsAV1dXXFxcXFycgA/MysAGD8zKxESADk5ERIBFzkRMxEzETMRMzEw' + + 'ARQGIyImJzceATMyNjU0Ji8BLgI1NDYzMhYXBy4BIyIGFRQeARceAwO259DK2yGfF5CAiX9YYoGbg0rTyrPTHKIPg256dDBel49+SSgBK5mmhY0fV1FUVEBQGiIoTW5QlJt+ixRITUpLLjwqJSQ9SmEAAAEAH//wAioFLAAUAEVAJA0UFAsPDwkEBBYVDgUIBVBZCw8J' + + 'AQwDCUAIDwISUFkCFoAWAV0APysAGD8azV9eXTMrEQAzERIBOREzMxEzMhEzMTAlBiMiNREjNTM3MxUzFSMRFBYzMjcCKlld2H2ENXjIyDM/JEQIGPUC0oPy8oP9VU4/DgAAAAABAIX/7APrBDoAGgBfQDsSCAgLARkLGRwbEgUWBVBZFhYNFQkAD9AcAcAcAbAcAfAc' + + 'AbAcAf8cAeAcAdAcAcAcAbAcAaAcAXAcAV1dXV1dXV1xcXJycgA/Mj8/KxEAMxESATk5ETMRMxEzMTABERQeATMyNjURMxEUFyMuAicjDgEjIiY1EQE6KlxZgpa0BqoBAgMCAz6jebKlBDr9Umt2NLKeAnP8rb0qBSw5T3BdscwC0QABAAcAAAP5BDoACgFcQPgBAAYJ' + + 'CgMCAgYKAwsMCQIPBgEVmwwBhAwBYAwBVAwBRAwBIAwBFAwBBAwB4AwB1AwBxAwBoAwBlAwBhAwBYAwBVAwBRAwBFAwBBAwBZ9QMAcQMAZQMAYQMAVQMAUQMARQMAQQMAdsMAcQMAZsMAYQMAVsMAUQMARsMAQQMAdsMAcQMAZsMAYsMAVsMAUsMARsMAQsMATfbDAHL' + + 'DAGbDAGLDAFbDAFLDAE/DAEgDAEUDAEEDAHgDAHUDAHEDAGgDAGUDAGEDAFgDAFUDAFEDAEgDAEUDAEEDAHUDAHEDAGgDAGUDAGEDAFgDAECUAwBLwwBEAwBAAwBB15dXV1dX11dXV1dXXFxcXFxcXFxcXFxcXJycnJycnJycnJeXV1dXV1dXV1xcXFxcXFxcXJycnJy' + + 'cnJyXl1dXV1dXV1dXV1dcXFxcXFxcXEAPzM/MxESARc5ETMRMxEzMzEwISMBMxMWFz8BEzMCZdX+d8DuDTgjJ/a/BDr9QCjFdXYCwgAB//0AAAXMBDoAFAGuQP8BABEHBgwPDgMTCQwDEQMUCAcUARQWCAgBCwgVAw4TAwgPAQwRAwcVdhYBZhYBVBYBRhYBNhYBJBYB' + + 'FhYBBBYB9BYB5hYBxBYBshYBpBYBlhYBhhYBZhYBVBYBRBYBNhYBFBYBBhYBafYWAeIWAdQWAcYWAbYWAZYWAYQWAXQWAWYWAUYWATYWASQWARYWAQYWAfQWAeYWAbYWAaQWAZQWAYYWAWkWAVYWAUQWATYWAQYWAeQWAdYWAcQWAbYWAaYWAYkWAXIWAQFgFgFUFgEk' + + 'FgEEFgE49BYB1BYBxBYBpBYBgBYBdBYBSxYBMBYBJBYBFBYB+xYBxBYBoBYBlBZAMAF7FgFkFgFEFgE0FgEbFgHwFgHkFgHLFgG0FgGUFgGEFgFkFgE/FgECEBYBABYBCF5dXV9dXV1dXV1dXXFxcXFxcXFxcXJycnJycnJycnJeXV1dXV9dXV1dXV1dcXFxcXFxcXFx' + + 'cXFycnJycnJycnJycnJycl5dXV1dXV1dXV1dXV1dcXFxcXFxcXEAPxczPxczEQEzXl0RM10REhc5MzIRMzMRMzMRMzMxMCEjAycOAQMjATMTFhc3EzMTFzcTMwSW0b0kCSa50P7RsrcHJBHiwb0uH82wAv2pLan9MAQ6/SEYrkoDW/0ZvosDGgAAAAEAFwAAA+oEOgAL' + + 'AVRAoAALCAkKBAEHBgUCAwMFBwkLBQ0MhA0Bdg0BRA1UDWQNAzYNASQNARYNAQQNAfYNAeQNAdYNAcQNAbYNAaQNAXYNhg2WDQNkDQEGDRYNJg1GDVYNBWcGDUYNVg2GDZYNxg3WDeYNCJkN2Q0CZA0BVg0BRA0BNg0BJA0BFg0BBA0B1g3mDfYNA8QNAQYNJg02DUYN' + + 'BDdmDaYNtg3mDfYNBQ24/8BANj1CSDkNASINAQEADRANAvQNAcAN0A3gDQO0DQGADZANoA0DdA0BYA0BVA0BQA0BNA0BIA0BDbj/wEAiEhhIoA0BAgANEA1QDXANgA2QDQYHCgQBBAcDAggGDwACFQA/Mz8zEhc5ETMBXl1fXStxcXFxcXFxcXFxcl9ycityXl1dXXFx' + + 'cXFxcXFxcl5dXV1dXV1dXV1xcXFxcXFxERIXOREzETMRMzMzETMRMzEwIQkBIwkBMwkBMwkBAyH+3f7bwgGB/pHHAQ4BDMn+kQGGAbz+RAIsAg7+WwGl/fT90gAAAQAF/lcD/AQ6ABYB5ED/EwgPERIKCQkDDxIEGBcIEw8TFxEJDwAFUFkAG5IYAYIYAXQYAWQYAVIY' + + 'AUIYATQYASQYARIYAQIYAfQYAeQYAdIYAcIYAbQYAaQYAZIYAYIYAXQYAWQYAVYYAUIYATQYASQYARYYAQIYAWf0GAHkGAHWGAHCGAG0GAGkGAGWGAGCGAF0GAFkGAFWGAFCGAE0GAEkGAEWGAECGAH0GAHkGAHWGAHCGAEBsBgBoBgBlBgBhBgBcBgBYBgBVBgBRBgB' + + 'MBgBIBgBFBgBBBgB8BgB4BgB1BgBxBgBsBgBoBgBlBgBhBgBcBgBYBgBVBgBRBgBMBgBIBgBFBgBBBgBN+AYQFoB1BgBxBgBoBgBlBgBhBgBYBgBVBgBRBgBIBgBFBgBBBgB4BgB1BgBxBgBoBgBlBgBhBgBYBgBAlAYATAYASAYAQAYAcAYAZAYAYAYAVAYAS8YARAY' + + 'AQAYAQdeXV1dXV1dXXFxcXFfcXFxcXFxcXJycnJycnJycnJycl5dXV1dXV1dXV1dXV1dXV1dcXFxcXFxcXFxcXFxX3FxcXFycnJycnJycnJycnJycnJyXl1dXV1dXV1dXV1dXV1dXV1xcXFxcXFxcXFxAD8rABg/MxEzMxEzERIBFzkRMxEzETMzMTATIic1FjMyPwEB' + + 'MxMeAhc3EzMBDgK/SjImLqhiEf5TwOQFDkwDRu2+/mBDdI3+VwuHBvcrBDX9qg4n3g3FArH7xq2pUwAAAAEAUwAAA5oEOgAJAWJA/AIGBwEBAwYIBAsKBgMEA1BZBA8BBwAHUFkAFdQLAcQLAbQLAaQLAZQLAYQLAXQLAWQLAVQLAUALATQLASALARQLAQALAfQLAeAL' + + 'AdQLAcALAbQLAaQLAZQLAYQLAXQLAWQLAVQLAUQLATQLASQLAQQLAeQLAcQLAbQLAaALAZQLAYALAXQLAWQLAVQLAUQLATQLASQLARQLAQQLATf0CwHkCwHUCwHECwGkCwGECwFkCwFECwEECwH0CwHkCwHUCwHECwG0CwGkCwGUCwGECwFkCwFECwEkCwEECwHgCwEC' + + '0AsBwAsBsAsBoAsBkAsBcAsBUAsBIAsBAAsBB15dXV1dXV1dXV1fXXFxcXFxcXFxcXFxcXJycnJycnJycl5dXV1dXV1dXV1dXV1dXXFxcXFxcXFxcXFxcXFxcXJycnJycnJycnJycnJyAD8rEQAzGD8rEQAzERIBFzkRMxEzMTAzNQEhNSEVASEVUwJd/cUDEP2iAnOJ' + + 'AyaLifzaiwAAAAABACL+VwKIBcwAIwBfQDoWHh4LAxEiAwcEJCUZCAcIB/VZDwhPCAIvCL8IzwgDDwgvCE8I7wgECwMICA8ADxL1WQ8AACH1WQAbAD8rABg/KxESADkYL19eXXFyKxESADkREgEXOREzMxEzMTABIiY1ETQmJzU+ATURNDY7ARUjIgYVERQGBxUeARUR' + + 'FBY7ARUCAX+JaW5taoWDhz9bTWpYWWlNWz/+V5qLAWl1cwV/BHN1AWqNmIFrbP6cXokVAhWIYf6bam2BAAEAt/5OAV0FzAADAUFA6AAEBQEAAIQFAXQFAWAFAVQFAUQFATQFASQFAeAFAdQFAcQFAbQFAaQFAYQFAXQFAWQFASAFARQFAQQFAWj0BQHkBQG0BQFwBQFk' + + 'BQFUBQFEBQE0BQHABQGwBQGkBQGUBQGEBQF0BQE7BQErBQEQBQEABQEC8AUB4AUB0AUBwAUBfwUBbwUBUAUBQAUBMAUBIAUBEAUBAAUBOM8FAbAFAaAFAXAFAWAFAR8FAQAFAfAFAeAFAaAFAVAFAUAFATAFASAFAe8FAd8FAc8FAb8FAa8FAZAFAYAFAXAFAUAFAS8F' + + 'AR8FAQ8FAQdeXV1dXV1dXV1dXV1dcXFxcXFxcXJycnJycnJeXV1dXV1dXV1dXV1dX3FxcXFxcXFxcXFycnJycnJycl5dXV1dXV1dXV1dXXFxcXFxcXEALz8REgE5MTATETMRt6b+Tgd++IIAAAEAIv5XAocFzAAjAF9AOgsWFgQdGh0jEAQkJQcZGhka9VkPGU8ZAi8Z' + + 'vxnPGQMPGS8ZTxnvGQQLAxkZESIiI/VZIhsREPVZEQAAPysAGD8rERIAORgvX15dcXIrERIAORESARc5ETMzETMxMBMyNjURNDY3NS4BNRE0JisBNTMyFhURFBYXFQ4BFREUBisBNV5bT2hZVmtPWzyEg4Vqb3BpiX+E/thtagFlYogUAhSHYQFkbGuBmI3+lnR0BH8E' + + 'dHX+l4qbgQAAAQBcAikEUAMnABYAb0AJCBMXGAARrVkIuP/AtCY8SAgAuP/AsxccSAC4/8CzDhRIALj/wEAsCQxIAEATQCk8SBMLCwWtWR8LTwufCwNvC38LnwuvC88L7wv/CwcLQAkNSAsALytdcSsAGBDEKxrdKysrxCsrERIBOTkxMAEiJicmIyIGBzU2MzIWFx4B' + + 'MzI3FQ4BA0xFkUmBWEN0QW+YNH+CH3gtgnI6dQIpLBotKS+PVBouDCFclSomAP//AAAAAAAAAAAQBgADAAAAAgDy/rkBuAQ6AAMABwHCQP8CAwMFBgYICQAGQAcGnFsHDwYDAQkDkAkBggkBcgkBYAkBUgkBQgkBMgkBIgkBEgkBAgkB8gkB4gkB0AkBwgkBsgkBogkB' + + 'kgkBggkBcgkBZAkBVAkBQgkBMgkBIgkBEgkBAgkBZ/IJAeIJAdQJAcQJAbQJAaYJAZYJAYQJAXYJAWIJAVIJAUQJATQJASQJARYJAQYJAfYJAdIJAcIJAQGwCQGgCQGQCQGECQF0CQFkCQFACQEwCQEgCQEQCQEACQH0CQHkCQHUCQGwCQGgCQGUCQGECQF0CQFkCQFU' + + 'CQFECQEgCQEQCQEECQE39AkB5AkBtAkBkAkBgAkBdAkBZAlAQgFUCQEbCQEACQHwCQHkCQHUCQHECQGECQF0CQFkCQFUCQFECQE0CQH0CQHkCQHUCQGkCQFkCQFUCQFACQECDwkBB15dX11dXV1dXV1xcXFxcXFxcXFxcnJycnJycnJycl5dXV1dXV1dXV1dXV1dXXFx' + + 'cXFxcXFxcXFxX3FxcXJycnJycnJycnJycnJycnJeXV1dXV1dXV1dXV1dXV1dXXFxcXFxcXFxcXEAL15dPysAGhgQzhESATkRMzMRMzEwATMTIxMVIzUBCpQYxMbCAq38DAWByckAAAAAAgCH/+ED+gWBAB0AJgAAJSYCETQSNzUzFR4BFwcmJyYnAzY3NjcXDgEHFSsB' + + 'EQYHBhUUFxYXAhrHzMzHfI+0G7kOOSU5ATUqQBC2E76TAXtkM0BENV6JEgEdAQH9AR8Rm5sPposOWjUiDPzHDCE0bAyQtg6oBHcQS1/h2GhREgABADoAAARQBZYAJQCKQFQiCwQUExwTABsfHwwICAQlAAQAJiceCQwJUVkbDwwfDK8MAw8MPwxvDH8MnwyvDM8M3wwI' + + 'CAMMQCUqSAxAGyBIDAwiEBAXc1kUEAcFIgQidFklBBgAPzMrEQAzGD8zKxESADkYLysrX15dcTMrEQAzERIBOTkRMxI5ETMzETMSOTkRMxEzMzEwAQ4BIyE1PgE9ASM1MxE0NjMyFhcHLgEjIgYVESEVIRUUBgchMjcEUBGwkP1GWVa6us7Ek8girhVvR3JwAZj+aFxN' + + 'AeOuHQE3lqGaLqB5kIEBGMPJeW05QEtzff7ggX53uimwAAACAHEA4QQCBHMAGwAnAEJAIRwZAwAiEQsOAA4oKQ8pAQsDFR+wWRgSFQdAByWwWQoEBwAvMzMrABoYEMwyMisBX15dERI5OREzMzMRMzMzMTATNDcnNxc2MzIXNxcHFhUUBxcHJwYjIicHJzcmNxQWMzI2' + + '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' + + 'mdXKxf//AAX+VwP8BXsSJgBcAAARBwBqALsAAAAdQAkCARcXESYCARu4//60GxkJEiUrETU1ACsRNTUA//8ABAAABVIGnBImACQAABEHAosBaAFJABZADQIREQUmAhICEhEEByUrETUAKxE1//8AV//sBHMFUxImAEQAABEHAosA6QAAABi2AjExESYCMrj/yrQyMQMa' + + 'JSsRNQArETUAAP//AAQAAAVSBvMSJgAkAAARBwklAXkAAAAWQA0CEREFJgIUAxQcBAclKxE1ACsRNf//AFf/7ARzBeYSJgBEAAARBwKaAQcAAAAYtgIxMREmAjS4/8y0NDoDGiUrETUAKxE1AAD//wAE/mAFYwWBEiYAJAAAEQcCnQO1AAsAD7ECGrj/z7QaGgcHJSsR' + + 'NQAAAP//AFf+VQRzBE4SJgBEAAARBwKdAsUAAAAPsQI6uP/CtDo6GholKxE1AAAA//8AaP/sBXkG8BImACYAABEHCR8CUwAAABRADAEaBSYBGn4aHRAJJSsRNQArNQAA//8AV//sA8oF5BImAEYAABEHAHYBZwAAABRADAEaESYBGnIaHQ0HJSsRNQArNQAA//8AaP/s' + + 'BXkG/hImACYAABEHCSABzAAAABZADQEbGwUmASAmIBoQCSUrETUAKxE1//8AV//sA8oF0xImAEYAABEHAogA0AAAABZADQEbGxEmASAKIBoNByUrETUAKxE1//8AaP/sBXkG8RImACYAABEHApsCIgElABRADAEaBSYBGicaHBAJJSsRNQArNQAA//8AV//sA8oFzBIm' + + 'AEYAABEHApsBLAAAABRADAEaESYBGhEaHA0HJSsRNQArNQAA//8AaP/sBXkG/hImACYAABEHCSEBzAAAABZADQEaGgUmARwmHCIQCSUrETUAKxE1//8AV//sA8oF0xImAEYAABEHAokA1gAAABZADQEaGhEmARwQHCINByUrETUAKxE1//8AqAAABWUG/hImACcAABEH' + + 'CSEBZgAAABi2AhQUBSYCFrj/q7QWHAUAJSsRNQArETUAAP//AFb/7AT/BcwQJgBHAAARBwkcA7oASwATQAsCKwACK1MrKw8PJSsRNQA/NQAAAP//AA4AAAVlBYESBgCSAAAAAgBW/+wEbQXMAB4AKgBzQC0fEAYlEQAODhUXBhcrLBoVFw8QD1FZFA8QHxAvEAMXAxAQ' + + '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' + + 'QA0BBAQFJgEHAgcPAAIlKxE1ACsRNQAA////0gAAAmwF5hImAPMAABEGApr1AAAWQA0BBAQRJgEHAwcNAAIlKxE1ACsRNQAA//8AXP5VAboFgRImACwAABEGAp0MAAAMtwENAA0NAwMlKxE1//8AH/5VAX0FzBImAEwAABEGAp3PAAARQAsXEwECEQAREQcHJSsRNV0A' + + 'AAD//wC9AAABfAbxEiYALAAAEQcCmwAnASUAFEAMAQQFJgEEAAQGAAIlKxE1ACs1AAAAAQDCAAABdgQ6AAMBCkC+AwAABAUBDwAVJAUB5AUB1AUBxAUBtAUBhAUBdAUBNAUBJAUBFAUBBAUBbuQFAdQFAcQFAbQFAUAFATQFASQFARQFAZAFAYQFAXQFAWQFAeQFAdQF' + + 'AcQFAbQFAWsFATQFASQFARQFAQQFATjbBQHLBQGUBQGEBQF0BQFkBQErBQEbBQHkBQHUBQHEBQF7BQFrBQFABQECMAUBIAUBEAUBzwUBvwUBkAUBgAUBcAUBYAUBQAUBIAUBHwUBDwUBB15dXV1dXV1dXV1dcXFxX3FxcXFxcXJycnJycnJyXl1dXV1dXV1dXXFxcXFy' + + 'cnJycnJycl5dXV1dXV1dXV1dcQA/PxESATkRMzEwMxEzEcK0BDr7xgAA//8Aqv/sBUkFgRAmACztABAHAC0B4QAA//8Aif5XAwMFzBAmAEwAABEHAE0BxgAAABpAEAMCCG8IARAIMAgCAQAQAAFdNTVdXRE1Nf//ACD/7APNBv4SJgAtAAARBwkgATcAAAAWQA0BEhIF' + + 'JgEXvhcRAg0lKxE1ACsRNQAC/5n+VwIvBdMADAAWARhAxBYVEREOEw4KCgMTBwcYFxMVlFsPEy8TPxN/E+8TBQkDEwgPAARQWQAbzxgBvxgBjxgBPxgBLxgBHxgBABgBb+8YAdAYAT8YAf8YAa8YAZ8YAY8YAW8YAVAYAUAYATAYASAYAd8YAbAYAaAYAZAYAU8YAT8Y' + + 'AS8YAQAYAT3/GAHvGAHfGAHPGAGwGAGQGAGAGAFwGAEfGAEPGAH/GAHfGAHPGAG/GAGvGAGQGAFPGAH/GAHgGAHQGAHAGAGAGAFwGAEfGAFdXV1dXV1dcXFxcXFxcXJycnJycnJycnJeXV1dXV1dXV1xcXFxcXFxcXFycnJeXV1dXV1dXQA/KwAYPy9fXl0rERIBOREz' + + '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' + + 'GQFCGQEBMBkBIBkBEBkBABkBN0B08BkB4BkB1BkBxBkBsBkBpBkBlBkBhBkBcBkBYBkBUBkBRBkBNBkBJBkBABkB8BkB5BkB1BkBxBkBoBkBkBkBhBkBdBkBZBkBVBkBRBkBNBkBBBkBxBkBtBkBoBkBApAZAYAZAXAZAT8ZAS8ZAR8ZAQ8ZAQdeXV1dXV1dXV9dXV1x' + + 'cXFxcXFxcXFxcXFxcnJycnJycnJycnJycnJyXl1dXV1fXV1dXV1dXV1dXV1dcXFxcXFxcXFxcXFxcXFxcXJycnJycnJycnJycnJycnJeXV1dXV1dXV1dXV1dXXFxcXFxcXFxcXEALzIrABoYEM1fXl1dcSsRADMYLxEBMxEzMTABIi4CIyIGByM+AjMyHgIzMjczDgEB' + + '7CpUTkcfNzYJWwswUT8sVE5FHmQRXBFkBLElLSU+OWZpPSUtJXeUeAACABYEsQMZBeQABQALACRAEAYKBAAKAA0MCAIAApVbBgAALzIrEQAzERIBOTIRMxEzMTATNRMzFQEzNRMzFQEW2c/+tv3Zz/62BLEUAR8d/uoUAR8d/uoAAf/mAWUCGgMMAA0AHEALAgAMDAgO' + + 'DwwFAQoAL8w5ORESATk5ETMzMTADNxceATMyNxcGIyIDBxrlHQ4zMjRQO35V0ipOAukjiEQ8KJM0AQwTAAAAAQADAy0CpwXRAAsALEAWCgsIAgUEAAYEAAQNDAgLBQIECQcDAQAvM80yFzkREgE5OREzEhc5MjEwAQcnByc3JzcXNxcHAqdY+vpY+/tY+vpY+wOFWPv7' + + 'WPr6WPv7WPoAAv/yAL4CoATlABEAGwA7QB8XDxIJCQYDFQAPBgEEBQUdAgEBHBUABgMEBBoMBAHrAD8zLzMSFzkRATMRMxEzETMSFzkRMxEzMTATATMbATMBHgEVFAYjIiY1NDcXNCYnBhUUFjMy/f71gtLZgf7uKixVSUpTSocTITMbGDQCVAKR/foCBv1vSH8oTFtb' + + 'TFSI1xdAQ2M3ICUAAAAAAQBkAeoA3gYAAAMAFkAJAAMDBAUB6gDoAD8/ERIBOREzMTATETMRZHoB6gQW++oAAQAsAd4CiwTzACcAQEAhBwYgFBsaDAAAGhQGBCgpIAwXAxcd5FkbF+wDCuRZBwPpAD8zKwAYPzMrERIAOTkREgEXOREzETMRMxEzMTABFAYjIiYnNx4B' + + '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' + + 'mGSMjGiQUKR8gDQ8SVhwnHiIm5iQpICApJCYm4h4nHBYSTw0DQgESp9NoxIAPzMzxjIyFzkvLy8vLy8vLy8vLy8vETMRMxEzMxEzETMzETMRMxEzMxEzETMzETMRMxEzMxEzETMzETMRMxEzMxEzETMyETMzETMRMzMxMAEjNSM1IQUhNSEBIxEzJRQjIjU0MzInFCMi' + + 'NTQzMhMUIyI1NDMyFxQjIjU0MzIBFCMiNTQzMgcUIyI1NDMyARQjIjU0MzIBIxUjESEBITUzNTMBFCMiNTQzMgEUIyI1NDMyBxQjIjU0MzIBFCMiNTQzMgcUIyI1NDMyARQjIjU0MzIlFCMiNTQzMhMUIyI1NDMyJxQjIjU0MzIlIxEzASE1IQUhETMVMwLqbeABTf29' + + '/rIBTgJDbW3+kTQ4ODSVNDk5NPk3Njg1JDQ4ODT+NDY3NzauODU1OAJWNzY2N/yE4G0BTQSH/rPgbfwJNjY2NgKKNjY2NpY1ODg1/ak1ODY3IzY2NjYByjY3Nzb+WTc2Njf5ODU1OJY2NjY2/pBtbQMk/rIBTv28/rNt4ASD3G1tbfxzAU6TNjY3LDY2N/7RODg15TY2' + + 'NwGWODg1WjY2N/1yNTU4AvvcAUn6NG3cAtc2Mzr9PjU1N5o0NDkCIDg4NeU2Njf9/zc3NeY1NTj+0jg0OSo1NTdzAU78c21tAUncAAAAAAH/dAR9AI0GIQAGAAyzBAaAAgAvGs45MTATFQU1Nyc1jf7nqqoFeFKpcmBgcgAAAAH/owR4AFwF8wANAA60BwaADQAALzIa' + + 'zjIxMBMiJjU0NjMVIgYVFBYzXFVkZFUqNzcqBHhoVldmVTcxMTgAAAAC/twE1QEkBoYADQARABdACQQLDwsPCwcADgAvzDI5OS8vETMxMBEyFhcjLgEjIgYHIz4BEzUzFXebEmkPYkpMYwxpD54etAaGiXs+Rkk7d43+T6ysAAAAAf8l/kIA2v/1AAsAFkAKCAsFAgQD' + + 'AYAJBwAvMxrNMhc5MTATBycHJzcnNxc3FwfaV4SDVoOEV4SEVoT+l1WGhVOFhVWFhFOEAAAAAAH/dP5WAI3/+gAGABC1AgMEgAEAAC8yGs4yOTEwFxUHFxUlNY2qqv7nBnJgYHKpUgAAAAAB/3T+VgCN//oABgAQtQQDAoAFBgAvMxrOMjkxMBcVBTU3JzWN/ueqqq9S' + + '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' + + 'QBQLCysLAjQLhAsCAQYDAQcEBxQHArj/ZkAWBwcBASUALwABAk8AXwBvAH8ABIAAAV1dX101K10RNQA/NQFdXf///7v/7AXTBZYQJgAy/AARBwM5/u7/fAAlQAoCHQMCGwAbwBsCuP9eQAobGwgIJQEALwABXTU1K10RNQA/NQD//wBBAAAGqwWDECcAPAGCAAARBwM5' + + '/3T/fAHcQP8JEAGZKBABGBBIEFgQuBDIEOgQBggQaBB4EIgQBMcYEDgQAqgQyBACCBAYEFgQyBDYEPgQBpcIEAELFxCHEKcQA0cQZxDXEAMHEBcQAranEAEHEDcQ9xADBxA3EFcQZxB3EJcQ5xAHglcQAQcQFxB3EIcQpxAFPCcQZxCHEJcQ9xAFBxAXECcQNxBHEFcQ' + + 'dxC3EMcQ1xDnEAsHECcQNxBXEJcQpxDHENcQ5xD3EAoMBhAWEAIGEDYQdhCWEKYQ5hAGg1YQxhDmEAMGECYQhhCmEMYQBQYQJhBWEHYQlhCmELYQ9hAIQAYQFhA2EGYQdhCGEJYQphDmEPYQCiYQRhBAjVYQZhC2EMYQ1hD2EAgGEHYQAhAFECUQRRCVEKUQtRAGcQUQ' + + 'JRA1EFUQZRB1EJUQxRDlEPUQCiUQNRBFEFUQZRCFEKUQxRDVEOUQ9RALBRB1ELUQxRDVEAVBBBAkEEQQVBB0ELQQxBDkEPQQCQQQdBCUEANiAxBzEAJ4AAELAwEMAAwQDEAMYAxwDIAMBrj/pkALDAwEBCUAAACwAAJdNStdETUAPzUBX15dXl1xXl1xcl5dXl1xcl5d' + + 'cXJeXXFeXXFyXl1xXl1xcl5dcXJeXV5dcXJeXXFyXl3///+7AAAFrQWWECYDWwoAEQcDOf7u/3wANkANrysBASYDASQQJJAkArj/PkAWJCQhISUAHwBfAJ8AAx8AnwCvAN8ABF1xNStdETUAPzUBXf///7AAAAIeBkEQJgNrAAARBgM6kwAA+EC+DxkfGe8Z/xkE1C8Z' + + 'PxlPGf8ZBC8ZAQ8ZPxlPGd8ZBKQPGc8Z3xnvGQRvGX8ZAg8ZHxmvGQNtjxnPGd8ZAy8Z3xnvGf8ZBA8ZATgPGR8ZLxm/Ge8Z/xkGDxlfGQIPGR8Z/xkDCAAZAd8AGRAZ0BngGQQgGfAZAgAZEBkCrkAZUBnQGeAZBAAZ4BkCcwAZEBnQGQMgGXAZAgAZAT2QGaAZsBkD' + + 'sBnAGdAZAwAZkBmgGeAZBAcDAgEKChEmAwIBELj/3LQQFgMJJSsRNTU1ACsRNTU1AV5dcXJeXXFyXl1yXl1xcl5dXl1xcl5dcXJeXXFyXl1xcl5d//8ABAAABVIFgRIGACQAAP//AKgAAATqBYESBgAlAAAAAQCoAAEELwWCAAUAHUAOAwQABAcGBQJfWQUDAxIAPz8r' + + 'ERIBOTkRMzEwARUhESMRBC/9OL8Fgpz7GwWBAAAAAAIAPQAABRoFgQAFAA4APkAhBgIBAAoOBQUKAgMQDxAQAQ8QAQsDBQIOBA5fWQQSCgADAD8yPysRADMzAV9eXV0REhc5ETMRMzMRMzEwATMBFSE3JQEuAScHBgcBAkPZAf77IwEEFP6uHjMCCR8r/q0FgfsMjY0P' + + 'A15KoQwgb2r8pAAA//8AqAAABP4FgRIGACgAAP//AEEAAASjBYESBgA9AAD//wCoAAAFIAWBEgYAKwAAAAMAYf/sBdcFlgAOABoAHgBPQCseFQ8PABUIAAggHwAgYCACCwMbHl9ZDxsBCwMbGwQLCxJfWQsEBBhfWQQTAD8rABg/KxESADkYL19eXSsBX15dERI5OREz' + + 'ETMREjkxMAEUAgQjIiQCNRAAITIEEgcQACMiABEQADMyAAEhFSEF16n+xNfZ/sWmAXIBStcBPKfD/vnw8v74AQvt9AEF/OICS/21Asfd/rSysAFN3gFSAX2r/rreAQcBLP7Y/vX+9/7JAS0BZqD//wC9AAABfAWBEgYALAAA//8AqAAABT8FgRIGAC4AAAABAAoAAQVO' + + 'BYIACAA+QCQIBwMFBgEABgMAAwoJdgOGAwIDBwMGABJvCgEwCgEvCgEACgFdXV1dAD8yPzNdERIBFzkRMxEzETMzMTAlIwEnBwEjATMFTsn+fFRU/nrJAj/GAQPg+fn8IAWBAP//AKgAAAYCBYESBgAwAAD//wCoAAAFIAWBEgYAMQAAAAMAWgAABNkFgQADAAcACwA7' + + 'QB4DCgkGAgUGBQwNCwpfWQsLBwAGB19ZBhIAA19ZAAMAPysAGD8rERIAORgvKxESATk5ETMSOTkyMTATIRUhARUhNQEVITV9BDn7xwRc+4ED5Py3BYGc+7ecnAKFmpoAAAD//wBh/+wF1wWWEgYAMgAAAAEAqAAABSAFgQAHAD9AFwAHAwQHBAkIAAkBAAmACZAJoAkE' + + 'CwMJuP/AQAwOEUgFAl9ZBQMEABIAPzI/KwErX15dcRESOTkRMxEzMTAhESERIxEhEQRh/Qa/BHgE4PsgBYH6f///AKgAAATqBYESBgAzAAAAAQBsAAAEoQWBAAwARUAjBwMDCggCAgYBCwELDQ4DBwQHX1kJAggDAAQDAQoACl9ZABIAPysRADMYPxIXOSsRADMREgE5' + + 'ORESOTkRMzIyETMxMDM1CQE1IRUhARUBIRVsAhr99wPn/PAByv4WA22iAkMB+6Gc/kN8/fCc//8ALgAABLQFgRIGADcAAP//AC0AAAUpBYESBgA8AAAAAwB1//UF7gWLABcAHwAoAH5ALCANHBQGBiQRBxgAAAcNAykqtCrkKgKgKgEkKkQqZCqUKgQQKgECACoBDwMq' + + 'uP/AQBwKDUgcIwkjYFkFCRsmECZgWRQQCRAJEAYSAwYSAD8/Ejk5Ly8RMysRADMRMysRADMBK19eXV9dXV1dERIXOREzETMzMxEzMxEzMTABFA4BKwEVIzUjIi4BNTQAITM1MxUzIAAHECEjETMyNiUUFjsBESMiBgXuf+6gU7lToe5+ARcBAUi5RwECARfA/pAwOK66' + + '/Ae6rjg0trYC4JntguPjg+2Y7gEHtrb++PEBb/0WwLu7wALqtAD//wAuAAAFKwWBEgYAOwAAAAEAkQAABh4FgQAdAHxAORQXEB0dDQAJBgYAFwMfHgQfRB+EH5QfBKQftB/EH+Qf9B8FYB8BRB9UHwIgHzAfAhQfAQAfAQ0CH7j/wEAVCQxIHAIMAmBZEO8MAQwMFQ4H' + + 'AwASAD8/MzM5L10zKxEAMwErX15dXV1dXV1xERIXOREzETMzETMRMzEwIREjIi4BNREzERQWOwERMxEzMjY1ETMRFA4BKwERAvtTofSCv8esOLk4sMO/g/OhUwGrg+2XAc/+LazKA0n8t8evAdP+MZXuhP5VAAAAAAEAVwAABaMFlgAjAFNAKh4ZBgsZCxUPFRohDwoD' + + 'IQMkJQ8lAQ4DHhgMCAYbGhtfWQsaEgASX1kABAA/KwAYPzMrEQAzMzMzMwFfXl0REjk5ETMzETMzERI5OREzETMxMAEgABEUAgc/ATMVITU2EjU0JiMiBhUUEhcVITUzHwEmAjUQAAL9AS8BW9fRUX/0/bOzu+7Y2u66tP2z9H9R0NgBWwWW/rH+2sn+rHMFBpzgXwEd' + + 'uOj+/ui3/uNg4JwGBXEBVcoBJgFPAAAA//8ABwAAAjQGshImACwAABEGCSLaAAAaQA8CAQQEBSYCAQgBCAYAAiUrETU1ACsRNTUAAAADAC0AAAUpBrIACAAMABABtUD/CQwQDQwGDQwEERIKDg0OkVkJDQYAAwgDGANIAwMMAwEIBAMBEnYSAWISAVQSAUYSATYSASQS' + + 'ARYSAQQSAfISAQHgEgHQEgHEEgGwEgGgEgGUEgFwEgFkEgFAEgE0EgEkEgEUEgEAEgFp9BIB5BIB0BIBxBIBtBIBpBIBkBIBgBIBdBIBYBIBUBIBRBIBIBIBFBIBBBIB9BIB4BIB1BIBxBIBsBIBpBIBlBIBdBIBZBIBVBIBQBIBMBIBJBIBABIB9BIBxBIBkBIBhBIB' + + 'dBIBVBIBRBIBJBIBFBIBBBIBOeASAdQSAaQSAYQSAXASAWQSAVQSATQSASQSAQQSAfQSQDgB5BIBwBIBtBIBkBIBhBIBVBIBNBIBFBIBBBIB5BIB1BIBuxIBpBIBcBIBAmASATASAS8SAQ8SAV1dXV1fXV1dXV1xcXFxcXFxcXFxcnJycnJycnJycl5dXV1dXV1dXV1d' + + 'cXFxcXFxcXFxcXFxcXFycnJycnJycnJycnJycnJeXV1dXV1dXV1dXV1dXV9dcXFxcXFxcXEAPz8zEjleXREzM84yKxEAMxESARc5ETMRMzEwAREjEwEzCQEzJTUzFSE1MxUDCb4C/eDNAbIBsM39+aP906UCSP24AkgDOf1hAp95uLi4uAD//wBW/+wEZQYHEiYDYwAA' + + 'EQcDOQEhAAAAFEAMAicRJgInGicqBhAlKxE1ACs1AAD//wBG/+wDagYHEiYDZwAAEQcDOQDKAAAAFEAMAScRJgEnSScqCgQlKxE1ACs1AAD//wBq/lgD7gYHEiYDaQAAEQcDOQE5AAAAFEAMARoRJgEaZBodDRglKxE1ACs1AAD//wCJAAABsgYHEiYDawAAEQYDOdEA' + + 'ABpAEQEKESYBCgAKEAoCHQoNAwklK10RNQArNQAA//8Ahf/sA/4GQRImA3cAABEHAzoA3gAAACFACwMCARYWESYDAgEcuP/xtBwiBgAlKxE1NTUAKxE1NTUAAAIAVv/sBGUETgAaACYAVUAtDxAQExMMACEhKBsGFxYGFicoACgBCgMAIRMMBBAWFRAPCSRQWQkQAx5Q' + + 'WQMWAD8rABg/KwAYPz8SFzkBX15dERI5OREzETMRMxEzMzMRMxEzMTAlDgEjIgIREBIzMhYXMzY3MwYCBxYSFyMuAScBFBYzMjY3LgEjIgYDSz+vec3B2dF+sy0CFzK8MlQIBTsvtxgjBf3EcoR4pRodmHeIee2IeQEUARgBHAEahnl3dGr+zWKg/sxnPY8hATHeyefE' + + '09TJAAAAAAIAjv5XBEkFzAAVACkAWUAtEx8RHwocHAAjEREAFgkJCgAKKyoTIB8gH1BZICAOAw4mUFkOAAkbAxlQWQMWAD8rABg/PysREgA5GC8rERIAORESATk5ETMRMxEzETMRMxESORESOTEwARQGIyInIxYVESMRNDYzMhYVFAceAQEeATMyNjU0JiM1PgE1NCYj' + + 'IgYVBEnt3LeHBga05OLF0d+Uqvz5QKVRjZito39xeW6TgQGVxuNeclj+1wWs7dy3pv1XHcz+mysxmoeRnI4bi3picJunAAAAAAEAB/5YA/kEOgASAE1AHQoLEgwHDxABAAAQBwsEFBNAFAEAFDAUYBSQFAQUuP/AQA0VGkgMBxISDxsKCgAPAD8yLz85ETMzAStdcRES' + + 'FzkRMxEzETMzETMxMBMzEx4DFzY3EzMBBgIHIzY3B8D1BxUUEQQWNO+//noiOg2/GUAEOv1dFj9DPxZbkAKl+/ta/vF0wPMAAAAAAgBW/+wEHQXMAAwAIAA/QCAHDh0EHB0DGQAgExkTISIdDR4NUFkEHBYeABYKUFkWFgA/KwAYPxI5OSsRADMREgE5OREzMxIXOREz' + + 'MjEwATQuAScOARUUFjMyNgEnAR4CFRQAIyIANTQSNwE1IRUDYDVTVLO+nYuQlf7/mgE8eWk6/v7g4v796uf+wQLdAddXmYNXQO6cqb20BCMI/rx8n69n4/70AQbnwgEXUAFTd4QAAAAAAQBG/+wDagROACYAZEA3JBwRIA0RAwoWBAoEJygPKE8oAgoAKAEhAw0fIB8g' + + 'UFkPHwELAx8fBxQUGVBZFxQQBwBQWQMHFgA/MysAGD8zKxESADkYL19eXSsREgA5AV9eXV5dERI5OREzEhc5ETMyMTAlMjY3Fw4BIyImNTQ2NzUuATU0NjMyFwcmIyIGFRQWMxUiDgEVFBYByFenO2lQ2oS1wZVzan3Lpft9gFybW2CcypmYUWtyWUhkYWKmlW6UCwIM' + + 'iGOCn7lYi1VKW1WHJ1ZLV2EAAAAAAQBW/p8DYAXMACQAW0AVHCIiEAkfABoJGiYlIh8gH1BZBBQAuP/wQB8TFkiHAJcAAtoaAakauRrJGgOIGpgaAhQaAAMMIAAMAC8/Ehc5XV1dXSsRMysRADMREgE5OREzMxEzMxEzMTABFB4BFx4DFRQGByc+ATU0LgEnLgQ1EAE1' + + 'ByE1IRUIAQEVMF2FNm9aOiQvfhcgKlOAc1tPNx8CPX/+pwKC/t7++gF7Q1M1Iw8iOVhELG1POB9SHCQwJB4bJjVLZUIBhgJhBASDf/65/iMAAAABAGr+WAPuBE4AGQBNQBYAGREJCQoZChsagBsBjxsBABsBEAMbuP/AQBITF0gZGxEVCRUFUFkVEA0PCRUAPz8/KxES' + + 'ADkYPwErX15dXXEREjk5ETMRMxEzMTABETQuASMiBhURIxE0JzMeARUzPgEzMhYVEQM5KlxZgpa0JKoRFQM+o3mypf5YBFZrdjSynv2NA1N7bCdpKXBdscz7hwAAAwBq/+wECQXLAAoAEQAYAFVAEBUPDwYOFhYABgAZGmAaARq4/8BAHB4jSA8aARYDFQ9QWRUVAwgI' + + 'ElBZCAADC1BZAxYAPysAGD8rERIAORgvKwFfXl0rXRESOTkRMxEzETMRMzEwARACIyICERAhMhIBMhITIRoBEyICAyEKAQQJ8OTg6wHR79/+Ko+EBf3dBYGQjoIGAiMFfQLd/oP+jAF9AXQC7v6P/BcBEQEf/uz+5ATZ/vX+5QEbAQsAAAAAAQCJAAABjQQ6AAkAvECD' + + 'CQYGAwMKCwQPABXfCwGQCwFPCwE/CwEACwFq7wsB3wsBnwsBcAsBYAsBDwsB/wsB7wsB0AsBgAsBPwsBYAsBHwsBDwsBN/8LAc8LAbALAaALAZALAT8LAS8LAR8LAdALAcALAbALAW8LAR8LAQ8LAeALAaALAZALAT8LAR8LAQALAQdeXV1dXV1dcXFxcXFxcnJycnJy' + + 'cnJeXV1dcXFxcXFycnJycnJeXV1dXV0APz8REgE5ETMRMzEwMy4BNREzERQWF8ceILQrJSCHRQNO/KlBeigAAQCKAAAEAwQ6AAsAQUAlAA0HAwMECAkJCgQDDAsNgA3ADeANAz8NAQIBBwoECAgFDwQAFQA/Mj8zERc5AV1dETMSFzkRMxEzETMRMzEwIQEHESMRMxEB' + + 'MwkBAzD+koS0tAHb0/5JAc4B7m3+fwQ6/fMCDf4v/ZcAAQAOAAAD7gXMABYAREAnDw4SDQAVFhYACA4EGBcAGDAYYBigGLAYBQkDEgAKFg4VCgVQWQoAAD8rABg/MxI5OQFfXl0REhc5ETMRMzMRMzEwAS4DIyIHJzYzMhYXASMDJicOAQEjAc9EKys2Jx0UI0M+a4hL' + + 'Aau+zykYDyv+47sDxbxkOxwKghiSxfuLAkFwZi5r/YIAAAABAIr+dwQGBDoAHQBMQBQDGRkaEg4ODxoPHx4AHyAfAg8DH7j/wEASFBdIAwoQHRUZEA8OBxVQWQcWAD8rABgvPzM/Ejk5AStfXl0REjk5ETMRMxEzETMxMCEuAScjDgEjIiYnIxYVESMRMxEUFjMyNjUR' + + 'MxEUFwNeAgcBBDyFZVJ4IAQEtrZ+gnyPtQYMiyd2XEA6K0/+iwXD/XyhnLaiAmn8r78qAAABAAAAAAOyBDoADQEcQNgJAAQDBwYFBQcAAw8Omw8BhA8BYA8BRA9UDwIgDwEEDxQPAuAPAcQP1A8CoA8BhA+UDwJgDwEEDxQPRA9UDwRnBA8UD0QPVA+ED5QPxA/UDwjb' + + 'DwHEDwGbDwGEDwFbDwFEDwEbDwEEDwHbDwHEDwELDxsPSw9bD4sPmw8GN0sPWw+LD5sPyw/bDwY/DwEgDwEEDxQPAuAPAcQP1A8CoA8BhA+UDwJgDwFED1QPAiAPAQQPFA8CxA/UDwKgDwGED5QPAmAPAQJQDwEvDwEADxAPAgcLBQ8HBBUAPzM/MwFeXV1dX11dXV1x' + + 'cXFxcXFxcXJycnJeXV1dcXFxcXFxcXFyXl1dXV1dXXFxcXFxcRESFzkRMxEzMxEzMTABFAIHIwEzAQARNCczFgOyz7Oq/nq9ATcBCjGxNANOrv472wQ6/GABWwFQh25hAAEAVv6fA2oFzAA0AHxAHhsrJBMHDQcDAwAYCxAQJAAkNTYDFxgXGFBZEwcOG7j/8EAlExZI' + + 'dxsBABATFkh4AAEkABsDJwAXAQsDFxcOJxALDQ4NUFkOAAA/KxEAMzMYLxI5L19eXRIXOV0rXSsSOTkrERIAORESATk5ETMRMzMSFzkRMxEzMjEwEzQ2NzUuATU0Njc1ByM1IRUOARUUHgEXFQ4BFRQeARceAxUUBgcnPgE1NC4BJy4EVvHclq6Qgf5KAnrPwk2Piu31' + + 'MF2FNnJePSQvfhcgLViCc1tPNx8BYrP0IQILknFnjRsICIN9GIBrRVo0DIMfvZNDUzUjDyI5WEQsbU84H1IcJDAkHhsmNUtl//8AVv/sBB0EThIGAFIAAAABAE//7AUrBDoAHwBKQCgJCgoRBQ4ZAx0WFgMOAyAhDyEvIQIJAxgFDhUOUFkVDwoVABxQWQAWAD8rABg/' + + 'PysRADMzAV9eXRESFzkRMxEzETMzMxEzMTAFIiY1ESEVFAIHIzYSPQEiBgc1PgEzIRUjERQWMzcVBgRmc2b+bjQuvDQ6QqAaGGs0BCXqKjRWTRRxhgLUSOX+K7XOAc/KUBYPiwwRg/1TTEUIgRQAAgCE/lcEOwRPABIAHgBSQA4TABkKCgsACyAf0CABILj/wEAeHiNI' + + 'fyABACAgIAIPAwYPAw8WUFkPEAobAxxQWQMWAD8rABg/PysREgA5AV9eXV0rXRESOTkRMxEzETMxMAEUAiMiJicjFhURIxE0EjMyFhIHNCYjIBkBHgEzMjYEO/PCbqBABAS08tWO5H7Bq5D++TeoWH+MAgTu/tZESzw//lcD7vUBFZH+86XR7f53/sNFTtQAAAEAVv6f' + + 'A5wETgAiAGdAESARCgQYChgkI18kAbAkAQMkuP/AQBceI0gHFBgQExZIDxgfGAIABBAEAhEGBLj/8EARExZIFAQYAw0hHR0AUFkdEA0ALz8rEQAzEhc5K19eXV0rETMBK19dXRESOTkRMxEzMzEwASIOARUUFh8BFhUUBgcnPgE1NCYnLgI1ND4CMzIWFwcmAkZShVqB' + + 'w27VJC9+FyBko7KmTU+BsW9llkF0XwPBevZ5gYM/I0alLG1POB9SHDBCLDBxsYdv+a1eNkR3ZAAAAgBW/+wE0QQ6ABAAGwAvQBcXBhELAAYAHB0NFAkUUFkJDwMZUFkDFgA/KwAYPysRADMREgE5OREzMxEzMTABFAAjIgAREAApARUjJxUeAQcQJyMiBhUQITI2BDD+' + + '++Xw/wABLAEWAjmllFFHvXxZuNIBKpeeAevx/vIBGQEHAQkBJYMGBHneegD/0ODJ/mPBAAAAAAEAHf/sAxgEOgAWAExAGBAJAwsLFRUXGD8YAcAYAY8YAQAYAQoDGLj/wEARDhFIEg5QWRIWChYHFlBZBw8APysRADMYPysBK19eXV1dcRESOREzETMzMzEwASIGBzU+' + + 'ATMhFSERFBYzNxUGIyImNREBGUKgGhhrNAJE/tAqNFZNQnNmA7cWD4sMEYP9U0xFCIEUcYYC1AAAAQCF/+wD/gQ6ABUAQ0ASDwAJBgAGFxbgFwHvFwFgFwEXuP/AQBEUF0gPFwEKAxIHDwMMUFkDFgA/KwAYPzMBX15dK11dcRESOTkRMxEzMTABEAIjIiY1ETMRFBYz' + + 'MjY1NAInMxYSA/7q59/JtXWGk31GLLw1OgI7/tv+1tTjApf9Y5KUz/GAAS5Vdv7sAAAAAgBV/lcE2gRSABkAIgBWQC4NEBAJIAQEEwUaAAAFCQMjJAAkAR0DDA1QWQwMFxcdUFkXECATBhNQWQMGFgQbAD8/MysRADMYPysRADMYLysBX15dERIXOREzETMzETMRMxEz' + + 'MTABEAIHESMRJgIRNBI3Fw4BFRQWFxE0NjMyEgc0JiMiGQE+AQTa/feq8vXfxRV8gJOXmp6nv71XUJCilQI1/vD+1w7+aQGXCwEeAQrnASogiBvauNXJCAJEwdT+3PXB0/7z/bkH2gAAAQAV/lgEGwRQABUAcEAZERISFRMQAAMEFAoBAhQCFxYkFwELFwEJELj/0EAo' + + 'DhFIFhABBRABDBsAAQ0AARACACAMD0gAEwMQBAERDwwHUFkMEBUBGwA/Mz8rABg/Ehc5K19eXV1eXV0rAV5dXRESOTkRMzMSFzkyMhEzMTAlASMBAy4BIyIHJzYzMhYXEwEzCQEjAh7+s7wBuKpJQyYbFyI1QVZrUI4BCLv+kAGWvu/9aQM5AVeRSgqDFGSm/tkCG/1H' + + '/NcAAAABAIf+VwUsBTwAFwBgQDoSDwAKChULAwYGCw8DGBkwGWAZkBkDHxkB0BkBrxkBABkwGUAZcBkEDgMWFgQQDwAVDBVQWQkMFgobAD8/MysRADMYPzMzLwFfXl1dXXFxERIXOREzETMzETMRMzEwJT4BNREzERQGBREjESQmNREzERQWFxEzAy63kbbx/vOq/vXy' + + 'tZC4qncCja4Chv188dcC/msBlQLW8gKE/XqqkQIExQAAAAABAFP/7AXrBE8AKgB6QBwfCSIGIhsUAAAoBg4OKBsDKywALAEwLAHwLAEsuP/AQCgeI0ivLN8sAgAsICxALAMJAxUpKRgKAyUYJVBZERgWHwkKCVBZHgoQAD8zKxEAMxg/MysRADMREjkYLzkBX15dXStd' + + 'cXIREhc5ETMRMxI5ETMREjk5MTABFBYzMjY1NCYnNx4CFRACIyImJyMOASMiAhE0EjcXDgEVFBYzMjY9ATMDc3JmcnGEeheCvWXPvn6dIgQinX6+z+LCF3eHb3JmdqYBwZ2tus+57xyLFaH9l/8A/ueBioqBARkBAOoBQCCLGuu/zrutnfwAAP///80AAAH6BXsSJgNr' + + 'AAARBgBqoAAAHUAJAgEKChEmAgEOuP/ZtA4MAwklKxE1NQArETU1AAAA//8Ahf/sA/4FexImA3cAABEHAGoA8gAAAB1ACQIBFhYRJgIBGrj/9LQaGAYAJSsRNTUAKxE1NQD//wBW/+wEHQYHEiYAUgAAEQcDOQEpAAAAFEAMAhcRJgIXRhcaBgAlKxE1ACs1AAD//wCF' + + '/+wD/gYHEiYDdwAAEQcDOQD8AAAAFEAMARYRJgEWERYZBgAlKxE1ACs1AAD//wBT/+wF6wYHEiYDewAAEQcDOQH/AAAAFEAMASsRJgErNysuGw4lKxE1ACs1AAAAAwBz/+wEIwXMABsAJwAxAF5ANBwCAgAuECgXFyIJEAkyMwYlUFkwGlBZAyAGAQ8wHzACCQMGMAYw' + + 'DBMTK1BZEwAMH1FZDBYAPysAGD8rERIAOTkYLy9fXl1dOSsrERIBOTkRMzMRMxI5OTIRMzEwAQYVFz4BMzIWFRQGIyImAhEQEjMyHgEVFAYjIgMUFjMyNjU0JiMiBgE0JiMiBgcWMzIBOyYFKr1j1unr1qbdbPb6XphZsY+jeYuBgYuKgIKMAbVcTk6BKXOPoAQqg5V0' + + 'S13fzM3ilgE8ASQBewFvPXRRcoX9xpGam5CSlpkCpjY9SEhPAAIACf/sBFAFzAArADMAXUAyLCoqIAEVCzEkGQcQByQLAQU1NBINUFkBICwgUFkqLBkSLBIsBScnL1FZJwAFHFBZBRYAPysAGD8rERIAOTkYLy85ETMrEQAzKxESARc5ETMRMxEzETMzETMxMAEjFAIG' + + 'IyARNDc2NTQjIgcnNjMyFhUUBwYVFBYzMjYSNSYkJjU0NjMyEhMzBzQmIyIVFBYEUGGF6Zb+0RgYOjFgGGpPXWgYGVJGZ55ex/7hisyqxNAEYf+Eds7tAvne/pHAAQwxXV0jPDGNNmNYMl1dMkJJnQE7sQNhrHaZtP7Y/uAByf7Je4MAAAAAAQA5AAAGCQWNABQALkAX' + + 'EA8MDQMNDwMVFgoRDQ8DDRIAB19ZAAQAPysAGD8/Ejk5ERIBFzkRMxEzMTABMhYXBy4BIyIGBwERIxEBMwkBPgEFDTyFO1QaXiUkMSD+cr794tYBrAFUN3gFjS0ziBgtHTD9q/24AkgDOf1hAg5WR///ABwAAAeFBcwQJwODAXwAABEHAzL/IwAAAAeyARgDAD81AP//' + + 'ADkAAAYJBrISJgODAAARBwkiAXkAAAAdQAkCARwcBSYCARq4/5y0GhgPAyUrETU1ACsRNTUAAAMAUP5XBCsFzAAPABYAHQBSQC0QDBQJDw8aBgAXBAQADAMfHg4UUFkOFQkTUFkJDwcABhtQWQYPARpQWQEVABsAPz8rABg/KwAYPz8rABg/KxESARc5ETMRMzMzETMz' + + 'ETMxMAERJgI1ECURMxEWEhEQBRETNCYnET4BJRQWFxEOAQHmyc0BlqTUzf5f6nB6enD9k2t0dWr+VwGmGQET9QHqNAGQ/nEU/vj+/f4NLv5aA8e9xhX8zhjLt6/KHwMrHckAAAACAFL/7AXtBDoAFwAtAFtALwMbGwIGKwwoFiIiFxMTKAYDLy4NEAAQJVBZEBYpKQMY' + + 'CRhQWQkWAx8XABdQWQAPAD8rEQAzMxg/KxESADkYLz8rERIAORESARc5ETMzETMRMzMRMzMRMzEwEyEVIx4BFRACIyImJyMOASMiAhE0NjcjATI2NTQmJyEOARUUFjMyNjURMxEUFlIFm2wwOc++fp0iBCKdfr7PNjNpA/p0dD4w/K8xPHR0ZnamdgQ6i13oZf8A/ueB' + + 'ioqBARkBAGreYvzIwMl28ElL8XPKv62dAWD+oJ2tAAAAAQBE/lcEnwQ+AC0ATkArAgkOAQQqExcmHBwXIQQJBS4vJxlQWScWHiNTWR4bEgACEw8LBlNZCw8CFQA/PysAGD8SOTk/KwAYPysREgEXOREzETMzETMzETMxMAkBIRIRNCMiByc2MzIWFRQCBxcBIQYCFRQz' + + 'MjcRECMiJzUWMzI2PQEuATU0EjcDdP3Z/vfudx04IkJLfHo2JAUCIAENb3l3KjLwQEMrNTc4Y2E1IgMf/OEBUAFp5w6ZE5i1df7uSQIDG5b+jL/nDf7o/tgMoQ1EUWQOlaaMARZCAAIAYf5XBdcFlgAPABsAMkAaEAsPABYEBAALAx0cBxNfWQcEARlfWQ4BEwAALz8z' + + 'KwAYPysREgEXOREzETMRMzEwAREkABEQACEyBBIVEAAFEQEQACMiABEQADMyAAK//uT+vgFyAUrXATyn/r7+6QGW/vnw8v74AQvt9AEF/lcBmhoBgAE8AVIBfav+ut7+yv5/Hv5lBHABBwEs/tj+9f73/skBLQAAAAIAVv5XBB0ETgANABkAM0AbFAQNAA4JCQAEAxob' + + 'BhFQWQYQARdRWQwBFgAbAD8/MysAGD8rERIBFzkRMxEzETMxMAERJgIRECEyEhEQAgcREzQmIyIGFRQWMzI2Ady6zAHl+OrMwdCFnZ6Ni5Wii/5XAZsZARIBAQIw/u/+4f8A/uwY/mUDx+DLz9zW19AAAAEAcgAABVAFlgAZADpAHg0MGQAUBQUADAMbGhcBX1kXDRcN' + + 'AAkJEF9ZCQQAEgA/PysREgA5ORgvLysREgEXOREzETMRMzEwIREmJCY1NBIkMzIEFwcuASMiDgEVFAQzNxECqKr+/4ulASW+2wEjWLAz35ON0G8BC/A9AR0MlfuanQENmam3Q36Jb8F2ydcD/kkAAAABAFr+VwPOBE4ALAA7QB0OACAmFRUIIAguLScAFSMLIypQWSMb' + + 'CxJQWQ8LEAA/MysAGD8rERIAOTkyERIBOTkRMxEzETMzMTAFNC4BJy4CNRASMzIWFwcuASMiBhUUHgMXHgMVFAYjIiYnNR4BMzI2AvAoUGepuFbt5qfdHbkOdmmRhBgsRFx/OW1XNdPYXaMybodEdnZ3KTYlFB6A1JcBDQEXrJcOWmq93ktrTDMlHQ0ePGNSmqIdF6gr' + + 'HUoAAAABAKgAAASRBYEACwA6QB0BBwcICwQDCAMMDQEGX1kEAQQBCAkJAF9ZCQMIEgA/PysREgA5ORgvLysREgE5OREzMxEzETMxMAERIREjNSERIxEhFQFnAry1/fm/A+kE5f5F/pHR/XQFgZwAAAABAIj+WALrBDoACwA5QBwFAAQCCAgJBAkNDAIHUFkFAgUCCQoK' + + 'AVBZCg8JAC8/KxESADk5GC8vKxESATk5ETMRMxEzMzEwASERIREjNSMRIxEhAuv+TAGCnuSvAmMDr/7f/rK5/F8F4gAAAAABAAH/7QT2Bc0AKgBKQCUmFhkOAAMJAxkgBCssESopFSoVKhULHyIiHV9ZIggLCwZfWQsTAD8rEQAzGC8rEQAzEjk5GC8vETMRMxESARc5' + + 'ETMzETMzMTABBgIVFBYzMjcXBiMiJjU0EjcGBwYHJzYSNTQuASMiByc2MzIeARUUAgcBBGIlPz87HzskQFSChx8VhfDkkB0gQBQtJyA6JEBUWmsyHhIC5wROlP49lGRtD6AUorF1ARNlXpyVZgt9AeqtVU8tD6AUSYqAd/7KVwHoAAAAAAEAMgAABAoFgQAJADJAGAcG' + + 'BggEAgEBAwAEAAoLCARQWQgIAgYCFQA/LxI5LysREgE5OREzMxEzETMzETMxMAkBIxMhNQEzAyEECv7swuj9FgEUwugC6gL8/QQCjDECxP2sAAABAC7+WQW2BcwAHgBFQCIRDAcHABgQBAsABSAfCgkIDA8OEQwRAxsXFxsbFGBZGwQDAC8zLysRADMYLxESOTkRMzMR' + + 'MzMzERIBFzkRMxEzMzEwARAABSckABE1JwEnASYnAScBLgEjIgQHJzYkMzIEEgW2/nn+Ty4BUAFjAf22QgJ9GDj9hUICcVr0kov+/lpigQEqw94BaNQCCP5//jpolz4BkwFCEhH+44QBNop1/suEATB7foZ4dJeF/P45AAABAGP+VgRpBdQAFAAxQBgPCgUAAAkOEQQV' + + 'Fg0MDwgHCg8KAxIAAxsAPz8SOTkRMzMRMzMREgEXOREzMzMxMCUUAwcSNTQnBSclJicFJyUCJTcEAARpLsI3LP6cRgF+LUf+hEcBcNL+pKwBnAG+atz+/jYBG+rOkq2Pu3dxuZC1AQirVcT9MwAAAQCm/lgGfQWBACsAUUAqJCEcASoHFBQKCioPIQQsLRUdHysIIgMf' + + 'J2BZHxMPEGBZDxlAGQRgWRkTAD8rABoYEMwrABg/KwAYPzMzEjk5ERIBFzkRMxEzETMzETMxMAERFBYzMjY1ETMRFA4BIyE1ITI2PQEjDgEjIiYnIwYjIBkBMxEUFjMyNjURA/Rdc3SIvWDTr/wTA+ahmQQqlHp7oSUDXu3+o71bdHeOBYH8DZl8sp4DuPrdxNtnk6O0' + + 'WVhXVmO5AX0EGPwNl36yngO4AAEAhP5YBh0EOgAtAE9AKSYjHAEsBxUVCgosIw8ELi8dFiAtCCQPDxBQWQ8gIClQWSAWGQRQWRkWAD8rABg/KwAYEMQrABg/MzMSOTkREgEXOREzETMRMzMRMzEwAREUFjMyNjURMxEUDgEjITUhMjY/ASMOASMiJicjDgEjIiY1ETMR' + + 'FBYzMjY1EQOrVnBzhrNh0678SQPAmpYEBAQ4nnB7jxwDOJ9xpJWyVnB2gwQ6/VKdeLCgAnP8MsbibIufqo1tYGJrbWCyywLR/VKdeK+hAnMAAQBkAAAEvwWWABsAN0AcCw8PGw4FFQ4VHRwYAl9ZGAQIEl9ZCAgMDxIMAwA/PxI5LysAGD8rERIBOTkRMxI5MhEzMTAB' + + 'JiMiBhUUFjMyNjcRMxEjEQYjIgA1NDYzMhYXAq1IVXd3raJe6Um+vt229v7s2dFUeDMEyDSooKS0NiQCzPp+AhVTAQTo7vonJgAAAQCOAAAD7gXYABwARUAmEgcZAAAcHA0HAx0eFgRQWQEaDxYfFgIJAxYWABoACg9TWQoBABUAPz8rABg/EjkvX15dEjkrERIBFzkR' + + 'MxEzETMxMCERDgEjIiY1ERAhMhcVJiMiFREUHgEzMjY1ETMRAzkzpXywpwEZM1U6PXUqYFV/mbQCKVtQr84BtQEoEKcVlP58cm80sJUCfvo0AAAAAAEApP5YBP8FggAfADhAHBIODh8PBxgPGCAhFQpfWRIVFQ8QAx8AX1kfDxIAP8YrABg/EjkvOSsREgE5OREzETMz' + + 'ETMxMBMhMj4DNTQmIyIGBxEjETMRNzYzIAARFA4DIyGkAS64q4FaMbyzVcRXvr5GkaABAgEkN2qn8sj+p/7tIk2H0JLb6jAq/VAFgv3LHTr+wf7mm/GweT4AAAIACv/sA+UElgAnADIAXUAzLBUHAiAxBCQeBQkkCTM0FRUgMQcCBAAiLyJQWRgSUFkvGC8YAA0NHFBZ' + + 'DRYAKFBZBAAQAD8yKwAYPysREgA5ORgvLysrERIAFzkYPxESATk5ETMzEhc5MjIxMAEyFzY3FwYHFhUUDgEjIi4CIyIVIzQ2MzIXFjMgETQnBiMgNTQ+ARciDgEVFBYzMjcmAfmpcDQjfEglY3LJhUNfSDcbPZhtVE9XVk8BCSK/xv71Yq+EU3E9QDyhlUQETk9OSVx0' + + 'MpDotPuBHiMeS2l2MjIBnYJmxOVajUaGKkQpOTK6SAAAAAABAG7/7AUJBZYAMgBJQCUiABESCxgoLS0YEgAEMzQiCzAVKyswMCVfWTATEREVFQ5gWRUEAD8rEQAzGC8/KxEAMxgvERI5ORESARc5ETMRMxEzETMxMBM0PgM3PgM1NCYjIgYHJzYkITIEFRQOAgcOAxUU' + + 'FjMyNjU0JzcWFRQEISAkbitObIOuT49sP6ygpbQdvDABAgEB9wEONWOtqGCecj/Hu87UNaxD/r7+7f7r/s8BhU1zVD0tKBIkNlE/bnFlcCGtl8azTnpbSyUWJjhWRXqAiolZaDZ6dcXr1wAAAAEAbv/sBMcFlgAsAEVAIxAcFRYmBQUWABwELi0QJhkCFRUZGRJQWRkA' + + 'LCwCAilQWQIWAD8rEQAzGC8/KxEAMxgvERI5ORESARc5ETMRMxEzMTAlBiEgJDU0PgM3PgM1NCEiBgcnNiQzIAQVFA4CBw4DFRQWMzI2NwTC4P7g/uX+xytObIOuT49sP/6tn7QcvC8BBvkBAAEKNWOtqGCecj/avYXnhys/275Nc1Q9LSgSJDZRP99pbCGqmsO2Tnpb' + + 'SyUWJjhWRXmBHSgAAAIABwAABNYFlgAiACUAVkAwCyUfEAQjJCQNIw4YDg0DBCcmJQsQHwQNFxsbFF9ZGwQPDCQNJF9ZDRIAB19ZBAAEAD8yKwAYPysRADMzGD8rEQAzEhc5ERIBFzkRMxEzERIXOTEwATIWFwcnJiMiBgcDARUhNQEDLgEjIg8BJz4BMzIWHwE3PgEB' + + 'IQMDrEyeQGYiRkEpMRR8ATv8sgE2fBMyKUFFI2ZAnkxfdChDQiV0/j4B1u4FlmVsbjNmJi7+1v0fkZEC4QEqLiZmM25sZV1xwMBtYfsLAkgAAAACABYAAAStBEEAAgAjAE9ALQEQAg8GDw0AIRIQGggkJQASDSEEEBkdHRZQWR0PEQ4BEAFQWRAVAwpQWQcDDwA/MysA' + + 'GD8rEQAzMxg/KxEAMxIXORESARc5ETMRMzEwAQMzEzIWFwcnJiMiBwMTFSE1EwMuASMiDwEnPgEzMhYfATc2AmNt3cZMkDhoIUI8TCV5qf37p3oVOCM8QSJoOJBMYnkkODlKAZT+/QOwYFxvM2Je/tH+bYuLAZIBMzUmYjNvXGB2baur4wAAAAACAGH/7AV/BYEAFQAh' + + 'AEtAKBEcHAYMFhYABgAiIxMZYFkRABMQEwIJAxMTAwoKDV9ZCgMDH2BZAxMAPysAGD8rERIAORgvX15dOSsREgE5OREzETMRMxEzMTABEAAhIAAREBIkKQEVISIOAQc2ISAAAzQmIyIGFRQWMzI2BX/+pf7L/rr+uI4BLwEaAYv+fLPAehiiARUBPwFPvuPt8eLp6O3l' + + 'Aiz+7v7SAUcBPAEUAVqklTt/bIj+6/7z0cjE1djh2wAAAQBJ/+wEKgROACIAPUAfHRERBhcMAAYAIyQgGlBZICADCQkNUFkJEAMUUFkDFgA/KwAYPysREgA5GC8rERIBOTkRMzMRMxEzMTABFAQjIgIREAAlNjMVBQ4CFRQWMzI2NTQmIyIPATU2MzIWBCr+9Oru/QE3' + + 'AUGbff7awaZKnaCcnoanSDsvc2Xh1wF6uNYBJAEWAQoBDwoFlgcIUK6eydSMgHZvCwiGF7kAAAEAFAAAA6IFggAbAERAIgUAGQkJFgoOExMKAAMdHAIRCAwVDF9ZGRURFREVChcDChIAPz8SOTkvLxEzKxEAMxEzERIBFzkRMxEzMxEzETMxMAEUByc2NTQrAREjESMi' + + 'FRQXByY1ECEzNTMVMyADohOTDpo2vzaZDpMTATkuvzABOAN4QkEfOB2C/BUD64IdOB9BQgEQ+voAAQAo//EDHwXYABEAMEAYEAsLAgUKBREDExIMAQEHCgdQWRAKDwIWAD8/MysRADMYPxESARc5ETMzETMxMAEhESU1MxEjByMRIREFFSMRIQMf/t/+7WXGShgBKAET' + + 'ZQEhA678Q2QcAz2UASABnmQb/uEAAAABAET/7ASlBD4AJAA8QCEOAQQhExccFwQJAgUlJh4ZU1keFhIAAhMPCwZTWQsPAhUAPz8rABg/Ejk5PysREgEXOREzMxEzMzEwCQEhEhE0IyIHJzYzMhYVFAIHFwEhBgIVFDMyNxcGIyImNTQSNwN0/dn+9+53HTgiQkt8ejYk' + + 'BQIgAQ1veXcdOCJCS3x6NSIDH/zhAVABaecOmROYtXX+7kkCAxuW/oy/5w6ZE5i1jAEWQgACAGL+VwREBE4AHwAsAEBAISAVDScACAgALi0aEVBZGhoWGw0LBQsqUFkLFQUkUFkFEAA/KwAYPysREgA5GD85LysREgE5ORESOTkzMzEwEzQSPgEzMhIREAIjIiceAjMy' + + 'HgEXIy4CIyIuAwE0LgEjIgYVFBYzMjZiNnfBiP3v/fXkegZgtbSbiUIHnwYkT5SIu3tFHwMlP31wpJGQmqiPAWHxAQijUf7y/uj+7P7sl4afSCRWWRYWCT1sncQBkpS4Vc3U0tHK//8AV//sA8oEThIGAEYAAP///87+VwE9BcwSBgBNAAD//wBh/+wF1wWWEgYEmQAA' + + 'AAEAUAAAAzkEOgATAEdAJQkADRAQDwQAAAQVFA0QUFkPDQELAw0NAQcHClBZBw8BElBZARUAPysAGD8rERIAORgvX15dKxESATk5ERI5MhEzETMxMCkBIgIREAAzIRUhIgYVIRUhECkBAzn+6eXtAP/kAQb+8ouXAXf+iQEjAQ0BDwEEAQABJ4yum4T+qwAAAAEAUAAA' + + 'AzkEOgATAEVAJQYDAw8KAAAEDwMVFAUEUFkPBQELAwUFEwsTAFBZExULClBZCw8APysAGD8rERIAORgvX15dKxESARc5ETMRMxEzMTA3ISARITUhNCYjITUhMgAREAIjIVABDQEj/okBd5aM/vIBBuMBAOzm/umMAVWEnK2M/tn/AP79/vD//wCoAAAE6gWBEgYAoAAA' + + '//8Aiv5XBB0FzBIGAMAAAP//AGj/7AV5BZYSBgAmAAAAAQCoAAAGAgWBAAwAOUAcCAUFBgoAAAwMCQYDDQ4LAwkEAQcDAwYHAwAGEgA/Mz8SOS8SOTkzPxESARc5ETMRMxEzETMxMCERASMBESMRMwkBMxEFVv5Fhv49qvsBtgG09QTY/ZQCbPsoBYH9qwJV+n8AAAAB' + + 'AI7+VwTzBDoAFAA1QBsIBQUGDhEREAYQFRYUAgsDDhEVDg8HDwYbARUAPz8/Pz8SFzkREgE5OREzETMRMxEzMTAhIwEWFREjESETFhc2NxMhESMRPwEDE5n+vAauARjcNBAWLtwBDa0DBQO3nEf7gwXj/WuPj6F9ApX7xgLUcnMAAAACAAr+VwQ7BE8AGgAmAFFAKSAU' + + 'FA8KDg4SDxsAAAwPAycoBhcDFx5QWRcQEBMTDUAKCgMOAyRQWQMWAD8rABgvEjkvGs0zL80/KxESADkREgEXOREzETMzETMRMxEzMTABFAIjIiYnIxYdASEVIRUjNSM1MxE0EjMyFhIHNCYjIBkBHgEzMjYEO/PCbqBABAQBP/7BtHp68tWO5H7Bq5D++TeoWH+MAgTu' + + '/tZESzw/fYelpYcCwvUBFZH+86XR7f53/sNFTtQA//8AW//sBWYFlhIGAUgAAP//AGj/7AV5BZYQJgAmAAAQBwARAgACXf//AFv/7AVmBZYSJgFIAAAQBwARAaYCXf//AKgAAAT+BvASJgAoAAARBwkeAVYAAAAYtgEREQUmAQ64/8G0DhEBCyUrETUAKxE1AAD//wCo' + + 'AAAE/gayECYAKAAAEQcJIgF5AAAAREAqEBVAFQIgFVAVgBWwFeAVBQAVMBVgFZAVwBXwFQbFIBUBAgEMDAUmAgEQuP/qtBAOAAolKxE1NQArETU1AV1eXXFyAAAAAQAu/+wGTwWBACIAUkAsFAgfARwcIh0dDQgDJCMAHyAfX1kbGAQYX1kBBAQdIAMdEgoRX1k/DgEO' + + 'ChMAPzNdKwAYPz8SOS8zKxEAMysRADMREgEXOREzMxEzMxEzMTABET4BMzIWHQEQISImJzceATMyNj0BNCYjIgQHESMRITUhFQLQdftU4tn+oF6SRW88WS9UUIGQXP7vQ77+HASGBOX+oBkiu7zW/nk5Qns1J2Vv23d6IhD9DATlnJwAAAD//wCoAAEELwbwECYDRgAA' + + 'EQcJHwFxAAAAFEAMAQYFJgEGIQYJBAAlKxE1ACs1AAAAAQBo/+wFeQWWAB0Ag0BPBQ0DBgYUGxoaDA0UDR4fAB8BCwMDBl9ZXwOPAwIPAwELAwMQFw8bAQ0DGxsXFwBfWRcEAAwQDEAMUAyQDKAM4AzwDAgMAwwMEBAJX1kQEwA/KxEAMxgvX15dPysRADMYL19eXRES' + + 'OS9eXXErAV9eXRESOTkRMzMRMxEzETMSOTEwASIEByEVIRYAMzI2NxcGBCMiJAI1EAAhMgQXBy4BAxjV/v8VAo79chIBC9aT40ecYf7R0tX+yaMBbAFC4QEuR7Ux2QT6/eWa5f7wlJBNwLSxAUnhAVEBfrCtPHuCAAD//wBd/+wE+AWWEgYANgAA//8AvQAAAXwFgRIG' + + 'ACwAAP//AAcAAAI0BrISJgAsAAARBgki2gAAGkAPAgEEBAUmAgEIAQgGAAIlKxE1NQArETU1AAD//wAg/+wDaAWBEgYALQAAAAIAEv/wCAsFgQAbACQATEApHAAYISEEBhYOFgQABCYlGCBfWRgYBBYWBl9ZFgMLEF9ZCxMEIV9ZBBIAPysAGD8rABg/KxESADkYLysR' + + 'EgEXOREzETMRMxEzMTABFAQjIREhAwoBBiMiJzUWMzI+ARoBEyERITIEBzQmIyERITI2CAv+/uP9t/5gMTNfkII6HBMlNUM6OjoqAwIBfuwBBcCkpP6ZAW+knAGdu+IE4f6Q/nL+opUKmAdBlwEpAbMBQv2s0sB5gf4CiAAAAAIAqAAAB6sFgQASABsAUEAqCwcHCA8Y' + + 'GAwEEwAABAgDHB0PF19ZDw8LCwZfWQsLCA0JAwgSBBhfWQQSAD8rABg/PzMSOS8rEQAzGC8rERIBFzkRMxEzMxEzETMRMzEwARQEIyERIREjETMRIREzESEyBAc0JiMhESEyNger/v7j/d/9wr+/Aj6/AVbsAQXApKT+wQFHpJwBnbviAo39cwWB/awCVP2s0sB5gf4C' + + 'iAAAAQAuAAAGLwWBABQAZUA8ABQPCgcHDQgUCBYVoBawFsAWA6AW4BYC7xYBABZgFpAWoBYECgMGBBEEX1kPEREACw4KCwpfWQsDCAASAD8yPysRADMREjkYLzMrEQAzAV9eXV1xchESOTkRMzMRMzMRMzEwIRE0JiMiBxEjESE1IRUhESQzIBkBBXGAhaL6vv4cBLP9' + + '7wEKmgG7Aj96bTL9DATlnJz+oDv+k/2t//8AqAAABJ0G8BImA8sAABEHCR8BrAAAABRADAEUBSYBFCUUFwAMJSsRNQArNQAA//8AqAAABRgG8BImA8kAABEHCR4BVAAAABi2ARMTBSYBELj/srQQEwEIJSsRNQArETUAAP//ADf/7AUfBzoSJgPUAAARBwkbAV4BSgAW' + + 'QA0BFBQFJgEWBxYcCw8lKxE1ACsRNQABAKj+aAUYBYEACwBHQCgFAgsABgkJAAIDDA0QDQEgDYAN4A0DDw0BCQMHBwMDCgICBV9ZAhIAAC8/KxEAMxg/My8BX15dXXEREhc5ETMRMxEzMTABESERMxEhETMRIREChv4ivwL3uv4i/mgBmAWB+x8E4fp//mgAAAD//wAE' + + 'AAAFUgWBEgYAJAAAAAIAqAAABNYFgQAMABUAX0APCRISBA0HAAQAFhdgFwEXuP/AQCUeI0gPFwEWAwkRX1kACTAJoAkDEwMJCQQFBQhfWQUDBBJfWQQSAD8rABg/KxESADkYL19eXSsBX15dK10REjk5ETMzETMRMzEwARQEIyERIRUhESEyBAc0JiMhESEyNgTW/v7j' + + '/bcDnv0hAX7sAQXApKT+mQFvpJwBnbviBYGc/kjSwHmB/gKIAAD//wCoAAAE6gWBEgYAJQAA//8AqAABBC8FghAGA0YAAAACAA/+aAVFBYEADgAVAExAKgYHFQkRDQAPAwICDw0JBwUWFw8XLxcCCQMNEV9ZDQMIABUFFV9ZBRIHAgAvMz8rEQAzMxg/KwFfXl0REhc5' + + 'ETMRMxEzETMRMzEwJTMRIxEhESMRMzYSGwEhAxEhAwoBBwSWr7T8MrSQTm0lQwLUuv6JMSVaP6D9yAGY/mgCOGEBXwEjAf77HwRB/pD+7v6mZQAA//8AqAAABP4FgRIGACgAAAABABwAAAdHBYEAIwCQQFEeGxEXGBgdHAYDCRAQIxEiIiMKCQkEBQUjHAMlJC8lAQIP' + + 'JQEJACUwJUAloCUEDQMbBh4DBgMPIQAPAGBZEn8Prw8CLw8BDw8EFxAJAyMdBBIAPzMzPzMzEjkvXXEzKxEAMxI5OREzETMBX15dXl1fXRESFzkRMzMRMxEzETMRMxESOTkRMzMRMxI5OTEwASImJwEjASYnATMTHgIzETMRMj4BNxMzAQYHASMBDgEjESMDUiVvGf5V' + + '3gH9MIP+5cjNb2BYS79LWmJrzcj+5YMwAf3e/lUZbSe/AoUaDP1VAwcjvQGa/s+naygCa/2VKW+iATH+Zr0j/PkCqwwa/XsAAAEAQ//sBHAFlQAnAIFAQiIOHxgZGQQDEh8fCSUDJSgpIg4NDg1fWQ8OPw4CIAMODgAcGEANEEgYGBwcFV9ZHAQABl9ZIAQwBHAEgAQE' + + '0AQBBLj/wLYNEUgEBAATAD8yLytdcSsAGD8rEQAzGC8rERI5L19eXSsREgA5ERIBOTkRMzMRMxEzMxEzEjk5MTAFIiQnNxIhMjY1NCYrATUzMjY1NCYjIgYHJzYkMzIWFRQGBx4BFRQEAm3M/vhWpXcBB5mwwMpHR7WtkYd+rDOyRgEIyNT8kIiYqv7rFKG7Tf7wjoCF' + + 'dpR3e2t7dYI9rajHqX+mIBevhMPnAAAAAAEAqAAABRgFgQANADhAHA0CAgEGCQkIAQgODw8PLw8CDAEGBgEDCQkFABIAPzIyLz8zLxEzAV0REjk5ETMRMxEzETMxMDMRMxEUBwEzESMRNDcBqKwIAu7eqgb9GgWB/GRyoASu+n8DqHqE+1oAAP//AKgAAAUYBzoSJgPJ' + + 'AAARBwkbAZIBSgAWQA0BDg4FJgEQBhAWAAclKxE1ACsRNQABAKgAAASdBYEAEwBQQCkLDggCAhISEwcICA0MEwwUFQ8VAQsDDgILEQIRYFkvAgECAhMMEgcAAwA/Mj8zOS9dKxEAMxI5AV9eXRESOTkRMzMRMxEzETMREjk5MTATMxEyPgE3EzMBBgcBIwEOASMRI6i/' + + 'S1pia83I/uWDMAH93v5VGW0nvwWB/ZUpb6IBMf5mvSP8+QKrDBr9ewABABL/8ASZBYEAFAA3QB0TFAERCBEUAxYVABYBEQMUEhEBX1kRAwYLX1kGEwA/KwAYPysAGD8BX15dERIXOREzETMxMAEhAwoBBiMiJzUWMzI+ARoBEyERIwPf/l4xM1+QgjocEyU1Qzo6OioC' + + '/7oE4f6Q/nL+opUKmAdBlwEpAbMBQvp/AAD//wCoAAAGAgWBEgYAMAAA//8AqAAABSAFgRIGACsAAP//AGH/7AXXBZYSBgAyAAD//wCmAAAFHgWBEQYDU/4AABxAFw8JASAJASAJUAlgCXAJgAmgCbAJwAkIXXFdAAD//wCoAAAE6gWBEgYAMwAA//8AaP/sBXkFlhIG' + + 'ACYAAP//AC4AAAS0BYESBgA3AAAAAQA3/+wFHwWBABMAPUAeDQoMCwsDCgMVFA4PDxUNCgsADg4LAwQGAAZfWQATAD8rEQAzGD8zLxESOTkRATMRMxESFzkRMxEzMTAFIiYnNxYzMj4BNwEzCQEzAQ4CAUw+hy5RXkgzRUZm/cPaAcEBgM39v1VqfRQmIJA7J1+6A7r8' + + '8AMQ+72gejgAAAADAHb/9QWfBYsAFwAfACgAakA8IA0cFAYGIxEHGAAABw0DKSoQKgFgKsAq0CoDPyoBACoBCgMdJAkkYFkFCRsmECZgWRQQCRAJEAYSAwYSAD8/Ejk5Ly8RMysRADMRMysRADMBX15dXV1xERIXOREzETMzMxEzMxEzMTABFA4BKwEVIzUjIi4BNTQA' + + 'ITM1MxUzIAAHECEjETMyNiUUFjsBESMiBgWff+6gKL8ooe5+ARcBAR2/HAECARfA/pAFDa66/Fe6rg0JtrYC4JntguPjg+2Y7gEHtrb++PEBb/0WwLu7wALqtAD//wAuAAAFKwWBEgYAOwAAAAEAqP5oBcUFgQALAEFAIQcECAsLAgIBBAEMDQANwA0CCwMJCQUDCwsH' + + 'BAdfWQQSAgAvPysRADMYLz8zLwFfXl0REjk5ETMRMxEzETMxMCURIxEhETMRIREzEQXFtPuXvwL1uqD9yAGYBYH7HwTh+x8AAAAAAQCgAAAErgWBABIAUEATEg8PEAgHEAcUEwAUAQAUAQsDFLj/wEAWDhFIAAMMA19ZDi8MAQwMBxESDw8HAwA/My8/EjkvXTMrEQAz' + + 'AStfXl1xERI5OREzETMRMzEwAQ4BIyImNREzERQWMzI3ETMRIwPwm7ZH3tq+goaV9b6+AfwiGLW4AlL9wntsMQL0+n8AAQCoAAAGrQWBAAsAVUAxCAsHBAMAAAQLAw0M6w0BxA0Buw0BhA0BcA0BAkANAQ8NAQkDCQUBAwcHAwADX1kAEgA/KxEAMxgvPzMzAV9eXV1f' + + 'XV1dXV0REhc5ETMRMxEzMTAzETMRIREzESERMxGovwHpugHpugWB+x8E4fsfBOH6fwAAAQCo/mgHLwWBAA8AV0AwDA8PAgIBCwgHBAQIAQMREDARQBFgEQMvEQEAEQENAw0JBQMPDwcLCwcEB19ZBBICAC8/KxEAMxgvETMvPzMzAV9eXV1dERIXOREzETMRMxEzETMx' + + 'MCURIxEhETMRIREzESERMxEHL7T6Lb8B07oB0rqg/cgBmAWB+x8E4fsfBOH7HwAAAAIALgAABesFgQAMABUARUAkCgASEggNBAgEFhcAFwELAwARX1kAAAgLCwpfWQsDCBJfWQgSAD8rABg/KxESADkYLysBX15dERI5OREzETMRMzMxMAEhMgQVFAQjIREhNSEBNCYj' + + 'IREhMjYCuAFC7AEF/v7j/fP+NQKKAnOkpP7VATOknAMt0r674gTlnPwaeYH+AogAAAAAAwCoAAAGbQWBAAoAEwAXAFJAERQXAAsHEBAXCxkEABkBEQMZuP/AQBgLDkgHD19ZBwcEBRUVBQMUFAQEEF9ZBBIAPysRADMYLz8zLxESOS8rAStfXl0REjk5MxEzETMRMzEw' + + 'ARQEIyERMxEhMgQHNCYjIREhMjYBETMRBNb+/uP9t78BfuwBBcCkpP6ZAW+knAGYvwGdu+IFgf2s0sB5gf4CiP7hBYH6fwAAAAIAqAAABNYFgQAKABIAQkAlCwAHEBAEAAQUE28UAQAUQBRQFAMNAwcPX1kHBwQFAwQQX1kEEgA/KwAYPxI5LysBX15dXRESOTkRMxEz' + + 'ETMxMAEUBCMhETMRITIEBzQmIyERISAE1v7+4/23vwF+7AEFwKSk/pkBbwFAAZ274gWB/azSxHmD/gQAAAAAAQBp/+wFeQWWABwAeUBKERADBBoXFwoEEBAYCgMeHRoXX1lfGo8aAg8aAQsDGhoOBw4UX1kAERARQBFQEZARoBHgEfARCAwREQ4TDwMBDQMDAwcHAF9Z' + + 'BwQAPysRADMYL19eXT8zL15dKxESADkYL19eXXErERIBFzkRMxEzETMRMxEzMTABIgYHJzYkMyAAERQCBCMgAzceATMyADchNSEmJALJmNottUcBLuEBQgFsov7L1/5WuJxF5pHVAQsT/XICjhX+/wT6h3Y8rbD+gv6v3/62sgF0ToyZAQ/mmuX9AAAAAgCo/+wHswWW' + + 'ABMAHwBhQDgNCQkKGg4HFAAKBwADISAAIQERAxEXX1kRBA0IX1kPDQEIAA0wDaANAxMDDQ0KCwMKEgQdX1kEEwA/KwAYPz8SOS9fXl1eXSsAGD8rAV9eXRESFzkRMxEzMxEzETMxMAEUAgQjIAADIREjETMRIRIAISAAAxACIyICERASMzISB7Og/tTI/tn+pQ/+2b+/' + + 'ASobAVcBHgE2AVzD89zf8/fZ3/ICx93+s7EBZgE7/XMFgf2sASQBRf6B/rABBwEs/tj+9f73/skBKwAAAAIAYAAABSAFgQANABYAWUAwDAEBEg4EBA0AEgoKCQAJFxgBCxILX1kPEj8STxJvEgQLAxISAAcHFF9ZBwMKCgASAD8yLz8rERIAORgvX15dKxEAMxESATk5' + + 'ETMRMxEzMxEzEjkRMzEwMwEuATU0JDMhESMRIQETFBYzIREhIgZgAZChtwEC7wKXv/5J/pIcpZcBzf47nacCXxzWnb7V+n8CSf23A+x/jQIIgf//AFf/7ARzBE4SBgBEAAAAAgB4/+wEPwXeAAsAIgBXQBMcAA8gBgYVDxUkIwAksCQCEQMkuP/AQBweI0gMA1BZIAwM' + + 'EhwAG7Ab8BsDDQMbEglQWRIWAD8rABgvX15dMxI5LzkrAStfXl0REjk5ETMRMxEzMzEwATQmIyIGFRQWMzI2AzISERACIyICETQSPgIlFQQOAQc+AQOChJWflYuVoYzz3tL67vbpLmKb6wF+/l33ZAQrygH2yr/Cx8LDuwLX/vv++v73/v0BQgFOqgEBunxMNaE2YtbV' + + 'fYwAAwCOAAAD5wQ6AA8AGAAhAHhAFAYaAxoQEA4eAwMUCg4KIiMwIwEjuP/AQC8eI0gPIy8j3yMDCQMGGhgaGFFZbxp/Go8aAw8aAQsDGhoODw8ZUFkPDw4QUFkOFQA/KwAYPysREgA5GC9fXl1xKxESADkBX15dK3EREjk5ETMzETMRMxEzERI5MTABMhYVFAYHFR4B' + + 'FRQGIyEREzMyNjU0JisBGQEzMjY1NCYjAjTIyHJtgYHbwf5DtOyKcHeP4NiAbWZ5BDqMg118FQcRgmuTpQQ6/EtVXWVTAcL+wEhaUkwAAAAAAQCOAAACrwQ6AAUAHUAOAwQEAAYHBQJQWQUPAxUAPz8rERIBOTkRMzEwARUhESMRAq/+k7QEOoP8SQQ6AAAAAAIAFP5o' + + 'BIgEOgAFABMARkAkBRISBwcGARAEDQ0KCwsQBgMVFBABUFkQDxIEDAkMUFkJFQsGAC8zPysRADMzGD8rERIBFzkRMzMRMxEzETMRMxEzMTABIQoBByEBIxEhESMRMzYSEyERMwNC/s4lWkAB8QFGo/zSo3dLbi4ChJIDt/7w/m2R/eUBmP5oAht9AcwBbvxJAAD//wBX' + + '/+wEGAROEgYASAAAAAEABwAABVMEOgAjALxASQYDDwoJCQQFGx4YEhIiIg8jFxgYHRwcIwUDJCXPJd8lAnAlAT8lbyUCICUBDyUB8CUBnyUBUCVgJQIfJS8lAgAlAQoDGwYeAwa4//BAKQsRSAYDDyEADwBQWRIPDx8PTw9fDwQPDx8PTw8DBw8PBBcQCQ8jHQQVAD8z' + + 'Mz8zMxI5L15dcTMrEQAzEjk5KxEzETMBX15dXV1dXXFxcXFxERIXOREzMxEzETMzETMREjk5ETMzETMSOTkxMAEiJicBIwEmJwMzFx4CMxEzETI+AhMzAwYHASMBDgEjESMCUxpBE/7qyAFhI13YvJRCSDsutB4wNELDvNhdIwFhyP7qE0EatAHdDAj+DwJQHYgBRe9q' + + 'XSQB2v4mEDNcATv+u4gd/bAB8QgM/iMAAAEAMf/sA14ETgAkAIpAUgweGxUWFgQDDxsbCSIDIiUmACYBCgMeDAsMC1BZDwwfDAL/DAEMDBgAABVQFWAVcBUEEgMVFRgYElBZGBAABlBZYARwBIAEA+8EASAEAQQEABYAPzIvXV1xKwAYPysRADMYL19eXRESOS9dcSsR' + + 'EgA5AV9eXRESOTkRMzMRMxEzMxEzEjk5MTAFIiYnNxYzMjY1NCE1MjY1NCYjIgYHJxIhMhYVFAYHFR4BFRQGAcqnxS2fNclgcf61oZhjXVlxDKIuAUuozpFneZnXFH2BLKReW8iJVFhKVkpGFAECn35liAkCDY9tmKwAAQCOAAAD6gQ6AA0ARkArCwEBDAMGBgUMBQ4P' + + 'sA/AD9APA7AP8A8CcA+AD6APsA/ADwUKAw0PBgIMFQA/MzM/MzMBXXFyERI5OREzETMRMxEzMTABEQMBMxEjETQ2NwEjEQE8CgHzxawHA/4GwAQ6/bD+6wNl+8YClCSSH/yXBDoAAAD//wCOAAAD6gXwEiYD6QAAEQcJGwDqAAAAFkANAQ4OESYBEAIQFgwEJSsRNQAr' + + 'ETUAAQCKAAADigQ6ABMAZEA5DgsCCAISEhMTFBUHCAgNDAwVDxUvFQIKAwsRAhFQWQ8CPwJPAgMPAj8C/wIDCAICDBMTDBUHBwAPAD8yLz8zLxE5L15dcSsRADMBX15dETMRMzMRMxESOREzETMREjk5MTATMxEyPgITMwMGBwEjAQ4BIxEjirQeMDRCw7zYXSMBYcj+' + + '6hNBGrQEOv4mEDNcATv+u4gd/bAB8QgM/iMAAAABAAv/7AQdBDoAEwBNQDMAEwIRChETAxUUcBWAFZAVA3AVsBUCABUgFTAVYBVwFYAVBg0DEQJQWREPBwxQWQcWABUAPz8rABg/KwFfXl1xchESFzkRMxEzMTAhESEKAQ4BIyInNRYzMjYSGwEhEQNo/ok7QEptVjIs' + + 'GSs3QzcjLALOA7f+TP7PnEoNgQluAQ4BCAFF+8YAAAEAjgAABPMEOgAUAEZAJg4RERABAAsIBQUGBgsQAxYVgBawFsAWAz8WARQCAg4HDxELAQYVAD8zMzM/MzMRMwFdXRESFzkRMxEzETMzETMRMzEwISMBFhURIxEhExYXNjcTIREjET8BAxOZ/rwGrgEY3DQQFi7c' + + 'AQ2tAwUDt5xH/SwEOv1rj4+hfQKV+8YC1HJzAAABAI4AAAPdBDoACwBnQB4BCQkKAgYGBQoFDA1ADVANYA0DQA2ADQIADQEQAw24/8BAIRMXSAEIUFmwAcABAp8BrwG/AQMPAT8BAggBAQoFFQMADwA/Mj8zOS9eXXFyKwErX15dcXIREjk5ETMRMxEzETMxMAERIREz' + + 'ESMRIREjEQFCAee0tP4ZtAQ6/jYByvvGAe3+EwQ6//8AVv/sBB0EThIGAFIAAAABAI4AAAPHBDoABwBDQCsFBgIBBgEICaAJsAnACQOgCeAJAmAJkAmgCbAJBA8JAQoDBwRQWQcPBgEVAD8zPysBX15dXXFyERI5OREzETMxMAERIxEhESMRA8e0/i+0BDr7xgO3/EkE' + + 'OgAAAP//AIT+VwQdBE0SBgBTAAD//wBX/+wDygROEgYARgAAAAEAIwAAA4cEOgAHADtAIgMGAgYHAwgJgAkBPwkBEAkgCQIPCQELAwQVAwYABlFZAA8APysRADMYPwFfXl1dXV0REhc5ETMxMBMhFSERIxEhIwNk/qi0/qgEOoP8SQO3//8ABf5XA/wEOhIGAFwAAAAD' + + 'AFb+VwY+BcwAJQAyAEAAokBnMwA6LCweGwomFBQKAANCQQUNHxkEIwMjNlBZIxAdABYwUFkWEBEpUFkRFgkbAz5QWQMWpEIBlEIBhEIBdEIBZEIBVEIBNEIB20IBlEIBhEIBZEIBVEIBQEIBAjBCASBCAR9CAQBCAV1dXV1fXV1dXV1dcXFxcXFxcQA/KwAYPz8rABg/' + + 'KwAYPz8rERIAFzkREgEXOREzETMzMxEzETMxMAEQAiMiJyMWFREjETQ3Iw4BIyICERAhMhYXMycRMxEHMz4BMzISARQWMzI2NzU0JiMiBgU0JiMiDgEdAR4BMzI2Bj65tOJPBgWqBQUulW+6swFtcJUtBQWqAwUukHK3tvrVbXaCegN3hnlsBG5reF5qNwJ6gXduAiL+' + + '5P7mvFdT/lkBp21DaFoBEwEZAjZaYpcBo/5cnGhZ/u/+4uHGxdYY08zO3drKXL2ZF8m/zQAA//8AFwAAA+oEOhIGAFsAAAABAI7+aARmBDoACwA6QB0CBQUICAcBCgcKDQwPDQEOAwUBCgFQWQoVCAMADwA/Mi8/KxEAMwFfXl0REjk5ETMRMxEzETMxMAERIREzETMR' + + 'IxEhEQFCAd20k6P8ywQ6/EkDt/xJ/eUBmAQ6AAABAHoAAAOcBDoAEQA4QB0FCQkIARAIEBMSCg0DDVBZBQ8DHwMCAwMIFQYADwA/Mj85L10zKxEAMxESATk5ETMRMxEzMTABERQzMjcRMxEjEQcGIyImNREBLqZuprS0TpJ+gY8EOv5uoi8CBfvGAc0eOJuNAZsAAAAB' + + 'AI4AAAXdBDoACwBXQCEDAAcECAsLBAADDA2rDQFkDYQNAjANAQIgDQEPDQENAw24/8BADwkMSAkFAQ8HAwADUFkAFQA/KxEAMxg/MzMBK19eXV1fXV1dERIXOREzETMRMzEwMxEzESERMxEhETMRjrQBmrQBmbQEOvxJA7f8SQO3+8YAAAAAAQCO/mgGZgQ6AA8AY0A7' + + 'CAsLDg4NBwQDAAAEDQMRENsRAbQRAWARkBECAkARUBECPxEBABEQESARAwoDDgkFAQ8LBwMAA1BZABUAPysRADMzGD8zMy8BX15dXV1fXV1dERIXOREzETMRMxEzETMxMDMRMxEhETMRIREzETMRIxGOtAGVtAGUtJOjBDr8SQO3/EkDt/xJ/eUBmAAAAgAtAAAErAQ6' + + 'AAwAFQBpQBUMCQ0NBxEDAwcXFg8XARYAFwEcAxe4/8BAJx4jSAwVUVmvDL8MzwwDDwwfDE8MAwcDDAwHCgoJUFkKDwcNUVkHFQA/KwAYPysREgA5GC9fXl1xKwErX15dXl0REjk5ETMRMxEzMzEwATIWFRQGIyERITUhGQEzMjY1NCYrAQMNzdLYxv5n/rgB/MqCeHSF' + + 'ywJwk5+apAO3g/42/g9cY15XAAAAAwCOAAAFMgQ6AAoAEwAXAFJAMAoLCwcDDxQXFw8HAxgZChNRWa8KvwrPCgMPCh8KTwoDBwMKCgcVCA8UBwcLUVkHFQA/KxEAMxg/MxI5L19eXXErERIBFzkRMxEzETMRMzEwATIWFRQGIyERMxkBMzI2NTQmKwEBETMRAibN0tjG' + + '/me0yoJ4dIXLAzy0AnCTn5qkBDr+Nv4PXGNeV/4NBDr7xgACAI4AAAPXBDoACgATAGpASAoLCwcPAwcDFBV/Ff8VAg8VLxVPFW8VjxWfFa8VzxX/FQkKAxVAIydIChNRWa8KvwrPCgMPCh8KTwoDBwMKCgcIDwcLUVkHFQA/KwAYPxI5L19eXXErAStfXl1xERI5OREz' + + 'ETMRMzEwATIWFRQGIyERMxkBMzI2NTQmKwECOM3S2Mb+VbTcgnh0hd0CcJOfmqQEOv42/g9cY15XAAAAAAEAN//sA74ETgAbAJlAQgoHBxYPEBABAAAIFgMdHAkIUFkPCR8Jbwl/CY8JBQ8JzwnfCQMLAwkJGRMZBFBZAAEQASABYAFwAYABwAHQAQgJAbj/wEAiGyJI' + + 'AQEZFg8PHw9vD38Pzw8FCgMPQB0gSA8PExMNUFkTEAA/KxEAMxgvK19eXT8zLyteXSsREgA5GC9fXl1xKxESARc5ETMzETMRMxEzMTATNx4BMzI2NyE1IS4BIyIHJz4BMzISERACIyImN7YQhWSBjgz+YwGdCIeK0iC5HN+r5vX16LHkATsMbGixvoO9psQOlaf+4P7w' + + '/uz+4rQAAAAAAgCO/+wFqgROABEAHQBPQCsSABgNBgwICAkJBgADHx4PFVBZDxAMB1BZDwwBCwMMDAkKDwkVAxtQWQMWAD8rABg/PxI5L19eXSsAGD8rERIBFzkRMxEzETMzETMxMAEQAiMiAicjESMRMxEzEiEyEgM0JiMiBhUUFjMyNgWq69/U4wnetLTfIQGk7de9' + + 'eIyOf36FknwCHv7k/uoBB/r+EwQ6/jYB3v7o/ujgy8/c2tPRAAAAAgARAAADxwQ6AAwAFQBTQCoAAwMVBRULCwoRBQUBAgoCFxYDABQAUVkPFAELAxQUAQgIDlFZCA8LARUAPzM/KxESADkYL19eXSsRADMREgE5OREzMxEzETMRMxESOREzMTAJASMBJhE0NjMhESMZ' + + 'ASMiBhUUFjsBAhf+xcsBWPnYzwGwtOqCeGt8/QHK/jYB1zMBBZWW+8YBygHxXF1eXQAAAP//AFf/7AQYBeQSJgBIAAARBwBDAMYAAAAYtgIfHxEmAhy4/820HB8MEiUrETUAKxE1AAD//wBX/+wEGAV7EiYASAAAEQcAagD4AAAAGkAPAwIaGhEmAwIeBB4cDBElKxE1' + + 'NQArETU1AAEACv5XA+4FzAApAHtAQQoHKSkEAwAAGxYJBCogK48rAUArUCtgKwNAK4ArAgArMCtAKwMQAw4SKRUZHVBZGRsKAgMCUVkHAwMSBRIlUFkSuP/AtgcMSBIPBQAAPz8rKxESADkYLzMrEQAzGD8rABg/EjkBX15dcXJdETMSFzkRMzMzETMzMTAzESM1MzUz' + + 'FSEVIRUUBgczPgEzMhYVERQGIyInNRcyNjURNC4BIyIGFRGOhIS0ASz+1AcBAzqjfbCneHhNMj5GNipgVX+ZBLaDk5ODlD2CCmpjr8780ZmKCYsGSGgC8XJvNLCV/aoA//8AjgAAAsgF5BImA+QAABEHAHYA2AAAABRADAEGESYBBlUGCQQAJSsRNQArNQAAAAEAV//s' + + 'A94ETgAaAJ9AXAoJCRcYDxISAwMRGAMcGw8cAQoDDxJQWQ8PHw9vD38Pjw8FDw/PD98PAwsDDw8ABgYMUFkfCi8KfwqPCt8KBQpAHSBICgoGEAAXEBcgF2AXcBeAF8AX0BcICQMXuP/AQAwbIkgXFwAAFFBZABYAPysRADMYLytfXl0/My8rXSsREgA5GC9fXl1xKwFf' + + 'Xl0REhc5ETMRMxEzMxEzMTAFIgIREBIzMhYXByYjIgYHIRUhEiEyNjcXDgECNOj19Oer3h25INKLhggBnP5jEgEKZIUQthXkFAEfARMBDwEhp5UOxKe8g/6RZ20MmrUA//8AOf/sA7YESxIGAFYAAP//AIkAAAE9BcwSBgBMAAD////4AAACJQV7EiYA8wAAEQYAassA' + + 'AB1ACQIBBAQRJgIBCLj/87QIBgACJSsRNTUAKxE1NQAAAP///87+VwE9BcwSBgBNAAAAAgAL/+wG7AQ6ABoAIwB9QBQfAxobGwcJGBgREQcDAyUkICUBJbj/wEA1HiNIzyUBACUBCgMaI1FZrxq/Gs8aAw8aHxpPGgMHAxoaBxgYCVBZGA8OE1BZDhYHG1FZBxUAPysA' + + 'GD8rABg/KxESADkYL19eXXErAV9eXV0rcRESFzkRMxEzETMRMxEzMTABMhYVFAYjIREhCgEOASMiJzUWMzI2EhsBIRkBMzI2NTQmKwEFTc3S2Mb+Pv5lO0BKbVYyLBkrN0M3IywC8vKCeHSF8wJwk5+apAO3/kz+z5xKDYEJbgEOAQgBRf42/g9cY15XAAAAAAIAjgAA' + + 'BiwEOgASABsAekAVFwUBExMRCRAMDA0NCQUDHRxgHQEduP/AQDEeI0gPHQEWAwEbUVkBARAQC1BZrxC/EM8QAw8QHxBPEAMHAxAQAA0VCRNRWQkVDgAPAD8yPysAGD8SOS9fXl1xKxEAMxgvKwFfXl0rXRESFzkRMxEzETMzETMRMzEwAREzMhYVFAYjIREhESMRMxEh' + + 'ERMzMjY1NCYrAQOp5M3S2Mb+Zv5OtLQBsrXKgnh0hcsEOv42k5+apAHt/hMEOv42Acr8RVxjXlcAAQAKAAAD7gXMACAAb0A8HBkRERYVEgcaEgMhCCJAIlAiYCIDQCKAIgKPIgEAIjAiQCIDEAMcFBUUUVkZFRUDFwASBxUADQMNUFkDuP/AtAcMSAMPAD8rKxEAMxg/' + + 'Mz8SOS8zKxEAMwFfXl1dcXIRMxIXOREzMzMRMzMxMAE+ATMyFhURIxE0LgEjIgYVESMRIzUzNTMVIRUhFRQGBwE9OqN9sKe1KmBVf5m0hIS0ASz+1AcBA1lqY6/O/VcChnJvNLCV/aoEtoOTk4OUPYIK//8AigAAA4oF5BImA+sAABEHAHYBPwAAABRADAEUESYBFFEU' + + 'FwAMJSsRNQArNQAA//8AjgAAA+oF5BImA+kAABEHAEMAqgAAABi2ARMTESYBELj/rLQQEw0FJSsRNQArETUAAP//AAX+VwP8BfASJgBcAAARBwkbALcAAAAWQA0BFxcRJgEZChkfCRIlKxE1ACsRNQABAI7+aAPdBDoACwBMQC4EBwkKAwAACgcDDQxADVANYA0DQA2A' + + 'DQIADTANQA1QDQQQAwkFAQ8IAAADUFkAAC8rEQAzGD8zLwFfXl1xchESFzkRMxEzETMxMDMRMxEhETMRIREjEY60Aee0/qqjBDr8SQO3+8b+aAGYAAAAAQBy/+wKRgWWADQAWkAuCQ8DAycAABUtIRUhNjUbAQEdJCQqX1koJAQdMV9ZHRMZBl9ZGRMOEhIMX1kSBAA/' + + 'KxEAMxg/KwAYPysAGD8zKxESADkYLzkREgE5OREzEjkRMzMRMzIxMAERMxEeATMyABEQACMiByc+ATMgABEUAgQjICcGISIkAjUQACEyFhcHJiMiABEUEhYzMjY3BQK/SuGF8AEj/v3run90Tc+TAUIBbK3+v9j+qMzO/qrX/r+uAWwBQpPPTXR/uur+/ITynYfiTwEy' + + 'AYn+cUxWATsBAgEHASxofEdB/oL+r9r+srOysrIBTtsBUQF+QUd8aP7T/vqo/vqPWFIAAQAPAAAEyQQ6ABUAOEAcEwIPDg4MCwoKDAcQAgUXFhAMDAcJFQ4KDwYJFQA/Mz8zMxI5OREzERIBFzkRMxEzETMRMzEwARYVFAIHIwsBIwEzARMDMxM2EjU0JwSXMpCMoG+H' + + 'qv6itwELkom34FNcMAQ6eY6n/l3pAYj+eAQ6/G4BrgHk/G6aAUuXnHoAAAAAAgAVAAAF6AWBABIAGgBNQCkTDAgEGBgBEAAQBgwEHBsIF19ZBxIAEmBZBAAIAAgAEAIQGF9ZEBICAwA/PysREgA5ORgvLxEzKxEAMysREgEXOREzMxEzMxEzMTATITUzFSEVIRUhMgQV' + + 'FAQjIREhATQmIyERISAVAYy/AYv+dQGX7AEF/v7j/Z7+dAUTpKT+gAGIAUAEqtfXk+rSvrviBBf9gHmD/gQAAgAVAAAEpgXLABIAGgBLQCgWDAgEExMBEAAQBgwEHBsIGlFZCAgQABATUVkQFQIABxIAElBZBAAPAD8yKxEAMxg/PysREgA5GC8rERIBFzkRMzMRMzMR' + + 'MzEwEyERMxEhFSERITIWFRQGIyERIQEzMjU0JisBFQEttAEq/tYBEc3S2cX+Ov7TAeH3+nSF+AQ6AZH+b4v+5aifnbADr/zQzl5mAAABAL3/7AdABZYAIQCBQEsDISEAEQkQEBMTBB8KCQkYGRkfAAMiIwAYEBhAGFAYkBigGNAY4BgIDAMYGBwcFl9ZHBMHDV9ZCgoH' + + 'BBMgAyBfWRAvAwEDAwEDABIAPz85L10zKxEAMxg/My8rABg/KxEAMxgvX15dERIBFzkRMzMRMxEzMxEzERI5ETMRMzEwMxEzETMSACEgEwcuASMiBgchFSEWADMgExcGBCMgAAMjEb2/yhUBYQErAb2PtTLQk9T4FQJ6/YYTAQLUASSPnGP+2s/+0f6fE8kFgf2WATEB' + + 'Tv6jPH5//Oaa5/7yASRNw7EBXQE1/YIAAAEAiP/sBXgETgAhAJFAWgoZAyEhEBMTBB8fEgAZGQAjIiAYcBiAGNAY4BgFABgQGGAYcBiAGMAY0BgHCQMYGBwcFVBZHBYHDVBZDwtvC38LzwsECgMLCwcQEyADIFFZEC8DAQMDAQ8AFQA/PzkvXTMrEQAzGD8zL19eXSsA' + + 'GD8rEQAzGC9fXl1xERIBOTkREjk5ETMzETMyETMRMzEwMxEzETM+ATMyFhcHJiMiBgchFSESITI2NxcOASMiAicjEYi0tw/01qveHbkg0ouGCAGc/mMSAQpkhRC2FeSx2/MOtgQ6/ivv+qeVDsSnvIP+kWdtDJq1AQD2/h4AAAIABAAABVIFgQALABQAQEAgBwYCAxEK' + + 'ChALAwYLAxYVCQEQAV9ZDAQQEAMEAwsHAxIAPzMzPxI5LxI5KxEAMxESARc5ETMzETMRMxEzMTABIwMjATMBIwMjESMTBw4BAyEDJicCVLnRxgI/2QI2w9C8r1kJDDOQAbGGHBwCFP3sBYH6fwIU/ewE8Rwnkv6NAVlFVwACAAYAAAP8BDoACwAOAEBAIAgJAQAMBAQO' + + 'BQkFAAMQDwMHDgdQWQ0KDg4JCg8FAQkVAD8zMz8SOS8SOSsRADMREgEXOREzMxEzETMRMzEwISMDIxEjESMDIwEzEwsBA/yqjHSkcImvAaioQpiUAXD+kAFw/pAEOv2+AZL+bgAAAAIAvwAAByQFgQATABwAUkAqCAcDExMADwQQGQsLGAwHDBAABB0eDgoSAxJgWRgU' + + 'BQMDBQMBAxAMCAASAD8yMjI/PzkvEjkzKxEAMzMREgEXOREzMxEzETMzETMRMxEzMTAzETMRIQEzASMDIxEjESMDIxMhEQEHDgEDIQMmJ7+/AW4BKdkCNsPQvK+50cbZ/s8DAQkMM5ABsYYcHAWB/SgC2Pp/AhT97AIU/ewCFf3rBPEcJ5L+jQFZRVcAAgCGAAAFjAQ6' + + 'ABMAFgBRQCkIBwMTEwAPBBAUCwsWDAcMEAAEFxgOChIDElBZFhUBAwMFAQ8QDAgAFQA/MjIyPzM5LxI5MysRADMzERIBFzkRMzMRMxEzMxEzETMRMzEwMxEzESETMwEjAyMRIxEjAyMTIxEBCwGGtAEh46gBpqqMdKRwia+Q7ALumJQEOv2+AkL7xgFw/pABcP6QAXH+' + + 'jwH4AZL+bgAAAgB5AAAGKQWBABgAGwBZQC0YBAMbFhYLGgAACgoLFxEREhILAwMdHAkMFgxgWRkAFhYSFxcbX1kXAwsEEhIAPzMzPysREgA5GC8zMysRADMREgEXOREzETMRMxEzETMRMxEzETMzMTABBBEVIzU0LgEnESMRDgIdASM1EAAlASEJASEEFQIUtFvGpL6l' + + 'xVu0AQoBCv5HBPz9gwFD/XgDBS/99820pLlcBf2OAnIFXLemtM0BCQEXGAJ8/X0B5wAAAgB6AAAFAQQ6ABoAHQBfQDAVAQEAHBMTCBsWFgcHCBQODg8PCAADHx4GCR0JUVkWEx0THRMPFBQcUFkUDwgBDxUAPzMzPysREgA5ORgvLxEzKxEAMxESARc5ETMRMxEzETMR' + + 'MxEzETMRMxEzMTAhIzU0LgEnESMRIg4BHQEjNTQ2NwEhAR4CFQEhEwUBqjuIg6l8ij6qttn+ygPY/siUrU3+mP5P1kaQkUQE/lEBr0WVj0ZG/twUAgb9+g5rxq8Daf5+AAIAvQAAB/YFgQAeACEAa0A3CwYKIAcHERESIQQEEhwFGBgZAx4eAAAZEgoEIyITEB0DHWBZ' + + 'HwcDAwAFBSFfWQUDAQMZEgsAEgA/MjIyPz8rERIAORgvMzMrEQAzMxESARc5ETMRMxEzETMzETMRMxEzETMRMxEzMzEwMxEzESEBIQEEERUjNTQuAScRIxEOAh0BIzUQNyERCQEhvb8C3v5HBPz+RQIUtFvGpL6lxVu0p/6PA6QBQ/14BYH9hAJ8/YQv/ffNtKS5XAX9' + + 'jgJyBVy3prTNASp8/Y0C/gHnAAAAAgCIAAAGdgQ6ACEAJABtQDgGDQ0MIgcHExMUIwQEFB8FGhobAyEhAAAbFAwEJiUVEiADIFBZJAcDAwAFBSNQWQUPAQ8bFA0AFQA/MjIyPz8rERIAORgvMzMrEQAzMxESARc5ETMRMxEzETMzETMRMxEzETMRMxEzETMxMDMRMxEh' + + 'ASEBHgIdASM1NC4BJxEjESIOAR0BIzU0NjchEQEhE4i0AkL+ygPY/siUrU2qO4iDqXyKPqo4PP7ZA9L+T9YEOv36Agb9+g5rxq9GRpCRRAT+UQGvRZWPRkaapCv+UQOv/n4AAQBg/lcEcAbrAFQAkkBNHBQWKRYFAyYPEBA2S0FACSYALCwmQEsEVVZDPV9ZAEMBDAND' + + 'Q0gpBQQFBGBZMk9PSAUFI0FISDhfWUgfFRUaI0AWEyMPDyMjDGBZIwMAPysRADMYLxEzMxoQzTIvMi8rEQAzEjkYLxI5ETMrERIAOREzGC9fXl0rERIBFzkRMxEzETMRMzMRMxIXOREzMzEwATQmKwE1MzI2NTQmIyIGByc+ATcDMxM3PgEzMhcHJiMiBg8BHgEVFAYH' + + 'HgEVFA4DBw4CFRQzMj4CMzIWFSM0IyIOAiMiJjU0PgE3PgQDr8DKR0e1rZGHfqwzsjfBl7ico1sdSDZTLUIRHA4VDVidtJCImKowUnOLoJdtO6Q6a2NdLV5tmEodVmx+Q4iiVJyhk2xXPyMBk4V2lHd7a3t1gj2JpxoBU/672EM4TT4eDx3IHL2Mf6YgF6+EW4JcOyQT' + + 'ESAzKWwbIRyCZE0cIhyQelduPg8OFiU+WQAAAAABACD+VwOEBakATQCQQExEQwgxDiAYGi0aCwMqFBUVOQAAKjFDBE9ORkBQWQBGAQwDRkZLNQQtCwoLClBZBEsLCydDS0s7UFlLIxkZHidAGhcnFBQnJxFRWScPAD8rEQAzGC8RMzMaEM0yLzIvKxEAMxI5GC8SOSsR' + + 'EgA5ETMRMxgvX15dKxESARc5ETMzETMSFzkRMzMyETMRMzEwFzQ+ATc+AjU0ITUyNjU0JiMiBgcnNjcDMxM3PgEzMhcHJiMiBg8BHgEVFAYHFR4BFRQOAQcOAhUUMzI+AjMyFhUjNCMiDgIjIiYgSIWKhGs5/rWhmGNdWXEMoiTUvJyjWx1INlMtQhEcDhUNW3CIkWd5' + + 'mVKss3BPKpg6XFJOLVtqmEodRVdsRHuen05jPBQTLUw9yIlUWEpWSkYUyiwBWf672EM4TT4eDx3QGo9mZYgJAg2PbV+FUBoTHy4kdB8kH31oTR0jHZYAAAABAEMAAAXsBYEAHAA8QB4UFxAcHA0ACAcHABcDHh0bAQ0BYFkQDQ0VDgcDABIAPz8zMzkvMysRADMREgEX' + + 'OREzETMzETMRMzEwIREiLgInAzMTHgIzETMRMzI2NREzERQAKwERAsljmHJcM4q/ijBQbVC5OLHCv/7j+lMBqzZrt68Bz/4to4dHA0T8vMyvAcn+O/T+4/5VAAEARP5XBQcEOgAYADxAHhIRAAoKFgsEBQULEQMZGhcEEQ8AFgwWUFkJDBYLGwA/PzMrEQAzGD8zMxES' + + 'ARc5ETMRMzMRMxEzMTAlPgE1ETMRFAYFESMRLgInAzMTHgEXETMC/7Oftv7+9qp3klwohLWOI1RXqncCnbICcv2Q9ecC/msBlQJRs8QChP1SqmkCA8MAAAADAGH/7AXXBZYADgAdAC4AUEArLBISACEbGwgACDAvKhRfWSQZX1kPJAEMAyokKiQECwseX1kLBAQPX1kE' + + 'EwA/KwAYPysREgA5ORgvL19eXSsrERIBOTkRMxEzETMRMzEwARQCBCMiJAI1EAAhMgQSATIkNwYjIi4CIyIHFgATIgQHPgEzMhYXHgEzMjcmAAXXqf7E19n+xaYBcgFK1wE8p/1E2gECGIVXS4F4dT6YfRUBB9re/vsUPYdRPn1MT3E3dmMR/voCx93+tLKwAU3eAVIB' + + 'fav+uvzi9uc0KzUrSef+/ARz+u4bKCIkJSE58QEHAAAAAwBW/+wEHQROAAoAGQAoAE5AKiINBhwTEwAGACkqGhVQWSQLUFkPGgELAxokGiQDCAgfUFkIEAMQUFkDFgA/KwAYPysREgA5ORgvL19eXSsrERIBOTkRMxEzETMzMTABEAIjIgIRECEyEgEiBx4BMzI2NwYj' + + 'Ii4CJTI3LgEjIgYHNjMyHgIEHfru7fIB5fjq/XhFPQWNjpeLCUk2NFdOSgEmPz0Lho+JjBE+PzJPS08CHv7k/uoBIQERAjD+7/7oI87DsLkgISkhHyG2rpmgHiEoIQABAAkAAAZWBZYAFAAmQBQDAgIGDgMWFQsRX1kLBAYBAgMBEgA/PxI5PysREgEXOREzMTAhIwEz' + + 'ARYXPwEBNjMyFhcHJiMiBgcDDsb9wckBhigsGTsBLUzES54wVE1hMzccBYH8IGmQTqsDK8o3KYhFM0cAAAEABwAABPEETgASACZAFAMCDAYCAxMUCg9TWQoQBgECDwEVAD8/Ejk/KxESARc5ETMxMCEjATMTFhc3EzYzMhcHJiMiBgcCZdX+d8DuDThKq0LAjnJRQVQu' + + 'OBsEOv1AKMXrAgrMW4Q/NEwA//8ACQAABlYHTBImBCUAABEHAtECbQFoAB1ACQIBICAFJgIBHbj/PrQdGgIOJSsRNTUAKxE1NQD//wAHAAAE8QXkEiYEJgAAEQcC0QHMAAAAHUAJAgEeHhEmAgEbuP9RtBsYAgwlKxE1NQArETU1AAADAGH+VwiMBZYACwAXACgAT0Aq' + + 'EgYiISEMACQlJSAbAAYFKSojICQYJCEPGB1QWRgbCQ9fWQkEAxVfWQMTAD8rABg/KwAYPysAGD8zERI5ORESARc5ETMRMzMRMxEzMTABEAAjIgAREAAzMgADEAIjIgIREBIzMhIBIic1FjMyPwEBMwkBMwEOAQSS/uD5/P7kARv+/gEavrWlp7W4o6e0AY9KMiYuqGIR' + + '/mfAATIBH77+dFbAAsf+rv53AYQBVwFTAXz+gf6wAQYBLf7Z/vT++P7IASv8pQuHBvcrBDX8igN2+8bqvwAAAwBV/lcHGgROAAoAFgAnAE1AKREFISAgAAALJB8ZCwUFKCkiHiMXIyAPFxxQWRcbCA5RWQgQAxRRWQMWAD8rABg/KwAYPysAGD8zERI5ORESARc5ETMR' + + 'MxEzETMxMAEQAiMgERASMzISAzQmIyIGFRQWMzI2ASInNRYzMj8BATMJATMBDgEDZMXG/ny/ysu7r2Nyc2lmbndmAUZKMiYuqGIR/nHAASgBFb7+flDDAh7+5P7qAjIBFwEZ/vP+3eLNzeLa19P9FwuHBvcrBDX8igN2+8bixwAAAgA2/4sGdAXzABgAMABKQCYlDCgi' + + 'LhwZAAAcIgwEMjEcIhAiX1krHygWExATLigJKF9ZBgMJBAA/MzMrEQAzGD8zMxI5OSsRADMREgEXOREzETMRMxEzMTATEAAlPgEzMhYXBAARFAIEBw4BIyImJyQAExQSFz4BMzIWFzYSNTQCJw4BIyImJwYCNgFYAScXVDQzVRcBKAFZnv7dvhZWNTZVF/7a/qrC7MsV' + + 'WDg3WRXR5+fQFFo4OVoU0OUCxwEzAYEYKzU1Kxj+fv7OyP6/vhAtODctGQGMATPt/sodMDw8MBsBMfToAS8cMT4+MRz+0wAAAAIAK/+PBLsErQAXAC0ASUAkIywaJiAaIAwYAAwALy4aIA8gUFkpHQkVDxYsJgkmUFkGAwkQAD8zMysRADMYPzMSOTkrEQAzERIBOTkR' + + 'MxI5OREzETMyMTATNBI3PgEzMhYXFhIVFAIHDgEjIiYnJgI3EBc+ATMyFhc+ATU0JicOASMiJicGK+DPFFI0M1IU1dnizBRSMzNRFNDhve8SVTY1UxN7dHN7E1Q1NVMT8QIe9AEeGS03NywX/ub78/7fGCw3NSsVAST2/oUwMDw6LhzVtrrTGi46OS03AAADAGz/7Ake' + + 'B9QAMQBFAFAAe0BBMitMRk8ATxgDBjwfEhIMBgNSUUUyMjxPT1BLPFA8UBU/PzhgWT8VHF9ZFQQOIl9ZDhMKKF9ZChNLSwMDLl9ZAwQAPysRADMYLz8rABg/KwAYPysAGC8rERIAOTkYLy8REjkvETMRMxESARc5ETMzEhc5ETMzMjIxMAE+ATMgABEUAgQjICcGISIk' + + 'AjUQACEyFhcHLgEjIgAREAAzMjY3HgEzMgAREAIjIgYHASImJy4BIyIGByM+ATMyFhceATMlFRQOAQcjNjUjNQVIToxSAUABaqL+y9T+8J6g/vLV/suhAWoBQFOMTUtDZzXq/wABDuR/5UFB5X/kAQ7/6zRoQwH2ZrllcolGdocYgSDfpEGDf2+qXP2WCxYlalNOBVcj' + + 'HP6D/q7g/rWwbW2xAUzeAVIBfRwjlCAX/tP++v77/sJWRUVWAT8BBAEHASwXIAG7NTg/Lm1wpLUqQDkxA2IqPDQ6YkeNAAAAAAMAV//sBncGlAAlADAARAB+QEYxACwvJy4DLi8XBAg7GhIIEkZFMTsvLysAMBAwAg8DMDsrKzswAz4EPjdRWQ8+7z4CCQM+FxYQDx1Q' + + 'WQ8WCyNQWQsWAwQQAD8zPysAGD8rABg/My9fXl0rERIAFzkYLy8vX15dEjkvETMREgE5OREzMxIXOREzETMyMjEwATQmIzUyHgEVEAIjIicGIyICETQ+ATMVIgYVFBYzMjY3HgEzMjYBFRQOAQcjNjUjNQUiJicuASMiBgcjPgEzMhYXHgEzBbuJmZTacO/ju4OFuePv' + + 'cNmVmYmQklipMS2rWpKQ/f4LFiVqU04DFWa5ZXKJRnaHGIEg36RBg39vqlwCItLEloH5tv7t/uFTUwEfARO0+4GWxNLX0TotKzzSBHJiKjw0OmJHjYA1OD8ubXCktSpAOTEAAP//AHL/7ApGBukSJgQRAAARBwnmBVABaAAYtgE/PwUmAUC4//S0QDUhFSUrETUAKxE1' + + 'AAD//wAPAAAEyQWBEiYEEgAAEQcJ5gJsAAAAFkANASAgESYBIQAhFgoCJSsRNQArETUAAQBo/lUFbAWWABcANEAbCwoXABEEBAAKAxkYBw5fWQsLBwQBFF9ZAAETAD/NKwAYPzMvKxESARc5ETMRMxEzMTABESQAERAAITIEFwcuASMiABEQADMyNxECvP7i/soBbgFA' + + '4QEuR7Ux2ZXo/voBD+4oLP5VAZwdAXkBNwFUAYSwrTx7gv7P/vX+/v7NDf2/AAAAAAEAUP5XA9UETAAXADFAGhcAEQQEAAoDGRgHDlBZCwsHEAEUUFkBFQAbAD8/KwAYPzMvKxESARc5ETMRMzEwAREmAjUQADMyFhcHLgEjIgYVFBYzMjcRAfDO0gEA6KbbHLkOcmmZ' + + 'jpmUPS7+VwGfEgEi/AENARmslw5aasPS0dkS/cUAAAEAC//gA/wF2gATAD9AHg4KBwgSEQQAABEICgQUFRACAQEPDAYFBQsPCwcRBwAvLxI5OREzEjk5ETMSOTkREgEXOREzETMRMxEzMTABByUDBQclAyMTJTcFEyU3BRMzAwP8Kf6fTgFkKf6bgKGM/qYpAVxN/qEp' + + 'AWF+n4kDkZhe/utfmGD+NQHzXZheARVemV8Bw/4VAAAAAf6iBHsBYAXlABUADbQIAxMOAwA/M80yMTABFAYjIRUUBiMiJjU0NjMhNTQ2MzIWAWBJNf6lQy4yQkk1AVtDLjJCBXEyPBQ4PEA0MjwUODxAAAAAAf68BMsBTAXBABMAFLcEERELAQkJCwAvMxEzETMvMzEw' + + 'ASMuASMiBgcGKwE1MzI2NzYzMhYBTFkCNTUhQiZ0aGZpNFgqYUZjZwTLSkAmF0iPIBQufQAAAAH/nwRJAGIFzAAJAA60AgIAgAUALxrMOS8xMBMVIxQXIy4BPQFiWU53Ix4FzLpeazNyTJIAAAAAAf+fBEkAYgXMAAkADrQICACABQAvGsw5LzEwExUUBgcjNjUjNWIc' + + 'JXdOWQXMkkptOmteugAAAAAB/dMFOwIuBpQAEwAQtQYNgBMACgAvMzIazTIxMAEiJicuASMiBgcjPgEzMhYXHgEzAi5muWVyiUZ2hxiBIN+kQYN/b6pcBT41OD8ubXCktSpAOTEAAAAACPwl/qoD2wW3AAkAEwAdACcAMQA7AEUATwBoQDVGIx5LPkMgSEglTTIPCjcM' + + 'NDQROSgFAC0UGQIqKgcvS0NNNzktGS8vGS05N01DSwgbQTwWGwAvMy8zEhc5Ly8vLy8vLy8RMzMRMxEzETMzMxEzMxEzETMzMxEzMxEzETMRMzMzMTABNCMiFSMQMzIVEzQjIhUjEDMyFQE0IyIVIxAzMhUBNCMiFSMQMzIVATQjIhUjEDMyFQM0IyIVIxAzMhUBNCMi' + + 'FSMQMzIVJTQjIhUjEDMyFQL8cnJn2dkRcnJn2dn8jXJyZ9nZAi1ycmfZ2fqFcnJn2dnfcnJn2dkCkXJyZ9nZ/RlycmfZ2QPElZUA///+BpWVAP//Au6VlQD///rmlZUA//8EJpWVAP///gaVlQD///zglZUA///0lZUA//8AAAAACPxr/oEDnwXnAAkAEwAdACcAMQA7' + + 'AEUATwAlQBFPTUVAQxIwEiclHhUbChEJCAAvMy8zLzMvMzM/PzMzLzMxMBcVFAYHIzY1IzURNTQ2NzMGFTMVASMiJic1FjM1MyUzMhYXFSYjFSMDFx4BFwcmJwcnAScuASc3Fhc3FwMHDgEHJzY3JzcBNz4BNxcGBxcHRRocZEJLGhxkQkv9anpEXSlYUZsErHpEXSlY' + + 'UZs9VjAvCkcPOTVu/EVWMC8JRg85NW8MVjFTMUdsOjVuA9NWMFQxR245NW07ekRdKVhQnATeekRdKVhQnP0cGhxkQks0GhxkQkv+91cwVDFGbTg1bgMHVjBUMUdtOTVu/D5WMC8KRw86NW4DiFYxLgpHDzk2bQAAAAIAqP5mBdgHOgARABsAXEAxFRQUARECAgEZGhoI' + + 'Bg0NCgkIAQgcHQ0IX1kNEhcZcBSAFPAUAxSAEgUQAAYBAwsAEgA/xj8zEjk53hrMXTI5PysREgE5OREzMzMRMxEzETMRMxEzETMRMzEwMxEzERQHATMRMwMjEyMRNDcJASADMxYzMjczAqisCALu3sC8rIqMBv0aAVj+nAukDL+/DKQLBYH8ZHKgBK77LP25AZoDqHqE' + + '+1oF+gFAx8f+wAAAAAIAjv7JBJgF8AASABwAW0AtGhsbBgQLCwgHBhYVFRIQAAASBhIeHRgaFYATEg8DDwQQFQgLQAsHU1kLFQQPAD8/KwAaGBDMPxI5OT/eGswyORESATk5ETMRMxEzETMRMzMzETMRMxEzMTABERQHATMRMwMjEyMRNDY3ASMRJSADMxYzMjczAgE8' + + 'CgHzxa7CrI15BwP+BsABsP6cC6QMv78MpAsEOv2wQ9IDZfxn/igBNwKUN44Q/JcEOnYBQMfH/sAAAAACAAQAAATvBYEAEgAaAE5AKBMMCAYEGBgSARAMEBwbCBdfWQcSABJgWQQACAAIABACEBhfWRASAgMAPz8rERIAOTkYLy8RMysRADMrERIBOTkRMzMzETMzMxEz' + + 'MTATMzUzFTMVIxUhMgQVFAQjIREjATQmIyERISAEpL+3twGX7AEF/v7j/Z6kBCukpP6AAYgBQASq19eT6tK+u+IEF/2AeYP+BAAAAAACABQAAAPtBcwAEgAbAE5AKBcLBwUDExMRAA8LDx0cBxtRWQYREhFRWQMSBxIHEg8BDxNRWQ8VAQAAPz8rERIAOTkYLy8RMysR' + + 'ADMrERIBOTkRMzMzETMzMxEzMTATNTMVMxUjESEyFhUUBiMhESM1ATMyNjU0JisBjrR3dwEMzdLYxv4/egEu8oJ4dIXzBRO5uYP94JOfmqQEkIP7bFxjXlcAAAIAqAAABQgFgQAOABoAXEAwFhkADAQNFw0PFwoTEwQEBQoFHBsADBYDGQ4OAxMDX1kYGRMZExkFBgYS' + + 'X1kGAwUSAD8/KxESADk5GC8vETMrEQAzERIXORESATk5ETMRMxESOTIyERIXOTEwAQYjIREjESEyBBUUBxcHAxApAREhMjcnNxc2BCh3rP5ivwJR7QEEVnRrc/64/oUBg35Nc2xmFgJsR/3bBYHeyp9ufWAB6AER/dQtfGFvNgAAAgCE/lcEIQRNABwALQBbQDEqLAUC' + + 'BAMkAx0AJBINDQ4ADi8uCRYHGhogUFkaEBEPDhsFAiksBCsEKycHJ1BZBAcWAD8zKxEAMxESFzkYPz8/KxESADk5ERIBOTkRMxEzMxEzMxESFzkxMAEQBxcHJwYjIicjFhURIxE0JzMeAhUzPgEzMhIDNCYjIg4BFRQWMzI3JzcXNgQdXmJkXld5+lYFBLQGrgEEBQQw' + + 'noHIxr16hWt5P4iZWDh2ZV8jAiL+64xqWmU2vAii/lkFBqc2BDFmE2Rd/vT+3eLCWr+Z1coqf1toYgAAAAEAqAABA7oHHAAHACNAEQUGAAMGAwgJBwRfWQcDBRIBAC8/PysREgE5OREzETMxMAERMxEhESMRAwa0/a2/BYEBm/3J+xwFgAAAAAABAI4AAAMKBcwABwAl' + + 'QBEAAQMGAQYICQQCB1BZAg8AFQA/PysAGC8REgE5OREzETMxMCEjESERMxEhAUK0Admj/jgEOgGS/esAAAAAAf//AAAELwWCAA0APUAeBgoKCAMNAQsDCw8OCQ0ADWBZBgAAAgsSAgVfWQIDAD8rABg/EjkvMysRADMREgE5OREzMxI5MxEzMTADMxEhFSERIRUhESMR' + + 'IwGpA4f9OAGk/ly/qQMmAlyc/kCT/W0CkwAAAAABABQAAAKvBDoADQA/QB8DBwcMCgUIAAgADg8GCgsKUFkDCwsIDQ0CUVkNDwgVAD8/KxESADkYLzMrEQAzERIBOTkREjkyMjIRMzEwARUhETMVIxEjESM1MxECr/6Ty8u0enoEOoP+z4T9/gIChAG0AAAAAAEAp/5X' + + 'BPwFgQAgAE9AKQ4AHBYWFwgHBxcXGgADIiEeEV9ZHB4eFxgYG19ZGAMIFwQEC19ZBBcSAD/EKxESADkYPysREgA5GC85KxESARc5ETMRMxEzETMRMzEwARQCBCMiJCc3HgEzMhIRECYjIg4BBxEjESEVIRE2MyAABPyT/vauvP7+PLItloPCzrG1OnFqX74DmP0mu8EB' + + 'CQESASHc/rupj48eWk0BJQENAQ76Ex8l/TEFgZz+gFv+rAAAAAEAjf5XBBkEOgAgAFBAKg4AGxUVFggHBxYWGQADIiEdElBZGx0dFhcXGlBZFw8ICAQWFQQLUFkEGwA/KwAYPxI5Lz8rERIAORgvOSsREgEXOREzETMRMxEzETMxMCUUDgEjIiYnNx4BMzI2NTQuASMi' + + 'BxEjESEVIRE2MzIeAQQZdNOLsdAush55ZpKVVZxidGa0AmH+U3RzkuN8XJ/re4yPDVRLvbZwpFYg/mMEOov+dCN13gAAAAABABz+aAdOBYEAJwB8QEAbIhIXGBggHRImJicGAwkPDycKCQkEBQUnHQMpKCIDGwYlAA8AYFkSDwMGDw8GAwMhCSEcX1khEh8XEAkDJwUS' + + 'AD8zPzMzLz8rERIAFzkYLy8vETMrEQAzETMRMxESARc5ETMzETMRMxESOTkRMxEzETMzETMSOTkxMAEiJicBIwEmJwEzEx4CMxEzETI+ATcTMwEGBwEzESMRIwEOASMRIwNSJW8Z/lXeAf0wg/7lyM1vYFhLv0taYmvNyP7lgzABlHC0Mf5VGW0nvwKFGgz9VQMHI70B' + + 'mv7Pp2soAmv9lSlvogEx/ma9I/2Z/cgBmAKrDBr9ewAAAAABAAf+aAVTBDoAJwB8QEAAIRgdHh4jDAkPFRUFGAQEBRAPDwoLCwUjAykoIQwACRUJUVkDBhUGUVkYFQwVDBUnDyciUVknFSUdFg8PBQsVAD8zPzMzLz8rERIAOTkYLy8RMysRADMrEQAzETMREgEXOREz' + + 'MxEzETMRMxEzERI5OREzETMSOTkxMAEOASMRIxEiJicBIwEmJwMzFx4CMxEzETI+AhMzAwYHATMRIxEjA3UTQRq0GkET/urIAWEjXdi8lEJIOy60HjA0QsO82F0jARNOoyUB8QgM/iMB3QwI/g8CUB2IAUXval0kAdr+JhAzXAE7/ruIHf4z/eUBmAAAAQBD/lcEcAWV' + + 'ADUAb0A6KBQfGCUlDyswBB4fHwoJCQAEKwQ3NjMCYFkzLkAoFRIVEmBZFRUiLi4MYFkKCgYuEx4eIiIbX1kiBAA/KxEAMxgvPzMzLysREgA5GC8rERIAORoYEMwrERIBFzkRMzMRMxEzETMzETMSOTkxMAEWMzI1NCcuASc3EiEyNjU0JisBNTMyNjU0JiMiBgcnNiQz' + + 'MhYVFAYHHgEVFAYHFhUUBiMiJwE3WVaBFcT6UaV3AQeZsMDKR0e1rZGHfqwzskYBCMjU/JCImKrdwR+AdHNT/wAjf1BBBaOzTf7wjoCFdpR3e2t7dYI9rajHqX+mIBevhK3fGHxSX24iAAAAAAEAMf5XA14ETgAzAHJAOxMlIhwdHQsKLgUWIiIQKSkFAAoENDUlExIT' + + 'ElBZExMfBxwcHx8ZUFkfEDECUVkxB0AsBwcNUFkLCwcWAD8zLysRADMaGBDMKwAYPysRADMYLxESOS8rERIAORESARc5ETMzETMRMxEzMxEzEjk5MTATFjMyNjU0Jy4BJzcWMzI2NTQhNTI2NTQmIyIGBycSITIWFRQGBxUeARUUBgcWFRQGIyInrVdOQDsXnrssnzXJ' + + 'YHH+taGYY11ZcQyiLgFLqM6RZ3mZmY8hd3hnVP78Ij0/T0cEfH4spF5byIlUWEpWSkYUAQKffmWICQINj219qBdrVmtxIQAAAAEAqP5oBKEFgQAXAFFAKBILAggCFhYXBwgIEQ8OFw4YGRcSAhVgWRICEgIRABEMX1kREg8HAAMAPzIvPysREgA5ORgvLysAGD8REgE5' + + 'OREzMzMRMxEzETMREjk5MTATMxEyPgE3EzMBBgcBMxEjESMBDgEjESOov0taYmvNyP7lgzABlG20Lv5VGW0nvwWB/ZUpb6IBMf5mvSP9mf3IAZgCqwwa/XsAAAEAiv5oA4oEOgAXAFRAKwsSCAICFhYXFxgZBwgIEA8ODhkXFQIVUVkCElFZAgIRABEMUVkRFQ8HAA8A' + + 'PzIvPysREgA5GC8rKwAYPxEBMxEzMzMRMxESOREzETMREjk5MTATMxEyPgITMwMGBwEzESMRIwEOASMRI4q0HjA0QsO82F0jARNOoyX+6hNBGrQEOv4mEDNcATv+u4gd/jP95QGYAfEIDP4jAAEAqAAABJ0FgQAYAFxALgwXFwkYGBMHEAcDAwQPEBAUBBQZGhYCAAkA' + + 'YFkTDAcJGAkKCgkYAwQPBQMVBBIAPzM/MxIXOS8vLxEzMzMrEQAzMxESATk5ETMRMxEzETMREjk5ETMzETMxMAEGIxEjETMRMjcRMxE+ARMzAQYHASMBESMB0joxv79AK3MhdsrI/uWDMAH93v6GcwKVEP17BYH9lQ8Bkv7JJ6wBLv5mvSP8+QJr/owAAAABAIoAAAOK' + + 'BDoAFgBcQC4MFRUJFhEWBw0ODhISGAcDAwQEFxgUAgAJAFBZEQwHCRYJCgoJFgMEDQUPEwQVAD8zPzMSFzkvLy8RMzMzKxEAMzMREgE5ETMRMxEzETMRMxI5OREzMxEzMTABBiMRIxEzETI3ETMVEzMDBgcBIwMVIwF/JRy0tCgZad282F0jAWHI2mkB5Qj+IwQ6/iYJ' + + 'AUnuAXb+u4gd/bABl/cAAQAEAAAEnQWBABsAVUArFBEEDQ4OEgQYGBsBGRIZHRwIF2BZFBEIBxsAG2BZBAAIAAgAAhMZEg0CAwA/Mz8zEjk5Ly8RMysRADMRMzMrERIBOTkRMzMzETMRMxEzEjk5MTATMzUzFTMVIxEyPgE3EzMBBgcBIwEOASMRIxEjBKS/t7dLWmJr' + + 'zcj+5YMwAf3e/lUZbSe/pASq19eT/v8pb6IBMf5mvSP8+QKrDBr9ewQXAAAAAQAKAAADigXMABsAW0AuERQOCAgEGBgbARkZHRwNDg4TEhIdCBdRWREICA0TGRUHGwAbUVkEAAACDQ8CAAA/PxI5LzMrEQAzGD8zEjkvMysRATMRMzMRMxESOREzMzMRMzMREjk5MTAT' + + 'MzUzFSEVIREyPgITMwMGBwEjAQ4BIxEjESMKgLQBMP7QHjA0QsO82F0jAWHI/uoTQRq0gAU5k5OD/aoQM1wBO/67iB39sAHxCAz+IwS2AAEAKQAABd8FgQAVAE5AKAsOCAICEhITBwgIDQwMEwADFhcOEQIRYFkLAgIADRMSBwMAFV9ZAAMAPysAGD8/MxI5LzMrEQAz' + + 'ERIBFzkRMzMRMxEzETMREjk5MTATIREyPgE3EzMBBgcBIwEOASMRIxEhKQKAS1pia83I/uWDMAH93v5VGW0nv/4/BYH9lSlvogEx/ma9I/z5AqsMGv17BOUAAAAAAQAoAAAETwQ6ABUAR0AkCw4IAggNDAwXAhISEwATFhcCEVFZCwICAA0TFQcPABVQWQAPAD8rABg/' + + 'PzMSOS8zKxESATk5ETMRMxEzETMzERI5OTEwEyERMj4CEzMDBgcBIwEOASMRIxEhKAHbHjA0QsO82F0jAWHI/uoTQRq0/tkEOv4mEDNcATv+u4gd/bAB8QgM/iMDrwABAKj+aAWnBYEADwBDQCMNDAoHDwYCAgMDDwwDERAGAV9ZBgYPBA8KX1kPEg0IBAMDEgA/PzMv' + + 'PysREgA5GC8rERIBFzkRMxEzETMzETMxMAEhESMRMxEhETMRMxEjESMEYf0Gv78C+r+HtJICjf1zBYH9rAJU+x/9yAGYAAAAAAEAjv5oBFcEOgAQAEZAJAYCAgMHEBAKCg4NAw0REgsKEApRWQYBUVkGBgQQFQ4IBA8DFQA/PzMvPxI5LysrEQAzERIBOTkRMzMRMxEz' + + 'ETMRMzEwASERIxEzESERMxE3MxEjESMDKf4ZtLQB57QBeaOLAe3+EwQ6/jYByvxHAv3lAZgAAAEAqAAABuAFgQANAD1AIA0IAAcDAwQEAAoDDw4HAl9ZBwcECQkMX1kJAwUDAAQSAD8zPz8rERIAORgvKxESARc5ETMRMxEzMzEwIREhESMRMxEhESEVIREEYf0Gv78C' + + '+gJ//kACjf1zBYH9rAJUnPsbAAAAAQCOAAAFCgQ6AA0APUAfAQsLDAcCCAQIDAMODw0PAQpRWQEBAwgMFQMGUFkDDwA/KwAYPzMSOS8rABg/ERIBFzkRMzMRMxEzMTABESERIRUhESMRIREjEQFCAecB4f7TtP4ZtAQ6/jYByov8UQHt/hMEOgABAKj+Vwi7BYEAIQBT' + + 'QCsaDAchIRQTEwADBAQADAMjIgkdX1kHCQkEBQUCX1kFAxQEEBAXX1kQAAQSAD8zxCsREgA5GD8rERIAORgvOSsREgEXOREzETMRMzMRMxEzMTAhESERIxEhETYzIAARFAIEIyIkJzceATMyEhEQJiMiBgcRBGH9Br8EeLvFAQkBEpP+9q68/v48si2Wg8LOsbVKqoQE' + + '5PscBYH95Fv+rP613P67qY+PHlpNASUBDQEO+iQz/TEAAQCI/lcGpgQ6ACIAVkAtFQcBHBwdDw4OHSAhIR0HAyQjAxlQWQEDAyEiIh9QWSIPDw8LHSEVCxJQWQsbAD8rABg/MxI5Lz8rERIAORgvOSsREgEXOREzETMRMxEzETMRMzEwARE2MzIeARUUDgEjIiYnNx4B' + + 'MzI2NTQuASMiBxEjESERIxEDznRzkuN8dNOLsdAush55ZpKVVZxidGa0/iK0BDr96SN13pef63uMjw1US722cKRWIP5jA7L8TgQ6AAAAAAIAPv/sBdwFlgArADcAWkAzFQkPLy8dNSQAJCcyBBodCQg4OTInGgQEAiAgLF9ZICASDRJfWQ0EBhhfWQYTAilfWQITAD8r' + + 'ABg/KwAYPysRADMYLysREgAXORESARc5ETMRMxEzETMxMCUGIyInBiMgABE0EjYzMhcHJiMiAhUQEjMyNyYCNTQSMzIeARUUAgcWMzI3ASIGFRQSFzYSNTQmBdxrhZqHha3+3f7IgOechFdPPFCVrNbTPE9Xa8GmZptTaVw9Q11H/k1XZWZRU19fKDw9PQF9AWDYAUuq' + + 'N4Ui/sHz/t7+2xNgAUCw7gEdiPOZq/7IYhMvA6DEo6j+2ElbARWentQAAAIAI//sBBIETAAmADIAYEA0JwAhIxgwDi0tGxQJCRswIQQ0MwQYIzAEHgIeKlBZHh4GDAwRUFkMEAYXUVkGFgIkUFkCFgA/KwAYPysAGD8rERIAORgvKxESABc5ERIBFzkRMxEzETMRMzMR' + + 'MzMxMCUGIyInBiMiAhEQEjMyFwcmIyIGFRQWMzcuATU0NjMyFhUQBxcyNwM0JiMiBhUUFhc+AQQSRmtaUlFo5vPWxElJQCA1anuekzJER5J2eY+KMEQwvjcuLzQ2Ly41IzclJQEdAQYBEAEtG38U7MvM2gNO3XWy4t6y/veUAycBeHaIinRpwTQ0ugAAAQBo/lcFeQWW' + + 'ACcAdkBFJSQkCAkOGAMeHhQYCQQpKA8lAQ0DJSUhIQBfWSEEFBoRERZgWREaGgwACBAIQAhQCJAIoAjQCOAICAwDCAgMDAZfWQwTAD8rEQAzGC9fXl0RMy/EKxESADkYPysRADMYL19eXRESARc5ETMRMxEzMxEzMTABIgAREAAzIBMXBgQHFhUUBiMiJzUWMzI1NCcm' + + 'JAI1EAAhMgQXBy4BAxjq/vwBD+cBKJWcS/79rx+AdHNTWVaBFc3+1p0BbAFC4QEuR7Ux2QT6/tP++v79/sUBJU6duxZ8Ul9uIocjf1BBBbMBSNoBUQF+sK08e4IAAQBX/lcDygROACgAgEBSERAQHR4jBRcKCgAFHgQqKR8RfxGPEd8RBCAdcB2AHdAd4B0FAB0QHWAd' + + 'cB2AHcAd0B0HCQMAACYHJgJRWSYbHR0hIRpRWSEVDRRQWRERDRAHFgA/PzMvKwAYPysRADMYLz8rERIAORgvX15dcV0REgEXOREzETMRMzMRMzEwARYzMjY1NCcmAhEQEjMyFhcHLgEjIgYVFBYzMjY3Fw4BBxYVFAYjIicBFVdOQDsX3unw4KbbHLkOcmmPgIiJYIEP' + + 'thKgeyJ3eGdU/vwiPT9PRwQBIAEOAREBH6yXDlpqvuHY0GhsDIGuG3dOa3EhAAAAAAEALv5oBLQFgQALADRAGwEGAwQKBAYIBAwNAAgJCF9ZCQMEBgYBX1kGEgA/KwAYEMY/KxEAMxESARc5ETMRMzEwAREzESMRIxEhNSEVAtCMsZn+HASGBOX7u/3IAZgE5ZycAAAB' + + 'ACP+aAOHBDoACwA1QBsGCwgJAwkLAQQMDQkLCwZRWQsVBQECAVFZAg8APysRADMYPysAGBDGERIBFzkRMxEzMTABITUhFSERMxEjESMBe/6oA2T+qHSjhQO3g4P8zP3lAZgAAQAUAAAEXwWBAAoAIkAPCgEBBAICCwwHAgkEAwISAD8/MxI5ERIBOREzMxEzMTABESMR' + + 'ATMBFzcBMwKWvv480gEmLS0BJ9ICSP24AkgDOf3AZ2YCQQAAAAEAB/5XA/kEOgAMACBADgoMDAIAAA4NBgkCDwAbAD8/MzkREgE5ETMzETMxMAERATMTFhc/ARMzAREBov5lwO4NOBA69r/+Xf5XAasEOP1QKMU1tgKy+8b+VwAAAQAUAAAEXwWBABAANkAaCggNDQIA' + + 'Dg4SEQwQABBfWQkFAAACDhIHAgMAPzM/EjkvMzMrEQAzERIBOREzMzMRMzMxMBMhATMBFzcBMwEhFSERIxEhPgFG/pDSASYtLQEn0v6LAUb+Zr7+ZgLgAqH9wGdmAkH9X5j9uAJIAAEAB/5XA/kEOgASADZAGgwKDw8CABAQExQQGwYACQIPDhIAElBZCwAVAD8yKxEA' + + 'Mxg/MxI5PxESATkRMzMzETMzMTAzIQEzExYXPwETMwEhFSERIxEhZAE+/mXA7g04EDr2v/5dAT7+wrT+wgQ6/VAoxTW2ArL7xor+4QEfAAAAAQAu/mgFQgWBAA8AT0AqAwAGCQQIBQQEAQIKDQ0MBwgIDAIMEBEGCQMABA8EDwpfWQ8SDQcEAwISAD8/My8/KxESABc5' + + 'ERIBOTkRMxEzETMRMxEzMxEzEhc5MTAJASMJATMJATMJATMRIxEjArH+UNMCGP4R0wGIAX3T/h4Bmoi0NgJo/ZgC3AKl/dcCKf1i/b39yAGYAAABABf+aAPyBDoADwBPQCoJBgADBAgFBAQBAgoNDQwHCAgMAgwQEQYJAwAEDwQPClFZDxUNBwQPAhUAPz8zLz8rERIA' + + 'FzkREgE5OREzETMRMxEzETMzETMSFzkxMAkBIwkBMwkBMwkBMxEjESMB/v7bwgGB/pHHAQ4BDMn+kQEqZKMuAbz+RAIsAg7+WwGl/fT+Vf3lAZgAAAEAMf5oBzkFgQAPAD5AIQQNCAULCgoFAg0ABRARCAQNBF9ZCw0SBgMDDwAPX1kAAwA/KxEAMxg/P8YrEQAzERIB' + + 'FzkRMxEzETMxMBMhFSERIREzETMRIxEhESExBJb+FAL1uq+0+5f+FQWBnPu7BOH7H/3IAZgE5QAAAAABACb+aAVeBDsADwA/QCEEDQgCBQsKCgUNAAQQEQgEDQRRWQsNFQYPAw8AD1BZAA8APysRADMYPz/GKxEAMxESARc5ETMRMzMRMzEwEyEVIREhETMRMxEjESER' + + 'ISYDTP7IAd20k6P8y/6gBDuM/NQDt/xJ/eUBmAOvAAAAAQCg/mgFOgWBABYAPEAfCQYRDhYUExMWBgMXGAwDX1kMDAcUFhYRX1kWEg8HAwA/Mz8rABgQxhI5LysREgEXOREzETMzETMxMAEOASMiJjURMxEUFjMyNxEzETMRIxEjA/Cbtkfe2r6ChpX1voy0lgH8Ihi1' + + 'uAJS/cJ7bDEC9Psf/cgBmAAAAAEARf7TBBcEJgAYADpAHgEAFxQDDAsLAwADGhkSBlBZEhIDFQwPAxhQWQEDFQA/zisAGD8zEjkvKxESARc5ETMRMzMRMzEwASMRIxEGIyIuATURMxUUHgIzMjcRMxEzBBeUlKaQbrxKtB4/WThmorR0/tMBLQGsNG+0dQEWyYVhRCQ2' + + 'AeH8bgABAKAAAASuBYEAFwBWQC0GAwwWFgkXDhISEREXAwMYGQ4TYFkODgkVAAkAX1kMCRcJCgoJFwMEEhIPBAMAPzM/Ehc5Ly8vETMrEQAzETMYLysREgEXOREzETMRMzMRMxEzMTABIiY1ETMRFBYXETMRNjcRMxEjEQYHESMCV9zbvnp/e3imvr60ansBwrO6AlL9' + + 'wnhsAwHU/jEKIgL0+n8B/CkK/vIAAAABAHoAAAOcBDoAFwBWQC0HBAwWFgkXDhISEREXBAMYGQ4TUVkODgkVAQkBUFkMCRcJCgoJFwMFEhUPBQ8APzM/Ehc5Ly8vETMrEQAzETMYLysREgEXOREzETMRMzMRMxEzMTABByImNREzERQXETMRNjcRMxEjEQYHFSMBwDaB' + + 'j7SScEJ2tLR3QXABeQKbjQGb/m6YCgEw/tYHIgIF+8YBzS8R1wAAAAABAKkAAATVBYEAEAAtQBYLBwcIABAIEBESDQRfWQ0NCAkDAAgSAD8zPxI5LysREgE5OREzETMRMzEwIRE0JiMiBxEjETMRJDMgGQEEF4CFsfq+vgEKqQG7Aj96bTL9DAWB/gQ7/pP9rQAAAP//' + + 'AI4AAAPuBcwSBgBLAAAAAgAK/+wGkwWWACIAKQBeQDEWESYZDQYHBycgIA0RAyorAA4YDl9ZJg8YAQsDGBMYEwocHCNgWRwEBgYKCgNfWQoTAD8rEQAzGC8/KxESADk5GC8vX15dMysRADMREgEXOREzMxEzETMzETMxMAEWADMyNjcXBgQjIAADIyImNTQ3MwYVFDsB' + + 'EgAhMgQSFRQHASIAByEmAAILEgEAzpvVObBS/snQ/tn+nBRDdokRpxZ6JxkBZgEhywE0pwX9X9z+/wwD2RL+9QJy5P76hXlGp60BVQExh386OzsycAEuAVix/r3NJD8Ckv726ukBCwAAAgAK/+wE/QROAB0AJABWQCweBx0kAAAXDBQPDwwdAyYlAA0WDVBZJBYRFhEJ' + + 'GhohUFkaEAYGCQkDUFkJFgA/KxEAMxgvPysREgA5ORgvLzMrEQAzERIBFzkRMxEzMxEzETMzMTABFBYzMjY3FwIhIgIDIyI1NDczBhUUOwE+ATMgERUnLgEjIgYHAfmalHWNGZ5h/qjo+Ao0/xGnFnoaFffUAd26D5CHg5kGAfe6yl5ILf8AAQYBBus9PjsycOHs/cEY' + + 'iqudr5kAAAAAAgAK/ssGkwWWACUALABtQDkZFAApKRwQCwwqByMjDBAUBC0uABEbEV9ZKQ8bAQsDGxYbFg0fHyZgWR8EDA1ACg0GBg0NA19ZDRMAPysRADMYLxEzGhDNPysREgA5ORgvL19eXTMrEQAzERIBFzkRMzMRMxEzMxEzETMxMAEWADMyNjcXBgQHESMRJAAD' + + 'IyImNTQ3MwYVFDsBEgAhMgQSFRQHASIAByEmAAILEgEAzpvVObBJ/vPDhv71/sQSQ3aJEacWeicZAWYBIcsBNKcF/V/c/v8MA9kS/vUCcuT++oV5RpSwDv7dASQUAVMBHId/Ojs7MnABLgFYsf69zSQ/ApL+9urpAQsAAgAK/soE/QROAB8AJgBrQDcWFBEmAAAZDgoL' + + 'BgcHIB8fCw4RBCcoAA8YD1BZJhgTGBMMHBwjUFkcEAsMQAkMBgYMDANRWQwWAD8rEQAzGC8RMxoQzT8rERIAOTkYLy8zKxEAMxESARc5ETMzETMRMxEzMxEzETMzMTABFBYzMjY3FwYFESMRJAMjIjU0NzMGFRQ7AT4BMyARFScuASMiBgcB+ZqUdY0Znlj+24b+chI0' + + '/xGnFnoaFffUAd26D5CHg5kGAfe6yl5ILecX/twBJigB4Os9PjsycOHs/cEYiqudr5n//wC9AAABfAWBEgYALAAA//8AHAAAB0cHKxImA8cAABEHCRsCXQE7ABZADQEkJAUmASYAJiwFHCUrETUAKxE1//8ABwAABVMF8BImA+cAABEHCRsBWQAAABZADQEkJBEmASYA' + + 'JiwFHCUrETUAKxE1AAEAqP5XBP8FgQAiAFNAKSAXHB0dDg4AFxMTFAgHBxQAFCQjIBcXEmBZFxccFQMIFAQEC19ZBBQSAD/EKxESADkYPzM5LysRADMREgE5OREzETMRMxEzETMRMxEzEjkxMCUUAgQjIiQnNx4BMzISNTQkISMRIxEzETI+ATcTMwEGBwQABP+V/van' + + 'vv7+PLIunH670f71/vbHv79LWmJrzcj+5XA0ARsBNdG8/t+dk5AeXU8BAuDa4P14BYH9lSlvogEx/mahMhf+0wAAAAEAjf5XBBkEOgAjAFZAKyEYHR4eDg4AGBQUFQgHBxUAFSUkIRgYE1FZGBgVHRYPCAgEFRUEC1BZBBsAPysAGD8SOS8/MxI5LysRADMREgE5OREz' + + 'ETMRMxEzETMRMxEzEjkxMCUUDgEjIiYnNx4BMzI2NTQuASsBESMRMxEyPgITMwMGBxYABBly0o6x0C6yHnlmkZZuw3yAtLQeMDRCw7zYVCblAQJcoep6jI8NVEu6t3+zXf4gBDr+JhAzXAE7/rt8JBb+8wAAAQAS/mYFUgWBABgAOkAfGBUTAREJERMDGhkYE19ZGBIR' + + 'AV9ZEQMWBgYLX1kGEwA/KwAYEMY/KwAYPysREgEXOREzETMzMTABIQMKAQYjIic1FjMyPgEaARMhETMDIxMjA9/+XjE4YI5+OhwTJTVDOjo6KgL/ubysipUE4f6Q/lr+sIsKmAdBlwEpAbMBQvss/bkBmgAAAAABAAv+yQTHBDoAFwA6QB8XFgIVBBMMExUDGRgTBFFZ' + + 'Ew8JDlBZAAkWAhVTWQIVAD8rABg/xisAGD8rERIBFzkRMxEzMzMxMAETIxEhCgEOASMiJzUWMzI2EhsBIREzAwNZjX7+iTtASm1WMiwZKzdDNyMsAs6qwv7JATcDt/5M/s+cSg2BCW4BDgEIAUX8Z/4oAAAAAQCo/lcFIAWBABcARkAjABcXCg0JCQoOBgYRChEYGQ0I' + + 'X1kNDQ8LAwAKFBQDX1kUChIAP8QrERIAORg/MzkvKxESATk5ETMRMxEzETMRMxEzMTAFHgEzMhIZASERIxEzESERMxEQACEiJCcBcC6njNS8/Qa/vwL6v/7P/uLI/uw5aFxOAQABEQGO/XMFgf2sAlT7bP6+/qyakwAAAQCO/lcD3QQ6ABcATUAmDgYGEQAXFwoNCQkK' + + 'EQoZGAAAFAoUA1BZFBsNCFFZDQ0KDwsPChUAPz8zEjkvKwAYPysREgA5GC8REgE5OREzETMRMxEzETMRMzEwBR4BMzI2NREhESMRMxEhETMRFAIjIiYnAUkTbGt+eP4ZtLQB57TfxbPNIoBWSrK1Aab+EwQ6/jYByvwF3/73hZcAAQCo/mYF2AWBAA8APUAfDw4CDQkF' + + 'BQYNBhEQCQRfWQkJBgsHAwAGEgINX1kCEgA/KwAYP8Y/MxI5LysREgE5OREzETMRMzMzMTABEyMRIREjETMRIREzETMDBHCKmf0Gv78C+r+4vP5mAZoCjf1zBYH9rAJU+yz9uQAAAAEAjv7JBJgEOgAPAENAIgIKCgcGBQENDQ4FDhEQAQxRWQEBCgMPDw4VCAoKBVNZ' + + 'ChUAPysAGBDGPz8zEjkvKxESATk5ETMRMxEzMzMRMzEwAREhETMRMwMjEyMRIREjEQFCAee0u8KsjY7+GbQEOv42Acr8Z/4oATcB7f4TBDoAAQCg/mgErgWBABYAQEAhCwgVFhABARMTFggDFxgOBV9ZDg4JFhRAFABfWRQSEQkDAD8zPysAGhgQzRI5LysREgEXOREz' + + 'ETMRMxEzMTAlMxEOASMiJjURMxEUFjMyNxEzESMRIwNli5u2R97avoKGlfW+lbSgAVwiGLW4AlL9wntsMQL0+n/+aAAAAAABAHr+aAOcBDoAFQA8QB8BFAoLBQ0NCAgLFAMWFwMRUFkDAwkGFQ8JDFFZCwkVAD/NKwAYPzMSOS8rERIBFzkRMxEzETMRMzEwAREUMzI3' + + 'ETMRIxEjETMRBwYjIiY1EQEupm6mtH2jbE6SfoGPBDr+bqIvAgX7xv5oAhsBSh44m40BmwABAKj+ZgbGBYEAIgBHQCUZFhYXIQUFAgEAAB0XAyMkIgMdEgkDFhgDDRYSAgVABQBfWQUSAD8rABoYEMw/Mz8SFzk/ERIBFzkRMzMzETMRMxEzMTAlMwMjEyMRND8BBwYH' + + 'ASMBLgEvAR8BESMRMwEeARc+ATcBMwYCxLysipIIAQkoJ/6Uhv6PCkQFBgQDqvsBdxQlBggzCQFw9a39uQGaA6x9jx8iimv8QAPAGNcWEnC7/FQFgfwvO4ceKKMVA9EAAAAAAQCO/skFoQQ6ABgAR0AlDhUVEhEQCAUFBgYLEAMaGRIVQBUQU1kVFQ4PCwIYAwYHDwEG' + + 'FQA/Mz8SFzk/PysAGhgQzBESARc5ETMRMxEzMzMRMzEwISMBFhURIxEhExYXNjcTIREzAyMTIxE/AQMTmf68Bq4BGNw0EBYu3AENrsKsjXoDBQO3nEf9LAQ6/WuPj6F9ApX8Z/4oATcC1HJz//8AigAAAT4FzBIGAE8AAP//AAQAAAVSBvMSJgAkAAARBwklAXoAAAAW' + + 'QA0CEREFJgIUBBQcBAclKxE1ACsRNf//AFf/7ARzBeYSJgBEAAARBwKaAQ8AAAAYtgIxMREmAjS4/9S0NDoDGyUrETUAKxE1AAD//wAEAAAFUgayEiYAJAAAEQcJIgFuAAAAGkAPAwIYGAUmAwIWBhYUBAclKxE1NQArETU1//8AV//sBHMFexImAEQAABEHAGoA8QAA' + + 'AB1ACQMCODgRJgMCNrj/0LQ2NAMbJSsRNTUAKxE1NQD//wAYAAAHqAWBEgYAiAAA//8AQv/sBsIEThIGAKgAAP//AKgAAAT+BvMSJgAoAAARBwklAZwAAAAYtgEMDAUmAQ+4//60DxcBCyUrETUAKxE1AAD//wBX/+wEGAXmEiYASAAAEQcCmgEUAAAAFkANAhoaESYC' + + 'HQYdIwwSJSsRNQArETX//wBe/+wFpwWWEAYBUQAA//8AV//sBBgEThAGAhsAAP//AF7/7AWnBrISJgFRAAARBwkiAbEAAAAdQAkDAicnBSYDAiW4//K0JSMdFSUrETU1ACsRNTUA//8AV//sBBgFexImAhsAABEHAGoA5gAAAB1ACQMCISERJgMCH7j/8rQfHRIMJSsR' + + 'NTUAKxE1NQD//wAcAAAHRwayEiYDxwAAEQcJIgJtAAAAHUAJAgErKwUmAgEpuP//tCknBRwlKxE1NQArETU1AP//AAcAAAVTBXsSJgPnAAARBwBqAWsAAAAaQA8CASsrESYCASkBKScFHCUrETU1ACsRNTX//wBD/+wEcAayEiYDyAAAEQcJIgEpAAAAGkAPAgEvLwUm' + + 'AgEtEy0rAyUlKxE1NQArETU1//8AMf/sA14FexImA+gAABEHAGoAjAAAABpADwIBLCwRJgIBKggqKAMiJSsRNTUAKxE1NQABAE3/7ASGBYEAGgBUQCsEAxQODhEPExMJFxcRAwMbHA4UFA1gWRQUABETEBEQX1kRAwAGX1kEBAATAD8yLysAGD8rEQAzERI5GC8rEQAz' + + 'ERIBFzkRMzMRMxI5ETMRMzEwBSIkJzcSITI2NTQmKwE1ASE1IRUBHgEVFA4BAnfM/vhWpXcBB5mwwMo/Abj81gQI/jfO73/sFKG7Tf7woYeFk5IBjpyl/nEL3LKD0HUA//8ARP5XBAsEOhIGAlQAAP//AKgAAAUYBpwSJgPJAAARBwKLAZsBSQAWQA0BDw8FJgEQABAR' + + 'AQglKxE1ACsRNf//AI4AAAPqBVMSJgPpAAARBwKLAQQAAAAWQA0BDw8RJgEQDRARDQUlKxE1ACsRNf//AKgAAAUYBrISJgPJAAARBwkiAZYAAAAdQAkCARUVBSYCARO4//q0ExEBCCUrETU1ACsRNTUA//8AjgAAA+oFexImA+kAABEHAGoA9wAAAB1ACQIBFRURJgIB' + + 'E7j//7QTEQ0FJSsRNTUAKxE1NQD//wBh/+wF1wayEiYAMgAAEQcJIgHgAAAAGkAPAwIiIgUmAwIgByAeCAAlKxE1NQArETU1//8AVv/sBB0FexImAFIAABEHAGoA/QAAABpADwMCHh4RJgMCHAccGgYAJSsRNTUAKxE1NQADAGH/7AXXBZYADgAVABwAP0AgGRMTCBoS' + + 'EgAIAB0eGRNfWRkZBAsLFl9ZCwQED19ZBBMAPysAGD8rERIAORgvKxESATk5ETMRMxEzETMxMAEUAgQjIiQCNRAAITIEEgEyADchFgATIgQHISYkBdep/sTX2f7FpgFyAUrXATyn/UTnAQMN/BMPAQfi2f79GQPmGf78Asfd/rSysAFN3gFSAX2r/rr84gEO9+/+6gRz' + + '8N3b8gADAFb/7AQdBE4ACgARABgAP0AgFg4OABUPDwYABhoZFQ9RWRUVAwgIElBZCBADC1BZAxYAPysAGD8rERIAORgvKxESATk5ETMRMxEzETMxMAEQAiMiAhEQITISATI2NyEeARMiBgchLgEEHfru7fIB5fjq/haYjQf9tQeLmI6NDQJHC4QCHv7k/uoBIQERAjD+' + + '7/00tse+vwNYpbOwqAD//wBh/+wF1wayEiYEmQAAEQcJIgHeAAAAGkAPBAMkJAUmBAMiBSIgCAAlKxE1NQArETU1//8AVv/sBB0FexImBJoAABEHAGoA+gAAABpADwQDICARJgQDHgQeHAYAJSsRNTUAKxE1Nf//AGn/7AV5BrISJgPeAAARBwkiAZEAAAAdQAkCASQk' + + 'BSYCASK4/+S0IiAQCiUrETU1ACsRNTUA//8AN//sA74FexImA/4AABEHAGoAsQAAAB1ACQIBIyMRJgIBIbj/+rQhHwAWJSsRNTUAKxE1NQD//wA3/+wFHwacEiYD1AAAEQcCiwF4AUkAFkANARUVBSYBFhIWFwsPJSsRNQArETX//wAF/lcD/AVTEiYAXAAAEQcCiwDI' + + 'AAAAFkANARgYESYBGQ0ZGgkSJSsRNQArETX//wA3/+wFHwayEiYD1AAAEQcJIgF/AAAAGkAPAgEbGwUmAgEZFxkXCw8lKxE1NQArETU1//8ABf5XA/wFexImAFwAABEHAGoAyAAAABpADwIBHh4RJgIBHAscGgkSJSsRNTUAKxE1Nf//ADf/7AUfBvESJgPUAAARBwkk' + + 'AXwAAAAaQA8CAR8fBSYCARVoFR4LDyUrETU1ACsRNTX//wAF/lcD/AXkEiYAXAAAEQcCnwDXAAAAGkAPAgEiIhEmAgEYbhghCRIlKxE1NQArETU1//8AoAAABK4GshImA9gAABEHCSIBcAAAABpADwIBGhoFJgIBGAwYFgcRJSsRNTUAKxE1Nf//AHoAAAOcBXsSJgP4' + + 'AAARBwBqANIAAAAaQA8CARkZESYCARcKFxURCCUrETU1ACsRNTUAAQCo/mgELwWCAAkALkAYBQYDCAgGAAMLCgkCX1kJAwYICANfWQgSAD8rABgQxj8rERIBFzkRMxEzMTABFSERMxEjESMRBC/9OIuxmQWCnPu6/cgBmAWCAAEAjv5oAq8EOgAJAC5AGAMIBQYABggD' + + 'CgsJAlFZCQ8GCAgDUVkIFQA/KwAYEMY/KxESARc5ETMRMzEwARUhETMRIxEjEQKv/pN0o4UEOoP8zP3lAZgEOv//AKgAAAZtBrISJgPcAAARBwkiAkQAAAAdQAkEAx8fBSYEAx24//20HRsFFyUrETU1ACsRNTUA//8AjgAABTIFexImA/wAABEHAGoBmgAAAB1ACQQD' + + 'Hx8RJgQDHbj//rQdGwgXJSsRNTUAKxE1NQAAAf///lcELwWCABkAVkAtEBkZAQoODhQFAwEBDAcDGxoSF19ZEg0DBANgWQoEBAEGBglfWQYDAQ5fWQESAD8rABg/KxESADkYLzMrEQAzGC8rERIBFzkRMzMzMxEzETMRMzEwISMRIzUzESEVIREhFSERMxEQISInNRYz' + + 'MjUBFW2pqQOH/TgBpP5cWf7nO0kyRXsCk5MCXJz+QJP+CP7k/tgQoBKUAAAAAQAA/lcCrwQ6ABkAXkAwCg4OFxcZARISGQgMDAMZBRkbGgsBAgFQWQgCAhkEGQxQWRkVEBVQWRAbBAdRWQQPAD8rABg/KwAYPysREgA5GC8zKxEAMxESATk5ETMzETMRMxEzETMRMxEz' + + 'MTATIzUzESEVIREzFSMRMxEQISInNRYzMj0BI456egIh/pPLy1P+5zNJMT5+XwIChAG0g/7PhP6Z/uT+2BCgEpF6AAEALv5XBUsFgQAaAEdAJgYYFQ8SBRMWFxcLABQTExARABEcGxYDDxIYFQQQFAMDCF9ZAxASAD/MKwAYPxIXOT8REgE5OREzMxEzETMzETMSFzkx' + + 'MAUUBiMiJzUWMzI2NTQuAQkBIwkBMwkBMwkBFgVLoIA7STo9NUMfVf6P/lDTAhj+EdMBiAF90/4eAd9Mo3SSEKAVPD8dSXwCGf2YAtwCpf3XAin9Yv1bdQABABf+VwP+BDoAGgBGQCYSDxUYBgUTFhcXCwAUExMQEQARHBsDCAhZAxsVGBIPBBEWEw8RFQA/PzMSFzkQ' + + 'zCsREgE5OREzMxEzETMzETMSFzkxMAUUBiMiJzUWMzI2NTQuAQMBIwkBMwkBMwkBFgP+kXg7STo4OTokbsb+28IBgf6RxwEOAQzJ/pEBRFaYfZQQoBVBMiVbqQEu/kQCLAIO/lsBpf30/jF7AAAAAQAuAAAFKwWBABEAUkAoAQoGDg4LDAwAEQYJCAgCAxEDExIQBQYF' + + 'X1kNAQMKCAYGAwsIAwADEgA/Mz8zEjkvEjkSOTMrEQAzERIBOTkRMzMRMzMRMzMRMzMREjk5MTAhCQEjASE1IQEzCQEzASEVIQEEWP5Z/lDTAd7+qAFX/kzTAYgBfdP+UwFO/roBzgJo/ZgCkZgCWP3XAin9qJj9bwAAAAABABcAAAPqBDoAEQBSQCgKAQYODgsMDAAR' + + 'BgkICAIDEQMTEhAFBgVQWQ0BAwoIBgYDCwgPAAMVAD8zPzMSOS8SORI5MysRADMREgE5OREzMxEzMxEzMxEzMxESOTkxMCEJASMBITUhATMJATMBIRUhAQMh/t3+28IBUP7MATD+xscBDgEMyf7FATb+yAFUAbz+RAHmkgHC/lsBpf4+kv4aAAAAAAIAWAAABJoFgQAL' + + 'ABIANEAaDAAFDw8IAAgTFAQRX1kEBAkGCQ5fWQkSBgMAPz8rERIAORgvKxESATk5ETMRMxEzMTATND4BMyERMxEhIiQ3ECkBESEgWHPclgGev/2v7f78wAFIAXv+ff7AAaiBxm0CJfp/3sz+7wIsAP//AFb/7APvBcwSBgBHAAAAAgBb/+wHOQWBAAsAJgBOQCgeIQwZ' + + 'GRYHByEAEiESKCckG2BZJBMfHxUVCV9ZDBUVDxcDDwNgWQ8SAD8rABg/EjkvOSsRADMYLz8rERIBOTkRMxI5ETMzEjkRMzEwARQWMzI+AT0BISIGAQ4BIyIkNTQkMyERMxEQMzI2NREzERQGIyImARunmXyvVf6IpKQDAkzoqeL+/QEF7AGPv/t+cbXlvozBAZeFi1Gc' + + 'brGD/qliV+K7vtICVPw3/sWbnwGR/kXA4W8AAAACAFb/7AZ7BcwAHQApAFVALB0CBxcXFBMkHg0NJAIDKyoVAAcKEw8AAAoPDydQWQ8QCiFQWQoWBRpQWQUWAD8rABg/KwAYPysREgA5GC8SORI5PxESARc5ETMRMzMzEjkRMzEwATMVFAYjICcOASMiAhEQITIWFzMn' + + 'ETMRFBYzMjY1JRQWMzI2NTQmIyIGBca14sD++l86yI7NwQGOe6QyAgK0cX5+cPtNeIeZioqXiHkCeum/5stpYgEUARgCNlpieQHB++mfn56fauPE1N/XyMkAAAEAYP/sByIFlQApAFFAKhkMDB8DJCcnAwgTBCorHAgHCAdgWSUlCAgAFhISFhYPX1kWBAAiYFkAEwA/' + + 'KwAYPysRADMYLxESOS8zLysREgA5ERIBFzkRMxEzMxEzMTAFIiY1NCYrATUzMjY1NCYjIgYHJzYkMzIWFRQGBx4BFRQWMyAZATMRFAYFZMvdvtlHR7WtkYd+rDOyRgEIyNT8kIiZp3t8AQi1+RThz350lHd7a3t1gj2tqMepf6YgFpx/npQBOgGR/kW85QAAAAEAVf/s' + + 'BgEETgAmAFFAKhwCAhUJISQQBQkkBCgnGAYFBgVQWSIiBgYAEg8PEhIMUFkSEAAfUFkAFgA/KwAYPysRADMYLxESOS8zLysREgA5ERIBFzkRMxEzMxEzMTAFIAMuASM1MjY1NCYjIgYHJxIhMhYVFAYHFR4BFx4BMzIRNTMVFAYET/6PLg6Tu6GYY11ZcQyiLgFLqM6R' + + 'Z5B6CQqCZP216xQBS2dViVRYSlZKRhQBAp9+ZYgJAg9jYXt0AT3G6cHkAAAAAQBg/mgFBwWVACMAU0ArEBEKFxcjHiEgIB4FEQQkJRoGBQYFYFkGBhQhIyMeX1kjEhAQFBQNX1kUBAA/KxEAMxgvPysAGBDGEjkvKxESADkREgEXOREzETMzETMRMzEwATQuASsBNTMy' + + 'NjU0JiMiBgcnNiQzMhYVFAYHHgEdATMRIxEjA7xKm7JHR7WtkYd+rDOyRgEIyNT8kIiqlpm0lwF1ano1lHd7a3t1gj2tqMepf6YgGKeS7/3IAZgAAAAAAQBV/mgD1gROAB8AVUAsExQNGRkFAAMCAgAJFAQgIRwKCQoJUFkKChYFExMWFhBQWRYQAwUFAFFZBRUAPysA' + + 'GBDGPysRADMYLxESOS8rERIAORESARc5ETMRMzMRMxEzMTAlMxEjESMRNCYjNTI2NTQmIyIGBycSITIWFRQGBxUEFQNfd6ODo7mhmGNdWXEMoi4BS6jOkWcBE4P95QGYASVqZIlUWEpWSkYUAQKffmWICQId3AAAAAEAEv/sB0EFgQAiAENAIwUVFwMdICADFQwEIyQe' + + 'HgoVFQVfWRUDCg9fWQoTABpgWQATAD8rABg/KwAYPysREgA5GC8REgEXOREzETMRMzEwBSImNREhAwoBBiMiJzUWMzI+ARoBEyERFBYzMjY1ETMRFAYFksfs/l4xOGCOfjocEyU1Qzo6OioC/3iCgne17BTgwQNU/pD+Wv6wiwqYB0GXASkBswFC/DaenJyeAZH+Rb/i' + + 'AAEAC//sBsEEOgAgAENAIwUUFgMbHh4DFAwEISIcHAoUFAVRWRQPCg9QWQoWABhQWQAWAD8rABg/KwAYPysREgA5GC8REgEXOREzETMRMzEwBSImNREhCgEOASMiJzUWMzI2EhsBIREQMzI2PQEzFRQGBRbA7v6JO0BKbVYyLBkrN0M3IywCzvh+ebXsFOi9Aib+TP7P' + + 'nEoNgQluAQ4BCAFF/Xr+w56fxum+5wABAKj/7AfDBYEAGQBHQCQKBgYHDgsDFBcXAwcDGhsVFQoKBV9ZCgoHDAgDBxIAEWBZABMAPysAGD8/MxI5LysRADMYLxESARc5ETMRMzMRMxEzMTAFIiY1ESERIxEzESERMxEUFjMyNjURMxEUBgYUx+z9Br+/Avq/c4KCd7Xs' + + 'FODBAQD9cwWB/awCVPw2npycngGR/kW/4gAAAAABAI7/7AaBBDoAGABDQCMBFhYXBQITCg0NExcDGRoBFVFZAQsBCxcDGA8XFRAHUFkQFgA/KwAYPz8zEjk5Ly8rERIBFzkRMxEzMxEzETMxMAERIREzERAzMjY9ATMVFAYjIiY9ASERIxEBQgHntPl+eLXrv8Xp/hm0' + + 'BDr+NgHK/Xr+w56fxunA5ePCXP4TBDoAAAD//wBn/+wFoAWWEAYAKgAA//8AXv/sA+8EThIGAiQAAAABAC7/7AV0BYEAFQA5QB0KAxATEwgDBgQWFxERAAYJBQYFX1kGAwANYFkAEwA/KwAYPysRADMREjkYLxESARc5ETMRMzEwBSImNREhNSEVIREUFjMyNjURMxEU' + + 'BgPFx+z+HASG/hx0goJ3tewU4MEDWJyc/NKenJyeAZH+Rb/iAAEAI//sBM0EOgAVADxAHgQTAgoKDQ0TAAMWFwsLEAAQB1BZEBYDFQAVUVkADwA/KxEAMxg/KxESADkYLxESARc5ETMRMxEzMTATIRUhERQWMzI2PQEzFRQGIyImNREhIwNk/qh1fn54teu/vur+qAQ6' + + 'g/39n56en8bpwOXmvwImAAAAAAEAUv/sBH8FlQAmAFpALQYaCA8ODiMkFQgIHgMkAygnBhgbGBtgWRgYAAsLEl9ZDw8LBCMjAAAhX1kAEwA/KxEAMxgvPzMvKxESADkYLysREgA5ERIBOTkRMzMRMxEzMxEzEjk5MTAFIiQ1NDY3JDU0JDMyBBcHLgEjIgYVFBY7ARUj' + + 'IgYVFBYzIBMXBgQCW+/+5qeb/ugBB9PEAQFHsjSke4iarbVHR8rAtZoBA3WlWf77FO/CgasXQ/iq0KSxPYVye2t7d5R2hX+PARBNvKAAAAAAAQBJ/+wDdgROACUAXkAvBwYaBgoQDw8iIxYKCh0DIwMnJgYZGhkaUFkZGQANDRNQWRAQDRAiIgAAIFBZABYAPysRADMY' + + 'Lz8zLysREgA5GC8rERIAORESATk5ETMzETMRMzMRMxI5OREzMTAFIiY1NDY3NS4BNTQ2MyATBy4BIyIGFRQWMxUiBhUUFjMyNxcOAQHdv9WWfGuN0aUBSy6iDHBaXWOWo6enb2XJNZ8txhSrlmyTDQIJhWOBof7+FEZKVkpXVYlmYVRmpCyBfQAAAAEAEv5XBJkFgQAd' + + 'ADtAIQAQHBISFxAHBB4fEABfWRADFRpfWRUFBQpfWQUIX1kFEwA/KysAGBDEKwAYPysREgEXOREzETMxMAEDCgEGIyInNRYzMj4BGgETIREUBiMiJzUWMzI1EQI9MThgjn46HBMlNUM6OjoqAv+ZjztALEJ7BOH+kP5a/rCLCpgHQZcBKQGzAUL5/pGXDqAQlAVYAAAB' + + 'AAv+VwQdBDoAHAA1QB0MGwoAAAQbEwQdHhsMUVkbDxEWUFkRFgIHUFkCGwA/KwAYPysAGD8rERIBFzkRMxEzMTAFECEiJzUWMzI2NREhCgEOASMiJzUWMzI2EhsBIQQd/uc9QCxENzr+iTtASm1WMiwZKzdDNyMsAs6B/tgOnBBDUQQy/kz+z5xKDYEJbgEOAQgBRQAA' + + '//8AYf59BdcFlhIGADQAAP//AFb+VwPwBE4SBgBUAAD//wAJAAAHhgWBEgYAOgAA/////QAABcwEOhIGAFoAAAAB/0T+fwC+/8sAFAAhQBMRBQ4OCt8BAQABQAFQAWABBAEQAC/MXV0yOS8zMzEwEyM1NCYjIgYdASM1NDY3NTMVHgEVvmYmMDMnZENGZkhD/n8vNi4u' + + 'Ni8xWFoLXl4LW1cAAAAAAwArBU4Brga8AAsAFwAjAChAFhUJCQ8PAwGvA+8D/wMDA0AJDUgDGyG4AT4APzPMK11xMjIRMzEwEzQ2MzIWFRQGIyImNzQ2MzIWFRQGIyImBzQ2MzIWFRQGIyImKy4gIi4uIiAu5S4gIi4uIiAuci4gIi0tIiAuBm8gLS0gIi4uIiAtLSAi' + + 'Li6vIi4uIiAwMAAAAAH/bQVOAJMG/AALAAuxAAa4AT4AP8wxMBMHFwcXByM3JzcnN5Obm5ubsHabm5ubmwb8VlZWVlZWVlZWVgAAAAACAF4FTgEABrwACwAXACJAEwkPAwGvA+8D/wMDA0AJDUgDDxW4AT4APzPMK11xMjEwEzQ2MzIWFRQGIyImBzQ2MzIWFRQGIyIm' + + 'YC4gIjAvIyAuAjAgIDAvISIuBm0iLS0iIC4uryIuMCAgMC4AAAAAAwBgBU4Bxwa8AAsAFwAbAChAFhkDGAkPAwGvA+8D/wMDA0AJDUgDDxW4AT4APzPMK11xMsQQxDEwATQ2MzIWFRQGIyImFTQ2MzIWFRQGIyImBxEzEQEnLiIgMDAgIi4uICEvLiIgLsdvBm0iLS0i' + + 'IC4uryAwLyEiLi4uAW7+kgAB/07+fwCW/64ABwAQtwMABBAEAgQAAC/MXTIxMAcUFjMVIiY1RHRmnKxSXGlqoI8AAAAAAf9oBVgAmAaoAAMAC7EDAbgBPgA/zTEwEwcnN5iYmJgGAKioqAAAAAH+1QVQASsGgwAhACBADREcAAscCxwLDxcBFwa4AT4AP8xdOTkvLxEz' + + 'ETMxMAMiBhUUFwcmNTQ2MzIWFx4BMzI2NTQnNxYVFAYjIiYnLgGcHCU5Gm1SQS9RNSg3IBwlORptUT4yUzQsMQY5JiVAFkgmeEFSNUo5LyYlQBZIKXVBUjZJPioAAAAB/rgFTgAABn8ABwATtwMPBB8EAgQAuAE+AD/MXTIxMAM0JiM1MhYVb3Fomq4FTlxobZ+SAAAA' + + 'AAEAAP5/AUL/5wAFAAixAQQAL8wxMAEjJzczBwFCkLKykLP+f7S0tAAC/yn+fwCW//IABwATABVACQcHBEADAQMRCwAvM8xdMjkvMTAXFAYjNTI2NQU0NjMyFhUUBiMiJpaqnmV2/wAuICEvLiIgLlKNomppXAwgMC8hIi4uAAAAAQAABU4BSAZ/AAcAE7cEDwMfAwID' + + 'ALgBPgA/zV0yMTARNDYzFSIGFa6aZnMFTpGgbWVf//8AAAVOAUgGfxAGBNQAAAAC/rgFTgFIBn8ABwAPABxADAwLCwQPAx8DAgMIALgBPgA/Ms1dMjIRMzEwETQ2MxUiBhUhNDYzFSIGFa6aZnP+SaycZnMFTpGgbWVfj6JtZV8AAAAE/fYFOwIKBykADwAbACsANwAh' + + 'QBAZAwMvLykBKRM1NQlQIwEjAC9dMzMRM8RdMjIRMzEwEzQ2MzIWFRQGIyInByc3JjcUFjMyNjU0JiMiBgUUBxcHJwYjIiY1NDYzMhYHNCYjIgYVFBYzMjZafllbfnxdOy1YUlgdeTcnKDo8JiQ6/tMdWFJYLTtcfX5bWX55OiQmPDooJjgGUll+fVpZfhhYVFgvPCg4' + + 'OScnOTgoPC9YVFgYfVpZfn5ZKDg6Jic5OAAAAgAABTsB7AcpAA8AGwAVQAoZLwMBAxNQCQEJAC9dM8RdMjEwEzQ2MzIWFRQGIyInByc3JjcUFjMyNjU0JiMiBj1+WViAflo5MVZUWBt3OCgpODonJjoGUll+fFtafRhYVFguPSg4OCgoODgAAf9cBU4AqAaaABEAGEAJ' + + 'DQQECQ8AAQAIuAE+AD/MXTI5LzMxMBMVFAYjIicVIxEzFRYzMjY9AahXVyIXZWUKITAmBpoyWGYKZgFMigwtNzIAAAAAAf9E/n8Avv/LABQAIUATDwMGBt8FAQAFQAVQBWAFBAUTCwAvM8xdXTkvMzMxMBcUBgcVIzUuAT0BMxUUFjMyNj0BM75FRmZDRmQnMzAmZmZa' + + 'WgtcXApaWzExNTAwNTEAAf9I/qQAj//dAAUADrUDAAIBAgAAL8xdMjEwFxEhNTM1j/652yP+x2rPAAAB/17+fwCi/+cABQAIsQEEAC/MMTATIyc3MweikLS0kLT+f7S0tAAAAf9q/n8Asv+uAAcAELcEAAMQAwIDAAAvzV0yMTAXFAYjNTI2NbKrnWZ0Uo+gampbAAAA' + + 'AAL+uP5/AUj/rgAHAA8AGUAMDAsLBAADEAMCAw8AAC8yzV0yMhEzMTAVFAYjNTI2NSEUBiM1MjY1q51ncgG3qp5nclKPoGprWo2iamtaAAAAAf9i/n8AnP/4AAcADLRAAQEBBQAvzF0xMBMFNTcnJRUHnP7jjaoBH4/+sjNQFuAzTBkA////XAVOAKQGfxAHBNEApAAA' + + 'AAAAAv4UBTsAAAcpAA8AGwAVQAoTLw0BDRlQBwEHAC9dM8RdMjEwAxQHFwcnBiMiJjU0NjMyFgc0JiMiBhUUFjMyNj0bWFRWMjhZf4BYV4B3OiYnOjgpKDgGUj0uWFRYGHxbWn1+WSg4OScoODj///9E/n8Avv/LEAYE2gAAAAH/XgVOAKIGtgAFAAuxBAG4AT4AP8wx' + + 'MBMjJzczB6KQtLSQtAVOtLS0AAAAAf9IBU4AjwaHAAUAEbUPAAEAAwK4AT4APzPMXTEwExEhNTM1j/652waH/sdqzwD//wAA/n8BSP+uEAcEzgCyAAAAAP///aoFUAAABoMQBwTQ/tUAAAAAAAL/KQV7ANcHKQALABcAELYVLwMBAw8JAC8zzF0yMTADNDYzMhYVFAYj' + + 'IiY3FBYzMjY1NCYjIgbXfllZfnxbW3x3OCgoODomJjoGUll+fllZfn5ZKDg4KCg4OAAAAv+w/n8AUP/uAAsAFwAXQAwPABUBQBWgFQIVCQMALzPMXXEyMTAHNDYzMhYVFAYjIiYVNDYzMhYVFAYjIiZQLyEiLjAgIDAwICAwLyEiLmIhLzAgIC4uryIuMCAgMC4ABf7T' + + '/n8BLf/uAAsAFwAjAC8AOwAnQBQzGxs5ACEBQCGgIQIhLRUJCScPAwAvMzMzETMzzF1xMjIRMzEwBTQ2MzIWFRQGIyImNzQ2MzIWFRQGIyImBzQ2MzIWFRQGIyImJTQ2MzIWFRQGIyImBzQ2MzIWFRQGIyIm/tMuICIuLiIgLuUuICIuLiIgLnItICMtLSMgLQFJLiAi' + + 'Li4iIC4CMCAgMC8hIi5gIC4uICIuLiIgLi4gIi4uryIuLiIgMDDvIi4uIiAuLq8iLjAgIDAuAAP+8v5/ARD/7gADAA8AGwAdQA8AAQETABkBQBmgGQIZDQcALzPMXXEyOS8zMTAFNSEVNzQ2MzIWFRQGIyImFTQ2MzIWFRQGIyIm/vIBRzgtIyAvLyAjLS0gIy0tIyAt' + + 'om1tQCIuLiIgLi6vIDAwICIuLgAAA/7y/n8BEP/uAAcAEwAfACFAEQYCAgMDFwAdAUAdoB0CHRELAC8zzF1xMjkvMxEzMTADNSM1IRUjFTc0NjMyFhUUBiMiJhU0NjMyFhUUBiMiJqBuAUdqoi0jIC8vICMtLSAjLS0jIC3+7HJtbXKyIi4uIiAuLq8gMDAgIi4uAAAB' + + '/7D+pABQ/0IACwAIsQkDAC8zMTADNDYzMhYVFAYjIiZQLyEiLjAgIDD+8iEvMCAgLi4AAv89/qQAw/9EAAsAFwAOtBUJCQ8DAC8zMxEzMTADNDYzMhYVFAYjIiY3NDYzMhYVFAYjIibDMCAgMC8hIi7oLiAhLy4iIC7+9CIuMCAgMC4iIDAvISIuLgAAAAAD/z3+fwDD' + + '/+4ACwAXACMAHUAPGwAhAUAhoCECIRUJCQ8DAC8zMxEzzF1xMjEwBzQ2MzIWFRQGIyImNzQ2MzIWFRQGIyImBzQ2MzIWFRQGIyImwy4iIi4wICAw6C4gIi4wICAudTAgIDAvISIuYiIuMCAgMC8hIi4uIiIuMK8gLi4gIDAwAAAAAf9c/xkApP+DAAMADLQDBwEBAQAv' + + 'XTMxMAchFSGkAUj+uH1qAAAAAAH/XP6kAKT/gwAHAAawAgAvMTADNSM1IRUjFTVvAUhr/qR1amp1AAAB/7AFpgBQBkYACwALsQMJuAE/AD8zMTADNDYzMhYVFAYjIiZQMCAgMC8hIi4F9iAwMCAgMDAA////sAWmAFAGRhAGBPEAAAAD/xL+fwDw//AACwAXACMAG0AN' + + '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' + + 'ARIFEh4CCCUrETUAKzUAAP//AAcAAAP5Bb0SJgBZAAARBwKeAK4AAAAWtQEUESYBFLj//rQUIAIKJSsRNQArNf//AAn+yQVNBYESJgA5AAARBwkzA0AAAAAPsQEKuP/+tAoMAgglKxE1AAAA//8AB/7JA/kEOhImAFkAABEHCTMCjQAAAA+xAQy4//a0DA4CCiUrETUA' + + 'AAD//wAJAAAHhgbwEiYAOgAAEQcJHgJBAAAAGLYBGhoFJgEbuP+4tBseCRklKxE1ACsRNQAA/////QAABcwF5BImAFoAABEHAEMBSAAAABi2ARUVESYBFrj/orQWGQgUJSsRNQArETUAAP//AAkAAAeGBvASJgA6AAARBwkfAvcAAAAUQAwBGgUmARpLGh0JGSUrETUA' + + 'KzUAAP////0AAAXMBeQSJgBaAAARBwB2AiYAAAAUQAwBFREmARVdFRgIFCUrETUAKzUAAP//AAkAAAeGBrISJgA6AAARBwkiAoYAAAAaQA8CARoaBSYCAR4CHhwJGSUrETU1ACsRNTX////9AAAFzAV7EiYAWgAAEQcAagGhAAAAGkAPAgEVFREmAgEZABkXCBQlKxE1' + + 'NQArETU1//8ACQAAB4YG8RImADoAABEHApsC0gElABZADQEdHQUmARsAGx0JGSUrETUAKxE1/////QAABcwFzBImAFoAABEHApsB7gAAABZADQEYGBEmARYAFhgIFCUrETUAKxE1//8ACf7JB4YFgRImADoAABEHCTMEXwAAAAy3ARsAGx0JGSUrETUAAP////3+yQXM' + + 'BDoSJgBaAAARBwkzA3wAAAAMtwEWABYYCBQlKxE1AAD//wAuAAAFKwbxEiYAOwAAEQcCmwG/ASUAFkANAQ8PBSYBDQgNDwMLJSsRNQArETX//wAXAAAD6gXMEiYAWwAAEQcCmwEJAAAAGLYBDw8RJgENuP//tA0PAwslKxE1ACsRNQAA//8ALgAABSsGshImADsAABEH' + + 'CSIBbwAAABpADwIBExMFJgIBEQYRDwMLJSsRNTUAKxE1Nf//ABcAAAPqBXsSJgBbAAARBwBqALoAAAAdQAkCARMTESYCARG4//20EQ8DCyUrETU1ACsRNTUA//8ALQAABSkG8RImADwAABEHApsBuAElABZADQEMDAUmAQoDCgwECCUrETUAKxE1//8ABf5XA/wFzBIm' + + 'AFwAABEHApsBGQAAABZADQEaGhEmARgOGBoJEiUrETUAKxE1//8AQQAABKMG/hImAD0AABEHCSABQQAAABZADQEQEAUmAREaEQsCCSUrETUAKxE1//8AUwAAA5oF0xImAF0AABEHAogApQAAABi2ARAQESYBEbj/+rQRCwEJJSsRNQArETUAAP//AEH+yQSjBYESJgA9' + + 'AAARBwkzAwgAAAAPsQELuP//tAsNAgklKxE1AAAA//8AU/7JA5oEOhImAF0AABEHCTMCiAAAAA+xAQu4//u0Cw0BCSUrETUAAAD//wBB/rwEowWBEiYAPQAAEQcC8wJyAAAADLcBDAAMDQIJJSsRNQAA//8AU/68A5oEOhImAF0AABEHAvMB9AAAAA+xAQy4//20DA0B' + + 'CSUrETUAAAD//wCO/rwD7gXMEiYASwAAEQcC8wI8AAAAD7EBG7j//rQbHBMHJSsRNQAAAP//AAv/8AI4BogSJgBXAAARBwBq/94BDQAdQAkCARwcBSYCARq4//20GhgHFCUrETU1ACsRNTUA/////QAABcwGcxImAFoAABEHApwBvAAAAB1ACQIBGBgRJgIBG7j//bQb' + + 'FQgUJSsRNTUAKxE1NQD//wAF/lcD/AZzEiYAXAAAEQcCnADnAAAAGkAPAgEaGhEmAgEdCx0XCRIlKxE1NQArETU1//8AV//sBHMF8xImAEQAABEHAoABAQAAABa1Aj4RJgI+uP/vtD47AxslKxE1ACs1//8AigAAAhEG8RImAUEAABEHApsAUAElABi2ARERAiYBD7j/' + + '+bQPEQIIJSsRNQArETUAAAABAKj/7AVDBZYAJQBRQCoGECMDIhsbHBIiIgwAHAAmJxEjIw9gWRIjIyAEIBVfWSAEHBIECV9ZBBMAPysAGD8/KxESADkYLzkrEQAzERIBOTkRMzMRMxEzERIXOTEwARQOASMiJzcWMzI2NTQmKwE1AS4BIyIOAhURIxEQACEgEwEeAQVD' + + 'd92OnoIba46alKjSRQE1MqxWY4ZQJb8BAwEcAWS+/rXI3QGQgL5mIJ4njn+Me4wBXzdBLl6elvzGAygBSQEl/vP+nQ7UAP//AAT+yQVSBYESJgAkAAARBwkzAzQAAAAPsQISuP/ytBIUBAclKxE1AAAA//8AV/7JBHMEThImAEQAABEHCTMCyAAAAA+xAjK4/8y0MjQD' + + 'GyUrETUAAAD//wAEAAAFUgcrEiYAJAAAEQcCywPUAAAAFkANAiAgBSYCFxgXGwQHJSsRNQArETX//wBX/+wEcwX2EiYARAAAEQcCywM0/ssAGLYCQEARJgI3uP+/tDc7AxslKxE1ACsRNQAA//8ABAAABVIHKxImACQAABEHCh0CrQAAABpADwMCHR0FJgMCHmYeEwQH' + + 'JSsRNTUAKxE1Nf//AFf/7ARzBiYSJgBEAAARBwolAkUAAAAaQA8DAj09ESYDAj5EPjMDGyUrETU1ACsRNTX//wAEAAAFUgcrEiYAJAAAEQcKHgKtAAAAHUAJAwIdHQUmAwIVuP+atBUYBAclKxE1NQArETU1AP//ADH/7ARzBiYSJgBEAAARBwomAkUAAAAdQAkDAj8/' + + 'ESYDAjW4/3m0NToDGyUrETU1ACsRNTUA//8ABAAABVIHKxImACQAABEHCh8CrQAAABpADwMCKCgFJgMCKT0pGgQHJSsRNTUAKxE1Nf//AFf/7ARzBnUSJgBEAAARBwonAjEAAAAaQA8DAklJESYDAkoXSjoDGyUrETU1ACsRNTX//wAEAAAFUgcrEiYAJAAAEQcKIAKs' + + 'AAAAGkAPAwIxMQUmAwIZARklBAclKxE1NQArETU1//8AV//sBHMG7xImAEQAABEHCigCMQAAAB1ACQMCOTkRJgMCQ7j/yrRDNAMbJSsRNTUAKxE1NQD//wAE/skFUgb+EiYAJAAAECcJIAFgAAARBwkzA0MAAAAWQA0CExMFJgIXABcSBQYlKxE1ACsRNf//AFf+yQRz' + + 'BdMSJgBEAAAQJwKIAN4AABEHCTMC1wAAABZADQI2NhEmAjcANzIDFCUrETUAKxE1//8ABAAABVIHKxImACQAABEHCiECrgAAABpADwMCFxcFJgMCGgMaIgQHJSsRNTUAKxE1Nf//AFf/7ARzBvASJgBEAAARBwopAjEAAAAdQAkDAjExESYDAjS4/8y0NDoDGyUrETU1' + + 'ACsRNTUA//8ABAAABVIHKxImACQAABEHCiICrgAAABpADwMCFxcFJgMCGgMaIgQHJSsRNTUAKxE1Nf//AFf/7ARzBvASJgBEAAARBwoqAjEAAAAdQAkDAjExESYDAjS4/8y0NDoDGyUrETU1ACsRNTUA//8ABAAABVIHKxImACQAABEHCiMCrgAAABpADwMCEREFJgMC' + + 'FAMUHAQHJSsRNTUAKxE1Nf//AFf/7ARzBysSJgBEAAARBworAjEAAAAdQAkDAjExESYDAjS4/8y0NDoDGyUrETU1ACsRNTUA//8ABAAABVIHKxImACQAABEHCiQCrAAAABpADwMCEREFJgMCJQElMgQHJSsRNTUAKxE1Nf//AFf/7ARzBu8SJgBEAAARBwosAjEAAAAd' + + 'QAkDAjExESYDAjS4/8y0NDoDGyUrETU1ACsRNTUA//8ABP7JBVIG8xImACQAABAnCSUBdgAAEQcJMwM0AAAAJEAPAhERBSYCFAAUHAUGJQMguP/ytCAhBAclKxE1KxE1ACsRNQAA//8AV/7JBHMF5hImAEQAABAnApoBBAAAEQcJMwLIAAAAJEAPAjExESYCNAA0OgMV' + + 'JQM+uP/MtD5AAxslKxE1KxE1ACsRNQAA//8AqP7JBP4FgRImACgAABEHCTMDXAAAAA+xAQ24//K0DQ8BCyUrETUAAAD//wBX/skEGAROEiYASAAAEQcJMwLaAAAADLcCGwsbHQwSJSsRNQAA//8AqAAABP4HKxImACgAABEHAssD2wAAABi2ARsbBSYBErj/+LQSFgEL' + + 'JSsRNQArETUAAP//AFf/7AQYBfYSJgBIAAARBwLLA1L+ywAWQA0CKSkRJgIgCiAkDBIlKxE1ACsRNf//AKgAAAT+BwYSJgAoAAARBwkjAYYAAAAUQAwBFQUmARUCFSEBCyUrETUAKzUAAP//AFf/7AQYBb0SJgBIAAARBwKeAPAAAAAUQAwCIxEmAiMIIy8MEiUrETUA' + + 'KzUAAP//AKgAAAT+BysSJgAoAAARBwodAtUAAAAaQA8CARgYBSYCARlmGQ4BCyUrETU1ACsRNTX//wBX/+wEVgYmEiYASAAAEQcKJQJFAAAAGkAPAwImJhEmAwIncSccDBIlKxE1NQArETU1//8AqAAABP4HKxImACgAABEHCh4C0QAAAB1ACQIBGBgFJgIBELj/lrQQ' + + 'EwELJSsRNTUAKxE1NQD//wAx/+wEGAYmEiYASAAAEQcKJgJFAAAAHUAJAwIoKBEmAwIeuP+ntB4jDBIlKxE1NQArETU1AP//AKgAAAT+BysSJgAoAAARBwofAsEAAAAaQA8CASMjBSYCASQpJBUBCyUrETU1ACsRNTX//wBX/+wEGwZ1EiYASAAAEQcKJwI7AAAAGkAP' + + 'AwIyMhEmAwIzTzMjDBIlKxE1NQArETU1//8AqAAABP4HKxImACgAABEHCiAC0AAAAB1ACQIBLCwFJgIBFLj//rQUIAELJSsRNTUAKxE1NQD//wBX/+wEGAbvEiYASAAAEQcKKAIxAAAAGrcDAiIRJgMCLLj/97QsHQwSJSsRNTUAKzU1//8AqP7JBP4G/hImACgAABAn' + + 'CSABdwAAEQcJMwNcAAAAJEAPARERBSYBEgASDQECJQIXuP/ytBcYAQslKxE1KxE1ACsRNQAA//8AV/7JBBgF0xImAEgAABAnAogA6QAAEQcJMwLaAAAACLMCIBEmACs1AAD//wBRAAACAgcrECYALAAAEQcCywI6AAAAXkBOARMTBSYBCg0KDgEDJQ8YARMAGBAYIBgw' + + 'GEAYBTkAGEAYUBhgGHAYoBiwGPAYCAAYEBhAGFAYoBiwGMAY8BgIIBhAGFAYYBhwGJAY8BgHXXFyXl1eXSsRNQArETX//wAKAAABuwYLECYJUwAAEQcCywHz/uAAREA2ARMTESYBCgAKDgEDJR8YnxjfGP8YBE8Y3xgCHxgBABhwGIAYsBjAGOAYBpAYoBiwGMAY8BgF' + + 'cXJdcXIrETUAKxE1AAD//wC8/skBfAWBEiYALAAAEQcJMwGtAAAAD7EBBbj/+rQFBwEDJSsRNQAAAP//AIn+yQE9BcwSJgBMAAARBwkzAXoAAAAMtwIJAAkLBQclKxE1AAD//wBh/skF1wWWEiYAMgAAEQcJMwOsAAAAD7ECHLj/+bQcHggAJSsRNQAAAP//AFb+yQQd' + + 'BE4SJgBSAAARBwkzAsYAAAAPsQIYuP/2tBgaBgAlKxE1AAAA//8AYf/sBdcHKxImADIAABEHAssEOAAAABZADQIqKgUmAiELISUIACUrETUAKxE1//8AVv/sBB0GCxImAFIAABEHAssDR/7gABi2AiYmESYCHbj//bQdIQYAJSsRNQArETUAAP//AGH/7AXXBysSJgAy' + + 'AAARBwodAxwAAAAaQA8DAicnBSYDAihkKB0IACUrETU1ACsRNTX//wBW/+wESgYmEiYAUgAAEQcKJQI5AAAAGkAPAwIjIxEmAwIkYyQZBgAlKxE1NQArETU1//8AYf/sBdcHKxImADIAABEHCh4DHAAAAB1ACQMCJycFJgMCH7j/mLQfIggAJSsRNTUAKxE1NQD//wAl' + + '/+wEHQYmEiYAUgAAEQcKJgI5AAAAHUAJAwIlJREmAwIbuP+ZtBsgBgAlKxE1NQArETU1AP//AGH/7AXXBysSJgAyAAARBwofAxwAAAAaQA8DAjIyBSYDAjM7MyQIACUrETU1ACsRNTX//wBW/+wEHQZ1EiYAUgAAEQcKJwIxAAAAGkAPAwIvLxEmAwIwQzAgBgAlKxE1' + + 'NQArETU1//8AYf/sBdcHKxImADIAABEHCiADHAAAABpADwMCOzsFJgMCIwAjLwgAJSsRNTUAKxE1Nf//AFb/7AQdBu8SJgBSAAARBwooAjEAAAAdQAkDAh8fESYDAim4//W0KRoGACUrETU1ACsRNTUA//8AYf7JBdcHAxImADIAABAnCSAByAAFEQcJMwOsAAAAJEAP' + + 'AiAgBSYCIgAiHAgAJQMmuP/5tCYnCAAlKxE1KxE1ACsRNQAA//8AVv7JBB0F0xImAFIAABAnAogA4AAAEQcJMwLGAAAAJEAPAhwcESYCHQAdGAYAJQMiuP/2tCIjBgAlKxE1KxE1ACsRNQAA//8AYf/sBq0G8BImAWIAABEHCR8COQAAABi2AisrBSYCJ7j/zrQnKggV' + + 'JSsRNQArETUAAP//AFb/7AUDBeQSJgFjAAARBwB2AWUAAAAYtgImJhEmAiK4/9W0IiUGESUrETUAKxE1AAD//wBh/+wGrQbwEiYBYgAAEQcJHgGsAAAAGLYCKysFJgIouP9jtCgrCBUlKxE1ACsRNQAA//8AVv/sBQMF5BImAWMAABEHAEMAqQAAABi2AiYmESYCI7j/' + + 'O7QjJgYRJSsRNQArETUAAP//AGH/7AatBysSJgFiAAARBwLLBDgAAAAYtgI1NQUmAiy4/6G0LDAIFSUrETUAKxE1AAD//wBW/+wFAwYLEiYBYwAAEQcCywNH/uAAGLYCMDARJgInuP+KtCcrBhElKxE1ACsRNQAA//8AYf/sBq0HBhImAWIAABEHCSMBywAAABa1Ai8F' + + 'JgIvuP+UtC87CBUlKxE1ACs1//8AVv/sBQMFvRImAWMAABEHAp4A9AAAABa1AioRJgIquP+XtCo2BhElKxE1ACs1//8AYf7JBq0FlhImAWIAABEHCTMDrAAAAA+xAie4/460JykIFSUrETUAAAD//wBW/skFAwROEiYBYwAAEQcJMwLJAAAAD7ECIrj/hrQiJAYRJSsR' + + 'NQAAAP//AJ7+yQUpBYESJgA4AAARBwkzA24AAAAPsQEVuP/0tBUXBRAlKxE1AAAA//8Ahf7JA+sEOhImAFgAABEHCTMCqAAAAA+xARy4/9m0HB4aDSUrETUAAAD//wCe/+wFKQcrEiYAOAAAEQcCywPoAAAAGLYBIyMFJgEauP/0tBoeBRAlKxE1ACsRNQAA//8Ahf/s' + + 'A+sGCxImAFgAABEHAssDR/7gABi2ASoqESYBIbj//7QhJRoNJSsRNQArETUAAP//AJ7/7AaABvASJgFxAAARBwkfAhcAAAAYtgEkJAUmASC4/6S0ICMFFyUrETUAKxE1AAD//wCF/+wFHAXkEiYBcgAAEQcAdgGJAAAAGLYBKysRJgEnuP/VtCcqJRIlKxE1ACsRNQAA' + + '//8Anv/sBoAG8BImAXEAABEHCR4BWgAAABi2ASQkBSYBIbj/CbQhJAUXJSsRNQArETUAAP//AIX/7AUcBeQSJgFyAAARBwBDAIgAAAAYtgErKxEmASi4/va0KCslEiUrETUAKxE1AAD//wCe/+wGgAcrEiYBcQAAEQcCywP8AAAAGLYBLi4FJgEluP9dtCUpBRclKxE1' + + 'ACsRNQAA//8Ahf/sBRwGCxImAXIAABEHAssDR/7gABi2ATU1ESYBLLj/ZrQsMCUSJSsRNQArETUAAP//AJ7/7AaABwYSJgFxAAARBwkjAagAAAAWtQEoBSYBKLj/abQoNAUXJSsRNQArNf//AIX/7AUcBb0SJgFyAAARBwKeAPAAAAAWtQEvESYBL7j/b7QvOyUSJSsR' + + 'NQArNf//AJ7+yQaABYESJgFxAAARBwkzA2oAAAAPsQEguP9EtCAiBRclKxE1AAAA//8Ahf7JBRwEOhImAXIAABEHCTMCrQAAAA+xASe4/0a0JyklEiUrETUAAAD//wAtAAAFKQbwEiYAPAAAEQcJHgEiAAAAGLYBCQkFJgEKuP+1tAoNBAglKxE1ACsRNQAA//8ABf5X' + + 'A/wF5BImAFwAABEGAENpAAAYtgEXFxEmARi4/6e0GBsJEiUrETUAKxE1//8ALf7JBSkFgRImADwAABEHCTMDQgAAAAy3AQoACgwECCUrETUAAP//AAX+VwP8BDoSJgBcAAAQBwkzA8AAAP//AC0AAAUpBysSJgA8AAARBwLLA8EAAAAWQA0BGBgFJgEPBQ8TBAglKxE1' + + 'ACsRNf//AAX+VwP8BgsSJgBcAAARBwLLAxX+4AAWQA0BJiYRJgEdBB0hCRIlKxE1ACsRNf//AC0AAAUpBwYSJgA8AAARBwkjAWgAAAAUQAwBEgUmARIMEh4ECCUrETUAKzUAAP//AAX+VwP8Bb0SJgBcAAARBwKeAMQAAAAUQAwBIBEmASATICwJEiUrETUAKzUAAP//' + + 'AFb/7ARlBjASJgNjAAARBweSANwAZAAWtQIsESYCLLj/17QsKAYQJSsRNQArNf//AFb/7ARlBjASJgNjAAARBwfMAM4AZAAYtgItLREmAjG4/8K0MSwGECUrETUAKxE1AAD//wBW/+wEZQYwEiYDYwAAEQcHoQDcAGQAGrcDAjIRJgMCMrj/y7QyKAYQJSsRNTUAKzU1' + + '//8AVv/sBGUGMBImA2MAABEHB64AyABkAB1ACQMCMzMRJgMCN7j/t7Q3KAYQJSsRNTUAKxE1NQD//wBW/+wEZQYwEiYDYwAAEQcHogEYAGQAGEAOAwIyESYDAjILMikGECUrETU1ACs1NQAA//8AVv/sBGUGMBImA2MAABEHB68BGABkABpADwMCMzMRJgMCNws3KQYQ' + + 'JSsRNTUAKxE1Nf//AFb/7ARlBywSJgNjAAARBwejANIARgAdQAkDAkVFESYDAjC4/8q0MD0GECUrETU1ACsRNTUA//8AVv/sBGUHIhImA2MAABEHB7AA0gA8AB1ACQMCRkYRJgMCMLj/yrQwPQYQJSsRNTUAKxE1NQD//wAEAAAFUgXMEiYAJAAAEQYHkokAAAeyAhEA' + + 'AD81AP//AAQAAAVSBcwSJgAkAAARBgfMkwAAB7ICEQAAPzUA//8AKgAABn4FzBAnACQBLAAAEQYHoQAAAAmzAwIWAAA/NTUA//8AKgAABn4FzBAnACQBLAAAEQYHrgAAAAmzAwIWAAA/NTUA//8AKgAABn4FzBAnACQBLAAAEQYHogAAAAmzAwIRAAA/NTUA//8AKgAA' + + 'Bn4FzBAnACQBLAAAEQYHrwAAAAmzAwIRAAA/NTUA//8APwAABn4G5hAnACQBLAAAEQYHo1AAAAmzAwI0AAA/NTUA//8APwAABn4G5hAnACQBLAAAEQYHsFAAAAmzAwI0AAA/NTUA//8ARv/sA2oGMBImA2cAABEHB5IAhgBkABRADAEsESYBLAYsKAoEJSsRNQArNQAA' + + '//8ARv/sA2oGMBImA2cAABEHB8wAkwBkABZADQEtLREmATEMMSwKBCUrETUAKxE1//8ARv/sA2oGMBImA2cAABEGB6FkZAAatwIBMhEmAgEyuP/YtDIoCgQlKxE1NQArNTUAAP//AEb/7ANqBjASJgNnAAARBgeuZGQAHUAJAgEzMxEmAgE3uP/YtDcoCgQlKxE1NQAr' + + 'ETU1AAAA//8ARv/sA2oGMBImA2cAABEHB6IAjABkABhADgIBMhEmAgEyBTIpCgQlKxE1NQArNTUAAP//AEb/7ANqBjASJgNnAAARBwevAIwAZAAaQA8CATMzESYCATcFNykKBCUrETU1ACsRNTX//wAPAAAFxgXMECcAKADIAAARBweS/xwAAAAHsgEMAAA/NQD//wAI' + + 'AAAFxgXMECcAKADIAAARBwfM/xwAAAAHsgEMAAA/NQD//wAYAAAHVgXMECcAKAJYAAARBgeh7gAACbMCAREAAD81NQD//wAYAAAHVgXMECcAKAJYAAARBgeu7gAACbMCAREAAD81NQD//wAYAAAHVgXMECcAKAJYAAARBgei7gAACbMCAQwAAD81NQD//wAYAAAHVgXM' + + 'ECcAKAJYAAARBgev7gAACbMCAQwAAD81NQD//wBq/lgD7gYwEiYDaQAAEQcHkgDiAGQAFEAMAR8RJgEfDh8bDRklKxE1ACs1AAD//wBq/lgD7gYwEiYDaQAAEQcHzADtAGQAFkANASAgESYBJBIkHw0ZJSsRNQArETX//wBq/lgD7gYwEiYDaQAAEQcHoQDIAGQAGrcC' + + 'ASURJgIBJbj/6LQlGw0ZJSsRNTUAKzU1//8Aav5YA+4GMBImA2kAABEHB64AyABkAB1ACQIBJiYRJgIBKrj/6LQqGw0ZJSsRNTUAKxE1NQD//wBq/lgD7gYwEiYDaQAAEQcHogE2AGQAGEAOAgElESYCASVbJRwNGSUrETU1ACs1NQAA//8Aav5YA+4GMBImA2kAABEH' + + 'B68BCgBkABpADwIBJiYRJgIBKi8qHA0ZJSsRNTUAKxE1Nf//AGr+WAPuByISJgNpAAARBwejAOIAPAAaQA8CATg4ESYCASMLIzANGSUrETU1ACsRNTX//wBq/lgD7gciEiYDaQAAEQcHsADtADwAGkAPAgE5OREmAgEjFiMwDRklKxE1NQArETU1//8ADwAABegFzBAn' + + 'ACsAyAAAEQcHkv8cAAAAB7IBDAAAPzUA//8ACAAABegFzBAnACsAyAAAEQcHzP8cAAAAB7IBDAAAPzUA//8AGAAAB3gFzBAnACsCWAAAEQYHoe4AAAmzAgERAAA/NTUA//8AKgAAB3gFzBAnACsCWAAAEQYHrgAAAAmzAgERAAA/NTUA//8AGAAAB3gFzBAnACsCWAAA' + + 'EQYHou4AAAmzAgEMAAA/NTUA//8AGAAAB3gFzBAnACsCWAAAEQYHr+4AAAmzAgEMAAA/NTUA////+gAAB3gG5hAnACsCWAAAEQYHowsAAAmzAgEvAAA/NTUA////+gAAB3gG5hAnACsCWAAAEQYHsAsAAAmzAgEvAAA/NTUA//8AiQAAAY0GMBImA2sAABEGB5KdZAAW' + + 'tQEPESYBD7j/67QPCwQJJSsRNQArNQAA//8AiQAAAY0GMBImA2sAABEGB8ydZAAYtgEQEBEmARS4/+S0FA8ECSUrETUAKxE1////swAAAfcGMBImA2sAABEGB6GJZAAatwIBFREmAgEVuP/KtBULBAklKxE1NQArNTUAAP///7MAAAH3BjASJgNrAAARBgeuiWQAHUAJ' + + 'AgEWFhEmAgEauP/KtBoLBAklKxE1NQArETU1AAAA//8AAwAAAlEGMBImA2sAABEGB6LZZAAYQA4CARURJgIBFR8VDAQJJSsRNTUAKzU1//8AAwAAAlEGMBImA2sAABEGB6/ZZAAaQA8CARYWESYCARofGgwECSUrETU1ACsRNTUAAP///4wAAAJZB0oSJgNrAAARBgej' + + 'nWQAHUAJAgEoKBEmAgETuP/otBMgBAklKxE1NQArETU1AAAA////jAAAAlkHShImA2sAABEGB7CdZAAdQAkCASkpESYCARO4/+i0EyAECSUrETU1ACsRNTUAAAD//wAPAAACRAXMECcALADIAAARBweS/xwAAAAHsgEEAAA/NQD//wAIAAACRAXMECcALADIAAARBwfM' + + '/xwAAAAHsgEEAAA/NQD//wAYAAAD1AXMECcALAJYAAARBgeh7gAACbMCAQkAAD81NQD//wAYAAAD1AXMECcALAJYAAARBgeu7gAACbMCAQkAAD81NQD//wAYAAAD1AXMECcALAJYAAARBgei7gAACbMCAQQAAD81NQD//wAYAAAD1AXMECcALAJYAAARBgev7gAACbMC' + + 'AQQAAD81NQD////6AAAD1AbmECcALAJYAAARBgejCwAACbMCAScAAD81NQD////6AAAD1AbmECcALAJYAAARBgewCwAACbMCAScAAD81NQD//wBW/+wEHQYwEiYAUgAAEQcHkgDeAGQAFrUCHBEmAhy4//20HBgGACUrETUAKzX//wBW/+wEHQYwEiYAUgAAEQcHzADe' + + 'AGQAGLYCHR0RJgIhuP/2tCEcBgAlKxE1ACsRNQAA//8AVv/sBB0GMBImAFIAABEHB6EAyABkABq3AwIiESYDAiK4/9u0IhgGACUrETU1ACs1Nf//AFb/7AQdBjASJgBSAAARBweuAMgAZAAdQAkDAiMjESYDAie4/9u0JxgGACUrETU1ACsRNTUA//8AVv/sBB0GMBIm' + + 'AFIAABEHB6IBGABkABhADgMCIhEmAwIiLyIZBgAlKxE1NQArNTUAAP//AFb/7AQdBjASJgBSAAARBwevARgAZAAaQA8DAiMjESYDAicvJxkGACUrETU1ACsRNTX//wAP/+wGOwXMECYAMmQAEQcHkv8cAAAAB7ICGwAAPzUAAAD//wAI/+wGOwXMECYAMmQAEQcHzP8c' + + 'AAAAB7ICJQAAPzUAAAD//wAY/+wHywXMECcAMgH0AAARBgeh7gAACbMDAisAAD81NQD//wAY/+wHywXMECcAMgH0AAARBgeu7gAACbMDAisAAD81NQD//wAY/+wHZwXMECcAMgGQAAARBgei7gAACbMDAisAAD81NQD//wAY/+wHZwXMECcAMgGQAAARBgev7gAACbMD' + + 'AisAAD81NQD//wCF/+wD/gYwEiYDdwAAEQcHkgDXAGQAFrUBGxEmARu4/+60GxcHACUrETUAKzX//wCF/+wD/gYwEiYDdwAAEQcHzADSAGQAGLYBHBwRJgEguP/itCAbBwAlKxE1ACsRNQAA//8Ahf/sA/4GMBImA3cAABEHB6EAyABkABq3AgEhESYCASG4/9O0IRcH' + + 'ACUrETU1ACs1Nf//AIX/7AP+BjASJgN3AAARBweuAMgAZAAdQAkCASIiESYCASa4/9O0JhcHACUrETU1ACsRNTUA//8Ahf/sA/4GMBImA3cAABEHB6IBLABkABhADgIBIREmAgEhOyEYBwAlKxE1NQArNTUAAP//AIX/7AP+BjASJgN3AAARBwevASwAZAAaQA8CASIi' + + 'ESYCASY7JhgHACUrETU1ACsRNTX//wCF/+wD/gciEiYDdwAAEQcHowDXADwAHUAJAgE0NBEmAgEfuP/rtB8sBwAlKxE1NQArETU1AP//AIX/7AP+ByISJgN3AAARBwewANIAPAAdQAkCATU1ESYCAR+4/+a0HywHACUrETU1ACsRNTUA//8ACAAABlUFzBAnADwBLAAA' + + 'EQcHzP8cAAAAB7IBEwAAPzUA//8AGAAAB4EFzBAnADwCWAAAEQYHru4AAAmzAgEZAAA/NTUA//8AGAAAB+UFzBAnADwCvAAAEQYHr+4AAAmzAgEZAAA/NTUA////7wAAB4EG5hAnADwCWAAAEQYHsAAAAAmzAgEiAAA/NTUA//8AU//sBesGMBImA3sAABEHB5IBwgBk' + + 'ABa1ATARJgEwuP/8tDAsGw4lKxE1ACs1//8AU//sBesGMBImA3sAABEHB8wBrgBkABi2ATExESYBNbj/4bQ1MBsOJSsRNQArETUAAP//AFP/7AXrBjASJgN7AAARBwehAcIAZAAatwIBNhEmAgE2uP/vtDYsGw4lKxE1NQArNTX//wBT/+wF6wYwEiYDewAAEQcHrgHC' + + 'AGQAHUAJAgE3NxEmAgE7uP/vtDssGw4lKxE1NQArETU1AP//AFP/7AXrBjASJgN7AAARBweiAfQAZAAYQA4CATYRJgIBNiY2LRsOJSsRNTUAKzU1AAD//wBT/+wF6wYwEiYDewAAEQcHrwH0AGQAGkAPAgE3NxEmAgE7JjstGw4lKxE1NQArETU1//8AU//sBesHShIm' + + 'A3sAABEHB6MBwgBkAB1ACQIBSUkRJgIBNLj/+bQ0QRsOJSsRNTUAKxE1NQD//wBT/+wF6wdKEiYDewAAEQcHsAGuAGQAHUAJAgFKShEmAgE0uP/ltDRBGw4lKxE1NQArETU1AP//AA8AAAYHBcwQJgNbZAARBweS/xwAAAAHsgEuAAA/NQAAAP//AAgAAAYHBcwQJgNb' + + 'ZAARBwfM/xwAAAAHsgEuAAA/NQAAAP//ABgAAAeXBcwQJwNbAfQAABEGB6HuAAAJswIBNAAAPzU1AP//ABgAAAeXBcwQJwNbAfQAABEGB67uAAAJswIBNAAAPzU1AP//ABgAAAczBcwQJwNbAZAAABEGB6LuAAAJswIBNAAAPzU1AP//ABgAAAczBcwQJwNbAZAAABEG' + + 'B6/uAAAJswIBNAAAPzU1AP///+kAAAczBuYQJwNbAZAAABEGB6P6AAAJswIBRwAAPzU1AP///+kAAAczBuYQJwNbAZAAABEGB7D6AAAJswIBRwAAPzU1AP//AFb/7ARlBgcSJgNjAAARBwfAAIgAAAAYtgIsLBEmAim4/4C0KSwGECUrETUAKxE1AAD//wBW/+wEZQYH' + + 'EiYDYwAAEQcDOQEFAAAAGLYCLCwRJgIouP//tCgrBhAlKxE1ACsRNQAA//8ARv/sA2oGBxImA2cAABEGB8AxAAAYtgEsLBEmASm4/660KSwKBCUrETUAKxE1//8ARv/sA2oGBxImA2cAABEHAzkAowAAABZADQEsLBEmASgiKCsKBCUrETUAKxE1//8Aav5YA+4GBxIm' + + 'A2kAABEHB8AApwAAABi2AR8fESYBHLj/0LQcHw0ZJSsRNQArETUAAP//AGr+WAPuBgcSJgNpAAARBwM5ASMAAAAWQA0BHx8RJgEbThseDRklKxE1ACsRNf//ABAAAAGNBgcSJgNrAAARBwfA/0UAAAAYtgEPDxEmAQy4/4+0DA8ECSUrETUAKxE1AAD//wCJAAABoQYH' + + 'EiYDawAAEQYDOcAAABZADQEPDxEmAQsMCw4ECSUrETUAKxE1AAD//wBW/+wEHQYHEiYAUgAAEQcHwACfAAAAGLYCHBwRJgIZuP+7tBkcBgAlKxE1ACsRNQAA//8AVv/sBB0GBxImAFIAABEHAzkBCwAAABZADQIcHBEmAhgoGBsGACUrETUAKxE1//8Ahf/sA/4GBxIm' + + 'A3cAABEGB8B/AAAYtgEbGxEmARi4/5O0GBsHACUrETUAKxE1//8Ahf/sA/4GBxImA3cAABEHAzkA/QAAABZADQEbGxEmARcSFxoHACUrETUAKxE1//8AU//sBesGBxImA3sAABEHB8ABbwAAABi2ATAwESYBLbj/pbQtMBsOJSsRNQArETUAAP//AFP/7AXrBgcSJgN7' + + 'AAARBwM5AhMAAAAWQA0BMDARJgEsSywvGw4lKxE1ACsRNf//AFb+VwRlBjASJgNjAAAQJweSAMgAZBEHAwcCHAAAABa1AiwRJgIsuP/XtCwoBhAlKxE1ACs1//8AVv5XBGUGMBImA2MAABAnB8wAugBkEQcDBwIcAAAAGLYCLS0RJgIxuP/CtDEsBhAlKxE1ACsRNQAA' + + '//8AVv5XBGUGMBImA2MAABAnB6EAyABkEQcDBwIcAAAAGrcDAjIRJgMCMrj/y7QyKAYQJSsRNTUAKzU1//8AVv5XBGUGMBImA2MAABAnB64AyABkEQcDBwIcAAAAHUAJAwIzMxEmAwI3uP+3tDcoBhAlKxE1NQArETU1AP//AFb+VwRlBjASJgNjAAAQJweiARMAZBEH' + + 'AwcCHAAAABhADgMCMhEmAwIyCzIpBhAlKxE1NQArNTUAAP//AFb+VwRlBjASJgNjAAAQJwevARMAZBEHAwcCHAAAABpADwMCMzMRJgMCNws3KQYQJSsRNTUAKxE1Nf//AFb+VwRlByISJgNjAAAQJwejAMgAPBEHAwcCHAAAAB1ACQMCRUURJgMCMLj/yrQwPQYQJSsR' + + 'NTUAKxE1NQD//wBW/lcEZQciEiYDYwAAECcHsADIADwRBwMHAhwAAAAdQAkDAkZGESYDAjC4/8q0MD0GECUrETU1ACsRNTUA//8ABP5XBVIFzBImACQAABAmB5KdABEHAwcCrQAAAAeyAhEAAD81AP//AAT+VwVSBcwSJgAkAAAQJgfMnQARBwMHAq0AAAAHsgIRAAA/' + + 'NQD//wAq/lcGfgXMECcAJAEsAAAQJgehAAARBwMHA9kAAAAJswMCFgAAPzU1AP//ACr+VwZ+BcwQJwAkASwAABAmB64AABEHAwcD2QAAAAmzAwIWAAA/NTUA//8AKv5XBn4FzBAnACQBLAAAECYHogAAEQcDBwPZAAAACbMDAhEAAD81NQD//wAq/lcGfgXMECcAJAEs' + + 'AAAQJgevAAARBwMHA9kAAAAJswMCEQAAPzU1AP//AD/+VwZ+BuYQJwAkASwAABAmB6NQABEHAwcD2QAAAAmzAwI0AAA/NTUA//8AP/5XBn4G5hAnACQBLAAAECYHsFAAEQcDBwPZAAAACbMDAjQAAD81NQD//wBq/lcD7gYwEiYDaQAAECcHkgDiAGQRBwMHAOYAAAAU' + + 'QAwBHxEmAR8OHxsNGSUrETUAKzUAAP//AGr+VwPuBjASJgNpAAAQJwfMAO0AZBEHAwcA5gAAABZADQEgIBEmASQSJB8NGSUrETUAKxE1//8Aav5XA+4GMBImA2kAABAnB6EAyABkEQcDBwDmAAAAGrcCASURJgIBJbj/6LQlGw0ZJSsRNTUAKzU1//8Aav5XA+4GMBIm' + + 'A2kAABAnB64AyABkEQcDBwDmAAAAHUAJAgEmJhEmAgEquP/otCobDRklKxE1NQArETU1AP//AGr+VwPuBjASJgNpAAAQJweiATYAZBEHAwcA5gAAABhADgIBJREmAgElWyUcDRklKxE1NQArNTUAAP//AGr+VwPuBjASJgNpAAAQJwevATYAZBEHAwcA5gAAABpADwIB' + + 'JiYRJgIBKi8qHA0ZJSsRNTUAKxE1Nf//AGr+VwPuB0oSJgNpAAAQJwejAOIAZBEHAwcA5gAAABpADwIBODgRJgIBIwsjMA0ZJSsRNTUAKxE1Nf//AGr+VwPuB0oSJgNpAAAQJwewAO0AZBEHAwcA5gAAABpADwIBOTkRJgIBIxYjMA0ZJSsRNTUAKxE1Nf//AA/+VwXo' + + 'BcwQJwArAMgAABAnB5L/HAAAEQcDBwOsAAAAB7IBDAAAPzUA//8ACP5XBegFzBAnACsAyAAAECcHzP8cAAARBwMHA6wAAAAHsgEMAAA/NQD//wAY/lcHeAXMECcAKwJYAAAQJgeh7gARBwMHBTwAAAAJswIBEQAAPzU1AP//ABj+Vwd4BcwQJwArAlgAABAmB67uABEH' + + 'AwcFPAAAAAmzAgERAAA/NTUA//8AGP5XB3gFzBAnACsCWAAAECYHou4AEQcDBwU8AAAACbMCAQwAAD81NQD//wAY/lcHeAXMECcAKwJYAAAQJgev7gARBwMHBTwAAAAJswIBDAAAPzU1AP///93+Vwd4BuYQJwArAlgAABAmB6PuABEHAwcFPAAAAAmzAgElAAA/NTUA' + + '////3f5XB3gG5hAnACsCWAAAECYHsO4AEQcDBwU8AAAACbMCASUAAD81NQD//wBT/lcF6wYwEiYDewAAECcHkgHCAGQRBwMHAyAAAAAWtQEwESYBMLj//LQwLBsOJSsRNQArNf//AFP+VwXrBjASJgN7AAAQJwfMAa4AZBEHAwcDIAAAABa1ATARJgEwuP/8tDAsGw4l' + + 'KxE1ACs1//8AU/5XBesGMBImA3sAABAnB6EBwgBkEQcDBwMgAAAAGrcCATYRJgIBNrj/77Q2LBsOJSsRNTUAKzU1//8AU/5XBesGMBImA3sAABAnB64BwgBkEQcDBwMgAAAAHUAJAgE3NxEmAgE7uP/vtDssGw4lKxE1NQArETU1AP//AFP+VwXrBjASJgN7AAAQJwei' + + 'AfQAZBEHAwcDIAAAABhADgIBNhEmAgE2JjYtGw4lKxE1NQArNTUAAP//AFP+VwXrBjASJgN7AAAQJwevAfQAZBEHAwcDIAAAABpADwIBNzcRJgIBOyY7LRsOJSsRNTUAKxE1Nf//AFP+VwXrByISJgN7AAAQJwejAcIAPBEHAwcDIAAAAB1ACQIBSUkRJgIBNLj/+bQ0' + + 'QRsOJSsRNTUAKxE1NQD//wBT/lcF6wciEiYDewAAECcHsAGuADwRBwMHAyAAAAAdQAkCAUpKESYCATS4/+W0NEEbDiUrETU1ACsRNTUA//8AD/5XBgcFzBAmA1tkABAnB5L/HAAAEQcDBwNgAAAAB7IBLgAAPzUAAAD//wAI/lcGBwXMECYDW2QAECcHzP8cAAARBwMH' + + 'A2AAAAAHsgEuAAA/NQAAAP//ABj+VweXBcwQJwNbAfQAABAmB6HuABEHAwcE8AAAAAmzAgE0AAA/NTUA//8AGP5XB5cFzBAnA1sB9AAAECYHru4AEQcDBwTwAAAACbMCATQAAD81NQD//wAY/lcHMwXMECcDWwGQAAAQJgei7gARBwMHBIwAAAAJswIBNAAAPzU1AP//' + + 'ABj+VwczBcwQJwNbAZAAABAmB6/uABEHAwcEjAAAAAmzAgE0AAA/NTUA////6f5XBzMG5hAnA1sBkAAAECYHo/oAEQcDBwSMAAAACbMCAUcAAD81NQD////p/lcHMwbmECcDWwGQAAAQJgew+gARBwMHBIwAAAAJswIBRwAAPzU1AP//AFb/7ARlBeYSJgNjAAARBwKa' + + 'APAAAAAYtgInJxEmAiq4/720KjAGECUrETUAKxE1AAD//wBW/+wEZQVTEiYDYwAAEQcCiwDcAAAAGLYCKCgRJgIpuP/EtCkqBhAlKxE1ACsRNQAA//8AVv5XBGUGBxImA2MAABAmB8B+ABEHAwcCHAAAABi2AiwsESYCKbj/gLQpLAYQJSsRNQArETX//wBW/lcEZQRO' + + 'EiYDYwAAEQcDBwIcAAAAD7ECMrj/6bQyLQYQJSsRNQAAAP//AFb+VwRlBgcSJgNjAAAQJwM5AQ8AABEHAwcCHAAAABi2AiwsESYCKLj//7QoKwYQJSsRNQArETUAAP//AFb/7ARlBb0SJgNjAAARBwKeANIAAAAWtQIwESYCMLj/xLQwPAYQJSsRNQArNf//AFb+VwRl' + + 'Bb0SJgNjAAAQJwKeANIAABEHAwcCHAAAABa1AjARJgIwuP/EtDA8BhAlKxE1ACs1//8ABAAABVIG8xImACQAABEHCSUBdgAAABZADQIREQUmAhQAFBwEByUrETUAKxE1//8ABAAABVIGnBImACQAABEHAosBaAFJABZADQISEgUmAhMCExQEByUrETUAKxE1//8ABAAA' + + 'BVIGBxImACQAABEHB8D/aQAAAAeyAhQAAD81AAAA//8ABAAABVIGBxImACQAABEGAzmKAAAHsgIUAAA/NQD//wAE/lcFUgWBEiYAJAAAEQcDBwKvAAAADLcCHC4cFwQHJSsRNQAAAAEA8wSFAb4FzAAKACBADQgAAAUJCQwLCQkAgAUALxrMOS8REgE5ETMzEjkxMAEV' + + 'FAYHIz4BNSM1Ab4fLX8tLlcFzE1XbjUzTCOlAAABART+VwH0/4EADAAbQAsMCwsFDQ4DC4AIGwA/Gs05ERIBOTkRMzEwBRQWMzI3FQYjIj0BMwGYFRgOISwmjoT8IRcGcAuYkgABAPMEhQG+BcwACgAgQA0IAAAFCgoLDAkJAIAFAC8azDkvERIBOREzMxI5MTABFRQG' + + 'ByM+ATUjNQG+Hy1/LS5XBcxNV241M0wjpQAAAf/pBLECtgW9ABcAJEAPFBUVGQgJCRgFEhQNgAgAAC8yGs0yOTkRATMRMxEzETMxMAEiLgIjIgYHIz4CMzIeAjMyNzMOAQHsKlRORx83NglbCzBRPyxUTkUeZBFcEWQEsSUtJT45Zmk9JS0ld5R4AAMAEQTDApsGwAAD' + + 'AAcAHwA6QBoQBgUBAgUCERscERwgIRkNGxSAEAgIAQUABAAvM80yMi8zGs0yOTkREgE5OREzEjk5ETMRMzIxMAE1MxUFNTMVEyIuAiMiBgcjPgEzMh4CMzI3Mw4CAb+j/eal9yZMRkEcMzAIUw1dTihMRkAbWw9TDCpIBMS4uAG4uAEKIigiODSBciIoImxfXjYAAP//' + + 'AGr+VwPuBgcSJgNpAAAQJwfAAKcAABEHAwcA5gAAABi2AR8fESYBG7j/6bQbHw0ZJSsRNQArETUAAP//AGr+VwPuBE4SJgNpAAAQBwMHAOYAAP//AGr+VwPuBgcSJgNpAAAQJwM5ASMAABEHAwcA5gAAABi2AR8fESYBG7j/6bQbHg0ZJSsRNQArETUAAP//AGr+WAPu' + + 'Bb0SJgNpAAARBwKeAOQAAAAUQAwBIxEmASMHIy8NGSUrETUAKzUAAP//AGr+VwPuBb0SJgNpAAAQJwKeAOQAABEHAwcA5gAAABRADAEjESYBIwcjLw0ZJSsRNQArNQAA//8AIgAABioGBxAnACgBLAAAEQcHwP9XAAAAFbQBDwABEbj/crQREQEBJSsRNQA/NQAAAP//' + + 'AEIAAAYqBgcQJwAoASwAABEHAzn/dQAAAAeyAQ8AAD81AP//ACIAAAZMBgcQJwArASwAABEHB8D/VwAAAAeyAQ8AAD81AP//AEIAAAZMBgcQJwArASwAABEHAzn/dQAAAAeyAQ8AAD81AP//AKj+VwUgBYESJgArAAARBwMHAuQAAAAMtwEXKhcSBQslKxE1AAAAAgAq' + + 'BIUCbgXMAAUAEAAyQBYOBgYLDwMADwAREg8PCgQEEAqAAgIKAC8zLxoQzDIvETkvERIBOTkRMxEzMxI5MTABFSMDNTMhFRQGByM+ATUjNQJucr3m/tAfLX8tLlcErAwBHg5NV241M0wjpQAAAAIAKgSFAngFzAAFABAAMkAWBAIOBgYLDwIPEhEPDwsAAAYLgAQECwAv' + + 'My8aEMwyLxE5LxESATk5ETMzEjkRMzEwATMVAyM1AxUUBgcjPgE1IzUBkua9clQfLX8tLlcFzA7+4gwBIE1XbjUzTCOlAAAC/+8EewK8BuYAGAAjAE5AJyEaGh4jIyQlFRYWJQgJCSQhHRUVBQ1ACQxIDQ0SAAgIAAAPIwEjHQAvxF0yLzMvETMzLyszMy8ROREBMxEz' + + 'ETMRMxESOREzMxI5MTABIi4CIyIGByM+AjMyHgIzMjY3Mw4BBxUUBgcjPgE1IzUB8ipUTkcfNzYJWwsvUj8sVVBHHjYyCFwQY5QfLX8tLlcF7h0kHTQ5YWM5HyUfNTiKbixNV241M0wjpQAA////lgAAAjAF5hImA2sAABEGApq5AAAYtgEKChEmAQ24/9i0DRMECSUr' + + 'ETUAKxE1////zwAAAfQFUxImA2sAABEGAoucAAAYtgELCxEmAQy4/9e0DA0ECSUrETUAKxE1////yQAAAfYG9xImA2sAABAmAGqcABEHB8D/JgDwAEZAMwPPFAECHxQvFE8UbxQEDxQ/FK8UvxQEQBRQFGAUcBSAFAUUAgEREREmAwIBDgAODQQFJSsRNTU1ACsRNTUv' + + 'XV1xX101AAD////IAAAB9Qb3EiYDawAAECYAapsAEQcDOf/iAPAARkAzA88UAQIfFC8UTxRvFAQPFD8UrxS/FARAFFAUYBRwFIAUBRQCARERESYDAgEOAA4NBAUlKxE1NTUAKxE1NS9dXXFfXTUAAP///3cAAAJEBb0SJgNrAAARBgKejgAAFrUBExEmARO4/9O0Ex8E' + + 'CSUrETUAKzUAAP///6IAAAIsBsASJgNrAAARBgeWkQAAIUALAwIBERERJgMCARu4/9y0GyYECSUrETU1NQArETU1NQAAAP///8oAAAJkB1ASJgAsAAARBwKa/+0BagAYtgEEBAUmAQe4//u0Bw0BAyUrETUAKxE1AAD//wAMAAACMQahEiYALAAAEQcCi//ZAU4AFkAN' + + 'AQUFBSYBBgIGBwEDJSsRNQArETX//wAgAAACqAYHECcALAEsAAARBwfA/1UAAAAHsgEHAAA/NQD//wBXAAACqAYHECcALAEsAAARBgM5igAAB7IBBwAAPzUAAAAAAgAqBIUCbgXMAAUAEAAwQBUEAQgGBhABEBIRBwcMBQUGDIACAgwALzMvGhDMMi8ROS8REgE5OREz' + + 'EjkRMzEwARUjAzUzIRUjFBYXIy4BPQECbnK95v7MVy4tfy0fBKwMAR4OpSNMMzZuVk0AAgAqBIUCeAXMAAUAEAAwQBUEAggGBhACEBIRBwcMAAAGDIADAwwALzMvGhDMMi8ROS8REgE5OREzEjkRMzEwATMVAyM1AxUjFBYXIy4BPQEBkua9clhXLi1/LR8FzA7+4gwB' + + 'IKUjTDM2blZNAAAAAAL/7wR7ArwG5gAYACMAKUAVFRUFDUAJDEgNDRIACAgAAA8jASMfAC/NXTIvMy8RMzMvKzMzLzEwASIuAiMiBgcjPgIzMh4CMzI2NzMOAQcVIxQWFyMuAT0BAfIqVE5HHzc2CVsLL1I/LFVQRx42MghcEGOYVy4tfy0fBe4dJB00OWFjOR8lHzU4' + + 'im4spSNMMzZuVk0AAAD//wCF/+wD/gXmEiYDdwAAEQcCmgD0AAAAGLYBFhYRJgEZuP/dtBkfBwAlKxE1ACsRNQAA//8Ahf/sA/4FUxImA3cAABEHAosA3wAAABi2ARcXESYBGLj/47QYGQcAJSsRNQArETUAAP//AIX/7AP+BvcSJgN3AAAQJwBqAMgAABEHB8AAXADw' + + 'AEZAMwPPIQECHyEvIU8hbyEEDyE/Ia8hvyEEQCFQIWAhcCGAIQUhAgEWFhEmAwIBGgAaGQYPJSsRNTU1ACsRNTUvXV1xX101//8Ahf/sA/4G9xImA3cAABAnAGoAyAAAEQcDOQEEAPAARkAzA88hAQIfIS8hTyFvIQQPIT8hryG/IQRAIVAhYCFwIYAhBSECARYWESYD' + + 'AgEaABoZBg8lKxE1NTUAKxE1NS9dXXFfXTX//wCE/lcEOwYwEiYDcwAAEQcHkgEEAGQAFrUCJBEmAiS4//20JCAMACUrETUAKzX//wCE/lcEOwYwEiYDcwAAEQcHzAD6AGQAGLYCJSURJgIpuP/stCkkDAAlKxE1ACsRNQAA//8Ahf/sA/4FvRImA3cAABEHAp4A3AAA' + + 'ABa1AR8RJgEfuP/qtB8rBwAlKxE1ACs1//8Ahf/sA/4GwBImA3cAABEHB5YAugAAAB5AEQMCAR0dESYDAgEnACcyBw8lKxE1NTUAKxE1NTX//wAtAAAFKQbzEiYAPAAAEQcJJQFyAAAAGLYBCQkFJgEMuP/8tAwUBAglKxE1ACsRNQAA//8ALQAABSkGnBImADwAABEH' + + 'AosBbAFJABZADQEKCgUmAQsGCwwECCUrETUAKxE1//8ASwAABrkGBxAnADwBkAAAEQYHwIAAAAeyAQwAAD81AAAA//8AegAABusGBxAnADwBwgAAEQYDOa0AAAeyAQwAAD81AAAA//8ACAAABbIFzBAnADMAyAAAEQcHzP8cAAAAB7ICHAAAPzUAAAP/6gTQAsEF4wAD' + + 'AAkADQAqQBIFAQAADwoICwsOAgwMCYALBgEALzMzGs45LzMRATMRMzMRMxEzMzEwASM1MwcVIwM1MwMjNTMCwa2t6nXAsr2trQTQuq0NAQcM/u26AAP/6gTQAsEF4wADAAkADQAqQBIGAQAADwoJCwsOAgwMBYALCAEALzMzGs45LzMRATMRMzMRMxEzMzEwASM1MyUz' + + 'FQMjNQcjNTMCwa2t/pWywHU8ra0E0LpZDP75DQ26AAEAywTCAd8GBwAFABO2AQQGBwOAAAAvGs0REgE5OTEwAQM1MxMVAZTJz0UEwgEgJf7cIf//AFP+VwXrBgcSJgN7AAAQJwfAAW8AABAHAwcDIAAA//8AU/5XBesETxImA3sAABEHAwcDIAAAAAy3ATYrNjEbDiUr' + + 'ETUAAP//AFP+VwXrBgcSJgN7AAAQJwM5AesAABEHAwcDIAAAABRADAErESYBKzcrLhsOJSsRNQArNQAA//8AU//sBesFvRImA3sAABEHAp4BygAAABa1ATQRJgE0uP/7tDRAGw4lKxE1ACs1//8AU/5XBesFvRImA3sAABAnAp4BygAAEQcDBwMgAAAAFrUBNBEmATS4' + + '//u0NEAbDiUrETUAKzX//wBc/+wHAwYHECYHwJEAEQcAMgEsAAAAB7IAAwAAPzUAAAD////p/+wGOwYHECcDOf8cAAARBgAyZAAAB7IAAwAAPzUAAAD//wBcAAAGzwYHECYHwJEAEQcDWwEsAAAAB7IAAwAAPzUAAAD//wAvAAAGBwYHECcDOf9iAAARBgNbZAAAB7IA' + + 'AwAAPzUAAAD//wBX/lcFowWWEiYDWwAAEQcDBwL+AAAADLcBLysvKhsKJSsRNQAAAAEA8wSrAkQFwgAFABO2AwAHBgOAAAAvGs0REgE5OTEwEzUTMxUH84LP8wSrFAEDHfoAAAABAOwEhQG3BcwACgAiQA4CCQUBAQkJCwwCAgCABgAvGsw5LxESATkRMxEzEjkxMAEV' + + 'IxQWFyMuAT0BAbNXLi1/LR8FzKUjTDM2blZNAAAAAAH/1v7vACoFBwADAAqyAgMAAC8yLzEwExEjESpUBQf56AYYAAH/IP7vAOAFhgAOACJAEQ4CCwUIBQkNCQcNAwMBBwMBAC8/EjkRMxEzERIXOTEwEyMRByc3JzcXNxcHFwcnKlR/N6mpN6mpN6mpN3/+7wVZgDeo' + + 'pziqqjinqDeAAAAAAAH/1/7vAbMFhgAKABZACQEEBAcHBgoDBgAvPxI5LzMRMzEwAQcnNyMRIxEhJzcBs983hPhSAUqENwSp2zd9+m0F4n04AAAAAAH+TP7vACgFhgAKAB1ADg8MHwwCBQICCgoBBwMBAC8/EjkvMxEzAV0xMBMjESMXByc3FwchKFL4hDff3zeEAUr+' + + '7wWTfTfb3Th9AP//AFsB0AJPAnAQBgAQAAD//wAAAcMEcgJMEgYH3wAAAAEAAAHDBHICTAADADFAIgACBAUBALpZDwEfAT8BTwEELwE/AW8BrwHfAQUBQCYrSAEALytdcSsREgE5OTEwETUhFQRyAcOJiQAAAAABAAABwwgAAkwAAwAxQCICAAUEAQC6WQ8BHwE/AU8B' + + 'BC8BPwFvAa8B3wEFAUAmK0gBAC8rXXErERIBOTkxMBE1IRUIAAHDiYkAAAAAAQAAAcMIAAJMAAMAMUAiAgUABAEAulkPAR8BPwFPAQQvAT8BbwGvAd8BBQFAJitIAQAvK11xKxEBMxEzMTARNSEVCAABw4mJAAAA//8AswAAApsFzBAGAYMAAP///+H+TgSK/6kQJgBC' + + 'AOURBwBCAAAAvgAxQCUAAAEBEAEgAZAB4AHwAQUBAR8FAT8FTwVfBW8FfwUFAAWQBQIFAC9dXXE1L11xNQAAAQB/A7gBSAWBAAkAI0ASBQkJBwAACwoAB5xbBQCpWwUDAD8rKxESATkRMzMRMzEwEzU0NjczBhUzFX8lK3lfWQO4kmGTQ4l9wwAAAAEAfwO4AUgFgQAJ' + + 'ACNAEgYAAAQICAsKCAecWwgDqVsIAwA/KysREgE5ETMzETMxMAEUBgcjNjUjNTMBSCYoe15YwwTwaY9AiHzFAAABAH/++gFIAMMACQAiQBEGAAAECAgLCggDqVsHCJxbBwAvKysREgE5ETMzETMxMCUUBgcjNjUjNTMBSCYoe15YwzNqjkGIfsMAAAAAAQB+A7gBRwWB' + + 'AAkAI0ASBAECCAEICwoJBKlbCQKcWQkDAD8rKxESATk5ETMRMzEwARUjFBcjLgE9AQFBWF57KCYFgcV8iECRZ5EAAAIASwO4Al8FgQAJABMASkAmDxMTCgUJBwAACREKCQoVFAcRChGcWwAACg8KqVsEDwOvFQGfFQFdXQA/MysRADMYLysRADMREgE5OREzETMRMxEz' + + 'ETMRMzEwATU0NjczBhUzFSE1NDY3MwYVMxUBlyQqel5Y/fIlK3lfWQO4kl+VQ4h+w5Jhk0OJfcMAAgBLA7gCXwWBAAkAEwBKQCYQCgoSBgkECAgJDhIJEhUUBxESEZxbAwMNEg2pWwgSA68VAZ8VAV1dAD8zKxEAMxgvKxEAMxESATk5ETMRMxEzETMRMxEzMTABFAYH' + + 'IzY1IzUzBRQGByM2NSM1MwJfIi15XljC/rUmKHteWMME8F2SSYh+w5Fpj0CIfsMAAAAAAgBL/voCXwDDAAkAEwBKQCUQCgoSBgAABAgIDhISFRQDAw0SDalbCAgSERKcWwcRrxUBnxUBXV0ALzMrEQAzGC8rEQAzGC8REgE5ETMzETMzETMRMxEzMTAlFAYHIzY1IzUz' + + 'BRQGByM2NSM1MwJfIyx5XljC/rUmKHteWMMzX5NHiH7DkGqOQYh+w///AEgDuAJGBYEQJgfnygAQBwfnAP8AAAABAIr/dgPqBcwACwA3QB8LCQgAAAcGBAMDDQwKC8FZBwrCWQUEwVkHBcJZBwABAC8/KysrKxESATkRMzMzMxEzMzMxMAEDIwMFNQUDMwMlFQKJFnMW' + + '/qABYBzXHAFhA+j7jgRyG6QdAXj+iB2kAAAAAQCI/3MD6QXMABUAYUA8DAgIBQYLDg8FCQkAEwEBFBEDBBADAAAXFhITwVkPEsJbDQzBWQ8NwlsPBwjBWQQHwlsCAcFZBALCWwQAAD8rKysrABgvKysrKxESATkRFzMzMzMRMxEzERczMxEzMTABBTUFAzMDJRUlAxMl' + + 'FSUTIxMFNQUTAfH+mAFoEK8QAWn+lxoaAWj+mBCvEP6XAWkaA+gbpB0BeP6IHaQb/rb+uRukHf6IAXgdpBsBRwABAFEBkQJ8A7wACwAgQBEGAAwNjwMBAAMwAwIDDwkBCQAvXc1dXRESATk5MTABFAYjIiY1NDYzMhYCfKN2caGicHSlAqpxqKZzc5+hAAAAAAMBFgAA' + + 'BuoA2wADAAcACwAuQBYLCAcEAwAABAgDDA0FAQkICZtbBAAIAC8zMysRADMzERIBFzkRMxEzETMxMCE1MxUhNTMVITUzFQYowvy3wPy1w9vb29vb2wAAAf/X/u8BswTRAAUACrIAAwIALy8zMTATESMRIRUqUwHcBIL6bQXiTwAAAAAB/k3+7wApBNEABQAKsgQAAQAv' + + 'My8xMAE1IREjEf5NAdxTBIJP+h4FkwAAAAH/Ev7vAO4FgwAHABG2AQUFAwYDAwAvPxI5LzMxMBMjESMRIxEh7sRUxAHcA9H7HgTiAbIAAAAAAf8S/u8A7gWDAAsAFkAJCgEFBQMJBgMDAC8/MxI5LzMzMTATIxEjESMRIRUhESHuxFTEAdz+dQGLA9H7HgTiAbJP/usA' + + 'AAAAAf8S/u8A7gWDAAsAFkAJBwALCwQJAwQDAD8zLxI5LzMzMTADIREhNSERIxEjESPuAYv+dQHcxFTEBB8BFU/+TvseBOIAAAD//wAAAAAAAAAAEAYH1gAAAAcAN//1B8gFjQADAA8AGwAnADMAPwBLAeJA/y4lHyW1WwABAgMBAx8fKCgNRj03PbVbQDcQBw0HtVsW' + + 'DTcNTUw0Q7ZZOjS3WzpJtlk6ExwrtlkiHLdbIjG2WSITChm2WQQKt1sEE7ZZBAQCAwASeU0BaU0BXU0BSU0BOU0BK00BFk0B+U0B7U0ByU0Bu00BmU0Be00BZk0BSU0BNk0BGU0BCU0BaflNAetNAd1NAalNAZZNAXlNAWtNAUlNATtNARlNAQtNAf1NAdlNActNAalN' + + 'AZtNAY1NAXlNAWtNAVtNATlNAStNARtNAflNAetNAclNAalNAZZNAXlNAWtNATlNASZNAQlNATj5TQHmTQHJTQG2TQGZTQGLTUBSAVlNAUZNASlNARtNAflNAetNAclNAbtNAa1NAQGUTQF7TQFkTQFLTQE/TQEbTQEPTQHkTQHLTQGwTQECoE0Bj00BcE0BX00BQE0B' + + 'H00BAE0BCF5dXV1dXV1dX11dXXFxcXFxcXFfcXFxcXFycnJycnJycnJyXl1dXV1dXV1dXV1xcXFxcXFxcXFxcXFycnJycnJycnJycl5dXV1dXV1dXV1dXXFxcXFxcXEAPz8/KysrABg/KysrABg/KysrERIBOTkRMysRATMRMysRATMSOREzETk5ETMRMysRATMxMCEj' + + 'ATMlMhYVFAYjIiY1NDYBNCYjIgYVFBYzMjYFMhYVFAYjIiY1NDYBNCYjIgYVFBYzMjYBMhYVFAYjIiY1NDYBNCYjIgYVFBYzMjYBMJsDmp38mJaPmJGUlZEBLkNPVEZJT0tJAh6Wj5iRlJWRAS5DT1RGSU9LSQH9lo+YkZSVkQEuQ09URklPS0kFgQy3srS6vLK1tP6X' + + 'hXh3hoR5fNe3srS6vLK1tP6XhXh3hoR5fAHqt7K0uryytbT+l4V4d4aEeXwAAQBVA3oBWQWBAAMAG0ALAQIDAAIABQQAAQMAP80REgE5OREzETMxMBsBMwNVQMSeA3oCB/35AP//AFUDegKvBYEQJgf3AAARBwf3AVYAAAAJtAEEYAQBXRE1AP///6QDegLTBYEQJwf3' + + '/08AABAmB/dkABAHB/cBegAAAAEAWACNAlEDrAAIACVAFgYBAQgFAwoJAwDvWw8DLwNvA38DBAMAL10rERIBFzkRMzEwJQE1ATMVCQEVAaj+sAFQp/6xAVGNAW0/AXMf/oz+kR0AAAEAWQCNAlIDrAAIACVAFgMIAQQIAwoJBgDvWw8GLwZvBn8GBAYAL10rERIBFzkR' + + 'MzEwJSM1CQE1MwEVAQGoAVL+sKYBUY0dAW8BdB/+jT///wC5AAADRwWBECYABAAAEQcABAHIAAAAFEALAwIILwgBAQAvAAFdNTVdETU1AAAAAf/ABd8C6wZUAAMAEbUABQEEAgEAL80RATMRMzEwASE1IQLr/NUDKwXfdQAB/mAAAAJiBYEAAwATtwMFAQQCAwASAD8/' + + 'EQEzETMxMCEjATP+9JQDcZEFgQAAAAAEALsAAAF+BcwAAwAHAAsADwBIQCYMCAQAAA8LBwMDEBENDJtZCQibWQ0JDQkABQUEm1kFAAABm1kAEgA/KwAYPysREgA5ORgvLysrERIBOREzMzMzETMzMzEwMzUzFQM1MxUDNTMVAzUzFbvDw8PDw8PD29sE8dvb/lvb2/5Z' + + '29sAAAAB/xL+7wDuBYMADwAcQA0ACAsDDw8EDQcDAwQDAD8zETMvEjkvFzMxMAMzESM1IRUjETMVIxEjESPuxMQB3MTExFTEBB8BFU9P/utO+x4E4gAAAAAC/xL+7wDuBYMAAwALABZACQgABAQFCgMFAwA/My8SOS8zMzEwAyERIQMRIREjESMRnQE6/sZRAdzEVAQf' + + 'ARX+nQGy/k77HgTiAAAAAf8Q/u8A8AWDAAUAD7UFAgIDAwAALz85ETMxMBMjEQMhAypUxgHgxv7vBSYBbv6SAAAAAAH/EP7vAPAFigAGABG2AAQEAgUDAgAvPxI5LzMxMBMRIxEjGwEqVMbw8APR+x4E4gG5/kcAAAAAAv8R/u8A7wWGAAYACgAiQBAGAgoFBwMJCQcK' + + 'AwEIBAMBAC8/MxIXOREzETMRMzMxMBMjESc3Fwc3JwcXKlTF7+/FVH5+fv7vBQW13d21tXFxcAAAAf8S/u8A7gWDAA0AGEALAAYJAw0NBAsDBAMAPzMvEjkvFzMxMAMzESM1IREzFSMRIxEj7sTEARjExFTEBB8BFU/+nE77HgTiAAAAAAIAfAINAwoFOQAKABEAAAEV' + + 'IzUhNQEzETMVAwYHAw8BIQKNbP5bAZl4fekJIuQjCgE8AsW4uFECI/3eUgH/GC3+zisLAAAAAAEAbAICAtMFOAAWAAAAJiIHIxMhFSEDNjIWFAYjICc3FjMyNgJdabVJcB4B+/5tEUrynKiJ/vMpcySWXGgDYF46AbRY/v80jfGTwQx4ZAAAAgB7AgIC0gVFABAAGQAA' + + 'EzYgFhQGICYQNjMyFwcmIyIBNCYiBhQWMjbsPwEWkZr+46Cmmco1bSJp1QFyX6ViZqJeA69rjfeUzAGV4qYRY/4hWGBVqHhlAAEARAINApIFOAALAAABBgcGFSM0EjchNSECkok4cXeRqv4gAk4E5L5r19ebAVjgWAAAAAADAIYCAgLmBUUAFQAdACUAAAEUBiAmNTQ2' + + 'NzUuATQ2BBYUBgcVHgElMic0BBUUFgcUJDU0ByIGAuac/t6iZE5JVJkBBJlVSlZe/tClAf62V2sBdLxXYQLwcH57cU9tDAIQZ6J0AXCmaA0CDWqfj4oBiUZJ6KgBo58BUgAAAgCLAgIC4gVFABQAHQAAASARFAYjIiYnNxYXMhMOASMiJjQ2BCYiBhQWMjc2AbQBLqec' + + 'aX0cbSJs1AYZfEl4kZ0BPmOlX1+DKlsFRf5u0eBQWRBlAQFAND+W+5LMeGawZxQsAAEAZQIHAoMEnQAVAGJAFw0ICAkAFQkVFhcNBBEE5FkJiwD7AAIAuP/AQCMJDUgAEQsLSxFbEQIRQBUZSBFAEBNILxE/EQIbEQEPEQECEQAvX11dXSsrXTMvEMwrXTIrEQAzERIB' + + 'OTkRMxEzETMxMAERNCYjIgYVESMRJzMXMz4BMzIWFRECAjZGSFWABHcGAiNjSm5hAgcBjlpGZF7+lAH/i29BOmx5/k8AAAACAHb/RgLiAokACQARAAABIBEUBiMgETQ2ADYQJiIGEBYBrgE0nZr+y5YBBV1Z0FxdAon+XsvWAaHR0f0RpAFZnpz+oqEAAAABAE7/UQJ+' + + 'An0ACgAAFzUzEQc1NzMRMxVO48nTadqvWAJwgmKE/SxYAAAAAAEAZv9RArUCiQAbAAAXNTY3PgE3NjU0IyIGByc+AQQWFRQHDgIHIRVmNnszZShbo0leCHUNnAECkV4vzVcTAdKvSXBlKkcjUEuVSEEKYXQBc2tdXi+XVylYAAAAAQBm/0YCzQKJACIAAAEUBxUeARUU' + + 'BiMgJzcWMzI2NTQrATUzMjY0JiIGByc+AQQWArS6ZG+djf7hHnYXq1Zj2kE+XmdUnl0Icw2cAQKUAbKdIwMKZk5we9wKkE1HkVpKg0tGQAhkcAFxAAAAAgBn/1EC9QJ9AAoAEQAAJRUjNSE1ATMRMxUDBgcDDwEhAnhs/lsBmXh96Qki5CMKATwJuLhRAiP93lIB/xgt' + + '/s4rCwABAGf/RgLOAnwAFgAAJCYiByMTIRUhAzYyFhQGIyAnNxYzMjYCWGm1SXAeAfv+bRFK8pyoif7zKXMkllxopF46AbRY/v80jfGTwQx4ZAAAAAIAdP9GAssCiQAQABkAADc2IBYUBiAmEDYzMhcHJiMiATQmIgYUFjI25T8BFpGa/uOgppnKNW0iadUBcl+lYmai' + + 'XvNrjfeUzAGV4qYRY/4hWGBVqHhlAAABACr/UQJ4AnwACwAAAQYHBhUjNBI3ITUhAniJOHF3kar+IAJOAii+a9fXmwFY4FgAAAAAAwB6/0YC2gKJABUAHQAlAAAlFAYgJjU0Njc1LgE0NgQWFAYHFR4BJTInNAQVFBYHFCQ1NAciBgLanP7eomROSVSZAQSZVUpWXv7Q' + + 'pQH+tldrAXS8V2E0cH57cU9tDAIQZ6J0AXCmaA0CDWqfj4oBiUZJ6KgBo58BUgAAAAIAZv9GAr4CiQAUAB0AAAEgExQGIyImJzcWFzITDgEjIiY0NgQmIgYUFjI3NgGPAS4BqJxpfRxtImzUBhl8SXiRnQE+Y6VfX4MqWwKJ/m7R4FBZEGUBAUA0P5b7ksx4ZrBnFCwA' + + 'AAD//wA9/2cDCQJ+EAcFYwAC/YsAAP//ADb/agLEAoEQBwVp//v9jgAA//8AO/9pAswCgBAHBXIAAP2NAAD//wAE/3gCnQJzEAcDMQFO/Y4AAP//ADb/aQLEAoAQBwVq//v9jQAAAAEADgAABGcF1AAeAGxAPgUYDRERCBQAHgsSEhMPHhQYBh8gCQxgWRAVCBVgWQ0I' + + 'DwhPCM8I/wgECwMJCAkIGxQbAmBZABsEFBFgWRQSAD8rABg/MysREgA5ORgvL19eXREzKxEAMysREgEXOREzETMRMzMRMxEzMTABJiMiBhUUFhcRIRUhESEVIREhFSERJgIRNBIzMhYXAtAts52JjJkCX/5VAYT+fAHE/Yjy7/7pnNAkBKybsbzEuAEBtYv+1Yr+uYsB' + + 'zwIBAAEF+QEFkYMAAAAAAwBo/48FeQYIACIAKAAuAHhAPCMJCAgiAA4NDR0eAB4EEhERFxgEGC8wIh0bQCUsLgMBFxcBHxsbFV9ZGxMpFAoSEg0JCkAKK19ZDwcKBAA/MzMrABoYEM0yMy8SOTk/KxEAMzMzGC8SFzkaEM4yERIBOTkRMzMRMxI5OREzMxEzETMzETMy' + + 'MTAFNyYCNRAAJTczBxYXNzMHFhcHJicBJBMXBgQrAQcjNyYnBwMUFwEGAgEmJwEWFwEwPYOCAUwBMCGOIlVIKo45mEe1Hz/+3wETkpxX/sXQDBqOHlNGKpR9AQ+9zwK3RVb+0kBVcdphATjFAUIBexB0dggWlMpZrDxOPfwBCwEaTra+XWoNHpUDOPmaA74d/twBJB0G' + + '+9cpEgAAAAEAaP/sBXkFlgAsAHdARSopKQwZGQcGBhMcAyMcIy4tEBVfWQkJEBAfJg8qAQ0DKiomJgBfWSYEBhkfGV9ZABsQGwIwG0AbcBuAG8Ab0BsGGxsfEwA/My9dcSsRADMYPysRADMYL19eXRESOS8zLysREgE5OREzEjk5ETMzETMyETMxMAEiABEUEhcRNCcz' + + 'FhUzPgEzMhcVJiMiBh0BJBMXBgQjIiQCNRAAITIEFwcuAQMY6v78uqgGqggEK3BmJCUkPHB2AQ6PnFf+xdDV/smjAWwBQuEBLke1MdkE+v7T/vrT/tkwAbByirgli2YKpQrBtLkOARZOtr6xAUnhAVEBfrCtPHuCAAEABAAABC4FgQARAHBAQAUBCQkODAcDChAKEBIT' + + 'CAwNDFFZBR8NAQANAQgDDQFAAQRfWQ8BHwE/AU8BBA8BPwECCAMBAQkPDwBfWQ8DCRIAPz8rERIAORgvX15dcSsAGhgQzF9eXXEyKxEAMxESATk5ERI5OTIyMhEzMzEwAREhFSEVIRUhESMRIzUzESEVAWcCr/1RAZL+brSvrwN7BOb+JJ3Vgf7pAReBA+mbAAAAAQA6' + + 'AAAEUAWWAC0AmEBWLSQgACMfJiYQDAgYFxcqACoPCwQECAADLy4iDg8OUVkmCgsKUVkjrwsBAAsQCyALAwtAHw8PHw8vDwMJAw8PBBQUG3NZDxgBCwUYFAcFKgQqdFktBBgAPzMrEQAzGD8zX15dKxESADkYL19eXTMazl1dMisRADMrEQAzERIBFzkRMzMzERI5ETMR' + + 'MzMzETMzEjk5MjEwAQ4BIyE1PgE9ASM1MzUjNTM1NDYzMhYXBy4BIyIGHQEhFSEVIRUhFRQGByEyNwRQEbCQ/UZZVrq6urrOxJPIIq4Vb0dycAGY/mgBmP5oXE0B464dATeWoZouoHkZgYyBgsPJeW05QEtzfYqBjIEHd7opsAAAAAABAIj/OAYjBUAALgBjQDUuAAAS' + + 'CQkNChkrKwEsGhsbIyMiIhwsCgQvMB4nUFkbQB4QLRIZAxYKFgVQWRYQDg8rIwAKFQA/zjMzPz8rERIAFzkYPxrOKxESARc5ETMRMxEzETMzETMRMzMRMzMRMzEwBQE1NCYjIgYVESMRNCczHgIXMz4BMzIWFxMzBzYzMhYVESMRNCYjIgcDESM1AwF9AYNWcHOGswaq' + + 'AQIDAgM6lmx7kB3fnnsqHaSVslZwLSSosuHIAwdvnXiwoP2NA1O9KgUsOU9zWmJrAb/3BbLL/S8Crp14Df6t/Z39/jsAAAAFABkAAAWuBYEAGwAfACMAJgApAJJASxsXFykoJyAUFBkBJR0FJCQfIQMVEAoODiYMCBAVECorJRMPFxgXX1kgHAwYIx8LGwAbX1knCAQA' + + 'JhUYKSgYACgoABgDAhEVEgYCAwA/Mz8zEhc5Ly8vETkREjkRMzMzKxEAMzMzETMzMysRADMzMxESATk5ETMzMzMRMxESFzkRMzMzMjIyETMzMzMyETMxMBMzETMTIREzETMVIxUzFSMRIwEhESMRIzUzNSMFITUhBSEnIwEjEwEzJxmP3vsB86yOjo6O5v7Z/j+qj4+P' + + 'A1wA//5v/m8BYJHPAyKdqfzQb3cD8gGP/nEBj/5xm+eb/isB1f4rAdWb5+fn5+f+fv70Aym+AAQAnv/sCGcFgQAKABEAJwBOAYtAJg8FBQZDQkIoAAsgEjweIiIbGRcvLi5IPDwXCwMGNDQoKAYGUE9IuP/4QNcTFkg0CBMWSEg0PysrMlBZLysWFCVQWRQWDwRfWT9G' + + 'UFk5QwEDD0MfQy9DAw0GQz8/GiEZGhlQWR4aHBwaPw8BD0AJEUgPGh8aAhADDxoPGgYHBw5fWQcDBhJAUAEwUAEgUAEQUAEAUAHQUAHAUAGwUAGgUAGQUAGAUAFwUAFgUAFQUAHwUAHgUAHQUAHAUAGwUAEwUAEgUAEQUAEAUAE74FAB0FABwFABsFABoFABkFABgFAB' + + 'cFABYFABUFABQFABj1ABf1ABb1ABMFABIFABEFABAFABB15dXV1dXV1dcXFxcXFycnJycnJeXV1dXV1dXV1dcXFxcXFxcXFxcnJycnIAPz8rERIAOTkYLy9fXl0rXREzLxEzKxEAMxEzGC8zX15dX10rKwAYPysAGD8zKxESADk5KysREgE5ETkRMxESFzkRMzMRMxEz' + + 'MzMRMxI5OREzETMRMxEzETMxMAEUBCsBESMRITIEBxAhIxEzIAEGIyImNREjNTM3MxUzFSMRFBYzMjclFAYjIiYnNx4BMzI1NC4BJy4CNTQ2MzIWFwcuASMiFRQWFx4CA7r+++CCtQEr7QEEtv64aXEBQAJ7TFFpXWhvNW6dnSk3HD0C6Leqoa8cnxFjWLgkR4BtaDio' + + 'oY2lFqEKVkabV4JybDwD2cjs/dsFgd7MARH91P1MGHt6AcWD8vKD/mJOSQ5ieIFueBo9OmkfKh8gGztXPnB3aXQRMDRVJjcdGjxdAAAA//8AqP/sCQcFgRAmADUAABAHAFYFUQAAAAcAEwAAB3wFgQAfACMAJwArAC4AMQA0AIBAQS4yMQMWHh8fAQYXFhYUEAYQNjUr' + + 'JyMDExQTX1k0HRgBFDAsCgcPEA9fWSgkIAUQMhcUMS4QFBAUEA0eGxcDCQ0SAD8zPzMzEjk5Ly8ROTkREjkRMzMzMysRADMzMzMRMzMzMysRADMzMzMREgE5OREzMxEzETMzETMSFzkxMAEzFSMHMxUhAyMDIQMjAyE1MycjNTMDMxMhEzMTIRMzATM3IQUzNyEFIScj' + + 'ASMTASMTAQczBwltmkLc/viH5ID+ioHkh/7420KZbXPHbAG3cLdvAbdrx/2D5D7+nvzw40D+ngHHASE+owJDkEf89o5HAakvXQPym+ab/ioB1v4qAdab5psBj/5xAY/+cQGP/PDm5ubm5v5//tIBLv7SBA3DAAACALQAAAYXBMsADwAfAF1AFxMQBQYQBhsNDg4gGBsb' + + 'IRERDwYGEA8ZQQ8BOQAOAToADwAMAUAAWQAPATkAEAATAUAAWQAQAToAPysAGD8rABg/PxESOS8ROS8RATMRMxEzETMSOTkRMxEzMTABMh4BFREjNTQuASMhESMRAREzESEyPgE1ETMRFA4BIwLBrcBZuDFycP6xuQGOuAFUb3EwuVvBqwTLaunK/vj8mZ9H+98Ey/s1' + + 'Atn90UejlQKi/VLL6mgAAwChAOkDfgXMAB0AKQAtAGdAGh4FBS0RDiQkFBgYLC0sLi8nCBcPDxQQAA0IuP/AQBoLEkggEAEIEAgQEiEaA0AJD0gDKlAtAS0SAAA/L10zzCsyMhE5OS8vXSs5OREzMxEzETMREgE5OREzETMzETMzETMRMzEwAQ4BIyARNDYzMhYXMyc1' + + 'IzUzNTMVMxUjERQXIyY1JRQWMzI2NTQmIyIGAyEVIQKkI2xW/uKVjFZpIwEBeHh+XFwEeAf+f1Bib11cb2JRggLO/TICN0k/AXvBwj9FNqpcZ2dc/VBkOBlh95mFkJeRh4n9gF0AAAAAAQAQ/+wEVgWWACsAqkBpICcnBCkfJCQOEAsLEgoOGRgYAwQOBCwtIhAREFFZ' + + 'KQsMC1FZJg8MHwx/DI8MnwwFDEAnL0gADBAMgAwDCQxAHw8RHxFfEQMPER8RjxGvEQQPEY8RAgsDEREAFRUcc1kZFQcHAHNZAwcZAD8zKwAYPzMrERIAORgvX15dcXIzGsxeXStxMisRADMrEQAzERIBOTkRMzMRMxEzMzMRMxEzETMzEjkRMzEwJTI2NxcOASMiAgMj' + + 'NzMnNyM3MxI2MzIWFwcuASMiBgchByEGFRQXIQchHgECs2R4Drke267Z/R6rKHgDA6AogSD426/bHbkOeWqOlxUBvij+YwMEAcQo/mwWon5kWw6bqAEGAQSBTlZ/AQH7qZoOW2SuvH8YPigmgcO1AAABAB8AAAU/BYEAFABSQCkOCAsDAwYHBw0JDAMCAhEAEgwSFhUP' + + 'CxQAFF9ZCAQQEgAAAg0SEgYCAwA/Mz8zEjkvEjkzMysRADMzERIBOTkRMzMzETMRMzMzETMSFzkxMBMzETMRMwEzASEVIQEjASMHESMRIx+Jv2oCPeH9twKQ/cUCRO39zCOUv4kDLQJU/awCVP2soP1zAo1x/eQCjQAAAQAuAAAEtAWBABcATUAoABMTCgUODgoRDQ0K' + + 'AwcHCQkKFQoWAxkYABMVE19ZDBAGAgQJFQMJEgA/PxIXOSsRADMREgEXOREzETMRMxEzETMRMxEzETMRMzEwARElFQUVJRUFESMRBTUlNQU1JREhNSEVAtABR/65AUf+ub7+uQFH/rkBR/4cBIYE5f6drJ+qpayfqv5dAUCpmqumqZqrAcecnAAFACn+aQfuBnMAEgA6' + + 'AEYAVQBfAJVAU1sdKhdWTSMxMzMnN1M7AABBUwknI1YdCGBhJ0czR2FZF01WIwQgEyBYYVkFEAMQPmBZIBAgEBowM0AtMyoqMwQaXmFZCRoSE09gWRMSA0RgWQMSAD8rABg/KwAYP8YrABg/My8RMxoQzRI5OS8vKxESADkrERIAFzkrEQAzERIBFzkRMxEzETMRMxEz' + + 'ETMzETMxMAEUBiMiJwMGByM+ATcTPgEzMhYBIi4BJw4BIyImNTQ2MzIWFzcaATcOAQc1NiU3NjcXBgceARIVFAIEATQmIyIGFRQWMzI2AQ4CBwIHFjMyNhI1NAIBJiMiBhUUFjMyB+6vjmxWOCYesxsyCXEkm36CqPs0RGNuPiaBSlhdZFEmVh0gO4ZbfuxCugEyJk9/' + + 'MExOmuV5o/70A5NVSExcWEdJXfv/LEg9NEYyiIt3x3bC/WdASSs9OS1wATaOrE3+/qE9OZ4mAcSVipr+UR0/N0VOU1FGWBgSrwFuAa50BzIkQVwCKVlYG0xzBKj+37jX/onGAR5hcXReYXR4BJZKvNDs/rR5ecIBX734ASr7eyopMTEtAAAAAgAF/lcECAXMACEALQBN' + + 'QCoiEAUaEysCBAAoHBcYGRwFAAYvLhMrFRgrGB8WHyVgWR8FFBYSCA1gWQgALysAGD8zPysREgA5OREzETMREgEXOREzEhc5ETMyMTABFAMTFhUUBiMiJzUWMzI2NTQnCwIHIwEbAQI1NDYzMhYHNCYjIgYVFBYXPgEECOizF5qMSFBTRT5AEnrhqX+oASajraSdgH6W' + + 'pj4zMEA1KTdMBLa8/lz9lk5AfokTmyI8NzNCAcH+WwET+gIe/tYBRAHskICYlnI1RkM4Tv5+gegAAAAEABkAAAVBBYEAGgAgACUAKgCyQGYaAQEbGwAZAwMAJyMjHB8fCgAQDAwKJiUeCQkSDgoACiwrJQhgWSQE7wwBDA0eAQ0dGu8QARARQCYXETAlQCVQJQMwDUAN' + + 'UA0DLw0BABEQESARAwkDJQ0REQ0lAwoTEypfWRMDChIAPz8rERIAFzkYLy8vX15dXV1dETMzGhDNXTIyETMzEM1dMjIrERIBOTkRMzMzETMzMxEzETMREjkRMzMRMxEzETMRMxEzETMxMAEHMxUjDgEjIREjESM1MzUjNTM1ITIWFzMVIwcnIRUhNgEyNyEVESEmIyEE' + + '6gNafTPmpv5iv4+Pj48CUbDwMXdZvgP9QAK/BP7Au079dAKLUr7+hQPZOIV1gv3bAxyFYoX5fnuFLCxiGv79ZGQB0GMAAAACAGf/LAWgBiMAHgAlAGlAOAoJCREWDgYaGiIDGx8AABsTFgQnJg4iHCJfWRQTX1kWHBQUAxtAGRwTBg1fWQoKBgQDI19ZBAMEAD/NKwAY' + + 'PzMvKwAYPzMazRI5LxI5KysRADMREgEXOREzETMzMxEzMxEzMxEzMTATEAAlNTMVFgQXBy4BJxE+ATc1IzUhEQYEBxUjNSQAExQSFxEGAmcBUQE2fMcBBUu2Na1/cM1J8QGhZP7dr3z+zP6twvDV3OkCxwFIAXYPj48LnaI2amwN+5IITkT+oP4aZnwLwsITAYQBQvn+' + + 'zxMEbg/+3gAAAAADAAAAAAVXBYEAFwAbACIAcEA7AwIgCwgEIAEVEgcABQAUFBARBQkJDQwRDCMkEBIZBxcAF19ZHAQADwsTFBNfWRoIFCAAFAAUAw0SAwMAPz8SOTkvLzkRMzMrEQAzMxEzMysRADMzGD8REgE5OREzMxEzETMzETMREhc5ETMzMTARIRMzEyEVIRcz' + + 'FSMTIwMhAyMTIzUzNykCByEBMyYvAQcGAYHC2b4Bff6/W+aqpcOh/X6ixqis6Vz+uwNd/qBXAg/+guxFFhsJIQOnAdr+JpXhlf5kAZz+ZAGcleHhAXazRFMcbgAAAQAP/+wEZQXWADUAgUBDLjU1CQodFDQYLwQqIyQZExMDDw8kKgoENzYjIywnLBovGRoZX1kJCQEM' + + 'ARITEl9ZNBMaExoTJwwnIGBZJwwGYFkMEwA/KwAYLysREgA5ORgvLxEzKxEAMxESORgvKxEAMxEzERI5GC8REgEXOREzMxEzETMSFzkyETMzETMxMAEhBhUUFjMyNjcXAiEiJDU0NyM1Mz4BPwEhNSE2NTQmIyIGByc+ATMyFhUUBzMVIw4BBwYHIQRZ/LQOo4aFoher' + + 'RP5Z3v8ABj91J5akRf3lAwoSiXpvhxO2KNHB0+8Jic4ohJlwRwK+AeQoRHmLhX4l/prfwS8plT9cMRWVK0FwfnhtIbOezcAtLZUvRyofIgAAAgBo/ywFeQYgABgAHwBeQDALExAJFxccBhgZAwMYEwMhIA8dBh1fWQwMCQdABgQAHF9ZGABAFgASEgAAEF9ZABMAPysR' + + 'ADMYLxEzGhDNKwAYPxrNMzMvKxEAMxESARc5ETMRMzMzETMzETMxMAUkABEQACU1MxUEEwcuAScRJBMXBgQHFSMBFBIXEQYCAs7+3f69AUYBIHwBm4e1K76EAQeMnFL+4r98/lzjwcfdERcBggE/AT4BeRWNjBT+uTxugwr7khYBDk6rvAvCA5vr/s4bBGcX/tsAAwCU' + + '/xAFgAZnACEAKgAyAAAFIzUjFSM1IzUzESM1MzUzFTM1MxUzIBEUBgceARUUBCsBATQmIyERITI2EzQpAREhMjYDI6R4ps2qqtOpcqQYAfCMgKi2/u70VwFLnJT+vwFBmZdR/qL+nAFzr6Dw8PDwkARek+bm5ub+qn2qHRS5jbzRBBRyYv5Cc/3/+f4EggAA///+mwPR' + + 'AXcGoBAHAA3+egEfAAAABABF//QG0AWMAAsADwAbADQAeEBIDg8MDS8uLiEiKCKyWxwoFgYABrJbEAAADw0iBigGNjUAIQELBSElJR62WSsluFsrMrZZLysEDwMMEgkTtlkDCbhbAxm2WQMTAD8rKysAGD8/PzMrKysRADNfXl0REgEXOREzKxEBMxEzKxEBMzMRMxEz' + + 'ETMxMAEUBiMiJjU0NjMyFgEjATMTNCYjIgYVFBYzMjYBEDMyNjcXDgEjIiY1NDYzMhYXBy4BIyIGBtCinpyfmaakmPs7mwOanZVNW1tRT1tYUvqbxEVeC40OpoOpsbCpfqITjwpTS2xXAbLX5+Hd5N/l/XAFgfwxs6GetqulpwLG/q1SVwl6mOja1+mNdgtIVaQAAAAC' + + 'ABP/7AJ+BZUAHAAmAEtAJiQaGg8MCR0WFgIDCQMnKE8oAQoZJA8kDyQfJAICJAIkBiATBwAGAC/NP80SOTkvL10RMxDNMgFdERI5OREzMxEzETMzMxEzMTAlMjczDgEjIiY9AQYHNTY3ETQ2MzIWFRQCBxUUFhM0JiMiBhURNhIBsWchRRR4bW9/M1FPNYN7ZW6hikCQ' + + 'ODMzMl9xTtWanZ+brxsfSR8cAkuSmZyQvv7CT/RmdgQUan1pd/4FQAEPAAAABAC8AAAILgWBAAwAFwAjACcAVkAuJhgNJR4TDAAJBgEDAwQECRMNBCkoLykBGxYPCgEFAyEPEB8QAhAQJSQkBwAEEgA/MzMzLzMzL10zPzMzPzMBXRESFzkRMxEzMxEzMxEzMxEzMzEw' + + 'IQEXESMRMwEmNREzEQEUBiMiJjU0NjMgAzQmIyIGFRQWMzI2ATUhFQQm/TAGoMoC2AiiAzawr6ixsqsBW59UZWZYV19nWv4QAnsEpv78WAWB+1KgcgOc+n8CsrzLyb69yf56k4OFkZGGf/3mkpIABAAf//AFxQWWAAoAEwAjADMAVUAsJAwAAAEGEAEQFCwcFBw1NCAo' + + 'yFkgBAwKyVkBDAEMGAIYMMhZGBMCC8lZAhAAPysAGD8rERIAOTkYLy8rABg/KxESATk5ETMSOTkRMxEzETMyMTABIxEhMhYVFAYrARkBMzI2NTQmIwEUAgQjIiQCNTQSJDMyBBIHNAIkIyIEAhUUEgQzMiQSAm+HAVqEqaKL08pQWFdRAozB/q/Bxf6tu8IBUMHCAVHA' + + 'XKj+26qo/tyoqQEiqakBJqgBJwMrhHF1hwGK/txMSEZK/tjB/q/ByQFNvcEBUMLD/rLCqQEhqqn+3Kep/tyoqAEkAAIAvAJ6BxkFgQATABsAT0ArFRYNCgoLEQAAExMLFgMcHRQYGRjKWQ8LBQAAFiAWUBaAFgQWAQcHEQwZAwA/MzMzETPMXTIyMjIrEQAzERIBFzkR' + + 'MxEzETMRMxEzMTABEQ8BAyMDJw8BESMRMxMXNxMzEQERIxEjNSEVBpsJC+Zso00BAYC+3w9KqLj7KIb/AooCegJrFiD9ywGdzhQR/boDB/3NKsABnfz5Apj9aAKYb28AAAEAbAAABbgFlgAjAEtAJR4ZBgsZCxUPDwoDFRohAyElJB4YDAgGGxobX1kLGhIAEl9ZAAQA' + + 'PysAGD8zKxEAMzMzMzMREgE5OREzMxEzMxESOTkRMxEzMTABIAARFAIHPwEzFSE1NhI1NCYjIgYVFBIXFSE1Mx8BJgI1EAADEgEvAVvX0VF/9P2zs7vu2NruurT9s/R/UdDYAVsFlv6x/trJ/qxzBQac4F8BHbjo/v7ot/7jYOCcBgVxAVXKASYBTwAAAAACAFj/3gR8' + + 'BEgAFwAfAEBAIh8ODgQYFQwgIQEMBCEgDS8fAR8fABwIEBEGFAEVFAEUABYAPzJdXc0/zRI5L13NERIBOTldETMzETMRMzEwBSImAjU0EjYzMhYSFSERHgEzMjY3Fw4BExEuASMiBxECa57whYz0k5f0hvzFMqNVhLVSSGDbkjOjVrN1IpEBB52rAQCKjf7+pv6cNkZo' + + 'giqZfAKKARU1QXX+6gAABAAI/8cHYgXpAAMACwAOADUAfUBDKBsPAwAWFRUuIgQLAQIHCAgGDAIFCyIADwk3Ni4bJRIlK7ZZKSUNBrZZDAkNDQQJBAglCCUIAwISEhi2WRYSEwMJAAA/xj8zKwAYEMQROTkvLxEzERI5LxI5KxEAMysREgA5ORESARc5ETMRMxEzETMz' + + 'ETMRMxEzMzEwCQEjCQEDIQcjATMJAQMzARQGIyImJzcWMzI2NTQmJy4CNTQ2MzIWFwcmIyIGFRQeARceAgZz+7OOBE38p1n+v12NAUaKAUH+eXv4BVO2ppWyHX4ovm1kRk3Nd0CnoY+mFoAZsmFcJEOBfnFABen53gYi/HUA//8DbvySAub+iP0deYRueRmQQEI0PRMz' + + 'PlxCdX1mbxB2NzwiLB8hIEFhAAEAYAAAA18EOgAJADZAGwcDAgkFBQIDAgoLCAdQWQgIAwADBFBZAxUADwA/PysREgA5GC8rERIBOTkRMxEzERI5MTABMxEhNSERITUhAqu0/QECS/3cAiQEOvvGiwE/igAAAP//AFD/9AZ7BYEQJgB7AAAQJwf+AvkAABEHAHUD+f3N' + + 'AAeyAhIZAD81AAAA//8AIv/0BoUFjRAmAHT5ABAnB/4DAwAAEQcAdQQD/c0AB7ICIxkAPzUAAAD//wBQ/9AGsgWBECYAewAAECcH/gL5AAAQBwgKA8z9zv//AD3/0AayBY0QJwf+AvkAABAnCAoDzP3OEAYAdSIA//8AlP/QBrIFgRAnB/4C+QAAECcICgPM/c4QBggH' + + 'KAD//wCq/9AGsgWBECcH/gK9AAAQJwgKA8z9zhAGCAlmAAABADv/7AOuBE4AGQBiQEEGBwcTAA0TDRobEBdQWSAUcBSAFNAU4BQFABQQFGAUcBSAFMAU0BQHCRQUEBYPBm8GfwbPBgQKAwYGCgoDUFkKEAA/KxEAMxgvX15dPzMvXl1xKxESATk5ETMRMxEzMTABNCYj' + + 'IgYHJz4BMzISERACIyImJzceATMyNgLygY5pcg65Hdmn4PDv46vhFbYPgWCKhwIi4r1qWg6XrP7h/u/+7f7hupwMbGjRAAAAAAEBogBkBl4CRAANACRADwALBQkCAgUFDA4PAg0IDAAvM80yERIBOTkRMxEzEjk5MTABFhcjJic1NjczBgchFQKBOT5If4+Pf0g+OQPd' + + 'ASlDgpVJJEmVgkNWAAAAAQEQ/8MC8AR/AA0AJEAPCAsLAwAADg8MCwAJAoAFAC8azDI5OS8REgE5ETMzETMxMAEGBzU2NzMWFxUmJxEjAdVDgpVJJEmVgkNWA6A5Pkh/j49/SD45/CMAAAABAaIAZAZeAkQADQAkQA8LAAUJAgIFDQUODwgMAw0ALzPNMhESATk5ETMR' + + 'MxI5OTEwASYnMxYXFQYHIzY3ITUFfzk+SH+Pj39IPjn8IwF/Q4KVSSRJlYJDVgAAAAEBEP/DAvAEfwANACJADgMNDQgMDA4PAAsCCYAGAC8azDI5ORESATkRMzMRMzEwJTY3FQYHIyYnNRYXETMCK0OClUkkSZWCQ1aiOT5If4+Pf0g+OQPdAAABAaIAZAZeAkQAFwA8' + + 'QBsACwYCCQkGFwwRFQ4OEQYRGBkOCQkLFQMDAAsAL80yETMRMxEzERIBOTkRMxEzEjk5ETMRMxI5OTEwARYXIyYnNTY3MwYHISYnMxYXFQYHIzY3AoE5Pkh/j49/SD45Av45Pkh/j49/SD45ASlDgpVJJEmVgkNDgpVJJEmVgkMAAAABARD/wwLwBH8AFwA2QBgPCAgL' + + 'CwAVAwMAABgZDBcOFRILAAkCgAUALxrMMjk5L8wyOTkREgE5ETMRMxEzETMRMzEwAQYHNTY3MxYXFSYnETY3FQYHIyYnNRYXAdVDgpVJJEmVgkNDgpVJJEmVgkMDoDk+SH+Pj39IPjn9Ajk+SH+Pj39IPjkAAgEQ/0gC8AR/AAMAGwA+QBwTDAwBDw8EGQcHAAQEHRwQ' + + 'GxIZFgMAFg8EDQYJAC/MMjk5L97NEMwyOTkREgE5ETMzETMRMxEzMxEzMTAFIRUhEwYHNTY3MxYXFSYnETY3FQYHIyYnNRYXARAB4P4gxUOClUkkSZWCQ0OClUkkSZWCQ2hQBFg5Pkh/j49/SD45/QI5Pkh/j49/SD45AAAAAAIBogDwBl4C0AAFAB0AAAEXITcnBRcW' + + 'FyMmJzU2NzMGByEmJzMWFxUGByM2NwIwXQL2XmT9DSkjIkh/j49/SCIjApojIkh/j49/SCgnAeNTVVED4jEwlUkkSZUwMTEwlUkkSZUwMQAAAgA4/+UDugXFABwAKgBZQDMXCB0QEREAJAgACCwrFxQaFFBZDCBRWQ8MDAUvGm8a3xoDDxq/GgIJAxoFJ1BZBRYvLAFd' + + 'AD8rABgvX15dcRI5LzMrKxEAMxESATk5ETMRMxEzMxI5MTABFAoBBiMiJjU0EjYzMhYXMzc0JiMiBgc3NjMyEgMuASMiBgIVFBYzMjYSA7pIk9aEoax/zn5UhSAEBIKBNXsuJHFww8/TEW1FUYZXWlJOh18Dqp7+h/7lk8u0pgE+pGNUdcTRKCOTPv7o/ftYc4T++4Rz' + + 'hpcBCwACAAQAAAThBYEABQAOALhAfAEACgoCDgUCBRAPBgUCDgQOX1kEEgogExZICQoBEgoAA38QAS8QAQ8QAf8QAd8QAb8QAa8QAZAQAXAQASAQAY8QAT8QAQ8QATr/EAHfEAHPEAGvEAGQEAFgEAFAEAFfEAEPEAHfEAG/EAGfEAGPEAFwEAFQEAEgEAEAEAFdXV1d' + + 'XV1dXXFxcnJycnJycl5dXV1xcXFxcXFxcnJyAD8yXl0rPysRADMzMxESATk5ETMSOREzMzEwATMBFSE3JQEuAScHBgcBAgrZAf77IwEEFP6uHjMCCR8r/q0FgfsMjY0PA15KoQwgb2r8pAABAOv+TgWsBYEABwAiQBADBAAHBAcICQUCX1kFAwQAAC8yPysREgE5OREz' + + 'ETMxMAERIREjESERBPT8tr8Ewf5OBpH5bwcz+M0AAAAAAQCa/k4FMAWBAAsARUAkBwMDCQAIAgoGAgAEDA0DBAcEB19ZAggEAwEACQAJX1kAIA0BXQAvKxESADkYPzk5KxESADkREgEXOREzETMzETMxMBM1CQE1IRUhCQEhFZoCe/2VBEL8sgJI/agDov5ObQMwAyxq' + + 'mP0E/PmYAAEAZQJgBEgC8gADABZACgACBAUBAK1ZAbMAPysREgE5OTEwEzUhFWUD4wJgkpIA///+YAAAAmIFgRAGB/4AAAABALsBvgF+ApoAAwAjQBQDAAAEBQEAm1kPAR8BAgFADyZIAQAvK10rERIBOREzMTATNTMVu8MBvtzcAAABADP/8gRiBlQACACkQGwHAQAG' + + 'BggFAgIDAwgJCgUCr1kPBQEKBQUBB7MGAa8KAZAKAXAKAVAKATAKAY8KAW8KATAKARAKAfAKAU8KAS8KAQ8KATnvCgHQCgGwCgHvCgHPCgGvCgGPCgFwCgGvCgGPCgFvCgFPCgEvCgFdXV1dXXFxcXFxcnJyXl1dXV1xcXFxcnJycnIALzM/EjkvXl0rERIBOTkRMxEz' + + 'EjkRMzMyMTAFIwEjNSETATMCbmr+5bYBDvIBroEOAxh1/U4FhwAAAwBXAMsFXQPXABUAIQAtAFJAMR8ZEAUiBAAoCwALLy4W4CUBJQ4c7ysBKwUZIhAEAz8IAQhAEhVIAAhQCAIIEw8OAQ4AL10z3F0rcTIXOc1dMhDNXTIREgE5OREzEhc5MjEwARQGIyIDDgEjIiY1' + + 'NDYzMhM+ATMyFiUiBgceATMyNjU0JgUuASMiBhUUFjMyNgVdsoXLhESrWIuusYjJgEGtYYyp/rNGdzgzd01TbW3+MzN3TlRpaFdGeAJOpt0BGoWP07Cr2P7lgpPWU36CgICRcWuT+oCAk29wjn4AAAABAZgAAAZgBMcABQAYQAkCBQUDBgcCBQEALy/NERIBOTkRMzEw' + + 'ATMRIRUhAZheBGr7OATH+5deAAEBFv/+BKoECAATAB9ADRMACwoAChQVDwULABIAPzIvzRESATk5ETMRMzEwBRE0PgEzMh4BFREjETQmIyIGFREBFnTRgoPTd2fEoKLAAgIAlu+FhPKU/gACAr7k4sL+AAAAAAAB/57+TgKUBeMAFgGcQP8OFBQDBwcYFwsQUFkAC0AL' + + 'Ag0DCwAFUFkAdBgBZhgBVBgBRBgBNhgBJhgBFhgBBhgBlhgBSRgBORgBKRgBGRgBCRgBZ/kYAekYAdsYAaYYAXYYASkYARkYAQkYAekYAbkYAakYAZkYAYkYAXsYAWsYAVsYAUsYATsYASkYARkYAQsYAfsYAekYAdkYAcsYAbsYAasYAZkYAYsYAXsYAWsYAVsYAUkY' + + 'ATkYASkYARsYAQsYATf5GAHpGAHbGAHLGAG7GAGtGAGdGAGNGAF7GAFtGAEBXxgBQBgBMBgBIBgBEBgBABgB9BgB5BgB1BgBxBgBtBgBoBgBkBgBAoAYAXBAJxgBYBgBUBgBEBgB3xgBwBgBsBgBoBgBcBgBYBgBLxgBHxgBDxgBB15dXV1dXV1dXV1xcXFxcV9xcXFx' + + 'cXFxcnJycnJyX3JycnJycnJycnJeXV1dXV1dXV1dXV1dXV1dXXFxcXFxcXFxcXFxcXFycnJycnJycl5dXV1dXV1xcXFxcXFxcQAvKwAYL19eXSsREgE5ETMzETMxMBMiJzUWMzI1AzQ2MzIXFSYjIgYVERQGJE83PDmsAq6mVywxQlNZrv5OE5MY6QS8rLYSlBt3cvtC' + + 'rLcAAgA4AVAELAP0ABUALADGQA0eCCoSCBItLhYnrVkeuP/AtCM8SB4WuP/AsxccSBa4/8CzEBRIFrj/wEAiCQxIFkApQCk8SCkhIRutWW8hAQAhECECCwMhC0AAEK1ZCLj/wLQnPEgIALj/wLMXHEgAuP/AsxAUSAC4/8BAIwkMSABAEkApPEgSCwsFrVkPC88LAgtA' + + 'FxxIC0ALE0gLLy4BXQAvKytdKwAYEMQrGt0rKyvEKysAGhgQzF9eXV0rABgQxCsa3SsrK8QrKxESATk5ETMRMzEwASImJyYjIgYHNTYzMhceATMyNxUOAQMiJicmIyIGBzU2MzIWFx4BMzI3FQ4BAyhFkUmFVD9yR3KVZ4Rucy2Ccjp1VUWRSYVUQ3RBb5g0f4IfeC2C' + + 'ckJxAvYrGi0lM5BULyggXpUqJv5aLBovKS+NVBouDCFcky8jAAAAAQBBADcEJAUQABMAaUBBDAsNChAHEQYAAwECDAkSDgUJDgkVFBAHCAkIrVkDAgEABAUErVkRBh8FLwVfBW8F3wUFBQ0MCwoPCQFQCdAJAgkAL11dMzMzM85dMjIrEQAzMzMzKxEAMzMREgE5OREz' + + 'ETMSFzkxMAEDIxMjNSETITUhEzMDIRUhAyEVAcCYkZftATe+/gsCPZqPmAEV/qK/Ah0BWP7fASGUAWyUAST+3JT+lJQAAwBkAPQERwRQAAMABwALAFdANAsHAggEAAIADQwJCK1ZCQkEAQQFrVmwBAEPBD8EbwR/BAQMAwQBAK1ZUAEBDwEfAT8BAwEAL11dKwAYL19e' + + 'XV0rERIAORgvKxESATk5ETMzETMzMTATNSEVATUhFQE1IRVkA+P8HQPj/B0D4wO8lJT9OJSUAWSUlAABAGT/3QRHBXUAGwAAEzUhNyE1IRMzAzMVIQchFSEHIRUhAyMTIzUhN2QBy1j93QJhfJB88v7QWAGI/jpYAh79pHaRdvYBNFgCWJTQlAEl/tuU0JTQlP7pAReU' + + '0AAAAAACAD8AAAQkBM8ABgAKAElAKgUCBAcACgIAAgsMBwitWQcFTwZfBo8GAwYDQAJQAoACAwIBAFAEgAQCBAAZL10zM81dMs1dMhgvKxESATk5ETMRMzMRMzEwEzUBFQkBFQU1IRVBA+P8pgNa/BsD4wJ3zQGLmv6o/qiZ7JGRAAAAAAIAQQAABCQEzwAGAAoASUAq' + + 'AgYDBwAJBgAGCwwHCK1ZBwNABFAEgAQDBAFPAF8AjwADAAYFUAKAAgICABkvXTMzzV0yzV0yGC8rERIBOTkRMxEzMxEzMTA3NQkBNQEVATUhFUEDWvymA+P8HQPj7JkBWAFYmv51zf2JkZEAAAAAAgCdAAAENwSBAAQACQAsQBQCCAUABgQACAQDCwoDAQEACAIFAAAv' + + 'zS8zEjkRMxESARc5ETMRMxEzMTAzEQkBESUhEQkBnQHNAc38tgL6/oP+gwJ7Agb9+v2FUgIGAar+VgAAAAEAZAC0BEcC8gAFABtADAUAAAIGBwEErVkBAAAvLysREgE5OREzMTA3ESEVIRFkA+P8rrQCPpL+VAAAAAECIv2aA9IGqgAVABpACgABCAEXFhELBQEALy/N' + + 'ORESATk5ETMxMAEjETQ2MzIWFRQGIyInJicmIyIHBhUCtZOofj9LMyUeDRAmIRAkCQb9mgdWxPY/MCg0CggqJycjaQAAAAABAQX9mgK1BqoAFAAaQAoCFAgUFRYRCwUAAC8vzTkREgE5OREzMTABMxEUBiMiJjU0NjMyFxYXFjMyNjUCIpOjhDtOMiQhGgofHxAdFwaq' + + '+KjD9T0vJzUQBCklM38AAAAB//YCJQW1ArYAAwAYtQMFAAQBALgBArJZAfwAPysRATMRMzEwAzUhFQoFvwIlkZEAAAAAAQHY/ZMCaQdIAAMAF7MCAwQDuAEGtFsD/gD6AD8/KxEBMzEwATMRIwHYkZEHSPZLAAAAAAECjf2TBbUCtgAFACazAwAGALgBBrZbAgcF/gAD' + + 'uAECslkA/AA/KwAYPxEBMysRATMxMAEhFSERIwKNAyj9aZECtpH7bgAAAAH/9v2TAx4CtgAFACazAgUGBbgBBrZbAAYE/gIFuAECslkC/AA/KwAYPxEBMysRATMxMAM1IREjEQoDKJECJZH63QSSAAAAAAECjQIlBbUHSAAFACSzAgUGBbgBBrRbBAcCBbgBArRZAvwA' + + '+gA/PysRATMrEQEzMTABMxEhFSECjZECl/zYB0j7bpEAAf/2AiUDHgdIAAUAJrMFAgYCuAEGtlsABgP6AgW4AQKyWQL8AD8rABg/EQEzKxEBMzEwAzUhETMRCgKXkQIlkQSS+t0AAAAAAQKN/ZMFtQdIAAcALbUFAQEACAC4AQa2WwQJB/4CBbgBArRZAvwA+gA/PysA' + + 'GD8RATMrEQEzETMxMAEzESEVIREjAo2RApf9aZEHSPtukftuAAAAAf/2/ZMDHgdIAAcALLQHBAIIArgBBkAJWwAIBv4D+gIHuAECslkC/AA/KwAYPz8RATMrEQEzMzEwAzUhETMRIxEKApeRkQIlkQSS9ksEkgAB//b9kwW1ArYABwAvtQMJBAcIB7gBBkAJWwAIBv4E' + + 'AAEAuAECslkB/AA/KxEAMxg/EQEzKxEBMxEzMTADNSEVIREjEQoFv/1pkQIlkZH7bgSSAAAB//YCJQW1B0gABwAvtQcJBQIIArgBBkAJWwAIA/oFAQEAuAECslkB/AA/KxEAMxg/EQEzKxEBMxEzMTADNSERMxEhFQoCl5EClwIlkQSS+26RAAAB//b9kwW1B0gACwA7' + + 'QAkHDQUICAILDAu4AQZAC1sADAr+A/oICwILuAECs1kFAvwAPzMrEQAzGD8/EQEzKxEBMzMRMxEzMTADNSERMxEhFSERIxEKApeRApf9aZECJZEEkvtukftuBJIAAAAC//YBcQW1A2oAAwAHAC5ACgMHBwkABAQIBQS4AQK0WQX9AQC4AQKyWQH7AD8rABg/KxEBMxEz' + + 'ETMRMzEwAzUhFQE1IRUKBb/6QQW/AtmRkf6YkZEAAAAAAgHZ/ZMD0gdIAAMABwAoswUECAS4AQe0WwEACAC4AQS2WwcD/gQA+gA/Mj8zKxEBMysRATMxMAEzESMBMxEjAdmRkQFokZEHSPZLCbX2SwABAo39kwW1A2oACQA8tQcDAwAKALgBBkAJWwIGBgsJ/gQHuAEC' + + 'tFkE/QADuAECslkA+wA/KwAYPysAGD8RATMRMysRATMRMzEwASEVIRUhFSERIwKNAyj9aQKX/WmRA2qR15H8IgAAAAEB2f2TBbUCtgAJADizBgkKCbgBBLRbAgUKBbgBB7ZbAQsCBgkGuAECtVkJ/AQI/gA/Mz8rEQAzEQEzKxEBMysRATMxMAEVIREjESMRIxEFtf4d' + + 'kdeRAraR+24EkvtuBSMAAAACAdn9kwW1A2oABQALAESzCQYMBrgBB7RbAwAMALgBBLZbAggIDQYJuAECt1kG/QsF/gADuAECslkA+wA/KwAYPzM/KxEBMxEzKxEBMysRATMxMAEhFSERIwEhFSERIwHZA9z8tZEBaAJ0/h2RA2qR+roEb5H8IgAB//b9kwMeA2oACQA6' + + 'tAkGAwoDuAEGQAlbBAAACgj+BgO4AQK0WQb7Agm4AQKyWQL9AD8rABg/KwAYPxEBMxEzKxEBMzMxMAM1ITUhNSERIxEKApf9aQMokQFxkdeR+ikD3gAAAf/2/ZMD0gK2AAkAOrMGCQoJuAEEtFsCBQoFuAEHQApbAAoECP4GAAEAuAECslkB/AA/KxEAMxg/MxEBMysR' + + 'ATMrEQEzMTADNSERIxEjESMRCgPckdeRAiWR+t0EkvtuBJIAAAL/9v2TA9IDagAFAAsARLMLCAwIuAEEtFsAAwwDuAEHtlsECQkMCgm4AQK3WQr9Agf+BQS4AQKyWQX7AD8rABg/Mz8rEQEzETMrEQEzKxEBMzEwAREjESE1ASMRITUhA9KR/LUCdJH+HQJ0A2r6KQVG' + + 'kfopA96RAAECjQFxBbUHSAAJADm1AgYGCQoJuAEGtlsECAgLBgm4AQK0WQb9AgW4AQK0WQL7APoAPz8rABg/KxEBMxEzKxEBMxEzMTABMxEhFSEVIRUhAo2RApf9aQKX/NgHSPwikdeRAAABAdkCJQW1B0gACQA1swIJCgm4AQe0WwgFCgW4AQS0WwQLCAW4AQK2WQII' + + '/AAG+gA/Mz8zKxEBMysRATMrEQEzMTABMxEhFSERMxEzA0GRAeP8JJHXB0j7bpEFI/tuAAACAdkBcQW1B0gABQALAESzCAsMC7gBB7RbAgUMBbgBBLZbCgQEDQgLuAECtFkI+wIFuAECtVkC/QYA+gA/Mj8rABg/KxEBMxEzKxEBMysRATMxMAEzESEVIQEzESEVIQHZ' + + 'kQNL/CQBaJEB4/2MB0j6upEF1/wikQAB//YBcQMeB0gACQA6tAkGAgoCuAEGQAlbBAAACgf6BgO4AQK0WQb7Agm4AQKyWQL9AD8rABg/KwAYPxEBMxEzKxEBMzMxMAM1ITUhNSERMxEKApf9aQKXkQFxkdeRA976KQAAAf/2AiUD0gdIAAkAOrMABwoHuAEHtFsGAwoD' + + 'uAEEQApbAQoIBPoGAgIBuAECslkC/AA/KxEAMxg/MxEBMysRATMrEQEzMTABITUhETMRMxEzA9L8JAHjkdeRAiWRBJL7bgSSAAL/9gFxA9IHSAAFAAsARLMICwwLuAEEtFsAAwwDuAEHtlsJAQEMCgm4AQK3WQr7BAb6AgG4AQKyWQL9AD8rABg/Mz8rEQEzETMrEQEz' + + 'KxEBMzEwASE1IREzITMRITUhA9L8JANLkf4Hkf2MAeMBcZEFRvuRkQAAAAECjf2TBbUHSAALAEG2BgIKCgsMC7gBBkAJWwQICA0L/gYJuAECtFkG/QIFuAECtFkC+wD6AD8/KwAYPysAGD8RATMRMysRATMRMzMxMAEzESEVIRUhFSERIwKNkQKX/WkCl/1pkQdI/CKR' + + '15H8IgACAdn9kwW1B0gABwALAD+zCgsMC7gBBLZbAgYGBwwHuAEHQAtbBA0HC/4ACPoCBbgBArJZAvwAPysAGD8zPzMRATMrEQEzETMrEQEzMTABMxEhFSERIwEzESMDQZEB4/4dkf6YkZEHSPtukftuCbX2SwAAAAMB2f2TBbUHSAADAAkADwBQtgwICA8JEAm4AQe0' + + 'WwABEAG4AQS2Ww4GBhEMD7gBArRZDPsEB7gBAkAJWQT9CgL6CQH+AD8zPzM/KwAYPysRATMRMysRATMrEQEzMxEzMTABIxEzEyEVIREjETMRIRUhAmqRkdcCdP4dkZEB4/2M/ZMJtfq6kfwiCbX8IpEAAAH/9v2TAx4HSAALAD+1CQYCCgwKuAEGQAtbBAAADAr+B/oG' + + 'A7gBArRZBvsCC7gBArJZAv0APysAGD8rABg/PxEBMxEzKxEBMzMzMTADNSE1ITUhETMRIxEKApf9aQKXkZEBcZHXkQPe9ksD3gAAAAAC//b9kwPSB0gABwALAD2zCgsMC7gBB7VbBQIGDAa4AQRAC1sADAsG/ggD+gIHuAECslkC/AA/KwAYPzM/MxEBMysRATMzKxEB' + + 'MzEwAzUhETMRIxEBMxEjCgHjkZEBaJGRAiWRBJL2SwSSBSP2SwAAA//2/ZMD0gdIAAMACQAPAE+2BgoKCQsQC7gBBLRbAgMQA7gBB7ZbBw0NEA8MuAECt1kP/QML/gkGuAECtVkJ+wAE+gA/Mz8rABg/Mz8rEQEzETMrEQEzKxEBMzMRMzEwATMRIwEzESE1IRMjESE1' + + 'IQNBkZH+mJH9jAHjkZH+HQJ0B0j2Swm1+5GR+ikD3pEAAv/2/ZMFtQNqAAcACwBCtwsDAw0EBwwHuAEGtlsIAAAMCQi4AQJACVkJ+wb+BAABALgBArJZAf0APysRADMYPz8rEQEzETMrEQEzETMRMzEwAzUhFSERIxEBNSEVCgW//WmR/WkFvwFxkZH8IgPeAWiRkQAB' + + '//b9kwW1ArYACwBAtQMNCAsMC7gBBLRbBAcMB7gBB0ALWwAMBgr+CAQAAQC4AQKyWQH8AD8rEQAzMxg/MxEBMysRATMrEQEzETMxMAM1IRUhESMRIxEjEQoFv/4dkdeRAiWRkftuBJL7bgSSAAAAA//2/ZMFtQNqAAUACwAPAFOzCQYQBrgBB0AJWw4DAxAFAhACuAEE' + + 'tlsNCAgRDw64AQK2WQ/7CQMEA7gBArZZBgT9CwH+AD8zPzMrEQAzGD8rEQEzETMrEQEzETMRMysRATMxMAEjESE1ITMhFSERIwEVITUCapH+HQJ01wJ0/h2RAnT6Qf2TA96RkfwiBdeRkQAAAAL/9gFxBbUHSAAHAAsAQrcACAgMBQIMArgBBrZbBwsLDQkIuAECQAlZ' + + 'Cf0D+gUBAQC4AQKyWQH7AD8rEQAzGD8/KxEBMxEzKxEBMxEzETMxMAM1IREzESEVATUhFQoCl5ECl/pBBb8C2ZED3vwikf6YkZEAAf/2AiUFtQdIAAsAQLULDQkGDAa4AQe0WwUCDAK4AQRAC1sADAcD+gkFAQEAuAECslkB/AA/KxEAMzMYPzMRATMrEQEzKxEBMxEz' + + 'MTADNSERMxEzETMRIRUKAeOR15EB4wIlkQSS+24EkvtukQAAAAP/9gFxBbUHSAAFAAsADwBStwkMDBAICxALuAEEtFsCBRAFuAEHtlsEDw8RDQy4AQK2WQ39BQkKCbgBArZZAgr7AAb6AD8zPzMrEQAzGD8rEQEzETMrEQEzKxEBMxEzETMxMAEzESEVIQEzESE1IQE1' + + 'IRUDQZEB4/2M/piR/YwB4/4dBb8HSPwikQRv+5GR/geRkQAB//b9kwW1B0gAEwBaQA0LDw8VDQkQEAYCExQTuAEGQA1bBAAAFBL+B/oMBAUEuAECt1kJBfsQAAEAuAECs1kNAf0APzMrEQAzGD8zKxEAMxg/PxEBMxEzKxEBMzMzETMzETMRMzEwAzUhNSE1IREzESEV' + + 'IRUhFSERIxEKApf9aQKXkQKX/WkCl/1pkQFxkdeRA978IpHXkfwiA94AAAAAAf/2/ZMFtQdIABMAVkAJBBUSCQkPDBQMuAEEt1sCBQUTCBQIuAEHQAtbDRQAEPoJBQ0ODbgBArdZEgIO/AcL/gA/Mz8zMysRADMzGD8zEQEzKxEBMzMRMysRATMzETMRMzEwATMRIRUh' + + 'ESMRIxEjESE1IREzETMDQZEB4/4dkdeR/h0B45HXB0j7bpH7bgSS+24EkpEEkvtuAAAABP/2/ZMFtQdIAAUACwARABcAbbYCDw8FDBgMuAEHQAxbFQkJGBQLCxcIGAi4AQRACVsEDg4ZBRUWFbgBAkALWQIW+wAS+g8JCgm4AQK2WQwK/REH/gA/Mz8zKxEAMxg/Mz8z' + + 'KxEAMxEBMxEzKxEBMzMRMxEzETMrEQEzMxEzMTABMxEhFSEDIxEhNSEzIRUhESMBMxEhNSEDQZEB4/2M15H+HQJ01wJ0/h2R/piR/YwB4wdI/CKR+roD3pGR/CIJtfuRkQAAAAABAAACbQWrB0gAAwAStgAFAQQC+gEALz8RATMRMzEwASERIQWr+lUFqwJtBNsAAAAB' + + 'AAD9kwWrAm0AAwAStgAFAQQCAf4APy8RATMRMzEwASERIQWr+lUFq/2TBNoAAAABAAD9kwWrB0gAAwATtwAFAQQC+gH+AD8/EQEzETMxMAEhESEFq/pVBav9kwm1AAABAAD9kwLWB0gAAwATtwAFAQQC+gH+AD8/EQEzEjkxMAEhESEC1v0qAtb9kwm1AAABAtX9kwWr' + + 'B0gAAwATtwEEAAUC+gH+AD8/EQEzEjkxMAEhESEFq/0qAtb9kwm1AAAqAGf99QWrBqMAAwAHAAsADwATABcAGwAfACMAJwArAC8AMwA3ADsAPwBDAEcASwBPAFMAVwBbAF8AYwBnAGsAbwBzAHcAewB/AIMAhwCLAI8AkwCXAJsAnwCjAKcAABMzFSMlMxUjJTMVIwUz' + + 'FSMlMxUjJTMVIwczFSMlMxUjJTMVIwUzFSMlMxUjJTMVIwczFSMlMxUjJTMVIxczFSMlMxUjJTMVIwczFSMlMxUjJTMVIwUzFSMlMxUjJTMVIwczFSMlMxUjJTMVIxczFSMlMxUjJTMVIwEzFSMlMxUjJTMVIwEzFSMlMxUjJTMVIwEzFSMRMxUjETMVIxEzFSMRMxUj' + + 'ETMVI2doaAGeaGgBoGdn/ZFoaAGfaGgBn2hoz2dn/mBoaP5iaGgEDWho/mFoaP5haGjPaGgBnmhoAaBnZ89oaP5haGj+YWhoz2hoAZ5oaAGgZ2f9kWhoAZ9oaAGfaGjPZ2f+YGho/mJoaM9oaAGfaGgBn2ho/MJoaAGfaGgBn2ho+/NoaAGeaGgBoGdnAZ5oaGhoaGho' + + 'aGhoaGgFImJiYmJiYWBgYGBgYGBgYGBgY2BgYGBgYGBgYGBgY2BgYGBgYGFhYWFhYl5eXl5eYmFhYWFhYGBgYGBgB+1iYmJiYgEjYGBgYGD+32L+32D+3WD+3WH+3mEH7mAAVAAA/fUFqwajAAMABwALAA8AEwAXABsAHwAjACcAKwAvADMANwA7AD8AQwBHAEsATwBT' + + 'AFcAWwBfAGMAZwBrAG8AcwB3AHsAfwCDAIcAiwCPAJMAlwCbAJ8AowCnAKsArwCzALcAuwC/AMMAxwDLAM8A0wDXANsA3wDjAOcA6wDvAPMA9wD7AP8BAwEHAQsBDwETARcBGwEfASMBJwErAS8BMwE3ATsBPwFDAUcBSwFPAAATMxUjNzMVIzczFSM3MxUjNzMVIzcz' + + 'FSMFMxUjNzMVIzczFSM3MxUjNzMVIzczFSMFMxUjNzMVIzczFSM3MxUjNzMVIzczFSMFMxUjNzMVIzczFSM3MxUjNzMVIzczFSMFMxUjNzMVIzczFSM3MxUjNzMVIzczFSMFMxUjJTMVIzczFSM3MxUjNzMVIyUzFSMFMxUjJzMVIyczFSMnMxUjJzMVIyczFSMHMxUj' + + 'NzMVIzczFSM3MxUjNzMVIzczFSMXMxUjJzMVIyczFSMnMxUjJzMVIyczFSMHMxUjNzMVIzczFSM3MxUjNzMVIzczFSMBMxUjNzMVIzczFSM3MxUjNzMVIzczFSMBMxUjNzMVIzczFSM3MxUjNzMVIzczFSMTMxUjBzMVIxczFSMHMxUjFzMVIwczFSMXMxUjBzMVIxcz' + + 'FSMHMxUjETMVIxMzFSNnaGjPaGjPaGjQaGjQaGjPaGj7jGdnz2dnz2dnz2ho0Gho0Gdn/FpoaM9oaM9oaNBoaNBoaM9oaPuMZ2fPZ2fPZ2fPaGjQaGjQZ2f8Wmhoz2hoz2ho0Gho0Ghoz2ho+4xnZwGeZ2fPaGjQaGjQZ2f8wmdnA6VoaM9oaNBoaNBoaM9oaM9oaGdn' + + 'Z89nZ89nZ89oaNBoaNBnZ2doaM9oaNBoaNBoaM9oaM9oaGdnZ89nZ89nZ89oaNBoaNBnZ/vzZ2fPZ2fPZ2fPaGjQaGjQZ2f8Wmhoz2hoz2ho0Gho0Ghoz2hoz2hoZ2dnZ2hoZ2dnZ2hoZ2dnZ2hoZ2dnZ2hoZ2dnZ2dnaGgFImJiYmJiYmJiYmJiYWBgYGBgYGBgYGBg' + + 'YGBgYGBgYGBgYGBgY2BgYGBgYGBgYGBgYGBgYGBgYGBgYGBgY2BgYGBgYGBgYGBgYGFhYWFhYWFhYWFhYl5eXl5eXl5eXl5eYmFhYWFhYWFhYWFhYGBgYGBgYGBgYGBgB+1iYmJiYmJiYmJiYgEjYGBgYGBgYGBgYGD+32JhYGBgY2BgYGNgYGFiXmJhYGAH7WIBI2AA' + + 'AEMAAP2TBdUGowBJAE0AUQBVAFkAXQBhAGUAaQBtAHEAdQB5AH0AgQCFAIkAjQCRAJUAmQCdAKEApQCpAK0AsQC1ALkAvQDBAMUAyQDNANEA1QDZAN0A4QDlAOkA7QDxAPUA+QD9AQEBBQEJAQ0BEQEVARkBHQEhASUBKQEtATEBNQE5AT0BQQFFAUkBTQFRAAABIREz' + + 'NSMRMzUjETM1IxEzNSMRMzUjETM1MxUzNTMVMzUzFTM1MxUzNTMVMzUzFTM1MxUjFTMRIxUzESMVMxEjFTMRIxUzESMVMwEVMzUzFTM1MxUzNTMVMzUXIxUzJyMVMycjFTMnIxUzBxUzNTMVMzUzFTM1MxUzNQUjFTM3FTM1MxUzNTMVMzUFFTM1IRUzNQc1IxUlFTM1' + + 'EzUjFSM1IxUjNSMVIzUjFQcVMzUzFTM1MxUzNTMVMzUTNSMVIzUjFSM1IxUjNSMVBxUzNTMVMzUzFTM1MxUzNRMjFTMnIxUzJyMVMycjFTMBIxUzJyMVMycjFTMnIxUzARUzNTMVMzUXIxUzJyMVMwcVMzUzFTM1ByMVMzcVMzUFFTM1FzUjFRc1IxUjNSMVBxUzNTMV' + + 'MzUTNSMVIzUjFQcVMzUzFTM1EyMVMycjFTMTIxUzJyMVMwXV+itqampqampqampqamtqa2pra2tra2pramtra2tra2tra2tra2v6lWtqa2pra2tra2vWa2vWamrVamrVa2pramtra/3qampramtra2v8qmsBP2vVawGra2tra2tramtqa2tqa2pra2tra2tra2pramtr' + + 'amtqa2tra2tr1mtr1mpq1WpqAhZra9Zra9Vra9VrawLra2prampq1Wpq1Wtqa2tqamtq/lZr1WvVamtqa2tqa2pqa2pra2prampq1Wpqa2tr1Wtr/ZMBImEBImEBI2ABIWIBIWIBIWBgYGBgYGBgYGBgYGDBYv7fYP7dYP7dYP7dXv7dYAZqYGBgYGBgYGDAYmJiYmJi' + + 'YmFgYGBgYGBgYMBgYGBgYGBgYMNgYGBgYGBgYGBg/t9hYWFhYWFhYWJeXl5eXl5eXv7fYWFhYWFhYWFgYGBgYGBgYGAGzWJiYmJiYmIBImJiYmJiYmL+32BgYGDAYmJiYWBgYGDAYGBgYMNgYGBgYMFhYWFhYl5eXl7+32FhYWFgYGBgYAbNYmJiASJiYmIAAAAAAQB7' + + 'AHUEWgRUAAMAEbUBAAUEAwEALy8REgE5OTEwEyERIXsD3/whBFT8IQACAAYAAATPBMkAAwAHAB5ADAQABwEAAQgJBQMEAAAvzS/NERIBOTkRMxEzMTATIREhExEhEQYEyfs3TAQxBMn7NwR9+88EMQABAG0BfwJpA3sAAwAWQAkDAgUEAlABAQEAL10vERIBOTkxMAEh' + + 'ESECaf4EAfwBfwH8AAAAAgBtAX8CaQN7AAMABwAqQBYFAwYCAwIJCP8GAQYCBwABEAFQAQMBAC9dzS/NcRESATk5ETMRMzEwASERIQMRIRECaf4EAfxM/pwBfwH8/lABYv6eAAAAAAEAAAAACAACaAADABK2AQAFBAADEgA/zRESATk5MTARIREhCAD4AAJo/ZgAAQGe' + + 'AAAGTASuAAIAFUAJAgEAAwMEAQASAD/NERIBFzkxMCEJAQGeAlgCVgSu+1IAAQGR/+UGWgSsAAIAErYBAAQDAAITAD/NERIBOTkxMAkCAZEEyfs3BKz9nv2bAAAAAQGe/+UGTASTAAIAFUAJAgEAAwQDAgETAD/NERIBFzkxMAkCBkz9qv2oBJP7UgSuAAAAAAEBkf/l' + + 'BloErAACABK2AAIEAwABEwA/zRESATk5MTABEQEGWvs3BKz7OQJlAAAAAAIACAAAA+4FoAAFAAkAMUAXAAEIAwQIAwYGBQcCCQUCBQoLBgMECAEALzM/MxESATk5ETMRMxI5ERczETMzMTAhIwkBMwkEAiNS/jcByVIBy/4O/p4BYgFgAs8C0f0xAjX9y/3CAj4AAgCn' + + 'AKIELgQpAA8AHwAeQAwQABgIAAggIRQMHAQAL83czRESATk5ETMRMzEwEzQ+ATMyHgEVFA4BIyIuATcUHgEzMj4BNTQuASMiDgGneNF5etJ5edF7etB4VmKnY2KpZGKrYmGpYgJketJ5edN5edF4eNB6YqlhYKpiYqtiYqkAAAAAEABiAFYEXwRSAAcADwAXAB8AJwAv' + + 'ADcAPwBHAE8AVwBfAGcAbwB3AH8AAAEUIyI1NDMyJxQjIjU0MzITFCMiNTQzMhcUIyI1NDMyARQjIjU0MzIHFCMiNTQzMgEUIyI1NDMyARQjIjU0MzIBFCMiNTQzMgcUIyI1NDMyARQjIjU0MzIHFCMiNTQzMgEUIyI1NDMyJRQjIjU0MzITFCMiNTQzMicUIyI1NDMy' + + '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' + + 'HgGbHgGEHgF7HgFUHgEeEV1dXV01ABFdNQAAAP//AD0AAATjBMsSJgUaAAARBwT0AuEAAAAKtAEAGgEaABFdNf//AK4AAAFmBkYSJgUFAAAQBwTxAQoAAP//AFIAAASBBisSJgUBAAAQBwT3AgQAAP//AFAAAAPDBisSJgULAAAQBwT3AdUAAP//AI8AAARxBisSJgUU' + + 'AAAQBwT3AkIAAAABAFAAAATsBoEAEQBKQBcABQkKCg8GBQQBERAQEwQBARIPBgYEEUEJAToAEAAJATkAAQAEATkAAgE2AD8/Mz8vPxI5ETMRATMRMxEzETMSFzkRMxEzMTATIxEzETMBNhM3MwcOAgcBI+6eulYBw5YcF74XCjxjZwFp6gQvAlL+Sv2TjAEC39trrJZm' + + '/iMAAAAB/OkEvwAEBjIACQAKsgmABQAvGswxMBMjIgQHIzYkITMEBOv+t16FeAF+AQ0YBbd2gr61AAAAAAH//QS/AxgGMgAJAAqyAYAFAC8azDEwAzMgBBcjJiQrAQMYAQwBf3iFXv636wQGMrW+gnYAAAAAAfz8BMQAAAXQAA0AELUAAAMLgAgALxrNMjkvMTARLgEj' + + 'Ig4BByM+ATMyF2CwRltxPhKSINy6d9cE+xcpFy4yj301AAABAAAExAMFBdAADgAMsweAAwsALzMazTEwER4BMzI2NzMOAiMiJidhsUWEghSUGW2yek6tWAWbGCo0Q2ZxNSIVAAAAABAAAAAACAAFwQAFAAkADQARABcAHQAhACUAKQAvAEEATwBXAF8AagB2APlAggcf' + + 'HxIGHh4SCwEVFRJxZRgqYGtVXV1GTUpQQlg/OgMTEzo8M1hQRmsqZQorCgASEngiGi4uKw8nJysOJiYjGysrdyggFC4uK25oaEc8VFQ9RwEbDCRcVQsjRjBiYl03dBYsRxskVSM0dCwsdDQjVSQbRwgrDwcDGRkQCAQcJx8TKxIAPzMzM8YyMjIyETMzMxEXOS8vLy8v' + + 'Ly8vETMRMzMzETMzETMRMxEzETMRMzMRMxEzLzMRMxEzMzMRATMRMzMzETMRMxEzETMRMzMRMxEzMxIXOREzETMRMxEzMxEzETMRMxEzETMRMxEzMxEzETMRMxEzMTABIzUjNSEFITUhASMRMwEhNSEBITUzNTMBIxUjESEBITUhASMRMwEhNSEFIREzFTMlIiYnNx4B' + + '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' + + 'BeQQBgB2AAD//wBqBLECEgXkEAYAQwAA//8AagSxAhIF5BAGAEMAAP///hcFyf/IBysSBgLLAAD///4XBcn/yAcrEgYCywAA////6QSxArYFvRAGAp4AAP///+kEsQK2Bb0QBgKeAAD////pBLECtgW9EAYCngAA////6QSxArYFvRAGAp4AAP///+kEsQK2Bb0QBgKe' + + 'AAD////pBLECtgW9EAYCngAA///8//7J/bP/dRAHCTP98AAAAAD///yL/sn9P/91EAcJM/18AAAAAP//++v+yfyf/3UQBwkz/NwAAAAA///8z/7J/YP/dRAHCTP9wAAAAAD///um/sn8Wv91EAcJM/yXAAAAAP///+kEsQK2Bb0QBgKeAAD///1t/sn+If91EAcJM/5e' + + 'AAAAAP///oT+yf84/3UQBwkz/3UAAAAA///+yv7J/37/dRAGCTO7AP///Pn+yf2t/3UQBwkz/eoAAAAA///9ev7J/i7/dRAHCTP+awAAAAD///1m/sn+Gv91EAcJM/5XAAAAAP///J7+yf1S/3UQBwkz/Y8AAAAA///9I/7J/df/dRAHCTP+FAAAAAD///w6/sn87v91' + + 'EAcJM/0rAAAAAP///+kEsQK2Bb0QBgKeAAD////pBLECtgW9EAYCngAA////6QSxArYFvRAGAp4AAP///+kEsQK2Bb0QBgKeAAAAAQCIAAABPAQmAAMAFkAJAwAABAUCDwAVAD8/ERIBOREzMTAzETMRiLQEJvvaAAAAA/7WBbIBKwcrAAMABwALACVAFQifC/8LAgtA' + + 'CQ1ICwsFAQEEbwABAAAvcjIyETMyLytdMzEwEzUzFSE1MxUlITUhiKP9q6MBmv3bAiUFsri4uLj6fwAAAAP+1gWoASsHKwAFAAkADQBVQBwMBwQHBAYBDQ1rBgEGhAEB8AEBArAB0AHgAQMBuP/AQBoeIUgPAQHgAfABAp8BATABQAFQAXABgAEFAQAvXV1dcStxX3Fy' + + 'L3IzLxESOTkvLzMxMBMzFQUjNRc1MxUhNTMVPuL++4Lvo/2rowcrDKsK1ri4uLgAAAAAA/7PBagBMwcrAAgADAAQAFtAHwgDBw8LAwsDCxBrDAEMBweEAAHwAAECsADQAOAAAwC4/8BAGh4hSA8AAeAA8AACnwABMABAAFAAcACAAAUAAC9dXV1xK3FfcXIyLy9yMzk5' + + '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' + + 'ADr/tAAkADz/aAAkAFn/2wAkAFr/2wAkAFz/2wAkB+X/aAApAA//HQApABH/HQApACT/jwAvAAP/tAAvADf/aAAvADn/aAAvADr/aAAvADz/aAAvAFz/tAAvB+X/jwAzAAP/2wAzAA/++AAzABH++AAzACT/aAA1ADf/2wA1ADn/2wA1ADr/2wA1ADz/2wA3AAP/2wA3' + + 'AA//HQA3ABD/jwA3ABH/HQA3AB3/HQA3AB7/HQA3ACT/aAA3ADL/2wA3AET/HQA3AEb/HQA3AEj/HQA3AEz/tAA3AFL/HQA3AFX/tAA3AFb/HQA3AFj/tAA3AFr/jwA3AFz/jwA5AA//RAA5ABD/jwA5ABH/RAA5AB3/tAA5AB7/tAA5ACT/aAA5AET/aAA5AEj/jwA5' + + 'AEz/2wA5AFL/jwA5AFX/tAA5AFj/tAA5AFz/tAA6AA//jwA6ABD/2wA6ABH/jwA6AB3/2wA6AB7/2wA6ACT/tAA6AET/tAA6AEj/2wA6AFL/2wA6AFX/2wA6AFj/2wA6AFz/7gA8AAP/2wA8AA/++AA8ABD/RAA8ABH++AA8AB3/jwA8AB7/ewA8ACT/aAA8AET/aAA8' + + 'AEj/RAA8AEz/tAA8AFL/RAA8AFP/aAA8AFT/RAA8AFj/jwA8AFn/jwBJAEn/2wBJB+UAJQBVAA//jwBVABH/jwBVB+UATABZAA//aABZABH/aABaAA//jwBaABH/jwBcAA//aABcABH/aAM7A0v/1QM7A1L/1QM7A1b/aAM7A1f/aAM7A1j/xQM7A13/aAM7A2X/2wM7' + + 'A2//2wM7A3n/2wNAA1f/vgNBA0MAqgNBA0T/aANBA0f/aANBA0v/jQNBA07/aANBA1L/jQNBA1j/jQNBA1v/ngNBA2D/aANBA2H/tANBA2P/RgNBA2n/aANBA2v/tANBA2z/aANBA27/aANBA3H/RgNBA3X/RgNBA3j/RgNBA3wAYgNBA37/RgNCA1f/0QNCA13/0QNE' + + 'AAP/jwNEA0v/1QNEA1L/1QNEA1b/aANEA1f/aANEA1j/xQNEA13/aANEA2X/2wNEA2//2wNEA3n/2wNEB+X/aANGAA//HwNGABH/HwNGA0MApANGA0T/RANGA0f/RANGA07/RANGA2v/qANGA3wAWANHAAP/jwNHA0v/1QNHA1L/1QNHA1b/iQNHA1f/aANHA13/aANL' + + 'A0T/2wNLA0f/2wNLA07/2wNLA1f/vgNLA13/vgNNA0v/wQNNA1L/wQNNA1j/jwNNA17/5wNNA2P/5wNNA2b/5wNNA2j/5wNNA2r/5wNNA3D/5wNNA3H/5wNNA3X/5wNNA3j/5wNNA3v/5wNNA37/5wNNA4D/5wNOAAP/jwNOA0v/1QNOA1L/1QNOA1b/aANOA1f/aANO' + + 'A13/aANSA0T/2wNSA0f/1QNSA07/2wNSA1f/vgNSA13/vgNUAAP/2wNUAA/++gNUABH++gNUA0T/aANUA0f/aANUA07/aANVA3L/ngNVA3b/ngNWAAP/2wNWAA//HwNWABH/HwNWAB3/HwNWAB7/HwNWA0MAvANWA0T/aANWA0f/aANWA0v/2wNWA07/aANWA1L/2wNW' + + 'A1j/2wNWA1v/2wNWA17/HwNWA1//HwNWA2L/TgNWA2P/HwNWA2X/TgNWA2f/HwNWA2n/agNWA2v/tANWA27/agNWA2//jwNWA3H/HwNWA3X/HwNWA3f/UANWA3j/HwNWA3n/jwNWA3r/agNWA3wAvANWA33/TgNWA37/HwNWA3//TgNXAAP/2wNXAA/++gNXABD/RgNX' + + 'ABH++gNXAB3/jwNXAB7/jwNXA0MAvANXA0T/aANXA0f/aANXA0v/jQNXA07/aANXA1L/jQNXA1j/jQNXA1v/ngNXA2D/aANXA2H/tANXA2P/RgNXA2X/ngNXA2n/aANXA2v/tANXA2z/aANXA27/aANXA3H/RgNXA3X/RgNXA3j/RgNXA3wAeQNXA37/RgNYA0T/xQNY' + + 'A1f/vgNYA13/vgNaA17/sgNaA2P/sgNaA2b/sgNaA2r/2QNaA3H/sgNaA3X/sgNaA3j/sgNaA3v/sgNaA37/sgNaA4D/sgNbA1f/0QNbA13/0QNdAAP/2wNdA0MAqgNdA0T/aANdA0f/aANdA0v/jQNdA07/aANdA1L/jQNdA1j/jQNdA1v/ngNdA2D/aANdA2H/tANd' + + 'A2P/RgNdA2n/aANdA2v/tANdA2z/aANdA27/aANdA3H/RgNdA3X/RgNdA3j/RgNdA3wAYgNdA37/RgNmA23/2QNmA3L/4wNmA3b/4wNmA3n/yQNoA17/dwNoA2D/2wNoA2P/dwNoA2X/qgNoA2b/tANoA2n/2wNoA2r/ngNoA2v/2wNoA2z/2wNoA2//qgNoA3H/dwNo' + + 'A3L/qgNoA3X/dwNoA3b/qgNoA3j/dwNoA3v/dwNoA37/dwNoA4D/dwNqA23/2QNsA17/5wNsA2P/5wNsA2b/5wNsA2j/5wNsA2r/5wNsA3D/5wNsA3H/5wNsA3T/5wNsA3X/5wNsA3j/5wNsA3v/5wNsA37/5wNsA4D/5wNtA17/4QNtA2P/4QNtA2b/4QNtA3D/4QNt' + + 'A3H/4QNtA3T/0QNtA3X/4QNtA3f/zwNtA3j/2wNtA3v/4QNtA37/4QNtA3//zwNtA4D/4QNwA17/yQNwA2P/yQNwA2b/yQNwA2j/yQNwA3D/yQNwA3H/yQNwA3T/yQNwA3X/yQNwA3j/yQNwA37/yQNxA23/2QNxA3L/4wNxA3b/4wNxA3n/yQNyA17/4wNyA2P/4wNy' + + 'A2j/4wNyA3H/4wNyA3T/4wNyA3X/4wNyA3j/4wNyA3v/4wNyA4D/4wNzA23/2QNzA3L/4wNzA3b/4wN2A17/4wN2A2P/4wN2A2b/4wN2A2j/4wN2A3H/4wN2A3T/4wN2A3X/4wN2A3j/4wN2A3v/4wN2A4D/4wN4A23/2QN4A3L/4wN4A3b/4wN4A3n/yQN5A17/yQN5' + + 'A2P/yQN5A2b/yQN5A2j/yQN5A3H/yQN5A3T/yQN5A3X/yQN5A3j/yQN5A3v/yQN5A37/yQN5A4D/yQN7A23/2QN7A3L/4wN7A3b/4wN7A3n/yQN+A23/2QN+A3L/4wN+A3b/4wN+A3n/yQOAA23/2QOAA3L/4wOAA3b/4wOAA3n/yQO0AA//BgO0ABH/BgO0AG3/dwO0' + + 'AH3/dwO0B+D/0wO6B+X/YAO7B+X/dwPBA8UARAPBA8j/6QPBA8wALQPBA8//0wPBA9D/6QPBA9L/0wPBA9P/YAPBA9T/pgPBA9X/vAPBA9j/YAPBA97/0wPBA+EAFwPBA/P/0wPBA/T/6QPBA/UAFwPBA/4ALQPBB+X/jQPCA8H/0wPCA8j/6QPCA8//6QPCA9L/6QPC' + + 'A9P/pAPCA9T/0QPCA9X/6QPCA9b/0wPCA9j/pAPCA9v/vAPCA97/6QPCA+D/6QPCA+z/6QPCA/T/0wPDA8H/vAPDA8X/0wPDA8f/0wPDA8j/vAPDA8z/6QPDA8//vAPDA9L/vAPDA9P/dwPDA9T/vAPDA9X/vAPDA9b/pgPDA9j/pAPDA9v/jQPDA+D/vAPDA+X/6QPD' + + 'A+3/6QPDA/P/vAPDA/T/6QPDA/b/6QPDA/j/vAPDBAD/6QPEAA//BgPEABH/BgPEAG3/dwPEAH3/dwPEA8H/dwPEA8X/dwPEA8j/0wPEA8z/jQPEA83/0QPEA8//jQPEA9L/pAPEA+D/vAPEA+H/jQPEA+P/jQPEA+X/dwPEA+b/dwPEA+n/jQPEA+z/jQPEA+3/jQPE' + + 'A+7/jQPEA+//dwPEA/H/jQPEA/T/dwPEA/z/jQPEA/3/jQPEA///jQPEBAD/dwPEB+D/0wPFA9QAFwPFA9X/0wPFA9j/ugPFA+gARAPFA+8AFwPFA/QALQPGA8j/0wPGA/L/6QPHA8j/6QPHA8//0wPHA9L/6QPHA9MAFwPHA9QALQPHA9sALQPHA+EAFwPHA+b/5wPH' + + 'A+//6QPHA/T/6QPIA8z/6QPIA8//6QPIA9L/6QPIA9P/0wPIA9T/6QPIA9X/6QPIA9j/0wPIA+D/6QPLA8j/6QPLA8//6QPLA9L/6QPLA9QAFwPLA9X/ugPMA9X/6QPMA+IAFwPMA/QAFwPNA9X/6QPNA9j/6QPNA+EAFwPNA+YAFwPNA+8AFwPNA/IAFwPNA/QAFwPN' + + 'A/j/6QPNA/4AFwPPA8H/0wPPA8X/0wPPA8f/0wPPA8z/6QPPA9T/0wPPA9b/pAPPA9j/0wPPA+D/0wPPA+X/0wPPA+z/6QPPA/b/6QPRAA/+fQPRABH+fQPRAB3/0wPRAB7/0wPRAH3/jQPRA8H/dwPRA8X/dwPRA8f/6QPRA8j/0wPRA8z/jQPRA83/6QPRA8//0wPR' + + 'A9L/6QPRA9P/pAPRA9T/0wPRA9X/6QPRA9b/pAPRA+D/0wPRA+H/vAPRA+X/YAPRA+b/pgPRA+//pgPRA/7/0wPRBAD/vAPSA8H/0wPSA8X/0wPSA8j/6QPSA8z/vAPSA83/6QPSA8//0wPSA9P/vAPSA9T/vAPSA9b/jQPSA9j/vAPSA9v/ugPSA97/6QPSA+EAFwPS' + + 'A+cALQPSA/j/6QPTAA//HQPTABH/HQPTAG3/pgPTAH3/pgPTA8H/vAPTA8X/vAPTA8cAFwPTA8j/6QPTA8z/0wPTA8//pAPTA9X/vAPTA+D/0wPTA+H/pAPTA+P/pgPTA+b/jQPTA+n/pgPTA+v/pgPTA+z/pAPTA+3/pgPTA+//YAPTA/D/pgPTA/H/jQPTA/L/jQPT' + + 'A/T/jQPTA/b/pgPTA/r/pgPTA/z/pgPTA/3/pgPTA///pgPTBAD/jQPTB+D/0wPUAA/+8APUABH+8APUAB3/0wPUAB7/0wPUAG3/pgPUAH3/pAPUA8H/dwPUA8X/pAPUA8j/0wPUA8z/vAPUA8//vAPUA9X/vAPUA97/0wPUA+D/0wPUA+L/0wPUA+P/jQPUA+T/pAPU' + + 'A+X/YAPUA+b/dwPUA+f/vAPUA+j/jQPUA+n/pAPUA+r/vAPUA+v/pAPUA+z/dwPUA+3/pAPUA+7/pAPUA+//dwPUA/D/pAPUA/H/pAPUA/L/dwPUA/b/pAPUA/f/pAPUA/n/pAPUA/r/pAPUA///pAPUBAD/dwPUB+D/6QPVA8H/0wPVA8X/vAPVA8z/vAPVA9P/jQPV' + + 'A9T/pAPVA9j/0wPVA+D/ugPVA+z/vAPWA8j/0wPWA8//vAPWA9L/vAPWA9X/vAPWA97/ugPWA+//6QPWA/T/0wPXA8//0wPXA+EALQPaA+EAFwPaA/QALQPbA+D/vAPbB+X/dwPdA8H/0wPdA8X/0wPdA8f/vAPdA8j/6QPdA8z/ugPdA83/0wPdA8//0wPdA9L/0wPd' + + 'A9P/MwPdA9b/pAPdA9j/YAPdA97/6QPdA+D/pAPdB+X/YAPeA8X/vAPeA8f/5wPeA8j/6QPeA8z/vAPeA9b/ugPeA+D/0wPeA+X/vAPeA+cAFwPeA+z/vAPeA+3/6QPeBAD/6QPfA8H/vAPfA8X/pgPfA8f/0wPfA8z/pAPfA8//6QPfA9L/6QPfA9P/jQPfA9b/pAPf' + + 'A9j/vAPfA+X/pAPfA+z/pAPfA+3/6QPhA+j/6QPhA/P/0wPhA/T/6QPhA/j/0wPiA+H/0QPiA+X/pAPiA+b/6QPiA+f/6QPiA+j/0wPiA+z/pAPiA+3/0wPiA/L/6QPiA/T/0wPiA/X/6QPiA/b/vAPiA/j/vAPiA/v/vAPiA/7/6QPiBAD/0wPjA+H/6QPjA+L/6QPj' + + 'A+X/6QPjA+b/6QPjA+f/6QPjA+j/6QPjA+z/0QPjA+3/6QPjA+//6QPjA/L/6QPjA/P/0wPjA/T/0wPjA/X/6QPjA/j/pAPjA/v/vAPjBAD/6QPkAA//BgPkABH/BgPkA+H/0wPkA+X/pAPkA+b/0wPkA+j/6QPkA+z/0wPkA+//0wPkA/L/0wPkBAD/6QPlA/v/0wPl' + + 'A/4AFwPmA+L/6QPmA+X/0wPmA+f/6QPmA+j/0wPmA+z/vAPmA/P/vAPmA/T/6QPmA/b/0wPmA/j/vAPnA+IAFwPnA/QAFwPnA/j/6QPnA/sALQPoA+L/6QPoA+X/0wPoA+b/6QPoA+j/6QPoA+z/6QPoA+//6QPoA/L/6QPoA/T/6QPoA/X/6QPoA/j/vAPoA/v/0wPr' + + 'A+EALQPrA+IALQPrA+YAFwPrA+gAFwPrA+wAFwPrA+8AFwPrA/IAFwPrA/MAFwPrA/QAFwPrA/4AFwPsA+8AFwPsA/j/0wPtA+L/6QPtA+j/6QPtA/QAFwPvA+X/0wPvA+f/6QPvA+j/6QPvA+z/0wPvA/P/0wPvA/T/6QPvA/b/6QPvA/j/0wPxA+X/0QPxA+j/6QPx' + + 'A+z/ugPxA/P/0wPxA/T/6QPxA/b/6QPxA/j/0wPxBAD/6QPyA+cAFwPyA+8AFwPyA/j/6QPyA/4AFwPzAA//HQPzABH/HQPzA+H/6QPzA+X/vAPzA+b/6QPzA+cARAPzA+z/0wPzA+//6QPzA/L/6QPzA/QAFwP0AA//MwP0ABH/MwP0AH0AFwP0A+H/6QP0A+IAFwP0' + + 'A+X/vAP0A+b/6QP0A+cAFwP0A+z/0wP0A+3/6QP0A+//5wP0A/H/6QP0A/L/6QP0A/X/6QP0A/7/6QP0BAD/6QP1A+L/6QP1A+X/0wP1A+z/0wP1A/P/0wP1A/T/6QP1A/j/0wP1BAD/6QP2A+H/6QP2A+L/6QP2A+b/6QP2A+j/6QP2A+//6QP2A/L/6QP2A/P/6QP2' + + 'A/X/6QP2A/j/0wP3A+b/6QP3A+j/6QP3A+//6QP3A/L/6QP6A+b/6QP6A+//6QP6A/QAFwP9A/P/YAP9A/j/dwP+A+X/0wP+A+YAFwP+A+j/6QP+A+z/0wP+A+8AFwP+A/P/0wP+A/b/6QP+BAD/6QP/A+X/0wP/A+f/6QP/A+z/0wP/A+3/6QP/A/P/0wP/A/b/6QP/' + + 'A/j/0wQPAA//MwQPABH/MwRBAA//BgRBABH/BgRBAB3/0wRBAB7/0wRBAG3/YARBAH3/YARBB+D/0wfkB+T/2wflAAP/tAflAFb/2wflB+X/2wfqA7P/YAfqA7z/YAfqA9P/YAfqA9j/vAfqA9v/vAAAAAAAHgFuAAEAAAAAAAAAVwCwAAEAAAAAAAEADwEoAAEAAAAA' + + 'AAIABwFIAAEAAAAAAAMAGgGGAAEAAAAAAAQADwHBAAEAAAAAAAUADQHtAAEAAAAAAAYADgIZAAEAAAAAAAcAegMeAAEAAAAAAAgAFAPDAAEAAAAAAAkADgP2AAEAAAAAAAoBaQbZAAEAAAAAAAsAHAh9AAEAAAAAAAwALgj4AAEAAAAAAA0ANQmTAAEAAAAAAA4AGgn/' + + 'AAMAAQQJAAAArgAAAAMAAQQJAAEAHgEIAAMAAQQJAAIADgE4AAMAAQQJAAMANAFQAAMAAQQJAAQAHgGhAAMAAQQJAAUAGgHRAAMAAQQJAAYAHAH7AAMAAQQJAAcA9AIoAAMAAQQJAAgAKAOZAAMAAQQJAAkAHAPYAAMAAQQJAAoC0gQFAAMAAQQJAAsAOAhDAAMAAQQJ' + + 'AAwAXAiaAAMAAQQJAA0AagknAAMAAQQJAA4ANAnJAEQAaQBnAGkAdABpAHoAZQBkACAAZABhAHQAYQAgAGMAbwBwAHkAcgBpAGcAaAB0ACAAKABjACkAIAAyADAAMQAwACAARwBvAG8AZwBsAGUAIABDAG8AcgBwAG8AcgBhAHQAaQBvAG4ALgAgAAoAQwBvAHAAeQBy' + + 'AGkAZwBoAHQAIAAoAGMAKQAgADIAMAAxADIAIABSAGUAZAAgAEgAYQB0ACwAIABJAG4AYwAuAABEaWdpdGl6ZWQgZGF0YSBjb3B5cmlnaHQgKGMpIDIwMTAgR29vZ2xlIENvcnBvcmF0aW9uLiAKQ29weXJpZ2h0IChjKSAyMDEyIFJlZCBIYXQsIEluYy4AAEwAaQBi' + + 'AGUAcgBhAHQAaQBvAG4AIABTAGEAbgBzAABMaWJlcmF0aW9uIFNhbnMAAFIAZQBnAHUAbABhAHIAAFJlZ3VsYXIAAEEAcwBjAGUAbgBkAGUAcgAgAC0AIABMAGkAYgBlAHIAYQB0AGkAbwBuACAAUwBhAG4AcwAAQXNjZW5kZXIgLSBMaWJlcmF0aW9uIFNhbnMAAEwA' + + 'aQBiAGUAcgBhAHQAaQBvAG4AIABTAGEAbgBzAABMaWJlcmF0aW9uIFNhbnMAAFYAZQByAHMAaQBvAG4AIAAyAC4AMQAuADUAAFZlcnNpb24gMi4xLjUAAEwAaQBiAGUAcgBhAHQAaQBvAG4AUwBhAG4AcwAATGliZXJhdGlvblNhbnMAAEwAaQBiAGUAcgBhAHQAaQBv' + + 'AG4AIABpAHMAIABhACAAdAByAGEAZABlAG0AYQByAGsAIABvAGYAIABSAGUAZAAgAEgAYQB0ACwAIABJAG4AYwAuACAAcgBlAGcAaQBzAHQAZQByAGUAZAAgAGkAbgAgAFUALgBTAC4AIABQAGEAdABlAG4AdAAgAGEAbgBkACAAVAByAGEAZABlAG0AYQByAGsAIABP' + + 'AGYAZgBpAGMAZQAgAGEAbgBkACAAYwBlAHIAdABhAGkAbgAgAG8AdABoAGUAcgAgAGoAdQByAGkAcwBkAGkAYwB0AGkAbwBuAHMALgAATGliZXJhdGlvbiBpcyBhIHRyYWRlbWFyayBvZiBSZWQgSGF0LCBJbmMuIHJlZ2lzdGVyZWQgaW4gVS5TLiBQYXRlbnQgYW5k' + + 'IFRyYWRlbWFyayBPZmZpY2UgYW5kIGNlcnRhaW4gb3RoZXIganVyaXNkaWN0aW9ucy4AAEEAcwBjAGUAbgBkAGUAcgAgAEMAbwByAHAAbwByAGEAdABpAG8AbgAAQXNjZW5kZXIgQ29ycG9yYXRpb24AAFMAdABlAHYAZQAgAE0AYQB0AHQAZQBzAG8AbgAAU3RldmUg' + + 'TWF0dGVzb24AAEIAYQBzAGUAZAAgAG8AbgAgAEEAcgBpAG0AbwAsACAAdwBoAGkAYwBoACAAdwBhAHMAIABkAGUAcwBpAGcAbgBlAGQAIABiAHkAIABTAHQAZQB2AGUAIABNAGEAdAB0AGUAcwBvAG4AIABhAHMAIABhAG4AIABpAG4AbgBvAHYAYQB0AGkAdgBlACwA' + + 'IAByAGUAZgByAGUAcwBoAGkAbgBnACAAcwBhAG4AcwAgAHMAZQByAGkAZgAgAGQAZQBzAGkAZwBuACAAdABoAGEAdAAgAGkAcwAgAG0AZQB0AHIAaQBjAGEAbABsAHkAIABjAG8AbQBwAGEAdABpAGIAbABlACAAdwBpAHQAaAAgAEEAcgBpAGEAbCEiAC4AIABBAHIA' + + 'aQBtAG8AIABvAGYAZgBlAHIAcwAgAGkAbQBwAHIAbwB2AGUAZAAgAG8AbgAtAHMAYwByAGUAZQBuACAAcgBlAGEAZABhAGIAaQBsAGkAdAB5ACAAYwBoAGEAcgBhAGMAdABlAHIAaQBzAHQAaQBjAHMAIABhAG4AZAAgAHQAaABlACAAcABhAG4ALQBFAHUAcgBvAHAA' + + 'ZQBhAG4AIABXAEcATAAgAGMAaABhAHIAYQBjAHQAZQByACAAcwBlAHQAIABhAG4AZAAgAHMAbwBsAHYAZQBzACAAdABoAGUAIABuAGUAZQBkAHMAIABvAGYAIABkAGUAdgBlAGwAbwBwAGUAcgBzACAAbABvAG8AawBpAG4AZwAgAGYAbwByACAAdwBpAGQAdABoAC0A' + + 'YwBvAG0AcABhAHQAaQBiAGwAZQAgAGYAbwBuAHQAcwAgAHQAbwAgAGEAZABkAHIAZQBzAHMAIABkAG8AYwB1AG0AZQBuAHQAIABwAG8AcgB0AGEAYgBpAGwAaQB0AHkAIABhAGMAcgBvAHMAcwAgAHAAbABhAHQAZgBvAHIAbQBzAC4AAEJhc2VkIG9uIEFyaW1vLCB3' + + 'aGljaCB3YXMgZGVzaWduZWQgYnkgU3RldmUgTWF0dGVzb24gYXMgYW4gaW5ub3ZhdGl2ZSwgcmVmcmVzaGluZyBzYW5zIHNlcmlmIGRlc2lnbiB0aGF0IGlzIG1ldHJpY2FsbHkgY29tcGF0aWJsZSB3aXRoIEFyaWFsqi4gQXJpbW8gb2ZmZXJzIGltcHJvdmVkIG9u' + + 'LXNjcmVlbiByZWFkYWJpbGl0eSBjaGFyYWN0ZXJpc3RpY3MgYW5kIHRoZSBwYW4tRXVyb3BlYW4gV0dMIGNoYXJhY3RlciBzZXQgYW5kIHNvbHZlcyB0aGUgbmVlZHMgb2YgZGV2ZWxvcGVycyBsb29raW5nIGZvciB3aWR0aC1jb21wYXRpYmxlIGZvbnRzIHRvIGFk' + + 'ZHJlc3MgZG9jdW1lbnQgcG9ydGFiaWxpdHkgYWNyb3NzIHBsYXRmb3Jtcy4AAGgAdAB0AHAAOgAvAC8AdwB3AHcALgBhAHMAYwBlAG4AZABlAHIAYwBvAHIAcAAuAGMAbwBtAC8AAGh0dHA6Ly93d3cuYXNjZW5kZXJjb3JwLmNvbS8AAGgAdAB0AHAAOgAvAC8AdwB3' + + 'AHcALgBhAHMAYwBlAG4AZABlAHIAYwBvAHIAcAAuAGMAbwBtAC8AdAB5AHAAZQBkAGUAcwBpAGcAbgBlAHIAcwAuAGgAdABtAGwAAGh0dHA6Ly93d3cuYXNjZW5kZXJjb3JwLmNvbS90eXBlZGVzaWduZXJzLmh0bWwAAEwAaQBjAGUAbgBzAGUAZAAgAHUAbgBkAGUA' + + 'cgAgAHQAaABlACAAUwBJAEwAIABPAHAAZQBuACAARgBvAG4AdAAgAEwAaQBjAGUAbgBzAGUALAAgAFYAZQByAHMAaQBvAG4AIAAxAC4AMQAATGljZW5zZWQgdW5kZXIgdGhlIFNJTCBPcGVuIEZvbnQgTGljZW5zZSwgVmVyc2lvbiAxLjEAAGgAdAB0AHAAOgAvAC8A' + + 'cwBjAHIAaQBwAHQAcwAuAHMAaQBsAC4AbwByAGcALwBPAEYATAAAaHR0cDovL3NjcmlwdHMuc2lsLm9yZy9PRkwAAAIAAAAAAAD/vQCWAAAAAAAAAAAAAAAAAAAAAAAAAAAKPAAAAAEAAgADAAQABQAGAAcACAAJAAoACwAMAA0ADgAPABAAEQASABMAFAAVABYAFwAY' + + 'ABkAGgAbABwAHQAeAB8AIAAhACIAIwAkACUAJgAnACgAKQAqACsALAAtAC4ALwAwADEAMgAzADQANQA2ADcAOAA5ADoAOwA8AD0APgA/AEAAQQBCAEMARABFAEYARwBIAEkASgBLAEwATQBOAE8AUABRAFIAUwBUAFUAVgBXAFgAWQBaAFsAXABdAF4AXwBgAGEBAgCj' + + 'AIQAhQC9AJYA6ACGAI4AiwCdAKkApAEDAIoA2gCDAJMA8gDzAI0AlwCIAMMA3gDxAJ4AqgD1APQA9gCiAK0AyQDHAK4AYgBjAJAAZADLAGUAyADKAM8AzADNAM4A6QBmANMA0ADRAK8AZwDwAJEA1gDUANUAaADrAO0AiQBqAGkAawBtAGwAbgCgAG8AcQBwAHIAcwB1' + + 'AHQAdgB3AOoAeAB6AHkAewB9AHwAuAChAH8AfgCAAIEA7ADuALoBBAEFAQYBBwEIAQkA/QD+AQoBCwEMAQ0A/wEAAQ4BDwEQAQEBEQESARMBFAEVARYBFwEYARkBGgEbARwA+AD5AR0BHgEfASABIQEiASMBJAElASYBJwEoASkBKgErASwA+gDXAS0BLgEvATABMQEy' + + 'ATMBNAE1ATYBNwE4ATkBOgE7AOIA4wE8AT0BPgE/AUABQQFCAUMBRAFFAUYBRwFIAUkBSgCwALEBSwFMAU0BTgFPAVABUQFSAVMBVAD7APwA5ADlAVUBVgFXAVgBWQFaAVsBXAFdAV4BXwFgAWEBYgFjAWQBZQFmAWcBaAFpAWoAuwFrAWwBbQFuAOYA5wFvAXABcQFy' + + 'AXMBdAF1AXYBdwF4AXkBegF7AXwBfQF+AX8BgAGBAKYBggGDAYQBhQGGAYcBiAGJAYoBiwGMAY0BjgGPAZABkQGSAZMBlAGVAZYBlwGYAZkBmgGbAZwBnQGeAZ8BoAGhAaIBowGkAaUBpgGnAagBqQGqAasBrAGtAa4BrwGwAbEBsgGzAbQBtQG2AbcBuAG5AboBuwG8' + + 'Ab0BvgG/AcABwQHCAcMBxAHFAcYBxwHIAckBygHLAcwBzQHOAc8B0AHRAdIB0wHUAdUB1gHXAdgB2QHaAdsB3AHdAd4B3wHgAeEB4gHjAeQB5QHmAecB6AHpAeoB6wHsAe0B7gHvAfAB8QHyAfMB9AH1AfYB9wH4AfkB+gH7AfwB/QH+Af8CAAIBAgICAwIEAgUCBgIH' + + 'AggCCQIKAgsCDAINAg4CDwIQAhECEgITAhQCFQIWAhcCGAIZAhoCGwIcAh0CHgIfAiACIQIiAiMCJAIlAiYCJwIoAikCKgIrAiwCLQIuAi8CMAIxAjICMwI0AjUCNgI3AjgCOQI6AjsCPAI9Aj4CPwJAAkECQgJDAkQCRQJGAkcCSAJJAkoCSwJMAk0CTgJPAlACUQJS' + + 'AlMCVAJVAlYCVwJYAlkCWgJbAlwCXQJeAl8CYAJhAmICYwJkAmUCZgJnAmgCaQJqAmsCbAJtAm4CbwJwAnECcgJzAnQCdQJ2AncCeAJ5AnoCewJ8An0CfgJ/AoACgQKCAoMChAKFAoYChwKIAokCigKLAowCjQKOAo8CkAKRApICkwKUApUClgKXApgCmQKaApsCnAKd' + + 'Ap4CnwKgAqECogKjAqQCpQKmAqcCqAKpAqoCqwKsAq0CrgKvArACsQKyArMCtADYAOECtQK2ArcCuAK5AroCuwK8Ar0CvgK/AsACwQLCAsMCxADbANwA3QDgANkA3wLFAsYCxwLIAskCygLLAswCzQLOAs8C0ALRAtIC0wLUAtUC1gLXAtgC2QLaAtsC3ALdAt4C3wLg' + + 'AuEC4gLjAuQC5QLmAucC6ALpAuoC6wLsAu0C7gLvAvAC8QLyAvMC9AL1AvYC9wL4AvkC+gL7AvwC/QL+Av8DAAMBAwIDAwMEAwUDBgMHAwgDCQMKAwsDDAMNAw4DDwMQAxEDEgMTAxQDFQMWAxcDGAMZAxoDGwMcAx0DHgMfAyADIQMiAyMDJAMlAyYDJwMoAykDKgMr' + + 'AywDLQMuAy8DMAMxAzIDMwM0AzUDNgM3AzgDOQM6AzsDPAM9Az4DPwNAA0EDQgNDA0QDRQNGA0cDSANJA0oDSwNMA00DTgNPA1ADUQNSA1MDVANVA1YDVwNYA1kDWgNbA1wDXQNeA18DYANhA2IDYwNkA2UDZgNnA2gDaQNqA2sDbANtA24DbwNwA3EDcgNzA3QDdQN2' + + 'A3cDeAN5A3oDewN8A30DfgN/A4ADgQOCA4MDhAOFA4YDhwOIA4kDigOLA4wDjQOOA48DkAORA5IDkwOUA5UDlgCbA5cDmAOZA5oDmwOcA50DngOfA6ADoQOiA6MDpAOlA6YDpwOoA6kDqgOrA6wDrQOuA68DsAOxA7IDswO0A7UDtgO3A7gDuQO6A7sDvAO9A74DvwPA' + + 'A8EDwgPDA8QDxQPGA8cDyAPJA8oDywPMA80DzgPPA9AD0QPSA9MD1APVA9YD1wPYA9kD2gPbA9wD3QPeA98D4APhA+ID4wPkA+UD5gPnA+gD6QPqA+sD7APtA+4D7wPwA/ED8gPzA/QD9QP2A/cD+AP5A/oD+wP8A/0D/gP/BAAEAQQCBAMEBAQFBAYEBwQIBAkECgQL' + + 'BAwEDQQOBA8EEAQRBBIEEwQUBBUEFgQXBBgEGQQaBBsEHAQdBB4EHwQgBCEEIgQjBCQEJQQmBCcEKAQpBCoEKwQsBC0ELgQvBDAEMQQyBDMENAQ1BDYENwQ4BDkEOgQ7BDwEPQQ+BD8EQARBBEIEQwREBEUERgRHBEgESQRKBEsETARNBE4ETwRQBFEEUgRTBFQEVQRW' + + 'BFcEWARZBFoEWwRcBF0EXgRfBGAEYQRiBGMEZARlBGYEZwRoBGkEagRrBGwEbQRuBG8EcARxBHIEcwR0BHUEdgR3BHgEeQR6BHsEfAR9BH4EfwSABIEEggSDBIQEhQSGBIcEiASJBIoEiwSMBI0EjgSPBJAEkQSSBJMElASVBJYElwSYBJkEmgSbBJwEnQSeBJ8EoASh' + + 'BKIEowSkBKUEpgSnBKgEqQSqBKsErAStBK4ErwSwBLEEsgSzBLQEtQS2BLcEuAS5BLoEuwS8BL0EvgS/BMAEwQTCBMMExATFBMYExwTIBMkEygTLBMwEzQTOBM8E0ATRBNIE0wTUBNUE1gTXBNgE2QTaBNsE3ATdBN4E3wTgBOEE4gTjBOQE5QTmBOcE6ATpBOoE6wTs' + + 'BO0E7gTvBPAE8QTyBPME9AT1BPYE9wT4BPkE+gT7BPwE/QT+BP8FAAUBBQIFAwUEBQUFBgUHBQgFCQUKBQsFDAUNBQ4FDwUQBREFEgUTBRQFFQUWBRcFGAUZBRoFGwUcBR0FHgUfBSAFIQUiBSMFJAUlBSYFJwUoBSkFKgUrBSwFLQUuBS8FMAUxBTIFMwU0BTUFNgU3' + + 'BTgFOQU6BTsFPAU9BT4FPwVABUEFQgVDBUQFRQVGBUcFSAVJBUoFSwVMBU0FTgVPBVAFUQVSBVMFVAVVBVYFVwVYBVkFWgVbBVwFXQVeBV8FYAVhBWIFYwVkBWUFZgVnBWgFaQVqBWsFbAVtBW4FbwVwBXEFcgVzBXQFdQV2BXcFeAV5BXoFewV8BX0FfgV/BYAFgQWC' + + 'BYMFhAWFBYYFhwWIBYkFigWLBYwFjQWOBY8FkAWRBZIFkwWUBZUFlgWXBZgFmQWaBZsFnAWdBZ4FnwWgBaEFogWjBaQFpQWmBacFqAWpBaoFqwWsBa0FrgWvBbAFsQWyBbMFtAW1BbYFtwW4BbkFugW7BbwFvQW+Bb8FwAXBBcIFwwXEBcUFxgXHBcgFyQXKBcsFzAXN' + + 'Bc4FzwXQBdEF0gXTBdQF1QXWBdcF2AXZBdoF2wXcBd0F3gXfBeAF4QXiBeMF5AXlBeYF5wXoBekF6gXrBewF7QXuBe8F8AXxBfIF8wX0BfUF9gX3BfgF+QX6BfsF/AX9Bf4F/wYABgEGAgYDBgQGBQYGBgcGCAYJBgoGCwYMBg0GDgYPBhAGEQYSBhMGFAYVBhYGFwYY' + + 'BhkGGgYbBhwGHQYeBh8GIAYhBiIGIwYkBiUGJgYnBigGKQYqBisGLAYtBi4GLwYwBjEGMgYzBjQGNQY2BjcGOAY5BjoGOwY8Bj0GPgY/BkAGQQZCBkMGRAZFBkYGRwZIBkkGSgZLBkwGTQZOBk8GUAZRBlIGUwZUBlUGVgZXBlgGWQZaBlsGXAZdBl4GXwZgBmEGYgZj' + + 'BmQGZQZmBmcGaAZpBmoGawZsBm0GbgZvBnAGcQZyBnMGdAZ1BnYGdwZ4BnkGegZ7BnwGfQZ+Bn8GgAaBBoIGgwaEBoUGhgaHBogGiQaKBosGjAaNBo4GjwaQBpEGkgaTBpQGlQaWBpcGmAaZBpoGmwacBp0GngafBqAGoQaiBqMGpAalBqYGpwaoBqkGqgarBqwGrQau' + + 'Bq8GsAaxBrIGswa0BrUGtga3BrgGuQa6BrsGvAa9Br4GvwbABsEGwgbDBsQGxQbGBscGyAbJBsoGywbMBs0GzgbPBtAG0QbSBtMG1AbVBtYG1wbYBtkG2gbbBtwG3QbeBt8G4AbhBuIG4wbkBuUG5gbnBugG6QbqBusG7AbtBu4G7wbwBvEG8gbzBvQG9Qb2BvcG+Ab5' + + 'BvoG+wb8Bv0G/gb/BwAHAQcCBwMHBAcFBwYHBwcIBwkHCgcLBwwHDQcOBw8HEAcRBxIHEwcUBxUHFgcXBxgHGQcaBxsHHAcdBx4HHwcgByEHIgcjByQHJQcmBycHKAcpByoHKwcsBy0HLgcvBzAHMQcyBzMHNAc1BzYHNwc4BzkHOgc7BzwHPQc+Bz8HQAdBB0IHQwdE' + + 'B0UHRgdHB0gHSQdKB0sHTAdNB04HTwdQB1EHUgdTB1QHVQdWB1cHWAdZB1oHWwdcB10HXgdfB2AHYQdiB2MHZAdlB2YHZwdoB2kHagdrB2wHbQduB28HcAdxB3IHcwd0B3UHdgd3B3gHeQd6B3sHfAd9B34HfweAB4EHggeDB4QHhQeGB4cHiAeJB4oHiweMB40HjgeP' + + 'B5AHkQeSB5MHlAeVB5YHlweYB5kHmgebB5wHnQeeB58HoAehB6IHowekB6UHpgenB6gHqQeqB6sHrAetB64HrwewB7EHsgezB7QHtQe2B7cHuAe5B7oHuwe8B70Hvge/B8AHwQfCB8MHxAfFB8YHxwfIB8kHygfLB8wHzQfOB88H0AfRB9IH0wfUB9UH1gfXB9gH2Qfa' + + 'B9sH3AfdB94H3wfgB+EH4gfjB+QH5QfmB+cH6AfpB+oH6wfsB+0H7gfvB/AH8QfyB/MH9Af1B/YH9wf4B/kH+gf7B/wH/Qf+B/8IAAgBCAIAsgCzCAMIBAgFALYAtwDECAYAtAC1AMUIBwCCAMIAhwCrCAgICQgKCAsIDAgNAMYIDggPCBAAvgC/CBEIEgC8CBMIFAgV' + + 'CBYIFwgYCBkIGggbCBwIHQgeCB8IIAghCCIIIwgkCCUIJggnCCgIKQgqCCsILAgtCC4ILwgwCDEIMgD3CDMINAg1CDYINwg4CDkIOgg7CDwIPQg+CD8IQAhBCEIIQwhECEUIRghHCEgISQhKAIwISwhMCE0ITghPCFAIUQhSCFMIVAhVCFYIVwhYCFkIWghbCFwIXQCY' + + 'AKgAmgCZAO8IXghfAKUAkghgCGEAnACnAI8IYghjAJQAlQhkCGUIZghnCGgIaQhqCGsIbAhtCG4IbwhwCHEIcghzCHQIdQh2CHcIeAh5CHoIewh8CH0Ifgh/CIAIgQiCCIMIhAiFCIYIhwiICIkIigiLCIwIjQiOCI8IkAiRCJIIkwiUCJUIlgiXCJgImQiaCJsInAid' + + 'CJ4InwigALkIoQiiCKMIpAilCKYIpwioCKkIqgirCKwIrQiuCK8IsAixCLIIswi0CLUItgi3CLgIuQi6CLsIvAi9CL4IvwjACMEIwgjDCMQIxQjGCMcIyAjJCMoIywjMCM0IzgjPCNAI0QjSCNMI1AjVCNYI1wjYCNkI2gjbCNwI3QjeCN8I4AjhCOII4wjkCOUI5gjn' + + 'COgI6QjqCOsI7AjtCO4I7wjwCPEI8gjzCPQI9Qj2CPcI+Aj5CPoI+wj8CP0I/gj/CQAJAQkCCQMJBAkFCQYJBwkICQkJCgkLCQwJDQkOCQ8JEAkRCRIJEwkUCRUJFgkXCRgJGQkaCRsJHAkdCR4JHwkgCSEJIgkjCSQJJQkmCScJKAkpCSoJKwksCS0JLgkvCTAJMQky' + + 'CTMJNAk1CTYJNwk4CTkJOgk7CTwJPQk+CT8JQAlBCUIJQwlECUUJRglHCUgJSQlKCUsJTAlNCU4JTwlQCVEJUglTCVQJVQlWCVcJWAlZCVoJWwlcCV0JXglfCWAJYQliCWMJZAllCWYJZwloCWkJaglrCWwJbQluCW8JcAlxCXIJcwl0CXUJdgl3CXgJeQl6CXsJfAl9' + + 'CX4JfwmACYEJggmDCYQJhQmGCYcJiAmJCYoJiwmMCY0JjgmPCZAJkQmSCZMJlAmVCZYJlwmYCZkJmgmbCZwJnQmeCZ8JoAmhCaIJowmkCaUJpgmnCagJqQmqCasJrAmtCa4JrwmwCbEJsgmzCbQJtQm2CbcJuAm5CboJuwm8Cb0Jvgm/CcAJwQnCCcMJxAnFCcYJxwnI' + + 'CckJygnLCcwJzQnOCc8J0AnRCdIJ0wnUCdUJ1gnXCdgJ2QnaCdsJ3AndCd4J3wngCeEJ4gnjCeQJ5QnmCecJ6AnpCeoJ6wnsCe0J7gnvCfAJ8QnyCfMJ9An1CfYJ9wn4CfkJ+gn7CfwJ/Qn+Cf8KAAoBCgIKAwoECgUKBgoHCggKCQoKCgsKDAoNCg4KDwoQChEKEgoT' + + 'ChQKFQoWChcKGAoZChoKGwocCh0KHgofCiAKIQoiCiMKJAolCiYKJwooCikKKgorCiwKLQouCi8KMAoxCjIKMwo0CjUKNgo3CjgKOQo6CjsKPAo9Cj4KPwpAB3VuaTAwQTAHdW5pMDBBRAdBbWFjcm9uB2FtYWNyb24GQWJyZXZlBmFicmV2ZQdBb2dvbmVrB2FvZ29u' + + 'ZWsLQ2NpcmN1bWZsZXgLY2NpcmN1bWZsZXgKQ2RvdGFjY2VudApjZG90YWNjZW50BkRjYXJvbgZkY2Fyb24GRGNyb2F0B0VtYWNyb24HZW1hY3JvbgZFYnJldmUGZWJyZXZlCkVkb3RhY2NlbnQKZWRvdGFjY2VudAdFb2dvbmVrB2VvZ29uZWsGRWNhcm9uBmVjYXJv' + + 'bgtHY2lyY3VtZmxleAtnY2lyY3VtZmxleApHZG90YWNjZW50Cmdkb3RhY2NlbnQMR2NvbW1hYWNjZW50DGdjb21tYWFjY2VudAtIY2lyY3VtZmxleAtoY2lyY3VtZmxleARIYmFyBGhiYXIGSXRpbGRlBml0aWxkZQdJbWFjcm9uB2ltYWNyb24GSWJyZXZlBmlicmV2' + + 'ZQdJb2dvbmVrB2lvZ29uZWsCSUoCaWoLSmNpcmN1bWZsZXgLamNpcmN1bWZsZXgMS2NvbW1hYWNjZW50DGtjb21tYWFjY2VudAxrZ3JlZW5sYW5kaWMGTGFjdXRlBmxhY3V0ZQxMY29tbWFhY2NlbnQMbGNvbW1hYWNjZW50BkxjYXJvbgZsY2Fyb24ETGRvdARsZG90' + + 'Bk5hY3V0ZQZuYWN1dGUMTmNvbW1hYWNjZW50DG5jb21tYWFjY2VudAZOY2Fyb24GbmNhcm9uC25hcG9zdHJvcGhlA0VuZwNlbmcHT21hY3JvbgdvbWFjcm9uBk9icmV2ZQZvYnJldmUNT2h1bmdhcnVtbGF1dA1vaHVuZ2FydW1sYXV0BlJhY3V0ZQZyYWN1dGUMUmNv' + + 'bW1hYWNjZW50DHJjb21tYWFjY2VudAZSY2Fyb24GcmNhcm9uBlNhY3V0ZQZzYWN1dGULU2NpcmN1bWZsZXgLc2NpcmN1bWZsZXgMVGNvbW1hYWNjZW50DHRjb21tYWFjY2VudAZUY2Fyb24GdGNhcm9uBFRiYXIEdGJhcgZVdGlsZGUGdXRpbGRlB1VtYWNyb24HdW1h' + + 'Y3JvbgZVYnJldmUGdWJyZXZlBVVyaW5nBXVyaW5nDVVodW5nYXJ1bWxhdXQNdWh1bmdhcnVtbGF1dAdVb2dvbmVrB3VvZ29uZWsLV2NpcmN1bWZsZXgLd2NpcmN1bWZsZXgLWWNpcmN1bWZsZXgLeWNpcmN1bWZsZXgGWmFjdXRlBnphY3V0ZQpaZG90YWNjZW50Cnpk' + + 'b3RhY2NlbnQFbG9uZ3MHdW5pMDE4MAd1bmkwMTgxB3VuaTAxODIHdW5pMDE4Mwd1bmkwMTg0B3VuaTAxODUHdW5pMDE4Ngd1bmkwMTg3B3VuaTAxODgHdW5pMDE4OQd1bmkwMThBB3VuaTAxOEIHdW5pMDE4Qwd1bmkwMThEB3VuaTAxOEUHdW5pMDE4Rgd1bmkwMTkw' + + 'B3VuaTAxOTEHdW5pMDE5Mwd1bmkwMTk0B3VuaTAxOTUHdW5pMDE5Ngd1bmkwMTk3B3VuaTAxOTgHdW5pMDE5OQd1bmkwMTlBB3VuaTAxOUIHdW5pMDE5Qwd1bmkwMTlEB3VuaTAxOUUHdW5pMDE5RgVPaG9ybgVvaG9ybgd1bmkwMUEyB3VuaTAxQTMHdW5pMDFBNAd1' + + 'bmkwMUE1B3VuaTAxQTYHdW5pMDFBNwd1bmkwMUE4B3VuaTAxQTkHdW5pMDFBQQd1bmkwMUFCB3VuaTAxQUMHdW5pMDFBRAd1bmkwMUFFBVVob3JuBXVob3JuB3VuaTAxQjEHdW5pMDFCMgd1bmkwMUIzB3VuaTAxQjQHdW5pMDFCNQd1bmkwMUI2B3VuaTAxQjcHdW5p' + + 'MDFCOAd1bmkwMUI5B3VuaTAxQkEHdW5pMDFCQgd1bmkwMUJDB3VuaTAxQkQHdW5pMDFCRQd1bmkwMUJGB3VuaTAxQzAHdW5pMDFDMQd1bmkwMUMyB3VuaTAxQzMHdW5pMDFDNAd1bmkwMUM1B3VuaTAxQzYHdW5pMDFDNwd1bmkwMUM4B3VuaTAxQzkHdW5pMDFDQQd1' + + 'bmkwMUNCB3VuaTAxQ0MHdW5pMDFDRAd1bmkwMUNFB3VuaTAxQ0YHdW5pMDFEMAd1bmkwMUQxB3VuaTAxRDIHdW5pMDFEMwd1bmkwMUQ0B3VuaTAxRDUHdW5pMDFENgd1bmkwMUQ3B3VuaTAxRDgHdW5pMDFEOQd1bmkwMURBB3VuaTAxREIHdW5pMDFEQwd1bmkwMURE' + + 'B3VuaTAxREUHdW5pMDFERgd1bmkwMUUwB3VuaTAxRTEHdW5pMDFFMgd1bmkwMUUzB3VuaTAxRTQHdW5pMDFFNQd1bmkwMUU2B3VuaTAxRTcHdW5pMDFFOAd1bmkwMUU5B3VuaTAxRUEHdW5pMDFFQgd1bmkwMUVDB3VuaTAxRUQHdW5pMDFFRQd1bmkwMUVGB3VuaTAx' + + 'RjAHdW5pMDFGMQd1bmkwMUYyB3VuaTAxRjMHdW5pMDFGNAd1bmkwMUY1B3VuaTAxRjYHdW5pMDFGNwd1bmkwMUY4B3VuaTAxRjkKQXJpbmdhY3V0ZQphcmluZ2FjdXRlB0FFYWN1dGUHYWVhY3V0ZQtPc2xhc2hhY3V0ZQtvc2xhc2hhY3V0ZQd1bmkwMjAwB3VuaTAy' + + 'MDEHdW5pMDIwMgd1bmkwMjAzB3VuaTAyMDQHdW5pMDIwNQd1bmkwMjA2B3VuaTAyMDcHdW5pMDIwOAd1bmkwMjA5B3VuaTAyMEEHdW5pMDIwQgd1bmkwMjBDB3VuaTAyMEQHdW5pMDIwRQd1bmkwMjBGB3VuaTAyMTAHdW5pMDIxMQd1bmkwMjEyB3VuaTAyMTMHdW5p' + + 'MDIxNAd1bmkwMjE1B3VuaTAyMTYHdW5pMDIxNwxTY29tbWFhY2NlbnQMc2NvbW1hYWNjZW50B3VuaTAyMUEHdW5pMDIxQgd1bmkwMjFDB3VuaTAyMUQHdW5pMDIxRQd1bmkwMjFGB3VuaTAyMjAHdW5pMDIyMQd1bmkwMjIyB3VuaTAyMjMHdW5pMDIyNAd1bmkwMjI1' + + 'B3VuaTAyMjYHdW5pMDIyNwd1bmkwMjI4B3VuaTAyMjkHdW5pMDIyQQd1bmkwMjJCB3VuaTAyMkMHdW5pMDIyRAd1bmkwMjJFB3VuaTAyMkYHdW5pMDIzMAd1bmkwMjMxB3VuaTAyMzIHdW5pMDIzMwd1bmkwMjM0B3VuaTAyMzUHdW5pMDIzNglqLmRvdGxlc3MHdW5p' + + 'MDIzOAd1bmkwMjM5B3VuaTAyM0EHdW5pMDIzQgd1bmkwMjNDB3VuaTAyM0QHdW5pMDIzRQd1bmkwMjNGB3VuaTAyNDAHdW5pMDI0MQd1bmkwMjQyB3VuaTAyNDMHdW5pMDI0NAd1bmkwMjQ1B3VuaTAyNDYHdW5pMDI0Nwd1bmkwMjQ4B3VuaTAyNDkHdW5pMDI0QQd1' + + 'bmkwMjRCB3VuaTAyNEMHdW5pMDI0RAd1bmkwMjRFB3VuaTAyNEYHdW5pMDI1MAd1bmkwMjUxB3VuaTAyNTIHdW5pMDI1Mwd1bmkwMjU0B3VuaTAyNTUHdW5pMDI1Ngd1bmkwMjU3B3VuaTAyNTgHdW5pMDI1OQd1bmkwMjVBB3VuaTAyNUIHdW5pMDI1Qwd1bmkwMjVE' + + 'B3VuaTAyNUUHdW5pMDI1Rgd1bmkwMjYwB3VuaTAyNjEHdW5pMDI2Mgd1bmkwMjYzB3VuaTAyNjQHdW5pMDI2NQd1bmkwMjY2B3VuaTAyNjcHdW5pMDI2OAd1bmkwMjY5B3VuaTAyNkEHdW5pMDI2Qgd1bmkwMjZDB3VuaTAyNkQHdW5pMDI2RQd1bmkwMjZGB3VuaTAy' + + 'NzAHdW5pMDI3MQd1bmkwMjcyB3VuaTAyNzMHdW5pMDI3NAd1bmkwMjc1B3VuaTAyNzYHdW5pMDI3Nwd1bmkwMjc4B3VuaTAyNzkHdW5pMDI3QQd1bmkwMjdCB3VuaTAyN0MHdW5pMDI3RAd1bmkwMjdFB3VuaTAyN0YHdW5pMDI4MAd1bmkwMjgxB3VuaTAyODIHdW5p' + + 'MDI4Mwd1bmkwMjg0B3VuaTAyODUHdW5pMDI4Ngd1bmkwMjg3B3VuaTAyODgHdW5pMDI4OQd1bmkwMjhBB3VuaTAyOEIHdW5pMDI4Qwd1bmkwMjhEB3VuaTAyOEUHdW5pMDI4Rgd1bmkwMjkwB3VuaTAyOTEHdW5pMDI5Mgd1bmkwMjkzB3VuaTAyOTQHdW5pMDI5NQd1' + + 'bmkwMjk2B3VuaTAyOTcHdW5pMDI5OAd1bmkwMjk5B3VuaTAyOUEHdW5pMDI5Qgd1bmkwMjlDB3VuaTAyOUQHdW5pMDI5RQd1bmkwMjlGB3VuaTAyQTAHdW5pMDJBMQd1bmkwMkEyB3VuaTAyQTMHdW5pMDJBNAd1bmkwMkE1B3VuaTAyQTYHdW5pMDJBNwd1bmkwMkE4' + + 'B3VuaTAyQTkHdW5pMDJBQQd1bmkwMkFCB3VuaTAyQUMHdW5pMDJBRAd1bmkwMkFFB3VuaTAyQUYHdW5pMDJCMAd1bmkwMkIxB3VuaTAyQjIHdW5pMDJCMwd1bmkwMkI0B3VuaTAyQjUHdW5pMDJCNgd1bmkwMkI3B3VuaTAyQjgHdW5pMDJCOQd1bmkwMkJBB3VuaTAy' + + 'QkIHdW5pMDJCQwd1bmkwMkJEB3VuaTAyQkUHdW5pMDJCRgd1bmkwMkMwB3VuaTAyQzEHdW5pMDJDMgd1bmkwMkMzB3VuaTAyQzQHdW5pMDJDNQd1bmkwMkM4EGZpcnN0dG9uZWNoaW5lc2UHdW5pMDJDQQd1bmkwMkNCB3VuaTAyQ0MHdW5pMDJDRAd1bmkwMkNFB3Vu' + + 'aTAyQ0YHdW5pMDJEMAd1bmkwMkQxB3VuaTAyRDIHdW5pMDJEMwd1bmkwMkQ0B3VuaTAyRDUHdW5pMDJENgd1bmkwMkQ3B3VuaTAyREUHdW5pMDJERgd1bmkwMkUwB3VuaTAyRTEHdW5pMDJFMgd1bmkwMkUzB3VuaTAyRTQHdW5pMDJFNQd1bmkwMkU2B3VuaTAyRTcH' + + 'dW5pMDJFOAd1bmkwMkU5B3VuaTAyRUEHdW5pMDJFQgd1bmkwMkVDB3VuaTAyRUQHdW5pMDJFRQd1bmkwMkVGB3VuaTAyRjAHdW5pMDJGMQd1bmkwMkYyB3VuaTAyRjMHdW5pMDJGNAd1bmkwMkY1B3VuaTAyRjYHdW5pMDJGNwd1bmkwMkY4B3VuaTAyRjkHdW5pMDJG' + + 'QQd1bmkwMkZCB3VuaTAyRkMHdW5pMDJGRAd1bmkwMkZFB3VuaTAyRkYJZ3JhdmVjb21iCWFjdXRlY29tYgd1bmkwMzAyCXRpbGRlY29tYgd1bmkwMzA0B3VuaTAzMDUHdW5pMDMwNgd1bmkwMzA3B3VuaTAzMDgNaG9va2Fib3ZlY29tYgd1bmkwMzBBB3VuaTAzMEIH' + + 'dW5pMDMwQwd1bmkwMzBEB3VuaTAzMEUHdW5pMDMwRgd1bmkwMzEwB3VuaTAzMTEHdW5pMDMxMgd1bmkwMzEzB3VuaTAzMTQHdW5pMDMxNQd1bmkwMzE2B3VuaTAzMTcHdW5pMDMxOAd1bmkwMzE5B3VuaTAzMUEHdW5pMDMxQgd1bmkwMzFDB3VuaTAzMUQHdW5pMDMx' + + 'RQd1bmkwMzFGB3VuaTAzMjAHdW5pMDMyMQd1bmkwMzIyDGRvdGJlbG93Y29tYgd1bmkwMzI0B3VuaTAzMjUHdW5pMDMyNgd1bmkwMzI3B3VuaTAzMjgHdW5pMDMyOQd1bmkwMzJBB3VuaTAzMkIHdW5pMDMyQwd1bmkwMzJEB3VuaTAzMkUHdW5pMDMyRgd1bmkwMzMw' + + 'B3VuaTAzMzEHdW5pMDMzMgd1bmkwMzMzB3VuaTAzMzQHdW5pMDMzNQd1bmkwMzM2B3VuaTAzMzcHdW5pMDMzOAd1bmkwMzM5B3VuaTAzM0EHdW5pMDMzQgd1bmkwMzNDB3VuaTAzM0QHdW5pMDMzRQd1bmkwMzNGB3VuaTAzNDAHdW5pMDM0MQd1bmkwMzQyB3VuaTAz' + + 'NDMHdW5pMDM0NAd1bmkwMzQ1B3VuaTAzNDYHdW5pMDM0Nwd1bmkwMzQ4B3VuaTAzNDkHdW5pMDM0QQd1bmkwMzRCB3VuaTAzNEMHdW5pMDM0RAd1bmkwMzRFB3VuaTAzNEYHdW5pMDM1MAd1bmkwMzUxB3VuaTAzNTIHdW5pMDM1Mwd1bmkwMzU0B3VuaTAzNTUHdW5p' + + 'MDM1Ngd1bmkwMzU3B3VuaTAzNTgHdW5pMDM1OQd1bmkwMzVBB3VuaTAzNUIHdW5pMDM1Qwd1bmkwMzVEB3VuaTAzNUUHdW5pMDM1Rgd1bmkwMzYwB3VuaTAzNjEHdW5pMDM2Mgd1bmkwMzYzB3VuaTAzNjQHdW5pMDM2NQd1bmkwMzY2B3VuaTAzNjcHdW5pMDM2OAd1' + + 'bmkwMzY5B3VuaTAzNkEHdW5pMDM2Qgd1bmkwMzZDB3VuaTAzNkQHdW5pMDM2RQd1bmkwMzZGB3VuaTAzNzQHdW5pMDM3NQd1bmkwMzdBB3VuaTAzN0IHdW5pMDM3Qwd1bmkwMzdEB3VuaTAzN0UFdG9ub3MNZGllcmVzaXN0b25vcwpBbHBoYXRvbm9zCWFub3RlbGVp' + + 'YQxFcHNpbG9udG9ub3MIRXRhdG9ub3MJSW90YXRvbm9zDE9taWNyb250b25vcwxVcHNpbG9udG9ub3MKT21lZ2F0b25vcxFpb3RhZGllcmVzaXN0b25vcwVBbHBoYQRCZXRhBUdhbW1hCkRlbHRhZ3JlZWsHRXBzaWxvbgRaZXRhA0V0YQVUaGV0YQRJb3RhBUthcHBh' + + 'BkxhbWJkYQJNdQJOdQJYaQdPbWljcm9uAlBpA1JobwVTaWdtYQNUYXUHVXBzaWxvbgNQaGkDQ2hpA1BzaQpPbWVnYWdyZWVrDElvdGFkaWVyZXNpcw9VcHNpbG9uZGllcmVzaXMKYWxwaGF0b25vcwxlcHNpbG9udG9ub3MIZXRhdG9ub3MJaW90YXRvbm9zFHVwc2ls' + + 'b25kaWVyZXNpc3Rvbm9zBWFscGhhBGJldGEFZ2FtbWEFZGVsdGEHZXBzaWxvbgR6ZXRhA2V0YQV0aGV0YQRpb3RhBWthcHBhBmxhbWJkYQdtdWdyZWVrAm51AnhpB29taWNyb24DcmhvBnNpZ21hMQVzaWdtYQN0YXUHdXBzaWxvbgNwaGkDY2hpA3BzaQVvbWVnYQxp' + + 'b3RhZGllcmVzaXMPdXBzaWxvbmRpZXJlc2lzDG9taWNyb250b25vcwx1cHNpbG9udG9ub3MKb21lZ2F0b25vcwd1bmkwM0QwB3VuaTAzRDEHdW5pMDNEMgd1bmkwM0QzB3VuaTAzRDQHdW5pMDNENQd1bmkwM0Q2B3VuaTAzRDcHdW5pMDNEOAd1bmkwM0Q5B3VuaTAz' + + 'REEHdW5pMDNEQgd1bmkwM0RDB3VuaTAzREQHdW5pMDNERQd1bmkwM0RGB3VuaTAzRTAHdW5pMDNFMQd1bmkwM0UyB3VuaTAzRTMHdW5pMDNFNAd1bmkwM0U1B3VuaTAzRTYHdW5pMDNFNwd1bmkwM0U4B3VuaTAzRTkHdW5pMDNFQQd1bmkwM0VCB3VuaTAzRUMHdW5p' + + 'MDNFRAd1bmkwM0VFB3VuaTAzRUYHdW5pMDNGMAd1bmkwM0YxB3VuaTAzRjIHdW5pMDNGMwd1bmkwM0Y0B3VuaTAzRjUHdW5pMDNGNgd1bmkwM0Y3B3VuaTAzRjgHdW5pMDNGOQd1bmkwM0ZBB3VuaTAzRkIHdW5pMDNGQwd1bmkwM0ZEB3VuaTAzRkUHdW5pMDNGRgd1' + + 'bmkwNDAwB3VuaTA0MDEHdW5pMDQwMgd1bmkwNDAzB3VuaTA0MDQHdW5pMDQwNQd1bmkwNDA2B3VuaTA0MDcHdW5pMDQwOAd1bmkwNDA5B3VuaTA0MEEHdW5pMDQwQgd1bmkwNDBDB3VuaTA0MEQHdW5pMDQwRQd1bmkwNDBGB3VuaTA0MTAHdW5pMDQxMQd1bmkwNDEy' + + 'B3VuaTA0MTMHdW5pMDQxNAd1bmkwNDE1B3VuaTA0MTYHdW5pMDQxNwd1bmkwNDE4B3VuaTA0MTkHdW5pMDQxQQd1bmkwNDFCB3VuaTA0MUMHdW5pMDQxRAd1bmkwNDFFB3VuaTA0MUYHdW5pMDQyMAd1bmkwNDIxB3VuaTA0MjIHdW5pMDQyMwd1bmkwNDI0B3VuaTA0' + + 'MjUHdW5pMDQyNgd1bmkwNDI3B3VuaTA0MjgHdW5pMDQyOQd1bmkwNDJBB3VuaTA0MkIHdW5pMDQyQwd1bmkwNDJEB3VuaTA0MkUHdW5pMDQyRgd1bmkwNDMwB3VuaTA0MzEHdW5pMDQzMgd1bmkwNDMzB3VuaTA0MzQHdW5pMDQzNQd1bmkwNDM2B3VuaTA0MzcHdW5p' + + 'MDQzOAd1bmkwNDM5B3VuaTA0M0EHdW5pMDQzQgd1bmkwNDNDB3VuaTA0M0QHdW5pMDQzRQd1bmkwNDNGB3VuaTA0NDAHdW5pMDQ0MQd1bmkwNDQyB3VuaTA0NDMHdW5pMDQ0NAd1bmkwNDQ1B3VuaTA0NDYHdW5pMDQ0Nwd1bmkwNDQ4B3VuaTA0NDkHdW5pMDQ0QQd1' + + 'bmkwNDRCB3VuaTA0NEMHdW5pMDQ0RAd1bmkwNDRFB3VuaTA0NEYHdW5pMDQ1MAd1bmkwNDUxB3VuaTA0NTIHdW5pMDQ1Mwd1bmkwNDU0B3VuaTA0NTUHdW5pMDQ1Ngd1bmkwNDU3B3VuaTA0NTgHdW5pMDQ1OQd1bmkwNDVBB3VuaTA0NUIHdW5pMDQ1Qwd1bmkwNDVE' + + 'B3VuaTA0NUUHdW5pMDQ1Rgd1bmkwNDYwB3VuaTA0NjEHdW5pMDQ2Mgd1bmkwNDYzB3VuaTA0NjQHdW5pMDQ2NQd1bmkwNDY2B3VuaTA0NjcHdW5pMDQ2OAd1bmkwNDY5B3VuaTA0NkEHdW5pMDQ2Qgd1bmkwNDZDB3VuaTA0NkQHdW5pMDQ2RQd1bmkwNDZGB3VuaTA0' + + 'NzAHdW5pMDQ3MQd1bmkwNDcyB3VuaTA0NzMHdW5pMDQ3NAd1bmkwNDc1B3VuaTA0NzYHdW5pMDQ3Nwd1bmkwNDc4B3VuaTA0NzkHdW5pMDQ3QQd1bmkwNDdCB3VuaTA0N0MHdW5pMDQ3RAd1bmkwNDdFB3VuaTA0N0YHdW5pMDQ4MAd1bmkwNDgxB3VuaTA0ODIHdW5p' + + 'MDQ4Mwd1bmkwNDg0B3VuaTA0ODUHdW5pMDQ4Ngd1bmkwNDg3B3VuaTA0ODgHdW5pMDQ4OQd1bmkwNDhBB3VuaTA0OEIHdW5pMDQ4Qwd1bmkwNDhEB3VuaTA0OEUHdW5pMDQ4Rgd1bmkwNDkwB3VuaTA0OTEHdW5pMDQ5Mgd1bmkwNDkzB3VuaTA0OTQHdW5pMDQ5NQd1' + + 'bmkwNDk2B3VuaTA0OTcHdW5pMDQ5OAd1bmkwNDk5B3VuaTA0OUEHdW5pMDQ5Qgd1bmkwNDlDB3VuaTA0OUQHdW5pMDQ5RQd1bmkwNDlGB3VuaTA0QTAHdW5pMDRBMQd1bmkwNEEyB3VuaTA0QTMHdW5pMDRBNAd1bmkwNEE1B3VuaTA0QTYHdW5pMDRBNwd1bmkwNEE4' + + 'B3VuaTA0QTkHdW5pMDRBQQd1bmkwNEFCB3VuaTA0QUMHdW5pMDRBRAd1bmkwNEFFB3VuaTA0QUYHdW5pMDRCMAd1bmkwNEIxB3VuaTA0QjIHdW5pMDRCMwd1bmkwNEI0B3VuaTA0QjUHdW5pMDRCNgd1bmkwNEI3B3VuaTA0QjgHdW5pMDRCOQd1bmkwNEJBB3VuaTA0' + + 'QkIHdW5pMDRCQwd1bmkwNEJEB3VuaTA0QkUHdW5pMDRCRgd1bmkwNEMwB3VuaTA0QzEHdW5pMDRDMgd1bmkwNEMzB3VuaTA0QzQHdW5pMDRDNQd1bmkwNEM2B3VuaTA0QzcHdW5pMDRDOAd1bmkwNEM5B3VuaTA0Q0EHdW5pMDRDQgd1bmkwNENDB3VuaTA0Q0QHdW5p' + + 'MDRDRQd1bmkwNENGB3VuaTA0RDAHdW5pMDREMQd1bmkwNEQyB3VuaTA0RDMHdW5pMDRENAd1bmkwNEQ1B3VuaTA0RDYHdW5pMDRENwd1bmkwNEQ4CWFmaWkxMDg0Ngd1bmkwNERBB3VuaTA0REIHdW5pMDREQwd1bmkwNEREB3VuaTA0REUHdW5pMDRERgd1bmkwNEUw' + + 'B3VuaTA0RTEHdW5pMDRFMgd1bmkwNEUzB3VuaTA0RTQHdW5pMDRFNQd1bmkwNEU2B3VuaTA0RTcHdW5pMDRFOAd1bmkwNEU5B3VuaTA0RUEHdW5pMDRFQgd1bmkwNEVDB3VuaTA0RUQHdW5pMDRFRQd1bmkwNEVGB3VuaTA0RjAHdW5pMDRGMQd1bmkwNEYyB3VuaTA0' + + 'RjMHdW5pMDRGNAd1bmkwNEY1B3VuaTA0RjYHdW5pMDRGNwd1bmkwNEY4B3VuaTA0RjkHdW5pMDRGQQd1bmkwNEZCB3VuaTA0RkMHdW5pMDRGRAd1bmkwNEZFB3VuaTA0RkYHdW5pMDUwMAd1bmkwNTAxB3VuaTA1MDIHdW5pMDUwMwd1bmkwNTA0B3VuaTA1MDUHdW5p' + + 'MDUwNgd1bmkwNTA3B3VuaTA1MDgHdW5pMDUwOQd1bmkwNTBBB3VuaTA1MEIHdW5pMDUwQwd1bmkwNTBEB3VuaTA1MEUHdW5pMDUwRgd1bmkwNTEwB3VuaTA1MTEHdW5pMDUxMgd1bmkwNTEzB3VuaTA1MUEHdW5pMDUxQgd1bmkwNTFDB3VuaTA1MUQHdW5pMDU5MQd1' + + 'bmkwNTkyB3VuaTA1OTMHdW5pMDU5NAd1bmkwNTk1B3VuaTA1OTYHdW5pMDU5Nwd1bmkwNTk4B3VuaTA1OTkHdW5pMDU5QQd1bmkwNTlCB3VuaTA1OUMHdW5pMDU5RAd1bmkwNTlFB3VuaTA1OUYHdW5pMDVBMAd1bmkwNUExB3VuaTA1QTIHdW5pMDVBMwd1bmkwNUE0' + + 'B3VuaTA1QTUHdW5pMDVBNgd1bmkwNUE3B3VuaTA1QTgHdW5pMDVBOQd1bmkwNUFBB3VuaTA1QUIHdW5pMDVBQwd1bmkwNUFEB3VuaTA1QUUHdW5pMDVBRgVzaGV2YQpoYXRhZnNlZ29sCmhhdGFmcGF0YWgLaGF0YWZxYW1hdHMFaGlyaXEFdHNlcmUFc2Vnb2wFcGF0' + + 'YWgGcWFtYXRzBWhvbGFtB3VuaTA1QkEGcXVidXRzBmRhZ2VzaAVtZXRlZwVtYXFhZgRyYWZlBXBhc2VxB3NoaW5kb3QGc2luZG90CHNvZnBhc3VxCXVwcGVyX2RvdAhsb3dlcmRvdAd1bmkwNUM2C3FhbWF0c3FhdGFuBGFsZWYDYmV0BWdpbWVsBWRhbGV0AmhlA3Zh' + + 'dgV6YXlpbgNoZXQDdGV0A3lvZAhmaW5hbGthZgNrYWYFbGFtZWQIZmluYWxtZW0DbWVtCGZpbmFsbnVuA251bgZzYW1la2gEYXlpbgdmaW5hbHBlAnBlCmZpbmFsdHNhZGkFdHNhZGkDcW9mBHJlc2gEc2hpbgN0YXYGdmF2dmF2BnZhdnlvZAZ5b2R5b2QGZ2VyZXNo' + + 'CWdlcnNoYXlpbQd1bmkxRDAwB3VuaTFEMDEHdW5pMUQwMgd1bmkxRDAzB3VuaTFEMDQHdW5pMUQwNQd1bmkxRDA2B3VuaTFEMDcHdW5pMUQwOAd1bmkxRDA5B3VuaTFEMEEHdW5pMUQwQgd1bmkxRDBDB3VuaTFEMEQHdW5pMUQwRQd1bmkxRDBGB3VuaTFEMTAHdW5p' + + 'MUQxMQd1bmkxRDEyB3VuaTFEMTMHdW5pMUQxNAd1bmkxRDE1B3VuaTFEMTYHdW5pMUQxNwd1bmkxRDE4B3VuaTFEMTkHdW5pMUQxQQd1bmkxRDFCB3VuaTFEMUMHdW5pMUQxRAd1bmkxRDFFB3VuaTFEMUYHdW5pMUQyMAd1bmkxRDIxB3VuaTFEMjIHdW5pMUQyMwd1' + + 'bmkxRDI0B3VuaTFEMjUHdW5pMUQyNgd1bmkxRDI3B3VuaTFEMjgHdW5pMUQyOQd1bmkxRDJBB3VuaTFEMkIHdW5pMUQyQwd1bmkxRDJEB3VuaTFEMkUHdW5pMUQyRgd1bmkxRDMwB3VuaTFEMzEHdW5pMUQzMgd1bmkxRDMzB3VuaTFEMzQHdW5pMUQzNQd1bmkxRDM2' + + 'B3VuaTFEMzcHdW5pMUQzOAd1bmkxRDM5B3VuaTFEM0EHdW5pMUQzQgd1bmkxRDNDB3VuaTFEM0QHdW5pMUQzRQd1bmkxRDNGB3VuaTFENDAHdW5pMUQ0MQd1bmkxRDQyB3VuaTFENDMHdW5pMUQ0NAd1bmkxRDQ1B3VuaTFENDYHdW5pMUQ0Nwd1bmkxRDQ4B3VuaTFE' + + 'NDkHdW5pMUQ0QQd1bmkxRDRCB3VuaTFENEMHdW5pMUQ0RAd1bmkxRDRFB3VuaTFENEYHdW5pMUQ1MAd1bmkxRDUxB3VuaTFENTIHdW5pMUQ1Mwd1bmkxRDU0B3VuaTFENTUHdW5pMUQ1Ngd1bmkxRDU3B3VuaTFENTgHdW5pMUQ1OQd1bmkxRDVBB3VuaTFENUIHdW5p' + + 'MUQ1Qwd1bmkxRDVEB3VuaTFENUUHdW5pMUQ1Rgd1bmkxRDYwB3VuaTFENjEHdW5pMUQ2Mgd1bmkxRDYzB3VuaTFENjQHdW5pMUQ2NQd1bmkxRDY2B3VuaTFENjcHdW5pMUQ2OAd1bmkxRDY5B3VuaTFENkEHdW5pMUQ2Qgd1bmkxRDZDB3VuaTFENkQHdW5pMUQ2RQd1' + + 'bmkxRDZGB3VuaTFENzAHdW5pMUQ3MQd1bmkxRDcyB3VuaTFENzMHdW5pMUQ3NAd1bmkxRDc1B3VuaTFENzYHdW5pMUQ3Nwd1bmkxRDc4B3VuaTFENzkHdW5pMUQ3QQd1bmkxRDdCB3VuaTFEN0MHdW5pMUQ3RAd1bmkxRDdFB3VuaTFEN0YHdW5pMUQ4MAd1bmkxRDgx' + + 'B3VuaTFEODIHdW5pMUQ4Mwd1bmkxRDg0B3VuaTFEODUHdW5pMUQ4Ngd1bmkxRDg3B3VuaTFEODgHdW5pMUQ4OQd1bmkxRDhBB3VuaTFEOEIHdW5pMUQ4Qwd1bmkxRDhEB3VuaTFEOEUHdW5pMUQ4Rgd1bmkxRDkwB3VuaTFEOTEHdW5pMUQ5Mgd1bmkxRDkzB3VuaTFE' + + 'OTQHdW5pMUQ5NQd1bmkxRDk2B3VuaTFEOTcHdW5pMUQ5OAd1bmkxRDk5B3VuaTFEOUEHdW5pMUQ5Qgd1bmkxRDlDB3VuaTFEOUQHdW5pMUQ5RQd1bmkxRDlGB3VuaTFEQTAHdW5pMURBMQd1bmkxREEyB3VuaTFEQTMHdW5pMURBNAd1bmkxREE1B3VuaTFEQTYHdW5p' + + 'MURBNwd1bmkxREE4B3VuaTFEQTkHdW5pMURBQQd1bmkxREFCB3VuaTFEQUMHdW5pMURBRAd1bmkxREFFB3VuaTFEQUYHdW5pMURCMAd1bmkxREIxB3VuaTFEQjIHdW5pMURCMwd1bmkxREI0B3VuaTFEQjUHdW5pMURCNgd1bmkxREI3B3VuaTFEQjgHdW5pMURCOQd1' + + 'bmkxREJBB3VuaTFEQkIHdW5pMURCQwd1bmkxREJEB3VuaTFEQkUHdW5pMURCRgd1bmkxREMwB3VuaTFEQzEHdW5pMURDMgd1bmkxREMzB3VuaTFEQzQHdW5pMURDNQd1bmkxREM2B3VuaTFEQzcHdW5pMURDOAd1bmkxREM5B3VuaTFEQ0EHdW5pMURGRQd1bmkxREZG' + + 'B3VuaTFFMDAHdW5pMUUwMQd1bmkxRTAyB3VuaTFFMDMHdW5pMUUwNAd1bmkxRTA1B3VuaTFFMDYHdW5pMUUwNwd1bmkxRTA4B3VuaTFFMDkHdW5pMUUwQQd1bmkxRTBCB3VuaTFFMEMHdW5pMUUwRAd1bmkxRTBFB3VuaTFFMEYHdW5pMUUxMAd1bmkxRTExB3VuaTFF' + + 'MTIHdW5pMUUxMwd1bmkxRTE0B3VuaTFFMTUHdW5pMUUxNgd1bmkxRTE3B3VuaTFFMTgHdW5pMUUxOQd1bmkxRTFBB3VuaTFFMUIHdW5pMUUxQwd1bmkxRTFEB3VuaTFFMUUHdW5pMUUxRgd1bmkxRTIwB3VuaTFFMjEHdW5pMUUyMgd1bmkxRTIzB3VuaTFFMjQHdW5p' + + 'MUUyNQd1bmkxRTI2B3VuaTFFMjcHdW5pMUUyOAd1bmkxRTI5B3VuaTFFMkEHdW5pMUUyQgd1bmkxRTJDB3VuaTFFMkQHdW5pMUUyRQd1bmkxRTJGB3VuaTFFMzAHdW5pMUUzMQd1bmkxRTMyB3VuaTFFMzMHdW5pMUUzNAd1bmkxRTM1B3VuaTFFMzYHdW5pMUUzNwd1' + + 'bmkxRTM4B3VuaTFFMzkHdW5pMUUzQQd1bmkxRTNCB3VuaTFFM0MHdW5pMUUzRAd1bmkxRTNFB3VuaTFFM0YHdW5pMUU0MAd1bmkxRTQxB3VuaTFFNDIHdW5pMUU0Mwd1bmkxRTQ0B3VuaTFFNDUHdW5pMUU0Ngd1bmkxRTQ3B3VuaTFFNDgHdW5pMUU0OQd1bmkxRTRB' + + 'B3VuaTFFNEIHdW5pMUU0Qwd1bmkxRTREB3VuaTFFNEUHdW5pMUU0Rgd1bmkxRTUwB3VuaTFFNTEHdW5pMUU1Mgd1bmkxRTUzB3VuaTFFNTQHdW5pMUU1NQd1bmkxRTU2B3VuaTFFNTcHdW5pMUU1OAd1bmkxRTU5B3VuaTFFNUEHdW5pMUU1Qgd1bmkxRTVDB3VuaTFF' + + 'NUQHdW5pMUU1RQd1bmkxRTVGB3VuaTFFNjAHdW5pMUU2MQd1bmkxRTYyB3VuaTFFNjMHdW5pMUU2NAd1bmkxRTY1B3VuaTFFNjYHdW5pMUU2Nwd1bmkxRTY4B3VuaTFFNjkHdW5pMUU2QQd1bmkxRTZCB3VuaTFFNkMHdW5pMUU2RAd1bmkxRTZFB3VuaTFFNkYHdW5p' + + 'MUU3MAd1bmkxRTcxB3VuaTFFNzIHdW5pMUU3Mwd1bmkxRTc0B3VuaTFFNzUHdW5pMUU3Ngd1bmkxRTc3B3VuaTFFNzgHdW5pMUU3OQd1bmkxRTdBB3VuaTFFN0IHdW5pMUU3Qwd1bmkxRTdEB3VuaTFFN0UHdW5pMUU3RgZXZ3JhdmUGd2dyYXZlBldhY3V0ZQZ3YWN1' + + 'dGUJV2RpZXJlc2lzCXdkaWVyZXNpcwd1bmkxRTg2B3VuaTFFODcHdW5pMUU4OAd1bmkxRTg5B3VuaTFFOEEHdW5pMUU4Qgd1bmkxRThDB3VuaTFFOEQHdW5pMUU4RQd1bmkxRThGB3VuaTFFOTAHdW5pMUU5MQd1bmkxRTkyB3VuaTFFOTMHdW5pMUU5NAd1bmkxRTk1' + + 'B3VuaTFFOTYHdW5pMUU5Nwd1bmkxRTk4B3VuaTFFOTkHdW5pMUU5QQd1bmkxRTlCB3VuaTFFOUUJQWRvdGJlbG93CWFkb3RiZWxvdwpBaG9va2Fib3ZlCmFob29rYWJvdmUQQWNpcmN1bWZsZXhhY3V0ZRBhY2lyY3VtZmxleGFjdXRlEEFjaXJjdW1mbGV4Z3JhdmUQ' + + 'YWNpcmN1bWZsZXhncmF2ZRRBY2lyY3VtZmxleGhvb2thYm92ZRRhY2lyY3VtZmxleGhvb2thYm92ZRBBY2lyY3VtZmxleHRpbGRlEGFjaXJjdW1mbGV4dGlsZGUTQWNpcmN1bWZsZXhkb3RiZWxvdxNhY2lyY3VtZmxleGRvdGJlbG93C0FicmV2ZWFjdXRlC2FicmV2' + + 'ZWFjdXRlC0FicmV2ZWdyYXZlC2FicmV2ZWdyYXZlD0FicmV2ZWhvb2thYm92ZQ9hYnJldmVob29rYWJvdmULQWJyZXZldGlsZGULYWJyZXZldGlsZGUOQWJyZXZlZG90YmVsb3cOYWJyZXZlZG90YmVsb3cJRWRvdGJlbG93CWVkb3RiZWxvdwpFaG9va2Fib3ZlCmVo' + + 'b29rYWJvdmUGRXRpbGRlBmV0aWxkZRBFY2lyY3VtZmxleGFjdXRlEGVjaXJjdW1mbGV4YWN1dGUQRWNpcmN1bWZsZXhncmF2ZRBlY2lyY3VtZmxleGdyYXZlFEVjaXJjdW1mbGV4aG9va2Fib3ZlFGVjaXJjdW1mbGV4aG9va2Fib3ZlEEVjaXJjdW1mbGV4dGlsZGUQ' + + 'ZWNpcmN1bWZsZXh0aWxkZRNFY2lyY3VtZmxleGRvdGJlbG93E2VjaXJjdW1mbGV4ZG90YmVsb3cKSWhvb2thYm92ZQppaG9va2Fib3ZlCUlkb3RiZWxvdwlpZG90YmVsb3cJT2RvdGJlbG93CW9kb3RiZWxvdwpPaG9va2Fib3ZlCm9ob29rYWJvdmUQT2NpcmN1bWZs' + + 'ZXhhY3V0ZRBvY2lyY3VtZmxleGFjdXRlEE9jaXJjdW1mbGV4Z3JhdmUQb2NpcmN1bWZsZXhncmF2ZRRPY2lyY3VtZmxleGhvb2thYm92ZRRvY2lyY3VtZmxleGhvb2thYm92ZRBPY2lyY3VtZmxleHRpbGRlEG9jaXJjdW1mbGV4dGlsZGUTT2NpcmN1bWZsZXhkb3Ri' + + 'ZWxvdxNvY2lyY3VtZmxleGRvdGJlbG93Ck9ob3JuYWN1dGUKb2hvcm5hY3V0ZQpPaG9ybmdyYXZlCm9ob3JuZ3JhdmUOT2hvcm5ob29rYWJvdmUOb2hvcm5ob29rYWJvdmUKT2hvcm50aWxkZQpvaG9ybnRpbGRlDU9ob3JuZG90YmVsb3cNb2hvcm5kb3RiZWxvdwlV' + + 'ZG90YmVsb3cJdWRvdGJlbG93ClVob29rYWJvdmUKdWhvb2thYm92ZQpVaG9ybmFjdXRlCnVob3JuYWN1dGUKVWhvcm5ncmF2ZQp1aG9ybmdyYXZlDlVob3JuaG9va2Fib3ZlDnVob3JuaG9va2Fib3ZlClVob3JudGlsZGUKdWhvcm50aWxkZQ1VaG9ybmRvdGJlbG93' + + 'DXVob3JuZG90YmVsb3cGWWdyYXZlBnlncmF2ZQlZZG90YmVsb3cJeWRvdGJlbG93Cllob29rYWJvdmUKeWhvb2thYm92ZQZZdGlsZGUGeXRpbGRlB3VuaTFGMDAHdW5pMUYwMQd1bmkxRjAyB3VuaTFGMDMHdW5pMUYwNAd1bmkxRjA1B3VuaTFGMDYHdW5pMUYwNwd1' + + 'bmkxRjA4B3VuaTFGMDkHdW5pMUYwQQd1bmkxRjBCB3VuaTFGMEMHdW5pMUYwRAd1bmkxRjBFB3VuaTFGMEYHdW5pMUYxMAd1bmkxRjExB3VuaTFGMTIHdW5pMUYxMwd1bmkxRjE0B3VuaTFGMTUHdW5pMUYxOAd1bmkxRjE5B3VuaTFGMUEHdW5pMUYxQgd1bmkxRjFD' + + 'B3VuaTFGMUQHdW5pMUYyMAd1bmkxRjIxB3VuaTFGMjIHdW5pMUYyMwd1bmkxRjI0B3VuaTFGMjUHdW5pMUYyNgd1bmkxRjI3B3VuaTFGMjgHdW5pMUYyOQd1bmkxRjJBB3VuaTFGMkIHdW5pMUYyQwd1bmkxRjJEB3VuaTFGMkUHdW5pMUYyRgd1bmkxRjMwB3VuaTFG' + + 'MzEHdW5pMUYzMgd1bmkxRjMzB3VuaTFGMzQHdW5pMUYzNQd1bmkxRjM2B3VuaTFGMzcHdW5pMUYzOAd1bmkxRjM5B3VuaTFGM0EHdW5pMUYzQgd1bmkxRjNDB3VuaTFGM0QHdW5pMUYzRQd1bmkxRjNGB3VuaTFGNDAHdW5pMUY0MQd1bmkxRjQyB3VuaTFGNDMHdW5p' + + 'MUY0NAd1bmkxRjQ1B3VuaTFGNDgHdW5pMUY0OQd1bmkxRjRBB3VuaTFGNEIHdW5pMUY0Qwd1bmkxRjREB3VuaTFGNTAHdW5pMUY1MQd1bmkxRjUyB3VuaTFGNTMHdW5pMUY1NAd1bmkxRjU1B3VuaTFGNTYHdW5pMUY1Nwd1bmkxRjU5B3VuaTFGNUIHdW5pMUY1RAd1' + + 'bmkxRjVGB3VuaTFGNjAHdW5pMUY2MQd1bmkxRjYyB3VuaTFGNjMHdW5pMUY2NAd1bmkxRjY1B3VuaTFGNjYHdW5pMUY2Nwd1bmkxRjY4B3VuaTFGNjkHdW5pMUY2QQd1bmkxRjZCB3VuaTFGNkMHdW5pMUY2RAd1bmkxRjZFB3VuaTFGNkYHdW5pMUY3MAd1bmkxRjcx' + + 'B3VuaTFGNzIHdW5pMUY3Mwd1bmkxRjc0B3VuaTFGNzUHdW5pMUY3Ngd1bmkxRjc3B3VuaTFGNzgHdW5pMUY3OQd1bmkxRjdBB3VuaTFGN0IHdW5pMUY3Qwd1bmkxRjdEB3VuaTFGODAHdW5pMUY4MQd1bmkxRjgyB3VuaTFGODMHdW5pMUY4NAd1bmkxRjg1B3VuaTFG' + + 'ODYHdW5pMUY4Nwd1bmkxRjg4B3VuaTFGODkHdW5pMUY4QQd1bmkxRjhCB3VuaTFGOEMHdW5pMUY4RAd1bmkxRjhFB3VuaTFGOEYHdW5pMUY5MAd1bmkxRjkxB3VuaTFGOTIHdW5pMUY5Mwd1bmkxRjk0B3VuaTFGOTUHdW5pMUY5Ngd1bmkxRjk3B3VuaTFGOTgHdW5p' + + 'MUY5OQd1bmkxRjlBB3VuaTFGOUIHdW5pMUY5Qwd1bmkxRjlEB3VuaTFGOUUHdW5pMUY5Rgd1bmkxRkEwB3VuaTFGQTEHdW5pMUZBMgd1bmkxRkEzB3VuaTFGQTQHdW5pMUZBNQd1bmkxRkE2B3VuaTFGQTcHdW5pMUZBOAd1bmkxRkE5B3VuaTFGQUEHdW5pMUZBQgd1' + + 'bmkxRkFDB3VuaTFGQUQHdW5pMUZBRQd1bmkxRkFGB3VuaTFGQjAHdW5pMUZCMQd1bmkxRkIyB3VuaTFGQjMHdW5pMUZCNAd1bmkxRkI2B3VuaTFGQjcHdW5pMUZCOAd1bmkxRkI5B3VuaTFGQkEHdW5pMUZCQgd1bmkxRkJDB3VuaTFGQkQHdW5pMUZCRQd1bmkxRkJG' + + 'B3VuaTFGQzAHdW5pMUZDMQd1bmkxRkMyB3VuaTFGQzMHdW5pMUZDNAd1bmkxRkM2B3VuaTFGQzcHdW5pMUZDOAd1bmkxRkM5B3VuaTFGQ0EHdW5pMUZDQgd1bmkxRkNDB3VuaTFGQ0QHdW5pMUZDRQd1bmkxRkNGB3VuaTFGRDAHdW5pMUZEMQd1bmkxRkQyB3VuaTFG' + + 'RDMHdW5pMUZENgd1bmkxRkQ3B3VuaTFGRDgHdW5pMUZEOQd1bmkxRkRBB3VuaTFGREIHdW5pMUZERAd1bmkxRkRFB3VuaTFGREYHdW5pMUZFMAd1bmkxRkUxB3VuaTFGRTIHdW5pMUZFMwd1bmkxRkU0B3VuaTFGRTUHdW5pMUZFNgd1bmkxRkU3B3VuaTFGRTgHdW5p' + + 'MUZFOQd1bmkxRkVBB3VuaTFGRUIHdW5pMUZFQwd1bmkxRkVEB3VuaTFGRUUHdW5pMUZFRgd1bmkxRkYyB3VuaTFGRjMHdW5pMUZGNAd1bmkxRkY2B3VuaTFGRjcHdW5pMUZGOAd1bmkxRkY5B3VuaTFGRkEHdW5pMUZGQgd1bmkxRkZDB3VuaTFGRkQHdW5pMUZGRQd1' + + 'bmkyMDAwB3VuaTIwMDEHdW5pMjAwMgd1bmkyMDAzB3VuaTIwMDQHdW5pMjAwNQd1bmkyMDA2B3VuaTIwMDcHdW5pMjAwOAd1bmkyMDA5B3VuaTIwMEEHdW5pMjAwQgd1bmkyMDBDB3VuaTIwMEQHdW5pMjAwRQd1bmkyMDBGB3VuaTIwMTAHdW5pMjAxMgd1bmkyMDE1' + + 'B3VuaTIwMTYNdW5kZXJzY29yZWRibA1xdW90ZXJldmVyc2VkB3VuaTIwMUYHdW5pMjAyQQd1bmkyMDJCB3VuaTIwMkMHdW5pMjAyRAd1bmkyMDJFB3VuaTIwMkYGbWludXRlBnNlY29uZAd1bmkyMDM0CWV4Y2xhbWRibAlyYWRpY2FsZXgHdW5pMjA1RQd1bmkyMDZB' + + 'B3VuaTIwNkIHdW5pMjA2Qwd1bmkyMDZEB3VuaTIwNkUHdW5pMjA2Rglmb3VyLnN1cHMJZml2ZS5zdXBzCHNpeC5zdXBzCnNldmVuLnN1cHMKZWlnaHQuc3VwcwluaW5lLnN1cHMJbnN1cGVyaW9yCXplcm8uc3VicwhvbmUuc3Vicwh0d28uc3Vicwp0aHJlZS5zdWJz' + + 'CWZvdXIuc3VicwlmaXZlLnN1YnMIc2l4LnN1YnMKc2V2ZW4uc3VicwplaWdodC5zdWJzCW5pbmUuc3Vicwd1bmkyMDkwB3VuaTIwOTEHdW5pMjA5Mgd1bmkyMDkzB3VuaTIwOTQHdW5pMjBBMAd1bmkyMEExB3VuaTIwQTIEbGlyYQd1bmkyMEE1B3VuaTIwQTYGcGVz' + + 'ZXRhB3VuaTIwQTgHdW5pMjBBOQZzaGVxZWwEZG9uZwRFdXJvB3VuaTIwQUQHdW5pMjBBRQd1bmkyMEFGB3VuaTIwQjAHdW5pMjBCMQd1bmkyMEIyB3VuaTIwQjMHdW5pMjBCNAd1bmkyMEI1B3VuaTIwQkYHdW5pMjBGMAd1bmkyMTA1B3VuaTIxMTMHdW5pMjExNgd1' + + 'bmkyMTE3A09obQllc3RpbWF0ZWQHdW5pMjE0RAd1bmkyMTRFCG9uZXRoaXJkCXR3b3RoaXJkcwlvbmVlaWdodGgMdGhyZWVlaWdodGhzC2ZpdmVlaWdodGhzDHNldmVuZWlnaHRocwd1bmkyMTg0CWFycm93bGVmdAdhcnJvd3VwCmFycm93cmlnaHQJYXJyb3dkb3du' + + 'CWFycm93Ym90aAlhcnJvd3VwZG4MYXJyb3d1cGRuYnNlDGFycm93ZGJsYm90aAd1bmkyMjE1DmJ1bGxldG9wZXJhdG9yCm9ydGhvZ29uYWwMaW50ZXJzZWN0aW9uC2VxdWl2YWxlbmNlB3VuaTIyNjIFaG91c2UNcmV2bG9naWNhbG5vdAppbnRlZ3JhbHRwCmludGVn' + + 'cmFsYnQHdW5pMjUwMAd1bmkyNTAyB3VuaTI1MEMHdW5pMjUxMAd1bmkyNTE0B3VuaTI1MTgHdW5pMjUxQwd1bmkyNTI0B3VuaTI1MkMHdW5pMjUzNAd1bmkyNTNDB3VuaTI1NTAHdW5pMjU1MQd1bmkyNTUyB3VuaTI1NTMHdW5pMjU1NAd1bmkyNTU1B3VuaTI1NTYH' + + 'dW5pMjU1Nwd1bmkyNTU4B3VuaTI1NTkHdW5pMjU1QQd1bmkyNTVCB3VuaTI1NUMHdW5pMjU1RAd1bmkyNTVFB3VuaTI1NUYHdW5pMjU2MAd1bmkyNTYxB3VuaTI1NjIHdW5pMjU2Mwd1bmkyNTY0B3VuaTI1NjUHdW5pMjU2Ngd1bmkyNTY3B3VuaTI1NjgHdW5pMjU2' + + 'OQd1bmkyNTZBB3VuaTI1NkIHdW5pMjU2Qwd1cGJsb2NrB2RuYmxvY2sFYmxvY2sHbGZibG9jawdydGJsb2NrB2x0c2hhZGUFc2hhZGUHZGtzaGFkZQlmaWxsZWRib3gHdW5pMjVBMQd1bmkyNUFBB3VuaTI1QUIKZmlsbGVkcmVjdAd0cmlhZ3VwB3RyaWFncnQHdHJp' + + 'YWdkbgd0cmlhZ2xmBmNpcmNsZQd1bmkyNUNDB3VuaTI1Q0YHdW5pMjVEMAd1bmkyNUQxB3VuaTI1RDIHdW5pMjVEMwd1bmkyNUQ0B3VuaTI1RDUHdW5pMjVENgd1bmkyNUQ3CWludmJ1bGxldAlpbnZjaXJjbGUKb3BlbmJ1bGxldAlzbWlsZWZhY2UMaW52c21pbGVm' + + 'YWNlA3N1bgd1bmkyNjNGBmZlbWFsZQd1bmkyNjQxBG1hbGUHdW5pMjY0Mwd1bmkyNjQ0B3VuaTI2NDUHdW5pMjY0Ngd1bmkyNjQ3BXNwYWRlBGNsdWIFaGVhcnQHZGlhbW9uZAd1bmkyNjY5C211c2ljYWxub3RlB3VuaTI2NkIHdW5pMjY2Qwd1bmkyNjZGB3VuaTJD' + + 'NjAHdW5pMkM2MQd1bmkyQzYyB3VuaTJDNjMHdW5pMkM2NAd1bmkyQzY1B3VuaTJDNjYHdW5pMkM2Nwd1bmkyQzY4B3VuaTJDNjkHdW5pMkM2QQd1bmkyQzZCB3VuaTJDNkMHdW5pMkM2RAd1bmkyQzcxB3VuaTJDNzIHdW5pMkM3Mwd1bmkyQzc0B3VuaTJDNzUHdW5p' + + 'MkM3Ngd1bmkyQzc3B3VuaTJFMTcHdW5pQTcxNwd1bmlBNzE4B3VuaUE3MTkHdW5pQTcxQQd1bmlBNzFCB3VuaUE3MUMHdW5pQTcxRAd1bmlBNzFFB3VuaUE3MUYHdW5pQTcyMAd1bmlBNzIxB3VuaUE3ODgHdW5pQTc4OQd1bmlBNzhBB3VuaUE3OEIHdW5pQTc4Qwd1' + + 'bmlGQjAxB3VuaUZCMDIHdW5pRkIxRAd1bmlGQjFFDHlvZHlvZF9wYXRhaA9hbHRlcm5hdGl2ZWF5aW4IYWxlZndpZGUJZGFsZXR3aWRlBmhld2lkZQdrYWZ3aWRlCWxhbWVkd2lkZQxmaW5hbG1lbXdpZGUIcmVzaHdpZGUHdGF2d2lkZQxhbHRfcGx1c3NpZ24Lc2hp' + + 'bnNoaW5kb3QKc2hpbnNpbmRvdBFzaGluZGFnZXNoc2hpbmRvdBBzaGluZGFnZXNoc2luZG90CWFsZWZwYXRhaAphbGVmcWFtYXRzCWFsZWZtYXBpcQliZXRkYWdlc2gLZ2ltZWxkYWdlc2gLZGFsZXRkYWdlc2gIaGVkYWdlc2gJdmF2ZGFnZXNoC3pheWluZGFnZXNo' + + 'CXRldGRhZ2VzaAl5b2RkYWdlc2gOZmluYWxrYWZkYWdlc2gJa2FmZGFnZXNoC2xhbWVkZGFnZXNoCW1lbWRhZ2VzaAludW5kYWdlc2gMc2FtZWtoZGFnZXNoDWZpbmFscGVkYWdlc2gIcGVkYWdlc2gLdHNhZGlkYWdlc2gJcW9mZGFnZXNoCnJlc2hkYWdlc2gKc2hp' + + 'bmRhZ2VzaAl0YXZkYWdlc2gIdmF2aG9sYW0HYmV0cmFmZQdrYWZyYWZlBnBlcmFmZQlhbGVmbGFtZWQHdW5pRkUyMAd1bmlGRTIxB3VuaUZFMjIHdW5pRkUyMwd1bmlGRkZDC2NvbW1hYWNjZW50CWJyZXZlLmN5chBjYXJvbmNvbW1hYWNjZW50EWNvbW1hYWNjZW50' + + 'cm90YXRlCGdyYXZlLnVjCGFjdXRlLnVjDWNpcmN1bWZsZXgudWMIY2Fyb24udWMLZGllcmVzaXMudWMIdGlsZGUudWMPaHVuZ2FydW1sYXV0LnVjCGJyZXZlLnVjCmdyYXZlLmFsdDEKZ3JhdmUuYWx0MgpncmF2ZS5hbHQzCmFjdXRlLmFsdDEKYWN1dGUuYWx0Mgph' + + 'Y3V0ZS5hbHQzDmhvb2thYm92ZS5hbHQxDmhvb2thYm92ZS5hbHQyDmhvb2thYm92ZS5hbHQzCnRpbGRlLmFsdDEKdGlsZGUuYWx0MgpicmV2ZS5hbHQxD2NpcmN1bWZsZXguYWx0MQ1kb3RiZWxvdy5hbHQxCmFjdXRlLmFsdDQKYWN1dGUuYWx0NQpncmF2ZS5hbHQ0' + + 'CmdyYXZlLmFsdDUOaG9va2Fib3ZlLmFsdDQOaG9va2Fib3ZlLmFsdDUKdGlsZGUuYWx0Mwp0aWxkZS5hbHQ0CnRpbGRlLmFsdDUKdGlsZGUuYWx0Ngp0aWxkZS5hbHQ3CnRpbGRlLmFsdDgNZG90YmVsb3cuYWx0Mg1kb3RiZWxvdy5hbHQzDWRvdGJlbG93LmFsdDQN' + + 'ZG90YmVsb3cuYWx0NQ1kb3RiZWxvdy5hbHQ2CnRpbGRlLmFsdDkNZG90YmVsb3cuYWx0Nw1kb3RiZWxvdy5hbHQ4DWRvdGJlbG93LmFsdDkOZG90YmVsb3cuYWx0MTAOZG90YmVsb3cuYWx0MTEOZG90YmVsb3cuYWx0MTIOZG90YmVsb3cuYWx0MTMOZG90YmVsb3cu' + + 'YWx0MTQOZG90YmVsb3cuYWx0MTULdGlsZGUuYWx0MTALdGlsZGUuYWx0MTELdGlsZGUuYWx0MTILdGlsZGUuYWx0MTMNZG90bGVzc2kuYWx0MQ91bmkwMzA4MDMwNC5jYXAPdW5pMDMwODAzMDEuY2FwD3VuaTAzMDgwMzBDLmNhcA91bmkwMzA4MDMwMC5jYXAPdW5p' + + 'MDMwNzAzMDQuY2FwD3VuaTAzMDMwMzA0LmNhcA91bmkwMkU1MDJFNTAyRTYPdW5pMDJFNTAyRTUwMkU3D3VuaTAyRTUwMkU1MDJFOA91bmkwMkU1MDJFNTAyRTkPdW5pMDJFNTAyRTYwMkU1D3VuaTAyRTUwMkU2MDJFNg91bmkwMkU1MDJFNjAyRTcPdW5pMDJFNTAy' + + 'RTYwMkU4D3VuaTAyRTUwMkU2MDJFOQt1bmkwMkU1MDJFNg91bmkwMkU1MDJFNzAyRTUPdW5pMDJFNTAyRTcwMkU2D3VuaTAyRTUwMkU3MDJFNw91bmkwMkU1MDJFNzAyRTgPdW5pMDJFNTAyRTcwMkU5C3VuaTAyRTUwMkU3D3VuaTAyRTUwMkU4MDJFNQ91bmkwMkU1' + + 'MDJFODAyRTYPdW5pMDJFNTAyRTgwMkU3D3VuaTAyRTUwMkU4MDJFOA91bmkwMkU1MDJFODAyRTkLdW5pMDJFNTAyRTgPdW5pMDJFNTAyRTkwMkU1D3VuaTAyRTUwMkU5MDJFNg91bmkwMkU1MDJFOTAyRTcPdW5pMDJFNTAyRTkwMkU4D3VuaTAyRTUwMkU5MDJFOQt1' + + 'bmkwMkU1MDJFOQ91bmkwMkU2MDJFNTAyRTUPdW5pMDJFNjAyRTUwMkU2D3VuaTAyRTYwMkU1MDJFNw91bmkwMkU2MDJFNTAyRTgPdW5pMDJFNjAyRTUwMkU5C3VuaTAyRTYwMkU1D3VuaTAyRTYwMkU2MDJFNQ91bmkwMkU2MDJFNjAyRTcPdW5pMDJFNjAyRTYwMkU4' + + 'D3VuaTAyRTYwMkU2MDJFOQ91bmkwMkU2MDJFNzAyRTUPdW5pMDJFNjAyRTcwMkU2D3VuaTAyRTYwMkU3MDJFNw91bmkwMkU2MDJFNzAyRTgPdW5pMDJFNjAyRTcwMkU5C3VuaTAyRTYwMkU3D3VuaTAyRTYwMkU4MDJFNQ91bmkwMkU2MDJFODAyRTYPdW5pMDJFNjAy' + + 'RTgwMkU3D3VuaTAyRTYwMkU4MDJFOA91bmkwMkU2MDJFODAyRTkLdW5pMDJFNjAyRTgPdW5pMDJFNjAyRTkwMkU1D3VuaTAyRTYwMkU5MDJFNg91bmkwMkU2MDJFOTAyRTcPdW5pMDJFNjAyRTkwMkU4D3VuaTAyRTYwMkU5MDJFOQt1bmkwMkU2MDJFOQ91bmkwMkU3' + + 'MDJFNTAyRTUPdW5pMDJFNzAyRTUwMkU2D3VuaTAyRTcwMkU1MDJFNw91bmkwMkU3MDJFNTAyRTgPdW5pMDJFNzAyRTUwMkU5C3VuaTAyRTcwMkU1D3VuaTAyRTcwMkU2MDJFNQ91bmkwMkU3MDJFNjAyRTYPdW5pMDJFNzAyRTYwMkU3D3VuaTAyRTcwMkU2MDJFOA91' + + 'bmkwMkU3MDJFNjAyRTkLdW5pMDJFNzAyRTYPdW5pMDJFNzAyRTcwMkU1D3VuaTAyRTcwMkU3MDJFNg91bmkwMkU3MDJFNzAyRTgPdW5pMDJFNzAyRTcwMkU5D3VuaTAyRTcwMkU4MDJFNQ91bmkwMkU3MDJFODAyRTYPdW5pMDJFNzAyRTgwMkU3D3VuaTAyRTcwMkU4' + + 'MDJFOA91bmkwMkU3MDJFODAyRTkLdW5pMDJFNzAyRTgPdW5pMDJFNzAyRTkwMkU1D3VuaTAyRTcwMkU5MDJFNg91bmkwMkU3MDJFOTAyRTcPdW5pMDJFNzAyRTkwMkU4D3VuaTAyRTcwMkU5MDJFOQt1bmkwMkU3MDJFOQ91bmkwMkU4MDJFNTAyRTUPdW5pMDJFODAy' + + 'RTUwMkU2D3VuaTAyRTgwMkU1MDJFNw91bmkwMkU4MDJFNTAyRTgPdW5pMDJFODAyRTUwMkU5C3VuaTAyRTgwMkU1D3VuaTAyRTgwMkU2MDJFNQ91bmkwMkU4MDJFNjAyRTYPdW5pMDJFODAyRTYwMkU3D3VuaTAyRTgwMkU2MDJFOA91bmkwMkU4MDJFNjAyRTkLdW5p' + + 'MDJFODAyRTYPdW5pMDJFODAyRTcwMkU1D3VuaTAyRTgwMkU3MDJFNg91bmkwMkU4MDJFNzAyRTcPdW5pMDJFODAyRTcwMkU4D3VuaTAyRTgwMkU3MDJFOQt1bmkwMkU4MDJFNw91bmkwMkU4MDJFODAyRTUPdW5pMDJFODAyRTgwMkU2D3VuaTAyRTgwMkU4MDJFNw91' + + 'bmkwMkU4MDJFODAyRTkPdW5pMDJFODAyRTkwMkU1D3VuaTAyRTgwMkU5MDJFNg91bmkwMkU4MDJFOTAyRTcPdW5pMDJFODAyRTkwMkU4D3VuaTAyRTgwMkU5MDJFOQt1bmkwMkU4MDJFOQ91bmkwMkU5MDJFNTAyRTUPdW5pMDJFOTAyRTUwMkU2D3VuaTAyRTkwMkU1' + + 'MDJFNw91bmkwMkU5MDJFNTAyRTgPdW5pMDJFOTAyRTUwMkU5C3VuaTAyRTkwMkU1D3VuaTAyRTkwMkU2MDJFNQ91bmkwMkU5MDJFNjAyRTYPdW5pMDJFOTAyRTYwMkU3D3VuaTAyRTkwMkU2MDJFOA91bmkwMkU5MDJFNjAyRTkLdW5pMDJFOTAyRTYPdW5pMDJFOTAy' + + 'RTcwMkU1D3VuaTAyRTkwMkU3MDJFNg91bmkwMkU5MDJFNzAyRTcPdW5pMDJFOTAyRTcwMkU4D3VuaTAyRTkwMkU3MDJFOQt1bmkwMkU5MDJFNw91bmkwMkU5MDJFODAyRTUPdW5pMDJFOTAyRTgwMkU2D3VuaTAyRTkwMkU4MDJFNw91bmkwMkU5MDJFODAyRTgPdW5p' + + 'MDJFOTAyRTgwMkU5C3VuaTAyRTkwMkU4D3VuaTAyRTkwMkU5MDJFNQ91bmkwMkU5MDJFOTAyRTYPdW5pMDJFOTAyRTkwMkU3D3VuaTAyRTkwMkU5MDJFOA9jeXJpbGxpY19vdG1hcmsPdW5pMDMwNDAzMDAuY2FwD3VuaTAzMDQwMzAxLmNhcA91bmkwMzAzMDMwMS5j' + + 'YXAPdW5pMDMwMzAzMDguY2FwD3VuaTAzMDEwMzA3LmNhcA91bmkwMzBDMDMwNy5jYXAPdW5pMDMwNDAzMDguY2FwDGJhcmkuZG90bGVzcxN1bmkwM0IxMDMwNDAzMTMwMzAwE3VuaTAzQjEwMzA0MDMxMzAzMDETdW5pMDNCMTAzMDQwMzE0MDMwMBN1bmkwM0IxMDMw' + + 'NDAzMTQwMzAxE3VuaTAzQjEwMzA2MDMxMzAzMDATdW5pMDNCMTAzMDYwMzEzMDMwMRN1bmkwM0IxMDMwNjAzMTQwMzAwE3VuaTAzQjEwMzA2MDMxNDAzMDETdW5pMDNCOTAzMDQwMzEzMDMwMBN1bmkwM0I5MDMwNDAzMTMwMzAxE3VuaTAzQjkwMzA0MDMxNDAzMDAT' + + 'dW5pMDNCOTAzMDQwMzE0MDMwMRN1bmkwM0I5MDMwNjAzMTMwMzAwE3VuaTAzQjkwMzA2MDMxMzAzMDETdW5pMDNCOTAzMDYwMzE0MDMwMBN1bmkwM0I5MDMwNjAzMTQwMzAxE3VuaTAzQzUwMzA0MDMxMzAzMDATdW5pMDNDNTAzMDQwMzEzMDMwMRN1bmkwM0M1MDMw' + + 'NDAzMTQwMzAwE3VuaTAzQzUwMzA0MDMxNDAzMDETdW5pMDNDNTAzMDYwMzEzMDMwMBN1bmkwM0M1MDMwNjAzMTMwMzAxE3VuaTAzQzUwMzA2MDMxNDAzMDATdW5pMDNDNTAzMDYwMzE0MDMwMRN1bmkwM0I5MDMwODAzMDQwMzAwE3VuaTAzQjkwMzA4MDMwNDAzMDET' + + 'dW5pMDNCOTAzMDgwMzA2MDMwMBN1bmkwM0I5MDMwODAzMDYwMzAxE3VuaTAzQzUwMzA4MDMwNDAzMDATdW5pMDNDNTAzMDgwMzA0MDMwMRN1bmkwM0M1MDMwODAzMDYwMzAwE3VuaTAzQzUwMzA4MDMwNjAzMDEMZG90dGVkaWFjdXRlCEVuZy5hbHQxCEVuZy5hbHQy' + + 'CEVuZy5hbHQzCHplcm8uYWx0B29uZS5hbHQHdHdvLmFsdAl0aHJlZS5hbHQIZm91ci5hbHQIZml2ZS5hbHQHc2l4LmFsdAlzZXZlbi5hbHQJZWlnaHQuYWx0CG5pbmUuYWx0D2NpcmN1bWZsZXhhY3V0ZQ9jaXJjdW1mbGV4Z3JhdmUOY2lyY3VtZmxleGhvb2sPY2ly' + + 'Y3VtZmxleHRpbGRlCmJyZXZlYWN1dGUKYnJldmVncmF2ZQlicmV2ZWhvb2sKYnJldmV0aWxkZRJjaXJjdW1mbGV4YWN1dGUubGMSY2lyY3VtZmxleGdyYXZlLmxjEWNpcmN1bWZsZXhob29rLmxjEmNpcmN1bWZsZXh0aWxkZS5sYw1icmV2ZWFjdXRlLmxjDWJyZXZl' + + 'Z3JhdmUubGMMYnJldmVob29rLmxjDWJyZXZldGlsZGUubGMNdW5pMUZFRi5zaG9ydAt0b25vcy5zaG9ydBBsYW1lZGhvbGFtZGFnZXNoCmxhbWVkaG9sYW0OZmluYWxrYWZxYW1hdHMNZmluYWxrYWZzaGV2YRNhbGVmbGFtZWRoYXRhZnNlZ29sDmFsZWZsYW1lZHNl' + + 'Z29sDmFsZWZsYW1lZHRzZXJlEGFsdGVybmF0aXZlbGFtZWQKYWxlZmRhZ2VzaAt1bmkwNUIxMDVCRAt1bmkwNUIyMDVCRAt1bmkwNUIzMDVCRARTX0JFAAAAAAAAAwAIAAIAEQAB//8AAwABAAAADAAAAHYAfgACABEAAATIAAEEyQT1AAME9gT2AAEE9wT3AAME+AT4' + + 'AAEE+QT9AAME/gT+AAEE/wT/AAMFAAjnAAEI6AjoAAMI6QkTAAEJFAkUAAIJFQoyAAEKMwo1AAIKNgo3AAEKOAo6AAMKOwo7AAEABAAAAAIAAAACABwCwgLWAAIC2ALbAAMC3ALcAAIC3gLiAAMC5QLoAAMC6wL1AAMC+wL+AAMC/wMBAAIDBAMGAAIDBwMHAAMDCAMI' + + 'AAIDCQMLAAMDDAMOAAIDDwMQAAMDEgMUAAIDFQMYAAMDGQMZAAIDGwMcAAMDHQMdAAIDJQMxAAIENAQ3AAIF4AXhAAIF4gXiAAMF4wXpAAIF6gXqAAMF6wXrAAIF7AXsAAMJFQkYAAEAAAABAAAACgCsAOwAB0RGTFQALGJvcG8AOmNvcHQASGN5cmwAVmdyZWsAcGhl' + + 'YnIAgGxhdG4AkgAEAAAAAP//AAIAAwAEAAQAAAAA//8AAgADAAQABAAAAAD//wACAAMABAAQAAJNS0QgABBTUkIgABAAAP//AAIAAwAEAAQAAAAA//8AAwAAAAMABAAEAAAAAP//AAQAAQACAAMABAAEAAAAAP//AAMAAAADAAQABWNjbXAAIGNjbXAAJmRsaWcALnN1' + + 'YnMANHN1cHMAOgAAAAEAAwAAAAIAAQACAAAAAQAAAAAAAQAGAAAAAQAFAAcAEAAYACAAKAAwADgAQAAEAAEAAQA4AAQAAQABAEgABgABAAECCgAEAAAAAQJEAAQAAQABB7AAAQAAAAEIAAABAAAAAQgIAAEAEgABAAgAAQAECRQAAgUMAAEAAQUAAAEBnAAZADgAQgBM' + + 'AFYAYABqAHQAfgCIAJoApACuAMAA2gDkAQABCgEUAR4BKAEyATwBRgFQAZIAAQAECjgAAgT1AAEABAo5AAIE9QABAAQKOgACBPUAAQAECjcAAgT0AAEABAj7AAIE9AABAAQI/AACBPQAAQAECP0AAgT0AAEABAj+AAIE9AACAAYADAkQAAIE8Qj/AAIE9AABAAQJAAAC' + + 'BPQAAQAECQEAAgT0AAIABgAMCQIAAgT0COcAAgTsAAMACAAOABQKMgACBOgKMQACBPAJAwACBPQAAQAECQQAAgT0AAMACAAQABYKLwADBPQE8QowAAIE8QkFAAIE9AABAAQJBgACBPQAAQAECQcAAgT0AAEABAkIAAIE9AABAAQJCQACBPQAAQAECQoAAgT0AAEABAkL' + + 'AAIE9AABAAQJDAACBPQAAQAECQ0AAgT0AAcAEAAYACAAKAAwADYAPAj3AAME+gT0CPcAAwT0BPoI9gADBPkE9Aj2AAME9AT5CQ4AAgT0CPUAAgT6CPQAAgT5AAEABAkPAAIE9AACAAcE6QTrAAAFAAUGAAMFCAUMAAoFDgUOAA8FEAURABAFEwUUABIFFgUaABQAAwAA' + + 'AAIAFAAiAAEALAABAAAABAABAAUFAAUBBQsFFAUdAAEAAwTvBPAE9wACAAMFAAUdAAAInQidAB4I6wjyAB8AAQVqAAUAEAEiAjQDRgRYABwAOgBCAEoAUgBaAGIAagByAHoAggCKAJIAmgCiAKoAsgC6AMIAygDSANoA4gDqAPIA+gEAAQYBDAl0AAMCqwKrCXMAAwKr' + + 'AqoJcgADAqsCqQlxAAMCqwKoCXAAAwKrAqcJbgADAqoCqwltAAMCqgKqCWwAAwKqAqkJawADAqoCqAlqAAMCqgKnCWgAAwKpAqsJZwADAqkCqglmAAMCqQKpCWUAAwKpAqgJZAADAqkCpwliAAMCqAKrCWEAAwKoAqoJYAADAqgCqQlfAAMCqAKoCV4AAwKoAqcJXQAD' + + 'AqcCqwlcAAMCpwKqCVsAAwKnAqkJWgADAqcCqAlvAAICqgl1AAICqwljAAICqAlpAAICqQAcADoAQgBKAFIAWgBiAGoAcgB6AIIAigCSAJoAogCqALIAugDCAMoA0gDaAOIA6gDyAPoBAAEGAQwJkAADAqsCqwmPAAMCqwKqCY4AAwKrAqkJjQADAqsCqAmMAAMCqwKn' + + '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' + + 'qsAABAEAAAF2zgAEAAAAAQbmAAQAAAABXIYABAAAAAECDAAGAgAAATPkAAYDAAABKJIAAQAKAAUAGQAKAAEAAQTxAAEACAABAUAAAQACBNIE5QABABQAAQABAAEADAABBN0AyP84AAEAAQTcAAIAFAABAAb95P3k/eT95P3k/nAAAQAGBMkEzgTbBNwE3QT1AAEAHAAW' + + 'AAEAIgAMAAEABAABAlgFlgABAAEInQABAAEE+QABAAAABgABAAAFlgADAAEAGAABABIAAAABAAAAEgABAAEE8QACAAQFAAUEAAAFBgUaAAUFHAUdABoI6wjyABwAAwACACIAKAACABYAHAAAAAEAAAAZAAEAAQTcAAEAAQTdAAEAAQTxAAEAAQUSAAMAAgAiACgAAgAW' + + 'ABwAAAABAAAAGQABAAEE3AABAAEE3QABAAEE9AABAAEFEgABAMYAngABAMwADAASACYALAAyADgAPgBEAEoAUABWAFwAYgBoAG4AdAB6AIAAhgCMAAECigK8AAECqAKAAAH/zgK8AAEClAMgAAEAeAIcAAH/zgK8AAH/zgMgAAH/zgMgAAECWAJYAAECJgEEAAEBfAK8' + + 'AAECdgK8AAEBuAKUAAEBrgLQAAEBmgK8AAEC5AK8AAEDtgJsAAEDtgJsAAEAEgUHBQ0FDwUSBRUFGwUcBR0InQjrCOwI7QjuCO8I8QjyCPQI9QABAAEE9AABAAAABgABAAACvAABANAArgABANgADAAUACoAMAA2ADwAQgBIAE4AVABaAGAAZgBsAHIAeAB+AIQAigCQ' + + 'AJYAnAABA3AAeAABAyAAeAABA5gAAAABAQ4AAAABAxb+1AABA44AAAABANz+/AABA5gAAAABAOEAAAABBdIAAAABA44AAAABA3AAeAABA47+1AABAOYAAAABAyoAeAABAdYAAAABA5gAAAABAf4AAAABBC4AAAABAz4AAAACAAUARQBHAAAASQBLAAMATQBRAAYAUwBa' + + 'AAsAXQBdABMAAQACAuMC5AACAAAACgAAABAAAQBaAG4AAQBaAG4AAwABABwAAQAUAAEAMgABAAAAEwABAAIE9wjoAAIAAwUABR0AAAidCJ0AHgjrCPIAHwABAA4EygTLBMwEzQTPBNAE1ATWBNcE2QTgBOME5ATnAAMAAgAcADwAAQAUAAAAAQAAABMAAQACBPcI6AAB' + + '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' + + 'AAAAGAABAAYEyQTOBNsE3ATdBPUAAQABBNIAAQABBPAAAwACACQAKgABABQAAAABAAAAGAABAAYEyQTOBNsE3ATdBPUAAQABBNsAAQABBPAAAwACACQAKgABABQAAAABAAAAGAABAAYEyQTOBNsE3ATdBPUAAQABBNwAAQABBPAAAwACACQAKgABABQAAAABAAAAGAAB' + + 'AAYEyQTOBNsE3ATdBPUAAQABBPUAAQABBPAAAQKUAk4AAQKaAAwASACSAJgAngCkAKoAsAC2ALwAwgDIAM4A1ADaAOAA5gDsAPIA+AD+AQQBCgEQARYBHAEiASgBLgE0AToBQAFGAUwBUgFYAV4BZAFqAXABdgF8AYIBiAGOAZQBmgGgAaYBrAGyAbgBvgHEAcoB0AHW' + + 'AdwB4gHoAe4B9AH6AgACBgIMAhICGAIeAiQCKgIwAjYCPAABAuQFFAABA3AFFAABBEwFFAABA8gFFAABBIMFFAABBEwFFAABBEwFFAABBK8FFAABAR4FFAABAw0FFAABBCsFFAABAP0FFAABBawFFAABBLoFFAABBEwFFAABA/QFFAABBEwFFAABBCsFFAABA+kFFAAB' + + 'BEwFFAABBOwFFAABBLoFFAABBvYFFAABBEEFFAABBG0FFAABBCAFFAABA1wDIAABA6IDIAABA1wDIAABA4gFeAABA6IDIAABAcIFeAABA44D6AABA5MDIAABATYD6AABATYD6AABA1wD6AABANMFeAABBdwDIAABA5gDIAABA44DIAABA44DIAABA44D6AABAhID6AAB' + + 'AzQDIAABAPoFAAABA44D6AABA1wD6AABBUYD6AABAzQD6AABA1wD6AABAyAD6AABBJwFFAABBJwFFAABBJwFFAABBOwFFAABBOwFFAABA44DIAABA44DIAABA44DIAABA44D6AABA44D6AABBOwFFAABA9QD6AABBEwFFAABA44DIAABBEwFFAABA44DIAABBOwFFAAB' + + 'A44D6AABBOwFFAABA44D6AACAAsAJAA9AAAARABdABoAlACVADQAlwCXADYAmwCcADcAtAC1ADkAtwC3ADsAuwC8ADwBKgErAD4Gtga5AEAGzgbRAEQAAQABAt0AAQAAAAYAAQBGA/wAAQKWAm4AAQKcAAwATACaAKAApgCsALIAuAC+AMQAygDQANYA3ADiAOgA7gD0' + + 'APoBAAEGAQwBEgEYAR4BJAEqATABNgE8AUIBSAFOAVQBWgFgAWYBbAFyAXgBfgGEAYoBkAGWAZwBogGoAa4BtAG6AcABxgHMAdIB2AHeAeQB6gHwAfYB/AICAggCDgIUAhoCIAImAiwCMgI4Aj4CRAJKAlACVgJcAAEAPAWWAAEAPAWWAAEAPAWWAAEAAAWWAAEAPAWW' + + 'AAEBBAWWAAEAAAWWAAEAPAWWAAEAPAWWAAEAPAWWAAEAAAWWAAEAAAWWAAH/fgWWAAEAPAWWAAEAAAWWAAEAPAWWAAEAPAWWAAEAAAWWAAEAPAWWAAEAPAWWAAEAPAWWAAEAAAWWAAEAAAWWAAEAPAWWAAEAAAWWAAEAAAWWAAEAAAWWAAEAPAWWAAEAUAWWAAEAUAWW' + + 'AAEAZAWhAAEAPAWWAAEAPAWWAAEAAAWWAAEAPAWWAAEAAAWWAAH/fgWWAAEAPAWWAAEAAAWWAAEAAAWWAAEAAAWWAAH/sAWWAAEAAAWWAAH/sAWWAAEAPAWWAAEAPAWWAAEAPAWWAAEAPAWWAAEAPAWWAAEAAAWWAAEAPAWWAAEAPAWWAAEAAAWWAAEAPAWWAAEAPAWW' + + 'AAEAAAWWAAEAAAWWAAH/fgWWAAEAAAWWAAEAPAWWAAEAAAWWAAEAPAWWAAEAPAWWAAEAAAWWAAEAPAWWAAEAAAWWAAEAAAWWAAEAAAWWAAH/sAWWAAEAAAWWAAEAAAWWAAEAPAWWAAH+1AWWAAH+1AWWAAEAAAWWAAEAAAWWAAIABgUABR0AAAidCJ0AHgjpCOkAHwjr' + + 'CPIAIAj0CRMAKAovCjIASAABAAEE8QABAAAABgABAAAFlgABApYCbgABAp4ADABMAJoAoACmAKwAsgC4AL4AxADKANAA1gDcAOIA6ADuAPQA+gEAAQYBDAESARgBHgEkASoBMAE2ATwBQgFIAU4BVAFaAWABZgFsAXIBeAF+AYQBigGQAZYBnAGiAagBrgG0AboBwAHG' + + 'AcwB0gHYAd4B5AHqAfAB9gH8AgICCAIOAhQCGgIgAiYCLAIyAjgCPgJEAkoCUAJWAlwAAQQ4BUYAAQOEBUYAAQH0BUYAAQOEBUYAAQPoBUYAAQFoBUYAAQHMBUYAAQPoBUYAAQPoBUYAAQFoBUYAAQMgBUYAAQMgBUYAAQNwBUYAAQPoBUYAAQPoBUYAAQFoBUYAAQH0' + + 'BUYAAQPoBUYAAQPoBUYAAQPoBUYAAQPoBUYAAQOEBUYAAQOEBUYAAQPoBUYAAQNcBUYAAQUUBUYAAQRMBUYAAQMMBUYAAQMMBUYAAQMMBUYAAQPoBUYAAQMMBUYAAQQ4BUYAAQOEBUYAAQPoBUYAAQMgBUYAAQMgBUYAAQPoBUYAAQNcBUYAAQRMBUYAAQW0BUYAAQUU' + + 'BUYAAQW0BUYAAQUUBUYAAQQ4BUYAAQQ4BUYAAQQ4BUYAAQOEBUYAAQH0BUYAAQOEBUYAAQPoBUYAAQFoBUYAAQHMBUYAAQPoBUYAAQFoBUYAAQMgBUYAAQMgBUYAAQMgBUYAAQPoBUYAAQH0BUYAAQPoBUYAAQPoBUYAAQPoBUYAAQOEBUYAAQPoBUYAAQNcBUYAAQUU' + + 'BUYAAQRMBUYAAQGkBUYAAQOEBUYAAQMgBUYAAQPoBUYAAQMgBUYAAQMgBUYAAQMgBUYAAQMgBUYAAgAGBQAFHQAACJ0InQAeCOkI6QAfCOsI8gAgCPQJEwAoCi8KMgBIAAEAAgTVBNgAAgAAAAoAAAAQAAEAAAVGAAEAAAVGAAEClgJuAAECngAMAEwAmgCgAKYArACy' + + 'ALgAvgDEAMoA0ADWANwA4gDoAO4A9AD6AQABBgEMARIBGAEeASQBKgEwATYBPAFCAUgBTgFUAVoBYAFmAWwBcgF4AX4BhAGKAZABlgGcAaIBqAGuAbQBugHAAcYBzAHSAdgB3gHkAeoB8AH2AfwCAgIIAg4CFAIaAiACJgIsAjICOAI+AkQCSgJQAlYCXAABBCQAAAAB' + + 'A0gAAAABAkQAAAABAvgAAAABA8AAAAABALQAAAABAPAAAAABA/wAAAABA/wAAAABALQAAAABBBAAAAABAvgAAAABArwAAAABBDgAAAABBDgAAAABAcwAAAABAcwAAAABA+gAAAABA1wAAAABBLAAAAABA4QAAAABAuQAAAABAyAAAAABAlgAAAABAvgAAAABBDgAAAAB' + + 'BDgAAAABArwAAAABArwAAAABArwAAAABA+gAAAABArwAAAABBCQAAAABAvgAAAABA8AAAAABAvgAAAABArwAAAABBDgAAAABAvgAAAABBDgAAAABBDgAAAABBDgAAAABBDgAAAABBDgAAAABBCQAAAABBCQAAAABBCQAAAABA0gAAAABAkQAAAABAvgAAAABA8AAAAAB' + + 'ALQAAAABAPAAAAABA/wAAAABALQAAAABBBAAAAABAvgAAAABArwAAAABBCQAAAABAcwAAAABA+gAAAABBLAAAAABA4QAAAABAyAAAAABAlgAAAABAvgAAAABBDgAAAABBCQAAAABALQAAAABA0gAAAABAvgAAAABA4QAAAABArwAAAABArwAAAABBBAAAAABBBAAAAAC' + + 'AAYFAAUdAAAInQidAB4I6QjpAB8I6wjyACAI9AkTACgKLwoyAEgAAQACBNIE5QACAAAACgAAABAAAQAAACgAAQAAAAoAAQKWAm4AAQKeAAwATACaAKAApgCsALIAuAC+AMQAygDQANYA3ADiAOgA7gD0APoBAAEGAQwBEgEYAR4BJAEqATABNgE8AUIBSAFOAVQBWgFg' + + 'AWYBbAFyAXgBfgGEAYoBkAGWAZwBogGoAa4BtAG6AcABxgHMAdIB2AHeAeQB6gHwAfYB/AICAggCDgIUAhoCIAImAiwCMgI4Aj4CRAJKAlACVgJcAAEEYAWWAAEDrAWWAAECgAWWAAEDwAWWAAED6AWWAAEB9AWWAAECHAWWAAEEOAWWAAEEOAWWAAEB9AWWAAEDcAWW' + + 'AAEDcAWWAAEDcAWWAAEEsAWWAAEEsAWWAAEB9AWWAAECigWWAAEEsAWWAAEEOAWWAAEETAWWAAEETAWWAAED1AWWAAED1AWWAAEEOAWWAAEDXAWWAAEFUAWWAAEEsAWWAAEDcAWWAAEDcAWWAAEDcAWWAAED6AWWAAEDcAWWAAEEYAWWAAEDwAWWAAED6AWWAAEDcAWW' + + 'AAEDcAWWAAEEsAWWAAEDXAWWAAEEsAWWAAEGpAWWAAEFUAWWAAEGpAWWAAEFUAWWAAEEYAWWAAEEYAWWAAEEYAWWAAEDrAWWAAECgAWWAAEDwAWWAAED6AWWAAEB9AWWAAECHAWWAAEEnAWWAAEB9AWWAAEDcAWWAAEDcAWWAAEDcAWWAAEEsAWWAAECigWWAAEEsAWW' + + 'AAEETAWWAAEETAWWAAED1AWWAAEEOAWWAAEDXAWWAAEFUAWWAAEEsAWWAAEClAWWAAED/AWWAAED1AWWAAEETAWWAAEDcAWWAAEDcAWWAAEDcAWWAAEDcAWWAAIABgUABR0AAAidCJ0AHgjpCOkAHwjrCPIAIAj0CRMAKAovCjIASAABAAIE9wjoAAIAAAAKAAAAEAAB' + + 'AAAFlgABAAAFlgABApYCbgABAqAADABMAJoAoACmAKwAsgC4AL4AxADKANAA1gDcAOIA6ADuAPQA+gEAAQYBDAESARgBHgEkASoBMAE2ATwBQgFIAU4BVAFaAWABZgFsAXIBeAF+AYQBigGQAZYBnAGiAagBrgG0AboBwAHGAcwB0gHYAd4B5AHqAfAB9gH8AgICCAIO' + + 'AhQCGgIgAiYCLAIyAjgCPgJEAkoCUAJWAlwAAQDwBUYAAQDwBUYAAQDwBUYAAQCMBUYAAQDwBUYAAQDIBUYAAQCMBUYAAQDwBUYAAQDwBUYAAQDIBUYAAQCMBUYAAQDIBUYAAQAABUYAAQDwBUYAAQCMBUYAAQDIBUYAAQDwBUYAAQDIBUYAAQDIBUYAAQDwBUYAAQDw' + + 'BUYAAQCMBUYAAQCMBUYAAQDwBUYAAQCMBUYAAQCMBUYAAQDIBUYAAQDIBUYAAQDIBUYAAQDIBUYAAQDwBUYAAQDIBUYAAQDwBUYAAQCMBUYAAQDwBUYAAQDIBUYAAQAABUYAAQDwBUYAAQCMBUYAAQDIBUYAAQCMBUYAAQAABUYAAQCMBUYAAQAABUYAAQDwBUYAAQDw' + + 'BUYAAQDwBUYAAQDwBUYAAQDwBUYAAQCMBUYAAQDwBUYAAQDIBUYAAQCMBUYAAQDwBUYAAQDIBUYAAQCMBUYAAQDIBUYAAQAABUYAAQCMBUYAAQDIBUYAAQDIBUYAAQDwBUYAAQDwBUYAAQCMBUYAAQDwBUYAAQCMBUYAAQCMBUYAAQDIBUYAAQBkBUYAAQDwBUYAAQDI' + + 'BUYAAQDwBUYAAf9MBUYAAf9MBUYAAQCMBUYAAQCMBUYAAgAGBQAFHQAACJ0InQAeCOkI6QAfCOsI8gAgCPQJEwAoCi8KMgBIAAEAAwTRBOEE5gADAAAADgAAABQAAAAaAAEAAAVGAAEAAAVGAAEAAAVGAAMAAgAcAD4AAQAUAAAAAQAAABcAAQACBNIE5QABAA8E6ATp' + + 'BOoE6wTsBO0E7gTvBPAE8wT1BP8KOAo5CjoAAQAWBQIFAwUFBQYFCQUMBRAFGAjsCO8I8Qj8CP0I/wkACQIJBQkHCQ0JEAovCjAAAwADAB4AJAAqAAEAFgAAAAEAAAAXAAEAAgTSBOUAAQABBOwAAQABBOgAAQAWBQIFAwUFBQYFCQUMBRAFGAjsCO8I8Qj8CP0I/wkA' + + 'CQIJBQkHCQ0JEAovCjAAAwADAB4AJAAqAAEAFgAAAAEAAAAXAAEAAgTSBOUAAQABBPUAAQABBOgAAQAWBQIFAwUFBQYFCQUMBRAFGAjsCO8I8Qj8CP0I/wkACQIJBQkHCQ0JEAovCjAAAwADAB4AJAAqAAEAFgAAAAEAAAAXAAEAAgTSBOUAAQABBPUAAQABBOwAAQAW' + + 'BQIFAwUFBQYFCQUMBRAFGAjsCO8I8Qj8CP0I/wkACQIJBQkHCQ0JEAovCjAAAwADAB4AJAAqAAEAFgAAAAEAAAAXAAEAAgTSBOUAAQABBPUAAQABBO0AAQAWBQIFAwUFBQYFCQUMBRAFGAjsCO8I8Qj8CP0I/wkACQIJBQkHCQ0JEAovCjAAAwADAB4AJAAqAAEAFgAA' + + 'AAEAAAAXAAEAAgTSBOUAAQABBPUAAQABBO8AAQAWBQIFAwUFBQYFCQUMBRAFGAjsCO8I8Qj8CP0I/wkACQIJBQkHCQ0JEAovCjAAAwADAB4AJAAqAAEAFgAAAAEAAAAXAAEAAgTSBOUAAQABBPUAAQABBPAAAQAWBQIFAwUFBQYFCQUMBRAFGAjsCO8I8Qj8CP0I/wkA' + + 'CQIJBQkHCQ0JEAovCjAAAwACABwAIgABABQAAAABAAAAFwABAAIE0gTlAAEAAQT1AAEAFgUCBQMFBQUGBQkFDAUQBRgI7AjvCPEI/Aj9CP8JAAkCCQUJBwkNCRAKLwowAAEClgJuAAECtgAMAEwAmgCgAKYArACyALgAvgDEAMoA0ADWANwA4gDoAO4A9AD6AQABBgEM' + + 'ARIBGAEeASQBKgEwATYBPAFCAUgBTgFUAVoBYAFmAWwBcgF4AX4BhAGKAZABlgGcAaIBqAGuAbQBugHAAcYBzAHSAdgB3gHkAeoB8AH2AfwCAgIIAg4CFAIaAiACJgIsAjICOAI+AkQCSgJQAlYCXAABApQFRgABAfQFRgABAWgFRgABAhwFRgABAlgFRgABAQ4FRgAB' + + 'AaQFRgABApQFRgABApQFRgABAQ4FRgABAZAFRgABAZAFRgABAqgFRgABApQFRgABAwwFRgABAQ4FRgABAUAFRgABAoAFRgABAlgFRgABAlgFRgABAlgFRgABAggFRgABAggFRgABAjAFRgABAaQFRgABArwFRgABApQFRgABAggFRgABAggFRgABAggFRgABAlgFRgAB' + + 'AggFRgABApQFRgABAjAFRgABApQFRgABAcwFRgABAqgFRgABAqgFRgABAaQFRgABApQFRgABArwFRgABAyAFRgABArwFRgABAyAFRgABApQFRgABApQFRgABApQFRgABAfQFRgABAWgFRgABAhwFRgABAlgFRgABAQ4FRgABAaQFRgABApQFRgABAQ4FRgABAZAFRgAB' + + 'AZAFRgABAqgFRgABAwwFRgABAUAFRgABAoAFRgABAlgFRgABAlgFRgABAggFRgABAjAFRgABAaQFRgABArwFRgABApQFRgABALQFRgABAWgFRgABASwFRgABAZAFRgABAqgFRgABAqgFRgABAZAFRgABAZAFRgACAAYFAAUdAAAInQidAB4I6QjpAB8I6wjyACAI9AkT' + + 'ACgKLwoyAEgAAQAOBMoEywTMBM0EzwTQBNQE1gTXBNkE4ATjBOQE5wAOAAAAOgAAAEAAAABGAAAATAAAAFIAAABYAAAAXgAAAGQAAABqAAAAcAAAAHYAAAB8AAAAggAAAIgAAQHgBUYAAQDIBUYAAQEsBUYAAQHgBUYAAQDIBUYAAQEsBUYAAQFoBUYAAQEsBUYAAQH0' + + 'BUYAAQDIBUYAAQDIBUYAAQDIBUYAAQDIBUYAAQDwBW4AAQOgAx4AAQOmAAwAYgDGAMwA0gDYAN4A5ADqAPAA9gD8AQIBCAEOARQBGgEgASYBLAEyATgBPgFEAUoBUAFWAVwBYgFoAW4BdAF6AYABhgGMAZIBmAGeAaQBqgGwAbYBvAHCAcgBzgHUAdoB4AHmAewB8gH4' + + 'Af4CBAIKAhACFgIcAiICKAIuAjQCOgJAAkYCTAJSAlgCXgJkAmoCcAJ2AnwCggKIAo4ClAKaAqACpgKsArICuAK+AsQCygLQAtYC3ALiAugC7gL0AvoDAAMGAwwAAQMgBYwAAQSOBH4AAQUsBLAAAQTtBH4AAQS/BYwAAQR3BYwAAQVbBLAAAQUUBYwAAQF8BYwAAQNc' + + 'BYwAAQSbBYwAAQFoBYwAAQYEBYwAAQUUBYwAAQV4BH4AAQTCBH4AAQV4BH4AAQUNBH4AAQSIBLAAAQScBYwAAQUUBYwAAQUUBYwAAQdYBYwAAQSwBYwAAQTjBYwAAQRqBYwAAQO2A4QAAQPyA4QAAQOEA4QAAQPVBdwAAQPeA4QAAQIwBdwAAQPoBEwAAQPeA4QAAQFA' + + 'BEwAAQFABEwAAQNcBEwAAQFABdwAAQYiA4QAAQPeA4QAAQPeA4QAAQPeA4QAAQPeBEwAAQKABEwAAQNdA7YAAQH1BEwAAQPUBEwAAQO2BEwAAQWMBEwAAQNwBEwAAQPABEwAAQNwBEwAAQO2A4QAAQO2A4QAAQO2A4QAAQO2A4QAAQO2A4QAAQO2A4QAAQaQA4QAAQPe' + + 'A4QAAQPeA4QAAQPeA4QAAQPeA4QAAQFeBEwAAQGGBEwAAQFeBEwAAQFeBEwAAQPeA4QAAQPeA4QAAQPeA4QAAQPeA4QAAQPeA4QAAQQQA4QAAQPUBEwAAQPUBEwAAQPUBEwAAQPUBEwAAQOsBEwAAQOsBEwAAQF8BEwAAQb0A4QAAQPPA4QAAQQGA4QAAQPeBEwAAQPe' + + 'A4QAAQNwA4QAAQPUA4QAAQMMA4QAAQMqA4QAAQOYA4QAAQSAA+gAAQE2BEwAAQIwBEwAAQPeA4QAAQXwBEwAAQPeBEwAAQQsBEwAAQJxBEwAAgAVACQAPQAAAEQAXQAaAKIAqAA0AKoAsQA7ALQAuABDALoAvwBIAMEAwQBOAPMA8wBPARUBFQBQAZ8BnwBRAhICFABS' + + 'AhYCFgBVAhoCGgBWAh0CHgBXAiACIABZAiYCJgBaAioCKgBbAiwCLABcAjcCOABdAksCTABfAk4CTgBhAAEAAQKgAAEAAAAGAAEAAALsAAEBuAFmAAECCgAMACsAWABeAGQAagBwAHYAfACCAIgAjgCUAJoAoACmAKwAsgC4AL4AxADKANAA1gDcAOIA6ADuAPQA+gEA' + + 'AQYBDAESARgBHgEkASoBMAE2ATwBQgFIAU4BVAABAAD9+AABAAD9+AABAAD9+AABAAD9+AABAAD9+AABAAD9+AABAAD9+AABAAD9+AABAAD+XAAB/VP+XAABAAD9+AABAAD9+AABAAD9+AABAAD9+AABAAD9+AABAAD9+AABAAD9+AABAAD9+AABAAD9+AABAAD9+AAB' + + 'AAD9+AABAAD+XAABAAD9+AABAAD9+AABAAD9+AABAAD9+AABAAD9+AABAAD9+AABAAD9+AABAAD9+AABAAD9+AABAAD9+AABAAD9+AABAAD9+AABAAD9+AABAAD9+AABAAD9+AABAAD9+AABAAD9+AABAAD9+AABAAD9+AABAAD9+AABAAD9+AACAA0C2ALbAAAC3gLi' + + 'AAQC5QLoAAkC6wL1AA0C+wL+ABgDBwMHABwDCQMLAB0DDwMQACADFQMYACIDGwMcACYF4gXiACgF6gXqACkF7AXsACoAAgANAtgC2wAAAt4C4gAEAuUC6AAJAusC9QANAvsC/gAYAwcDBwAcAwkDCwAdAw8DEAAgAxUDGAAiAxsDHAAmBeIF4gAoBeoF6gApBewF7AAq' + + 'ACsAAACuAAAAtAAAALoAAADAAAAAxgAAAMwAAADSAAAA2AAAAN4AAADkAAAA6gAAAPAAAAD2AAAA/AAAAQIAAAEIAAABDgAAARQAAAEaAAABIAAAASYAAAEsAAABMgAAATgAAAE+AAABRAAAAUoAAAFQAAABVgAAAVwAAAFiAAABaAAAAW4AAAF0AAABegAAAYAAAAGG' + + 'AAABjAAAAZIAAAGYAAABngAAAaQAAAGqAAEAAP+IAAEAAP+IAAEAAP+wAAEAAP+wAAEAFP/OAAEAAP+wAAEAAP+wAAEAAP+wAAEAAP90AAH9WP9+AAEAAP8QAAEAAP/OAAEAAP+mAAEAAP/EAAEAAP+wAAEAAP+IAAEAAP9qAAEAAP9qAAEAAP+IAAEAAP+IAAEAAP90' + + 'AAEAAP9MAAEAAP78AAEAAP+wAAH/7P/EAAEAAP+wAAEAAP/YAAEAAP+IAAEAAP+IAAEAAP+IAAEAAP/EAAEAAP+wAAEAAP+cAAEAAP/EAAEAAAAAAAEAAAAAAAEAAAAAAAEAHgAAAAEAAAAAAAEAAP/EAAEAAP+wAAH/4v/OAAEAHgAAAAEClgJuAAECzAAMAEwAmgCg' + + 'AKYArACyALgAvgDEAMoA0ADWANwA4gDoAO4A9AD6AQABBgEMARIBGAEeASQBKgEwATYBPAFCAUgBTgFUAVoBYAFmAWwBcgF4AX4BhAGKAZABlgGcAaIBqAGuAbQBugHAAcYBzAHSAdgB3gHkAeoB8AH2AfwCAgIIAg4CFAIaAiACJgIsAjICOAI+AkQCSgJQAlYCXAAB' + + 'ApQAAAABAiYAAAABAcIAAAABAjAAAAABApQAAAABAQ4AAAABASwAAAABApQAAAABAqgAAAABAMgAAAABAVQAAAABAcwAAAABAaQAAAABAqgAAAABAqgAAAABAbgAAAABAWgAAAABAqgAAAABApQAAAABAa4AAAABAlgAAAABAlgAAAABAlgAAAABAmwAAAABArwAAAAB' + + 'AtAAAAABApQAAAABAWgAAAABAWgAAAABAWgAAAABAlgAAAABAWgAAAABApQAAAABAjAAAAABApQAAAABAcwAAAABAaQAAAABAqgAAAABArwAAAABApQAAAABAtAAAAABAtAAAAABAtAAAAABAtAAAAABA8AAAAABA8AAAAABApQAAAABAjAAAAABAcIAAAABAjAAAAAB' + + 'ApQAAAABAQ4AAAABASwAAAABAqgAAAABAQ4AAAABAVQAAAABAcwAAAABAaQAAAABAqgAAAABAWgAAAABAqgAAAABAa4AAAABAlgAAAABAlgAAAABAmwAAAABArwAAAABAtAAAAABApQAAAABAQ4AAAABAjAAAAABAcwAAAABAlgAAAABAaQAAAABAaQAAAABAVQAAAAB' + + 'AVQAAAACAAYFAAUdAAAInQidAB4I6QjpAB8I6wjyACAI9AkTACgKLwoyAEgAAQAZBMkEzgTTBNoE2wTcBN0E3gTfBOIE6ATpBOoE6wTsBO0E7gTvBPAE8wT1BP8KOAo5CjoAGQAAAGYAAABsAAAAcgAAAHgAAAB+AAAAhAAAAIoAAACQAAAAlgAAAJwAAACiAAAAqAAA' + + 'AK4AAAC0AAAAugAAAMAAAADGAAAAzAAAANIAAADYAAAA3gAAAOQAAADqAAAA8AAAAPYAAf84ABQAAf84ABQAAf84ABQAAf84ABQAAf84ABQAAf84ABQAAf84ABQAAf62ABQAAf84ABQAAf84ABQAAf8QABQAAf8QABQAAf8QABQAAf8QABQAAf8QABQAAf8QABQAAf8Q' + + 'ABQAAf8QABQAAf8QABQAAf8QABQAAf8QAAAAAQAAAAAAAf7AABQAAf6sABQAAf7UABQAAQKWAm4AAQLMAAwATACaAKAApgCsALIAuAC+AMQAygDQANYA3ADiAOgA7gD0APoBAAEGAQwBEgEYAR4BJAEqATABNgE8AUIBSAFOAVQBWgFgAWYBbAFyAXgBfgGEAYoBkAGW' + + 'AZwBogGoAa4BtAG6AcABxgHMAdIB2AHeAeQB6gHwAfYB/AICAggCDgIUAhoCIAImAiwCMgI4Aj4CRAJKAlACVgJcAAEClAAAAAECMAAAAAEBwgAAAAEC2gAAAAEClAAAAAEBaAAAAAEBLAAAAAEClAAAAAECqAAAAAEBfAAAAAECHAAAAAEBzAAAAAEBpAAAAAECqAAA' + + 'AAECqAAAAAEAjAAAAAEBaAAAAAECqAAAAAEClAAAAAECWAAAAAECWAAAAAEBLAAAAAECWAAAAAEAoAAAAAECqAAAAAECvAAAAAEClAAAAAECCAAAAAECCAAAAAECCAAAAAECWAAAAAECCAAAAAEClAAAAAEC2gAAAAEClAAAAAEBzAAAAAEBpAAAAAECqAAAAAECqAAA' + + 'AAEClAAAAAECvAAAAAECvAAAAAECvAAAAAECvAAAAAEBzAAAAAEBzAAAAAEClAAAAAECMAAAAAEBwgAAAAEC2gAAAAEClAAAAAEBaAAAAAEBLAAAAAECqAAAAAEBfAAAAAECHAAAAAEBzAAAAAEBpAAAAAECqAAAAAEBaAAAAAECqAAAAAECWAAAAAECWAAAAAECWAAA' + + 'AAEAoAAAAAECqAAAAAECvAAAAAEClAAAAAEBaAAAAAECMAAAAAEBzAAAAAECWAAAAAEBpAAAAAEBpAAAAAECHAAAAAECHAAAAAIABgUABR0AAAidCJ0AHgjpCOkAHwjrCPIAIAj0CRMAKAovCjIASAABABkEyQTOBNME2gTbBNwE3QTeBN8E4gToBOkE6gTrBOwE7QTu' + + 'BO8E8ATzBPUE/wo4CjkKOgAZAAAAZgAAAGwAAAByAAAAeAAAAH4AAACEAAAAigAAAJAAAACWAAAAnAAAAKIAAACoAAAArgAAALQAAAC6AAAAwAAAAMYAAADMAAAA0gAAANgAAADeAAAA5AAAAOoAAADwAAAA9gABANwAFAABAIwAAAABALQAFAABANwAFAABALQAFAAB' + + 'AKAAFAABAMgAAAABAWgAAAABALQAFAABANwAFAABAKAAFAABAUAAFAABASwAFAABASwAFAABAIwAFAABAPAAFAABAPAAFAABAMgAFAABAMgAFAABAQQAFAABAHgAAAABAhwAAAABAXwAFAABASwAFAABAXwAFAABAmYCDgABAr4ADABAAIIAiACOAJQAmgCgAKYArACy' + + 'ALgAvgDEAMoA0ADWANwA4gDoAO4A9AD6AQABBgEMARIBGAEeASQBKgEwATYBPAFCAUgBTgFUAVoBYAFmAWwBcgF4AX4BhAGKAZABlgGcAaIBqAGuAbQBugHAAcYBzAHSAdgB3gHkAeoB8AH2AfwAAf7KB5QAAf8QB5QAAQAABgQAAQFABkAAAQAABgQAAQAABwgAAQAA' + + 'BgQAAQAABgQAAQAABgQAAf7eB5QAAQAABpAAAQAABkAAAQAABgQAAQAABgQAAQAABgQAAQAABkAAAQAABpAAAQAABgQAAQAABgQAAQAABgQAAQAABgQAAQAABuAAAQAABpAAAQAABuAAAQAAB5QAAQAABgQAAQAABpAAAQAABpAAAQAABpAAAQAABpAAAQAABzAAAQAA' + + 'BzAAAQAABpAAAQAABpAAAQAABvQAAQAABpAAAQAABpAAAQAABpAAAQAABpAAAQAABpAAAQAABpAAAQAABpAAAQAABpAAAQAABpAAAQAABpAAAQAABpAAAQAABpAAAQAABpAAAQAABpAAAQAABpAAAQAABpAAAQAABpAAAQAABpAAAQAABpAAAQAABpAAAQAABpAAAQAA' + + 'BpAAAQAABpAAAQAABpAAAQAABpAAAQAABpAAAQAABpAAAQAABpAAAQAABpAAAgAOAsIC1gAAAtwC3AAVAv8DAQAWAwQDBgAZAwgDCAAcAwwDDgAdAxIDFAAgAxkDGQAjAx0DHQAkAyUDMQAlBDQENwAyBeAF4QA2BeMF6QA4BesF6wA/AAIADgLCAtYAAALcAtwAFQL/' + + 'AwEAFgMEAwYAGQMIAwgAHAMMAw4AHQMSAxQAIAMZAxkAIwMdAx0AJAMlAzEAJQQ0BDcAMgXgBeEANgXjBekAOAXrBesAPwBAAAABAgAAAQgAAAEOAAABFAAAARoAAAEgAAABJgAAASwAAAEyAAABOAAAAT4AAAFEAAABSgAAAVAAAAFWAAABXAAAAWIAAAFoAAABbgAA' + + 'AXQAAAF6AAABgAAAAYYAAAGMAAABkgAAAZgAAAGeAAABpAAAAaoAAAGwAAABtgAAAbwAAAHCAAAByAAAAc4AAAHUAAAB2gAAAeAAAAHmAAAB7AAAAfIAAAH4AAAB/gAAAgQAAAIKAAACEAAAAhYAAAIcAAACIgAAAigAAAIuAAACNAAAAjoAAAJAAAACRgAAAkwAAAJS' + + 'AAACWAAAAl4AAAJkAAACagAAAnAAAAJ2AAACfAAB/tcF8AAB/u0F8AABAAAEnAABAUoEnAABAAAEsAABAAAF8AABAAAEnAABAAAEsAABAAAEsAAB/t4FvgABAAAExAAB/7AEnAABAAAEnAABAAAEYAABAAAEYAABAGQEnAABAAAEnAABAAAEnAABAAAD3gABAAAD3gAB' + + 'AAAD3gABAAAEsAABAAAEdAABAAAEYAABAAAF8AABAAAEnAABAAAD/AABAAAEsAABAAAExAABAAAEYAABAAAEYAABAAAEnAABAAAEYAABAAAEYAABAAAExAABAAAEYAABAAAEYAABAAAB4AABAAAB4AABAAAB4AABAAAB4AABAAAB4AABAAAB4AABAAAB4AABAAAB4AAB' + + 'AAAB4AABAAAB4AABAAAB4AABAAAB4AABAAAB4AABAAAEagABAAAEsAABAAAEOAABAAAEOAABAAAEsAABAAAEsAABAAAEsAABAAAEsAABAAAEsAABAAAEsAABAAAEsAABAAAEsAABAAAEsAABAAAEYAABBPYEzgACBRwADABMATIBOAE+AUQBSgFQAVYBXAFiAWgBbgF0' + + 'AXoBgAGGAYwBkgGYAZ4BpAGqAbABtgG8AcIByAHOAdQB2gHgAeYB7AHyAfgB/gIEAgoCEAIWAhwCIgIoAi4CNAI6AkACRgJMAlICWAJeAmQCagJwAnYCfAKCAogCjgKUApoCoAKmAqwCsgK4Ar4CxALKAtAC1gLcAuIC6ALuAvQC+gMAAwYDDAMSAxgDHgMkAyoDMAM2' + + 'AzwDQgNIA04DVANaA2ADZgNsA3IDeAN+A4QDigOQA5YDnAOiA6gDrgO0A7oDwAPGA8wD0gPYA94D5APqA/AD9gP8BAIECAQOBBQEGgQgBCYELAQyBDgEPgREBEoEUARWBFwEYgRoBG4EdAR6BIAEhgSMBJIEmASeBKQEqgSwBLYEvAABAp8FRgABApQGpAABAfQFRgAB' + + 'AfQGpAABAWgFRgABAWgGpAABAhwFRgABAhwGpAABAlgFRgABAlgGpAABAQ4FRgABAQ4GpAABAaQFRgABAaQGpAABApQFRgABApQGpAABApQFRgABApQGpAABAQ4FRgABAQ4GpAABAZAFRgABAZAGpAABAZAFRgABAZAGpAABAlgFRgABAlgGpAABApQFRgABApQGpAAB' + + 'AwwFRgABAwwGpAABAQ4FRgABAQ4GpAABAUAFRgABAUAGpAABAoAFRgABAoAGpAABAlgFRgABAlgGpAABAlgFRgABAlgGpAABAlgFRgABAlgGpAABAggFRgABAggGpAABAggFRgABAggGpAABAjAFRgABAjAGpAABAaQFRgABAaQGpAABAvgFRgABAvgGpAABArwFRgAB' + + 'ArwGpAABAggFRgABAggGpAABAggFRgABAggGpAABAggFRgABAggGpAABAlgFRgABAlgGpAABAggFRgABAggGpAABApQFRgABApQGpAABAhwFRgABAhwGpAABAlgFRgABAlgGpAABAZAFRgABAZAGpAABAlgFRgABAlgGpAABApQFRgABApQGpAABAaQFRgABAaQGpAAB' + + 'ArwFRgABArwGpAABAvgFRgABAvgGpAABAvgFRgABAvgGpAABAvgFRgABAvgGpAABAvgFRgABAvgGpAABApQFRgABApQGpAABApQFRgABApQGpAABApQFRgABApQGpAABAfQFRgABAfQGpAABAWgFRgABAWgGpAABAhwFRgABAhwGpAABAlgFRgABAlgGpAABAQ4FRgAB' + + 'AQ4GpAABAaQFRgABAaQGpAABApQFRgABApQGpAABAQ4FRgABAQ4GpAABAZAFRgABAZAGpAABAZAFRgABAZAGpAABAlgFRgABAlgGpAABAwwFRgABAwwGpAABAUAFRgABAUAGpAABAoAFRgABAoAGpAABAlgFRgABAlgGpAABAlgFRgABAlgGpAABAggFRgABAggGpAAB' + + 'AjAFRgABAjAGpAABAaQFRgABAaQGpAABAvgFRgABAvgGpAABArwFRgABArwGpAABAQ4GpAABAQ4GpAABAfQGpAABAfQGpAABAcwGpAABAcwGpAABAjAGpAABAjAGpAABAlgFRgABAlgGpAABAlgFRgABAlgGpAABAZAFRgABAZAGpAABAZAFRgABAZAGpAACAAYFAAUd' + + 'AAAInQidAB4I6QjpAB8I6wjyACAI9AkTACgKLwoyAEgAAQARBMoEywTMBM0EzwTQBNQE1gTXBNkE4ATjBOQE5wT3BPwI6AARAAAARgAAAEwAAABSAAAAWAAAAF4AAABkAAAAagAAAHAAAAB2AAAAfAAAAIIAAACIAAAAjgAAAJQAAACaAAEAoAAAAKYAAQDmBUYAAQAA' + + 'BUYAAQCqBUYAAQEEBUYAAQAABUYAAQAABUYAAQCgBUYAAf+cBUYAAQAABUYAAQAABUYAAQAABUYAAQAUBUYAAQAABUYAAQAABW4AAQAABZYAAQAABg4AAQAABZYAAQT2BM4AAgUuAAwATAEyATgBPgFEAUoBUAFWAVwBYgFoAW4BdAF6AYABhgGMAZIBmAGeAaQBqgGw' + + 'AbYBvAHCAcgBzgHUAdoB4AHmAewB8gH4Af4CBAIKAhACFgIcAiICKAIuAjQCOgJAAkYCTAJSAlgCXgJkAmoCcAJ2AnwCggKIAo4ClAKaAqACpgKsArICuAK+AsQCygLQAtYC3ALiAugC7gL0AvoDAAMGAwwDEgMYAx4DJAMqAzADNgM8A0IDSANOA1QDWgNgA2YDbANy' + + 'A3gDfgOEA4oDkAOWA5wDogOoA64DtAO6A8ADxgPMA9ID2APeA+QD6gPwA/YD/AQCBAgEDgQUBBoEIAQmBCwEMgQ4BD4ERARKBFAEVgRcBGIEaARuBHQEegSABIYEjASSBJgEngSkBKoEsAS2BLwAAQKUAAAAAQKUAAAAAQIwAAAAAQIwAAAAAQHCAAAAAQHCAAAAAQM+' + + 'AAAAAQM+AAAAAQKUAAAAAQKUAAAAAQEOAAAAAQEOAAAAAQEsAAAAAQEsAAAAAQKoAAAAAQKUAAAAAQKoAAAAAQKoAAAAAQEOAAAAAQEOAAAAAQGkAAAAAQGkAAAAAQHMAAAAAQHMAAAAAQGkAAAAAQGkAAAAAQKoAAAAAQKoAAAAAQKoAAAAAQKoAAAAAf78AAAAAQEO' + + 'AAAAAQFoAAAAAQFoAAAAAQKoAAAAAQKoAAAAAQKUAAAAAQKUAAAAAQH0AAAAAQH0AAAAAQJYAAAAAQJYAAAAAQPAAAAAAQGkAAAAAQIwAAAAAQIwAAAAAQNcAAAAAQJsAAAAAQM0AAAAAQH0AAAAAQLQAAAAAQLQAAAAAQKUAAAAAQKUAAAAAQIIAAAAAQIIAAAAAQII' + + 'AAAAAQIIAAAAAQIIAAAAAQIIAAAAAQJYAAAAAQJYAAAAAQIIAAAAAQIIAAAAAQKUAAAAAQKUAAAAAQM+AAAAAQIwAAAAAQKUAAAAAQKUAAAAAQHMAAAAAQHMAAAAAQGkAAAAAQGkAAAAAQKoAAAAAQKoAAAAAQM0AAAAAQH0AAAAAQKUAAAAAQKUAAAAAQLQAAAAAQLQ' + + 'AAAAAQLQAAAAAQLQAAAAAQLQAAAAAQLQAAAAAQLQAAAAAQLQAAAAAQFoAAAAAQKUAAAAAQFoAAAAAQKUAAAAAQKUAAAAAQKUAAAAAQIwAAAAAQIwAAAAAQHCAAAAAQHCAAAAAQM+AAAAAQIwAAAAAQKUAAAAAQKUAAAAAQEOAAAAAQEOAAAAAQEsAAAAAQEsAAAAAQKo' + + 'AAAAAQKoAAAAAQEYAAAAAQEYAAAAAQGkAAAAAQFUAAAAAQHMAAAAAQHMAAAAAQGkAAAAAQGkAAAAAQKoAAAAAQKoAAAAAQFoAAAAAQFoAAAAAQKoAAAAAQKoAAAAAQH0AAAAAQH0AAAAAQJYAAAAAQJYAAAAAQJYAAAAAQJYAAAAAQNcAAAAAQJsAAAAAQM0AAAAAQH0' + + 'AAAAAQLQAAAAAQLQAAAAAQKUAAAAAQKUAAAAAQEOAAAAAQEOAAAAAQIwAAAAAQIwAAAAAQHMAAAAAQHMAAAAAQJYAAAAAQJYAAAAAQGkAAAAAQGkAAAAAQGkAAAAAQGkAAAAAQGkAAAAAQFUAAAAAQGkAAAAAQFUAAAAAgAGBQAFHQAACJ0InQAeCOkI6QAfCOsI8gAg' + + 'CPQJEwAoCi8KMgBIAAEAGgTJBM4E0wTaBNsE3ATdBN4E3wTiBOgE6QTqBOsE7ATtBO4E7wTwBPME9QT9BP8KOAo5CjoAGgAAAGoAAABwAAAAdgAAAHwAAACCAAAAiAAAAI4AAACUAAAAmgAAAKAAAACmAAAArAAAALIAAAC4AAAAvgAAAMQAAADKAAAA0AAAANYAAADc' + + 'AAAA4gABAOgAAADuAAAA9AAAAPoAAAEAAAEAAAAUAAEALQAAAAEAAAAUAAEAAAAUAAEAAAAUAAEAAAAUAAEAAAAAAAEAGwAAAAEAAAAUAAEAAAAUAAEAAAAUAAEAAAAUAAEAAAAUAAEAAAAUAAEAAAAAAAEAAAAAAAEAAAAUAAEAAAAAAAEAAAAAAAEAAAAUAAEAAAAA' + + 'AAEAAAAyAAEA/QAAAAH/4gAUAAH/xAAUAAEAAAAUAAEGqgAFAAAAMQBsAGwAbADOAX4CLgI2AM4AbALgA+oAbARMAuAE9gDOAi4AbAYGBgYAbADOAGwC4ADOAGwCLgIuAi4CLgBsAGwAbABsAM4CLgDOAuAC4ADOAi4AbABsAuAE9gDOAM4C4ABsABAFDP/X/9cFEv/X' + + '/9cFF//X/9cFGf/X/9cI6v/X/9cI7//X/9cI9P/X/9cI9f/X/9cI9v/X/9cI9//X/9cJBf/X/9cJDP/X/9cJDv/X/9cKL//X/9cKMP/X/9cKNv/X/9cAHQUB/8P/wwUC/5r/mgUE/8P/wwUGACkAKQUH/8P/wwUK/8P/wwUL/8P/wwUN/8P/wwUO/8P/wwUR/8P/wwUT' + + '/8P/wwUU/8P/wwUa/8P/wwjt/8P/wwju/8P/wwjw/8P/wwjy/8P/wwj+/8P/wwkB/8P/wwkE/8P/wwkI/8P/wwkJ/8P/wwkK/8P/wwkP/8P/wwkR/8P/wwkS/8P/wwkT/8P/wwox/8P/wwoy/8P/wwAdBQH/1//XBQL/7P/sBQMAKQApBQT/1//XBQf/1//XBQr/1//X' + + 'BQv/1//XBQ3/1//XBQ7/1//XBRH/1//XBRP/1//XBRT/1//XBRr/1//XCO3/1//XCO7/1//XCPD/1//XCPL/1//XCP7/1//XCQH/1//XCQT/1//XCQj/1//XCQn/1//XCQr/1//XCQ//1//XCRH/1//XCRL/1//XCRP/1//XCjH/1//XCjL/1//XAAEFAv/X/9cAHAUB' + + '/9f/1wUC/9f/1wUE/9f/1wUH/9f/1wUK/9f/1wUL/9f/1wUN/9f/1wUO/9f/1wUR/9f/1wUT/9f/1wUU/9f/1wUa/9f/1wjt/9f/1wju/9f/1wjw/9f/1wjy/9f/1wj+/9f/1wkB/9f/1wkE/9f/1wkI/9f/1wkJ/9f/1wkK/9f/1wkP/9f/1wkR/9f/1wkS/9f/1wkT' + + '/9f/1wox/9f/1woy/9f/1wAsBQH/1//XBQL/1//XBQT/1//XBQf/1//XBQr/1//XBQv/1//XBQz/7P/sBQ3/1//XBQ7/1//XBRH/1//XBRL/7P/sBRP/1//XBRT/1//XBRf/7P/sBRn/7P/sBRr/1//XCOr/7P/sCO3/1//XCO7/1//XCO//7P/sCPD/1//XCPL/1//X' + + 'CPT/7P/sCPX/7P/sCPb/7P/sCPf/7P/sCP7/1//XCQH/1//XCQT/1//XCQX/7P/sCQj/1//XCQn/1//XCQr/1//XCQz/7P/sCQ7/7P/sCQ//1//XCRH/1//XCRL/1//XCRP/1//XCi//7P/sCjD/7P/sCjH/1//XCjL/1//XCjb/7P/sABAFDP/s/+wFEv/s/+wFF//s' + + '/+wFGf/s/+wI6v/s/+wI7//s/+wI9P/s/+wI9f/s/+wI9v/s/+wI9//s/+wJBf/s/+wJDP/s/+wJDv/s/+wKL//s/+wKMP/s/+wKNv/s/+wAHAUB/+z/7AUE/+z/7AUGACkAKQUH/+z/7AUK/+z/7AUL/+z/7AUN/+z/7AUO/+z/7AUR/+z/7AUT/+z/7AUU/+z/7AUa' + + '/+z/7Ajt/+z/7Aju/+z/7Ajw/+z/7Ajy/+z/7Aj+/+z/7AkB/+z/7AkE/+z/7AkI/+z/7AkJ/+z/7AkK/+z/7AkP/+z/7AkR/+z/7AkS/+z/7AkT/+z/7Aox/+z/7Aoy/+z/7AAtBQH/1//XBQL/1//XBQT/1//XBQf/1//XBQj/7P/sBQr/1//XBQv/1//XBQz/7P/s' + + 'BQ3/1//XBQ7/1//XBRH/1//XBRL/7P/sBRP/1//XBRT/1//XBRf/7P/sBRn/7P/sBRr/1//XCOr/7P/sCO3/1//XCO7/1//XCO//7P/sCPD/1//XCPL/1//XCPT/7P/sCPX/7P/sCPb/7P/sCPf/7P/sCP7/1//XCQH/1//XCQT/1//XCQX/7P/sCQj/1//XCQn/1//X' + + 'CQr/1//XCQz/7P/sCQ7/7P/sCQ//1//XCRH/1//XCRL/1//XCRP/1//XCi//7P/sCjD/7P/sCjH/1//XCjL/1//XCjb/7P/sABsFAf/X/9cFBP/X/9cFB//X/9cFCv/X/9cFC//X/9cFDf/X/9cFDv/X/9cFEf/X/9cFE//X/9cFFP/X/9cFGv/X/9cI7f/X/9cI7v/X' + + '/9cI8P/X/9cI8v/X/9cI/v/X/9cJAf/X/9cJBP/X/9cJCP/X/9cJCf/X/9cJCv/X/9cJD//X/9cJEf/X/9cJEv/X/9cJE//X/9cKMf/X/9cKMv/X/9cAAQAxBQAFAQUCBQMFBgUIBQkFCgULBQwFDgUQBREFEwUVBRgFGQUaBRwFHQjrCOwI7gjvCPEI8gj0CPUI9gj3' + + 'CPgI+Qj6CPsI/QkBCQMJBQkJCQ0JDgkPCREKLwowCjEKMgo2CjcAAQ9wAAQAAABpANwBBgEMATIBQAFeAXABggHMAgICNAJyAnwCigKUAooCngLEAsoDHAMmA1QDdgOQA6YD5AP+BBQELgQ4BL4FLAU6AxwFZAW6BcwGFgYcBlIGiAW6BrIG2AbmBboHEAW6BboFugc+' + + 'B1QHWgdgB6YH4Ag2CKgIwgjMCPYJGAkuCTwJYgmQCfIKMAquC0gLaguIC5ILnAumC+AMDgxADFIMkAzSDPwNBg0sDT4NbA2WDaANrg3QDfIOBA4uDnAOjg60DsYO1A7eDwAPHg8oD0YPTA9aAAoAJP+PADf/2wA8/9sDO/+PA0T/jwNH/48DTv+PA1b/2wNX/9sDXf/b' + + 'AAEAFP9oAAkAA/+PADf/aAA5/2gAOv+0ADz/aABZ/9sAWv/bAFz/2wfl/2gAAwAP/x0AEf8dACT/jwAHAAP/tAA3/2gAOf9oADr/aAA8/2gAXP+0B+X/jwAEAAP/2wAP/vgAEf74ACT/aAAEADf/2wA5/9sAOv/bADz/2wASAAP/2wAP/x0AEP+PABH/HQAd/x0AHv8d' + + 'ACT/aAAy/9sARP8dAEb/HQBI/x0ATP+0AFL/HQBV/7QAVv8dAFj/tABa/48AXP+PAA0AD/9EABD/jwAR/0QAHf+0AB7/tAAk/2gARP9oAEj/jwBM/9sAUv+PAFX/tABY/7QAXP+0AAwAD/+PABD/2wAR/48AHf/bAB7/2wAk/7QARP+0AEj/2wBS/9sAVf/bAFj/2wBc' + + '/+4ADwAD/9sAD/74ABD/RAAR/vgAHf+PAB7/ewAk/2gARP9oAEj/RABM/7QAUv9EAFP/aABU/0QAWP+PAFn/jwACAEn/2wflACUAAwAP/48AEf+PB+UATAACAA//aAAR/2gAAgAP/48AEf+PAAkDS//VA1L/1QNW/2gDV/9oA1j/xQNd/2gDZf/bA2//2wN5/9sAAQNX' + + '/74AFANDAKoDRP9oA0f/aANL/40DTv9oA1L/jQNY/40DW/+eA2D/aANh/7QDY/9GA2n/aANr/7QDbP9oA27/aANx/0YDdf9GA3j/RgN8AGIDfv9GAAIDV//RA13/0QALAAP/jwNL/9UDUv/VA1b/aANX/2gDWP/FA13/aANl/9sDb//bA3n/2wfl/2gACAAP/x8AEf8f' + + 'A0MApANE/0QDR/9EA07/RANr/6gDfABYAAYAA/+PA0v/1QNS/9UDVv+JA1f/aANd/2gABQNE/9sDR//bA07/2wNX/74DXf++AA8DS//BA1L/wQNY/48DXv/nA2P/5wNm/+cDaP/nA2r/5wNw/+cDcf/nA3X/5wN4/+cDe//nA37/5wOA/+cABgAD/48DS//VA1L/1QNW' + + '/2gDV/9oA13/aAAFA0T/2wNH/9UDTv/bA1f/vgNd/74ABgAD/9sAD/76ABH++gNE/2gDR/9oA07/aAACA3L/ngN2/54AIQAD/9sAD/8fABH/HwAd/x8AHv8fA0MAvANE/2gDR/9oA0v/2wNO/2gDUv/bA1j/2wNb/9sDXv8fA1//HwNi/04DY/8fA2X/TgNn/x8Daf9q' + + 'A2v/tANu/2oDb/+PA3H/HwN1/x8Dd/9QA3j/HwN5/48Dev9qA3wAvAN9/04Dfv8fA3//TgAbAAP/2wAP/voAEP9GABH++gAd/48AHv+PA0MAvANE/2gDR/9oA0v/jQNO/2gDUv+NA1j/jQNb/54DYP9oA2H/tANj/0YDZf+eA2n/aANr/7QDbP9oA27/aANx/0YDdf9G' + + 'A3j/RgN8AHkDfv9GAAMDRP/FA1f/vgNd/74ACgNe/7IDY/+yA2b/sgNq/9kDcf+yA3X/sgN4/7IDe/+yA37/sgOA/7IAFQAD/9sDQwCqA0T/aANH/2gDS/+NA07/aANS/40DWP+NA1v/ngNg/2gDYf+0A2P/RgNp/2gDa/+0A2z/aANu/2gDcf9GA3X/RgN4/0YDfABi' + + 'A37/RgAEA23/2QNy/+MDdv/jA3n/yQASA17/dwNg/9sDY/93A2X/qgNm/7QDaf/bA2r/ngNr/9sDbP/bA2//qgNx/3cDcv+qA3X/dwN2/6oDeP93A3v/dwN+/3cDgP93AAEDbf/ZAA0DXv/nA2P/5wNm/+cDaP/nA2r/5wNw/+cDcf/nA3T/5wN1/+cDeP/nA3v/5wN+' + + '/+cDgP/nAA0DXv/hA2P/4QNm/+EDcP/hA3H/4QN0/9EDdf/hA3f/zwN4/9sDe//hA37/4QN//88DgP/hAAoDXv/JA2P/yQNm/8kDaP/JA3D/yQNx/8kDdP/JA3X/yQN4/8kDfv/JAAkDXv/jA2P/4wNo/+MDcf/jA3T/4wN1/+MDeP/jA3v/4wOA/+MAAwNt/9kDcv/j' + + 'A3b/4wAKA17/4wNj/+MDZv/jA2j/4wNx/+MDdP/jA3X/4wN4/+MDe//jA4D/4wALA17/yQNj/8kDZv/JA2j/yQNx/8kDdP/JA3X/yQN4/8kDe//JA37/yQOA/8kABQAP/wYAEf8GAG3/dwB9/3cH4P/TAAEH5f9gAAEH5f93ABEDxQBEA8j/6QPMAC0Dz//TA9D/6QPS' + + '/9MD0/9gA9T/pgPV/7wD2P9gA97/0wPhABcD8//TA/T/6QP1ABcD/gAtB+X/jQAOA8H/0wPI/+kDz//pA9L/6QPT/6QD1P/RA9X/6QPW/9MD2P+kA9v/vAPe/+kD4P/pA+z/6QP0/9MAFQPB/7wDxf/TA8f/0wPI/7wDzP/pA8//vAPS/7wD0/93A9T/vAPV/7wD1v+m' + + 'A9j/pAPb/40D4P+8A+X/6QPt/+kD8/+8A/T/6QP2/+kD+P+8BAD/6QAcAA//BgAR/wYAbf93AH3/dwPB/3cDxf93A8j/0wPM/40Dzf/RA8//jQPS/6QD4P+8A+H/jQPj/40D5f93A+b/dwPp/40D7P+NA+3/jQPu/40D7/93A/H/jQP0/3cD/P+NA/3/jQP//40EAP93' + + 'B+D/0wAGA9QAFwPV/9MD2P+6A+gARAPvABcD9AAtAAIDyP/TA/L/6QAKA8j/6QPP/9MD0v/pA9MAFwPUAC0D2wAtA+EAFwPm/+cD7//pA/T/6QAIA8z/6QPP/+kD0v/pA9P/0wPU/+kD1f/pA9j/0wPg/+kABQPI/+kDz//pA9L/6QPUABcD1f+6AAMD1f/pA+IAFwP0' + + 'ABcACQPV/+kD2P/pA+EAFwPmABcD7wAXA/IAFwP0ABcD+P/pA/4AFwALA8H/0wPF/9MDx//TA8z/6QPU/9MD1v+kA9j/0wPg/9MD5f/TA+z/6QP2/+kAGAAP/n0AEf59AB3/0wAe/9MAff+NA8H/dwPF/3cDx//pA8j/0wPM/40Dzf/pA8//0wPS/+kD0/+kA9T/0wPV' + + '/+kD1v+kA+D/0wPh/7wD5f9gA+b/pgPv/6YD/v/TBAD/vAAPA8H/0wPF/9MDyP/pA8z/vAPN/+kDz//TA9P/vAPU/7wD1v+NA9j/vAPb/7oD3v/pA+EAFwPnAC0D+P/pAB8AD/8dABH/HQBt/6YAff+mA8H/vAPF/7wDxwAXA8j/6QPM/9MDz/+kA9X/vAPg/9MD4f+k' + + 'A+P/pgPm/40D6f+mA+v/pgPs/6QD7f+mA+//YAPw/6YD8f+NA/L/jQP0/40D9v+mA/r/pgP8/6YD/f+mA///pgQA/40H4P/TACYAD/7wABH+8AAd/9MAHv/TAG3/pgB9/6QDwf93A8X/pAPI/9MDzP+8A8//vAPV/7wD3v/TA+D/0wPi/9MD4/+NA+T/pAPl/2AD5v93' + + 'A+f/vAPo/40D6f+kA+r/vAPr/6QD7P93A+3/pAPu/6QD7/93A/D/pAPx/6QD8v93A/b/pAP3/6QD+f+kA/r/pAP//6QEAP93B+D/6QAIA8H/0wPF/7wDzP+8A9P/jQPU/6QD2P/TA+D/ugPs/7wABwPI/9MDz/+8A9L/vAPV/7wD3v+6A+//6QP0/9MAAgPP/9MD4QAt' + + 'AAID4QAXA/QALQACA+D/vAfl/3cADgPB/9MDxf/TA8f/vAPI/+kDzP+6A83/0wPP/9MD0v/TA9P/MwPW/6QD2P9gA97/6QPg/6QH5f9gAAsDxf+8A8f/5wPI/+kDzP+8A9b/ugPg/9MD5f+8A+cAFwPs/7wD7f/pBAD/6QAMA8H/vAPF/6YDx//TA8z/pAPP/+kD0v/p' + + 'A9P/jQPW/6QD2P+8A+X/pAPs/6QD7f/pAAQD6P/pA/P/0wP0/+kD+P/TAA8D4f/RA+X/pAPm/+kD5//pA+j/0wPs/6QD7f/TA/L/6QP0/9MD9f/pA/b/vAP4/7wD+/+8A/7/6QQA/9MAEAPh/+kD4v/pA+X/6QPm/+kD5//pA+j/6QPs/9ED7f/pA+//6QPy/+kD8//T' + + 'A/T/0wP1/+kD+P+kA/v/vAQA/+kACgAP/wYAEf8GA+H/0wPl/6QD5v/TA+j/6QPs/9MD7//TA/L/0wQA/+kAAgP7/9MD/gAXAAkD4v/pA+X/0wPn/+kD6P/TA+z/vAPz/7wD9P/pA/b/0wP4/7wABAPiABcD9AAXA/j/6QP7AC0ACwPi/+kD5f/TA+b/6QPo/+kD7P/p' + + 'A+//6QPy/+kD9P/pA/X/6QP4/7wD+//TAAoD4QAtA+IALQPmABcD6AAXA+wAFwPvABcD8gAXA/MAFwP0ABcD/gAXAAID7wAXA/j/0wADA+L/6QPo/+kD9AAXAAgD5f/TA+f/6QPo/+kD7P/TA/P/0wP0/+kD9v/pA/j/0wAIA+X/0QPo/+kD7P+6A/P/0wP0/+kD9v/p' + + 'A/j/0wQA/+kABAPnABcD7wAXA/j/6QP+ABcACgAP/x0AEf8dA+H/6QPl/7wD5v/pA+cARAPs/9MD7//pA/L/6QP0ABcAEAAP/zMAEf8zAH0AFwPh/+kD4gAXA+X/vAPm/+kD5wAXA+z/0wPt/+kD7//nA/H/6QPy/+kD9f/pA/7/6QQA/+kABwPi/+kD5f/TA+z/0wPz' + + '/9MD9P/pA/j/0wQA/+kACQPh/+kD4v/pA+b/6QPo/+kD7//pA/L/6QPz/+kD9f/pA/j/0wAEA+b/6QPo/+kD7//pA/L/6QADA+b/6QPv/+kD9AAXAAID8/9gA/j/dwAIA+X/0wPmABcD6P/pA+z/0wPvABcD8//TA/b/6QQA/+kABwPl/9MD5//pA+z/0wPt/+kD8//T' + + 'A/b/6QP4/9MAAgAP/zMAEf8zAAcAD/8GABH/BgAd/9MAHv/TAG3/YAB9/2AH4P/TAAEH5P/bAAMAA/+0AFb/2wfl/9sABQOz/2ADvP9gA9P/YAPY/7wD2/+8AAEAaQADABQAJAApAC8AMwA1ADcAOQA6ADwASQBVAFkAWgBcAzsDQANBA0IDRANGA0cDSwNNA04DUgNU' + + 'A1UDVgNXA1gDWgNbA10DZgNoA2oDbANtA3ADcQNyA3MDdgN4A3kDewN+A4ADtAO6A7sDwQPCA8MDxAPFA8YDxwPIA8sDzAPNA88D0QPSA9MD1APVA9YD1wPaA9sD3QPeA98D4QPiA+MD5APlA+YD5wPoA+sD7APtA+8D8QPyA/MD9AP1A/YD9wP6A/0D/gP/BA8EQQfk' + + 'B+UH6gABGiYZngABGiwADAMyBmYGbAZyBngGfgaEBooGkAaWBpwGogaoBq4GtAa6BsAGxgbMBtIG2AbeBuQG6gbwBvYG/AcCBwgHDgcUBxoHIAcmBywHMgc4Bz4HRAdKB1AHVgdcB2IHaAduB3QHegeAB4YHjAeSB5gHngekB6oHsAe2B7wHwgfIB84H1AfaB+AH5gfs' + + 'B/IH+Af+CAQICggQCBYIHAgiCCgILgg0CDoIQAhGCEwIUghYCF4IZAhqCHAIdgh8CIIIiAiOCJQImgigCKYIrAiyCLgIvgjECMoI0AjWCNwI4gjoCO4I9Aj6CQAJBgkMCRIJGAkeCSQJKgkwCTYJPAlCCUgJTglUCVoJYAlmCWwJcgl4CX4JhAmKCZAJlgmcCaIJqAmu' + + 'CbQJugnACcYJzAnSCdgJ3gnkCeoJ8An2CfwKAgoICg4KFAoaCiAKJgosCjIKOAo+CkQKSgpQClYKXApiCmgKbgp0CnoKgAqGCowKkgqYCp4KpAqqCrAKtgq8CsIKyArOCtQK2grgCuYK7AryCvgK/gsECwoLEAsWCxwLIgsoCy4LNAs6C0ALRgtMC1ILWAteC2QLagtw' + + 'C3YLfAuCC4gLjguUC5oLoAumC6wLsgu4C74LxAvKC9AL1gvcC+IL6AvuC/QL+gwADAYMDAwSDBgMHgwkDCoMMAw2DDwMQgxIDE4MVAxaDGAMZgxsDHIMeAx+DIQMigyQDJYMnAyiDKgMrgy0DLoMwAzGDMwM0gzYDN4M5AzqDPAM9gz8DQINCA0ODRQNGg0gDSYNLA0y' + + 'DTgNPg1EDUoNUA1WDVwNYg1oDW4NdA16DYANhg2MDZINmA2eDaQNqg2wDbYNvA3CDcgNzg3UDdoN4A3mDewN8g34Df4OBA4KDhAOFg4cDiIOKA4uDjQOOg5ADkYOTA5SDlgOXg5kDmoOcA52DnwOgg6IDo4OlA6aDqAOpg6sDrIOuA6+DsQOyg7QDtYO3A7iDugO7g70' + + 'DvoPAA8GDwwPEg8YDx4PJA8qDzAPNg88D0IPSA9OD1QPWg9gD2YPbA9yD3gPfg+ED4oPkA+WD5wPog+oD64PtA+6D8APxg/MD9IP2A/eD+QP6g/wD/YP/BACEAgQDhAUEBoQIBAmECwQMhA4ED4QRBBKEFAQVhBcEGIQaBBuEHQQehCAEIYQjBCSEJgQnhCkEKoQsBC2' + + 'ELwQwhDIEM4Q1BDaEOAQ5hDsEPIQ+BD+EQQRChEQERYRHBEiESgRLhE0EToRQBFGEUwRUhFYEV4RZBFqEXARdhF8EYIRiBGOEZQRmhGgEaYRrBGyEbgRvhHEEcoR0BHWEdwR4hHoEe4R9BH6EgASBhIMEhISGBIeEiQSKhIwEjYSPBJCEkgSThJUEloSYBJmEmwSchJ4' + + 'En4ShBKKEpASlhKcEqISqBKuErQSuhLAEsYSzBLSEtgS3hLkEuoS8BL2EvwTAhMIEw4TFBMaEyATJhMsEzITOBM+E0QTShNQE1YTXBNiE2gTbhN0E3oTgBOGE4wTkhOYE54TpBOqE7ATthO8E8ITyBPOE9QT2hPgE+YT7BPyE/gT/hQEFAoUEBQWFBwUIhQoFC4UNBQ6' + + 'FEAURhRMFFIUWBReFGQUahRwFHYUfBSCFIgUjhSUFJoUoBSmFKwUshS4FL4UxBTKFNAU1hTcFOIU6BTuFPQU+hUAFQYVDBUSFRgVHhUkFSoVMBU2FTwVQhVIFU4VVBVaFWAVZhVsFXIVeBV+FYQVihWQFZYVnBWiFagVrhW0FboVwBXGFcwV0hXYFd4V5BXqFfAV9hX8' + + 'FgIWCBYOFhQWGhYgFiYWLBYyFjgWPhZEFkoWUBZWFlwWYhZoFm4WdBZ6FoAWhhaMFpIWmBaeFqQWqhawFrYWvBbCFsgWzhbUFtoW4BbmFuwW8hb4Fv4XBBcKFxAXFhccFyIXKBcuFzQXOhdAF0YXTBdSF1gXXhdkF2oXcBd2F3wXgheIF44XlBeaF6AXphesF7IXuBe+' + + 'F8QXyhfQF9YX3BfiF+gX7hf0F/oYABgGGAwYEhgYGB4YJBgqGDAYNhg8GEIYSBhOGFQYWhhgGGYYbBhyGHgYfhiEGIoYkBiWGJwYohioGK4YtBi6GMAYxhjMGNIY2BjeGOQY6hjwGPYY/BkCGQgZDhkUGRoZIBkmGSwZMhk4GT4ZRBlKGVAZVhlcGWIZaBluGXQZehmA' + + 'GYYZjAABBLAAAAABAvgAAAABA3oAAAABAp4AAAABBGAAAAABAL4AAAABA8AAAAABBH4AAAABAMgAAAABAcwAAAABBGoAAAABA6wAAAABBWQAAAABBGAAAAABA5gAAAABALQAAAABAoAAAAABBJwAAAABAyAAAAABAiYAAAABAz4AAAABAmwAAAABBRQAAAABBGoAAAAB' + + 'AlgAAAABBAYAAAABA6wAAAABAqgAAAABAkQAAAABA1IAAAABAqgAAAABAMgAAAABApT+cAABA1IAAAABAKAAAAABAGT+cAABAz4AAAABAKAAAAABBYIAAAABA0gAAAABAqgAAAABAKD+cAABA0j+cAABAKAAAAABAiYAAAABAXwAAAABA1IAAAABAbgAAAABA+gAAAAB' + + 'AzQAAAABAMj+cAABAuQAAAABBLAAAAABBLAAAAABBLAAAAABBLAAAAABBLAAAAABBLAAAAABBvQAAAABAwz+cAABBGAAAAABBGAAAAABBGAAAAABBGAAAAABAMgAAAABAMgAAAABAMgAAAABAMgAAAABAp4AAAABBGAAAAABA5gAAAABA5gAAAABA5gAAAABA5gAAAAB' + + 'A5gAAAABA5gAAAABAz4AAAABAz4AAAABAz4AAAABAz4AAAABAlgAAAABALQAAAABAz4AAAABA6wAAAABA6wAAAABA6wAAAABA6wAAAABA6wAAAABA6wAAAABBVAAAAABAkT+cAABAqgAAAABAqgAAAABAqgAAAABAqgAAAABANwAAAABANwAAAABANwAAAABANwAAAAB' + + 'AqgAAAABA0gAAAABAqgAAAABAqgAAAABAqgAAAABAqgAAAABAqgAAAABAqgAAAABA1IAAAABA1IAAAABA1IAAAABA1IAAAABAMj+cAABAKD+cAABAMj+cAABBLAAAAABA6wAAAABBLAAAAABA6wAAAABBNj+cAABA9T+cAABA3oAAAABAkQAAAABA3oAAAABAkQAAAAB' + + 'A3oAAAABAkQAAAABA3oAAAABAkQAAAABAp4AAAABA1IAAAABAp4AAAABA1IAAAABBGAAAAABAqgAAAABBGAAAAABAqgAAAABBGAAAAABAqgAAAABBIj+cAABAqj+cAABBGAAAAABAqgAAAABA8AAAAABApT+cAABA8AAAAABApT+cAABA8AAAAABApT+cAABAwz+cAAB' + + 'ApT+cAABBH4AAAABA1IAAAABBH4AAAABA1IAAAABAMgAAAABANwAAAABAMgAAAABANwAAAABAMgAAAABANwAAAABAUD+cAABAPD+cAABAMgAAAABANIAAAABA+gAAAABAhz+cAABAcwAAAABAGT+cAABBGoAAAABA4QAAAABAz4AAAABA6wAAAABAKAAAAABAjD+cAAB' + + 'AKD+cAABA6wAAAABAKAAAAABA6wAAAABAKAAAAABA6wAAAABAKAAAAABBGAAAAABA0gAAAABBGAAAAABA4QAAAABBGAAAAABA0gAAAABA7sAAAABA8AAAAABAyr+cAABA5gAAAABAqgAAAABA5gAAAABAqgAAAABA5gAAAABAqgAAAABBwgAAAABBbQAAAABBJwAAAAB' + + 'AKAAAAABBJwAAAABALT+cAABBJwAAAABAKAAAAABAyAAAAABAiYAAAABAyAAAAABAiYAAAABAtr+cAABAgj+cAABAyAAAAABAiYAAAABAor+cAABAUD+cAABAiYAAAABAXwAAAABAiYAAAABAXwAAAABAz4AAAABA1IAAAABAz4AAAABA1IAAAABAz4AAAABA1IAAAAB' + + 'Az4AAAABA1IAAAABAz4AAAABA1IAAAABA1z+cAABA3D+cAABBRQAAAABA+gAAAABAlgAAAABAMj+cAABAlgAAAABBAYAAAABAuQAAAABBAYAAAABAuQAAAABBAYAAAABAuQAAAABAKAAAAABAqgAAAABA6wAAAABAvgAAAABAqgAAAABAvgAAAABAqgAAAABAyAAAAAB' + + 'A3oAAAABAkQAAAABAp4AAAABA2YAAAABA0gAAAABA1IAAAABAvj+cAABA+gAAAABA3oAAAABArwAAAABAGT+cAABAQT+cAABA9QAAAABAqj+cAABBTwAAAABAKAAAAABAOYAAAABBGoAAAABAz4AAAABAKAAAAABA1oAAAABBfAAAAABBGAAAAABA1L+cAABA5gAAAAB' + + 'A5gAAAABAqgAAAABBb7+cAABBDb+cAABAWgAAAABALT+cAABBGr+1AABAyAAAAABAiYAAAABBAYAAAABAkT+cAABAV7+cAABAiYAAAABAWgAAAABAw3+cAABAz4AAAABA1IAAAABA0QAAAABAssAAAABAlgAAAABAMj+cAABBAYAAAABAuQAAAABAmj+cAABArz+cAAB' + + 'Al0AAAABAiYAAAABAjEAAAABAKX+cAABCbYAAAABCNoAAAABB28AAAABBlwAAAABBUn+cAABAkf+cAABB7wAAAABBkD+cAABBNj+cAABBLAAAAABA6wAAAABAMgAAAABAKAAAAABA5gAAAABAqgAAAABAz4AAAABA1IAAAABAn4AAAABBwwAAAABBV8AAAABA8AAAAAB' + + 'ApT+cAABA8AAAAABApT+cAABBGoAAAABAz4AAAABA6z+cAABAqj+cAABA6z+cAABAqj+cAABAnb+cAABAl3+cAABAGT+cAABCX8AAAABCMQAAAABB28AAAABA8AAAAABApT+cAABBmIAAAABAMb+cAABBGAAAAABA0gAAAABBLAAAAABA6wAAAABBLAAAAABA6wAAAAB' + + 'BGAAAAABAqgAAAABBGAAAAABAqgAAAABAMgAAAABANwAAAABAMgAAAABANwAAAABA5gAAAABAqgAAAABA5gAAAABAqgAAAABBJwAAAABAKAAAAABBJwAAAABAKAAAAABAz4AAAABA1IAAAABAz4AAAABA1IAAAABAkT+cAABATT+cAABAcz/BgABAcz/BgABBH4AAAAB' + + 'A1IAAAABBGD+cAABA+j+ogABAuEAAAABApQAAAABAy4AAAABAlIAAAABBLAAAAABA6wAAAABAuH+cAABAjH+cAABA5gAAAABAqgAAAABAlgAAAABAMj+cAABAQj+ogABA73+qwABAT0AMgABAGT+cAABBTIAAAABBTIAAAABBLAAAAABA3oAAAABAkQAAAABA6wAAAAB' + + 'AiYAAAABAon+cAABAtb+cAABAdYAAAABAXwAAAABAvgAAAABAz4AAAABBLAAAAABBGAAAAABAqgAAAABAcwAAAABAGT+cAABBVD+cAABBCT+cAABBJwAAAABAKAAAAABAlgAAAABAMj+cAABApQAAAABA1wAAAABApQAAAABAqgAAAABAiYAAAABAkQAAAABA97+cAAB' + + 'A1IAAAABApQAAAABApQAAAABApQAAAABAiYAAAABAiYAAAABAiYAAAABAkQAAAABAJb+cAABApT+cAABApT+cAABAoAAAAABAfT+cAABAoAAAAABA1L+cAABA1IAAAABAuT+cAABAKAAAAABASwAAAABAMgAAAABARgAAAABARgAAAABAWj+cAABArL+cAABBZYAAAAB' + + 'BZb+cAABBVD+cAABA0gAAAABBDj+cAABA1wAAAABAqgAAAABBXUAAAABBJIAAAABAfT+cAABAbgAAAABAbgAAAABAlj+cAABALT+cAABAYH+cAABAKAAAAABAYH+cAABA2UAAAABAmwAAAABASz+cAABACz+cAABAGP+cAABAZD+cAABARP+cAABARMAAAABAWv+cAAB' + + 'A1IAAAABAp8AAAABAjEAAAABA1oAAAABBR4AAAABA08AAAABAc4AAAABA9P+cAABAxgAAAABAk7+cAABAjH+cAABAYEAAAABAhAAAAABAgUAAAABAkf+cAABA5gAAAABAiYAAAABAiYAAAABApQAAAABA0QAAAABAWD+cAABAuz+cAABAnMAAAABA0/+cAABAYwAAAAB' + + 'AfoAAAABBuAAAAABBV/+cAABBpMAAAABA94AAAABAfr+cAABBFcAAAABBK/+cAABA4QAAAABBDgAAAABAp8AAAABA08AAAABBGD+cAABBYL+cAABAqgAAAABA1IAAAABAMgAAAABBYIAAAABA0gAAAABAKX+cAABAKAAAAABAKAAAAABAiYAAAABAXwAAAABAuQAAAAB' + + 'Aqj+cAABAkQB4AABAlj+cAABBR4AAAABAKAAAAABAKAAAAABAKD+cAABAowAAAABApQAAAABAqj+cAABA2b+cAABAKD+cAABApT+cAABAvj+cAABAKr+cAABBXj+cAABA2b+cAABAKD+cAABAL7+cAABAtr+cAABADz+cAABAqj+cAABAyD+cAABAsv+cAABBI7+cAAB' + + 'BEz+cAABBAb+cAABBFb+cAABA9P+cAABAUr+cAABBTP+cAABAfT+cAABAUD+cAABAKD+cAABBI7+cAABAUr+cAABBLAAAAABA9QAAAABAvgAAAABAqgAAAABAjr+ygABAhL+ygABApT+ygABAlL+ygABAwL+cAABAhz+cAABAp4AAAABA1IAAAABAnb+ygABA2YAAAAB' + + 'Ap/+ygABAkf+ygABAoD+cAABA2YAAAABAqj+cAABAfT+cAABBGAAAAABAqgAAAABBGAAAAABAqgAAAABAqj+cAABAib+cAABAqj+ogABAib+ogABAtr+cAABAib+cAABAL4AAAABAMgAAAABA8AAAAABApT+cAABBH4AAAABA1IAAAABBH4AAAABA2YAAAABBH4AAAAB' + + 'A1IAAAABBH4AAAABA1IAAAABBKYAAAABAk7+ogABARj+ogABANz+ogABAMgAAAABANwAAAABBGoAAAABAz4AAAABBGoAAAABA1wAAAABBKYAAAABAjr+ygABA8AAAAABAKr+ygABA8AAAAABAKr+ygABAmz+ygABANz+ygABAlj+cAABAMj+cAABBWQAAAABBYIAAAAB' + + 'BWQAAAABBYIAAAABBWQAAAABBYIAAAABBGAAAAABA0gAAAABBGAAAAABA3AAAAABAvj+ygABAjr+ygABArz+cAABAib+cAABA5gAAAABAqgAAAABA5gAAAABAqgAAAABA5gAAAABAqgAAAABA5gAAAABAqgAAAABALQAAAABAKD+cAABALQAAAABAKD+cAABBJwAAAAB' + + 'AKAAAAABBJwAAAABAUr+ygABBJwAAAABAUr+ygABAwz+ygABAWj+ygABAyAAAAABAiYAAAABAoD+ygABAcz+ygABAyAAAAABAiYAAAABAyAAAAABAiYAAAABAmz+ygABAa7+ygABAiYAAAABAXwAAAABAjD+ygABASL+ygABAmL+ygABAVT+ygABAl3+cAABAUr+cAAB' + + 'Asb+XAABAhz+SAABAsv+ogABAhz+ogABAtD+cAABAhL+cAABAz4AAAABA1IAAAABAz4AAAABA1IAAAABAmwAAAABAbgAAAABAmz+ygABAbj+ygABBRQAAAABA+gAAAABBRQAAAABA+gAAAABBRQAAAABA+gAAAABBRQAAAABA+gAAAABBTIAAAABBCQAAAABBGoAAAAB' + + 'AzQAAAABBGoAAAABAzQAAAABAlgAAAABAMj+cAABBAYAAAABAuQAAAABBAYAAAABAzQAAAABAnb+ygABAfT+ygABAib+ygABAXwAAAABA+gAAAABAMj+cAABA6wAAAABAKAAAAABBLAAAAABA6wAAAABBLAAAAABA6wAAAABBLAAAAABA6wAAAABBLAAAAABA6wAAAAB' + + 'BLAAAAABA6wAAAABBLAAAAABA6wAAAABBLAAAAABA6wAAAABBLAAAAABA6wAAAABBLAAAAABA6wAAAABBLAAAAABA6wAAAABBLAAAAABA6wAAAABBLAAAAABA6wAAAABBGAAAAABA1IAZAABBGAAAAABAqgAAAABBGAAAAABAqgAAAABBGAAAAABAqgAAAABBGAAAAAB' + + 'AqgAAAABBGAAAAABAqgAAAABBGAAAAABAqgAAAABBGAAAAABA1wAZAABAMgAAAABAKAAAAABAOb+ygABAKD+ygABAtr+ygABAfT+ygABA5gAAAABAqgAAAABA5gAAAABAqgAAAABA5gAAAABAqgAAAABA5gAAAABAqgAAAABA5gAAAABAqgAAAABAtr+ygABAfT+ygAB' + + 'A5gAAAABAqgAAAABA5gAAAABAqgAAAABA5gAAAABAqgAAAABA5gAAAABAqgAAAABAtr+ygABAfT+ygABAqj+ygABA1wAAAABAz4AAAABA1IAAAABAz4AAAABA1IAAAABAz4AAAABA1IAAAABAz4AAAABA1IAAAABAz4AAAABA1IAAAABAqj+ygABA1wAAAABAlgAAAAB' + + 'AMj+cAABAmz+ygABAMj+cAABAlgAAAABAMj+cAABAlgAAAABAMj+cAABAp8AAAABA8AAAAABA6wAAAABAKAAAAABA6wAAAABALQAAAABBJwAAAABA6wAAAABAYwAAAABAbgAAAABAuEAAAABAKAAAAACABYAJAA9AAAARABdABoAggCYADQAmgC4AEsAugF6AGoBfgGB' + + 'ASsBhgGWAS8BnwGfAUABpAG7AUEBwgHZAVkB3AHrAXEB8AHxAYEB9AJxAYMFjAW6AgEF7QaIAjAGigbjAswIPAg8AyYInQidAycIvwjFAygI0AjQAy8I0wjTAzAJ7gnuAzEAAQABAuoAAQAAAAYAAf/2//YAATO2My4AAjPAAAwDMgzKDNAM1gzcDOIM6AzuDPQM+g0A' + + 'DQYNDA0SDRgNHg0kDSoNMA02DTwNQg1IDU4NVA1aDWANZg1sDXINeA1+DYQNig2QDZYNnA2iDagNrg20DboNwA3GDcwN0g3YDd4N5A3qDfAN9g38DgIOCA4ODhQOGg4gDiYOLA4yDjgOPg5EDkoOUA5WDlwOYg5oDm4OdA56DoAOhg6MDpIOmA6eDqQOqg6wDrYOvA7C' + + 'DsgOzg7UDtoO4A7mDuwO8g74Dv4PBA8KDxAPFg8cDyIPKA8uDzQPOg9AD0YPTA9SD1gPXg9kD2oPcA92D3wPgg+ID44PlA+aD6APpg+sD7IPuA++D8QPyg/QD9YP3A/iD+gP7g/0D/oQABAGEAwQEhAYEB4QJBAqEDAQNhA8EEIQSBBOEFQQWhBgEGYQbBByEHgQfhCE' + + 'EIoQkBCWEJwQohCoEK4QtBC6EMAQxhDMENIQ2BDeEOQQ6hDwEPYQ/BECEQgRDhEUERoRIBEmESwRMhE4ET4RRBFKEVARVhFcEWIRaBFuEXQRehGAEYYRjBGSEZgRnhGkEaoRsBG2EbwRwhHIEc4R1BHaEeAR5hHsEfIR+BH+EgQSChIQEhYSHBIiEigSLhI0EjoSQBJG' + + 'EkwSUhJYEl4SZBJqEnASdhJ8EoISiBKOEpQSmhKgEqYSrBKyErgSvhLEEsoS0BLWEtwS4hLoEu4S9BL6EwATBhMMExITGBMeEyQTKhMwEzYTPBNCE0gTThNUE1oTYBNmE2wTchN4E34ThBOKE5ATlhOcE6ITqBOuE7QTuhPAE8YTzBPSE9gT3hPkE+oT8BP2E/wUAhQI' + + 'FA4UFBQaFCAUJhQsFDIUOBQ+FEQUShRQFFYUXBRiFGgUbhR0FHoUgBSGFIwUkhSYFJ4UpBSqFLAUthS8FMIUyBTOFNQU2hTgFOYU7BTyFPgU/hUEFQoVEBUWFRwVIhUoFS4VNBU6FUAVRhVMFVIVWBVeFWQVahVwFXYVfBWCFYgVjhWUFZoVoBWmFawVshW4Fb4VxBXK' + + 'FdAV1hXcFeIV6BXuFfQV+hYAFgYWDBYSFhgWHhYkFioWMBY2FjwWQhZIFk4WVBZaFmAWZhZsFnIWeBZ+FoQWihaQFpYWnBaiFqgWrha0FroWwBbGFswW0hbYFt4W5BbqFvAW9hb8FwIXCBcOFxQXGhcgFyYXLBcyFzgXPhdEF0oXUBdWF1wXYhdoF24XdBd6F4AXhheM' + + 'F5IXmBeeF6QXqhewF7YXvBfCF8gXzhfUF9oX4BfmF+wX8hf4F/4YBBgKGBAYFhgcGCIYKBguGDQYOhhAGEYYTBhSGFgYXhhkGGoYcBh2GHwYghiIGI4YlBiaGKAYphisGLIYuBi+GMQYyhjQGNYY3BjiGOgY7hj0GPoZABkGGQwZEhkYGR4ZJBkqGTAZNhk8GUIZSBlO' + + 'GVQZWhlgGWYZbBlyGXgZfhmEGYoZkBmWGZwZohmoGa4ZtBm6GcAZxhnMGdIZ2BneGeQZ6hnwGfYZ/BoCGggaDhoUGhoaIBomGiwaMho4Gj4aRBpKGlAaVhpcGmIaaBpuGnQaehqAGoYajBqSGpganhqkGqoasBq2GrwawhrIGs4a1BraGuAa5hrsGvIa+Br+GwQbChsQ' + + 'GxYbHBsiGygbLhs0GzobQBtGG0wbUhtYG14bZBtqG3Abdht8G4IbiBuOG5QbmhugG6YbrBuyG7gbvhvEG8ob0BvWG9wb4hvoG+4b9Bv6HAAcBhwMHBIcGBweHCQcKhwwHDYcPBxCHEgcThxUHFocYBxmHGwcchx4HH4chByKHJAclhycHKIcqByuHLQcuhzAHMYczBzS' + + 'HNgc3hzkHOoc8Bz2HPwdAh0IHQ4dFB0aHSAdJh0sHTIdOB0+HUQdSh1QHVYdXB1iHWgdbh10HXodgB2GHYwdkh2YHZ4dpB2qHbAdth28HcIdyB3OHdQd2h3gHeYd7B3yHfgd/h4EHgoeEB4WHhweIh4oHi4eNB46HkAeRh5MHlIeWB5eHmQeah5wHnYefB6CHogejh6U' + + 'HpoeoB6mHqwesh64Hr4exB7KHtAe1h7cHuIe6B7uHvQe+h8AHwYfDB8SHxgfHh8kHyofMB82HzwfQh9IH04fVB9aH2AfZh9sH3IfeB9+H4Qfih+QH5YfnB+iH6gfrh+0H7ofwB/GH8wf0h/YH94f5B/qH/Af9h/8IAIgCCAOIBQgGiAgICYgLCAyIDggPiBEIEogUCBW' + + 'IFwgYiBoIG4gdCB6IIAghiCMIJIgmCCeIKQgqiCwILYgvCDCIMggziDUINog4CDmIOwg8iD4IP4hBCEKIRAhFiEcISIhKCEuITQhOiFAIUYhTCFSIVghXiFkIWohcCF2IXwhgiGIIY4hlCGaIaAhpiGsIbIhuCG+IcQhyiHQIdYh3CHiIegh7iH0IfoiACIGIgwiEiIY' + + 'Ih4iJCIqIjAiNiI8IkIiSCJOIlQiWiJgImYibCJyIngifiKEIooikCKWIpwioiKoIq4itCK6IsAixiLMItIi2CLeIuQi6iLwIvYi/CMCIwgjDiMUIxojICMmIywjMiM4Iz4jRCNKI1AjViNcI2IjaCNuI3QjeiOAI4YjjCOSI5gjniOkI6ojsCO2I7wjwiPII84j1CPa' + + 'I+Aj5iPsI/Ij+CP+JAQkCiQQJBYkHCQiJCgkLiQ0JDokQCRGJEwkUiRYJF4kZCRqJHAkdiR8JIIkiCSOJJQkmiSgJKYkrCSyJLgkviTEJMok0CTWJNwk4iToJO4k9CT6JQAlBiUMJRIlGCUeJSQlKiUwJTYlPCVCJUglTiVUJVolYCVmJWwlciV4JX4lhCWKJZAlliWc' + + 'JaIlqCWuJbQluiXAJcYlzCXSJdgl3iXkJeol8CX2JfwmAiYIJg4mFCYaJiAmJiYsJjImOCY+JkQmSiZQJlYmXCZiJmgmbiZ0JnomgCaGJowmkiaYJp4mpCaqJrAmtia8JsImyCbOJtQm2ibgJuYm7CbyJvgm/icEJwonECcWJxwnIicoJy4nNCc6J0AnRidMJ1InWCde' + + 'J2QnaidwJ3YnfCeCJ4gnjieUJ5onoCemJ6wnsie4J74nxCfKJ9An1ifcJ+In6CfuJ/Qn+igAKAYoDCgSKBgoHigkKCooMCg2KDwoQihIKE4oVChaKGAoZihsKHIoeCh+KIQoiiiQKJYonCiiKKgorii0KLoowCjGKMwo0ijYKN4o5CjqKPAo9ij8KQIpCCkOKRQpGikg' + + 'KSYpLCkyKTgpPilEKUopUClWKVwpYiloKW4pdCl6KYAphimMKZIpmCmeKaQpqimwKbYpvCnCKcgpzinUKdop4CnmKewp8in4Kf4qBCoKKhAqFiocKiIqKCouKjQqOipAKkYqTCpSKlgqXipkKmoqcCp2KnwqgiqIKo4qlCqaKqAqpiqsKrIquCq+KsQqyirQKtYq3Cri' + + 'Kugq7ir0KvorACsGKwwrEisYKx4rJCsqKzArNis8K0IrSCtOK1QrWitgK2YrbCtyK3grfiuEK4orkCuWK5wroiuoK64rtCu6K8ArxivMK9Ir2CveK+Qr6ivwK/Yr/CwCLAgsDiwULBosICwmLCwsMiw4LD4sRCxKLFAsVixcLGIsaCxuLHQseiyALIYsjCySLJgsniyk' + + 'LKossCy2LLwswizILM4s1CzaLOAs5izsLPIs+Cz+LQQtCi0QLRYtHC0iLSgtLi00LTotQC1GLUwtUi1YLV4tZC1qLXAtdi18LYItiC2OLZQtmi2gLaYtrC2yLbgtvi3ELcot0C3WLdwt4i3oLe4t9C36LgAuBi4MLhIuGC4eLiQuKi4wLjYuPC5CLkguTi5ULlouYC5m' + + 'Lmwuci54Ln4uhC6KLpAuli6cLqIuqC6uLrQuui7ALsYuzC7SLtgu3i7kLuou8C72LvwvAi8ILw4vFC8aLyAvJi8sLzIvOC8+L0QvSi9QL1YvXC9iL2gvbi90L3ovgC+GL4wvki+YL54vpC+qL7Avti+8L8IvyC/OL9Qv2i/gL+Yv7C/yL/gv/jAEMAowEDAWMBwwIjAo' + + 'MC4wNDA6MEAwRjBMMFIwWDBeMGQwajBwMHYwfDCCMIgwjjCUMJowoDCmMKwwsjC4ML4wxDDKMNAw1jDcMOIw6DDuMPQw+jEAMQYxDDESMRgxHjEkMSoxMDE2MTwxQjFIMU4xVDFaMWAxZjFsMXIxeDF+MYQxijGQMZYxnDGiMagxrjG0MboxwDHGMcwx0jHYMd4x5DHq' + + 'MfAx9jH8MgIyCDIOMhQyGjIgMiYyLDIyMjgyPjJEMkoyUDJWMlwyYjJoMm4ydDJ6MoAyhjKMMpIymDKeMqQyqjKwMrYyvDLCMsgyzjLUMtoy4DLmMuwy8jL4Mv4zBDMKMxAzFjMcAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcw' + + 'AAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcwAAEFVgcwAAEAAAcw' + + 'AAEFVgcwAAEAAAcwAAEFVgcwAAIAFgAkAD0AAABEAF0AGgCCAJgANACaALgASwC6AXoAagF+AYEBKwGGAZYBLwGfAZ8BQAGkAbsBQQHCAdkBWQHcAesBcQHwAfEBgQH0AnEBgwWMBboCAQXtBogCMAaKBuMCzAg8CDwDJgidCJ0DJwi/CMUDKAjQCNADLwjTCNMDMAnu' + + 'Ce4DMQACAAEJFQkYAAAABAABABIAAAAYAAEAHgAAACQAAQAABLAAAQAABLAAAQAABLAAAQAABLAAATO2My4AAjPAAAwDMgzKDNAM1gzcDOIM6AzuDPQM+g0ADQYNDA0SDRgNHg0kDSoNMA02DTwNQg1IDU4NVA1aDWANZg1sDXINeA1+DYQNig2QDZYNnA2iDagNrg20' + + 'DboNwA3GDcwN0g3YDd4N5A3qDfAN9g38DgIOCA4ODhQOGg4gDiYOLA4yDjgOPg5EDkoOUA5WDlwOYg5oDm4OdA56DoAOhg6MDpIOmA6eDqQOqg6wDrYOvA7CDsgOzg7UDtoO4A7mDuwO8g74Dv4PBA8KDxAPFg8cDyIPKA8uDzQPOg9AD0YPTA9SD1gPXg9kD2oPcA92' + + 'D3wPgg+ID44PlA+aD6APpg+sD7IPuA++D8QPyg/QD9YP3A/iD+gP7g/0D/oQABAGEAwQEhAYEB4QJBAqEDAQNhA8EEIQSBBOEFQQWhBgEGYQbBByEHgQfhCEEIoQkBCWEJwQohCoEK4QtBC6EMAQxhDMENIQ2BDeEOQQ6hDwEPYQ/BECEQgRDhEUERoRIBEmESwRMhE4' + + 'ET4RRBFKEVARVhFcEWIRaBFuEXQRehGAEYYRjBGSEZgRnhGkEaoRsBG2EbwRwhHIEc4R1BHaEeAR5hHsEfIR+BH+EgQSChIQEhYSHBIiEigSLhI0EjoSQBJGEkwSUhJYEl4SZBJqEnASdhJ8EoISiBKOEpQSmhKgEqYSrBKyErgSvhLEEsoS0BLWEtwS4hLoEu4S9BL6' + + 'EwATBhMMExITGBMeEyQTKhMwEzYTPBNCE0gTThNUE1oTYBNmE2wTchN4E34ThBOKE5ATlhOcE6ITqBOuE7QTuhPAE8YTzBPSE9gT3hPkE+oT8BP2E/wUAhQIFA4UFBQaFCAUJhQsFDIUOBQ+FEQUShRQFFYUXBRiFGgUbhR0FHoUgBSGFIwUkhSYFJ4UpBSqFLAUthS8' + + 'FMIUyBTOFNQU2hTgFOYU7BTyFPgU/hUEFQoVEBUWFRwVIhUoFS4VNBU6FUAVRhVMFVIVWBVeFWQVahVwFXYVfBWCFYgVjhWUFZoVoBWmFawVshW4Fb4VxBXKFdAV1hXcFeIV6BXuFfQV+hYAFgYWDBYSFhgWHhYkFioWMBY2FjwWQhZIFk4WVBZaFmAWZhZsFnIWeBZ+' + + 'FoQWihaQFpYWnBaiFqgWrha0FroWwBbGFswW0hbYFt4W5BbqFvAW9hb8FwIXCBcOFxQXGhcgFyYXLBcyFzgXPhdEF0oXUBdWF1wXYhdoF24XdBd6F4AXhheMF5IXmBeeF6QXqhewF7YXvBfCF8gXzhfUF9oX4BfmF+wX8hf4F/4YBBgKGBAYFhgcGCIYKBguGDQYOhhA' + + 'GEYYTBhSGFgYXhhkGGoYcBh2GHwYghiIGI4YlBiaGKAYphisGLIYuBi+GMQYyhjQGNYY3BjiGOgY7hj0GPoZABkGGQwZEhkYGR4ZJBkqGTAZNhk8GUIZSBlOGVQZWhlgGWYZbBlyGXgZfhmEGYoZkBmWGZwZohmoGa4ZtBm6GcAZxhnMGdIZ2BneGeQZ6hnwGfYZ/BoC' + + 'GggaDhoUGhoaIBomGiwaMho4Gj4aRBpKGlAaVhpcGmIaaBpuGnQaehqAGoYajBqSGpganhqkGqoasBq2GrwawhrIGs4a1BraGuAa5hrsGvIa+Br+GwQbChsQGxYbHBsiGygbLhs0GzobQBtGG0wbUhtYG14bZBtqG3Abdht8G4IbiBuOG5QbmhugG6YbrBuyG7gbvhvE' + + 'G8ob0BvWG9wb4hvoG+4b9Bv6HAAcBhwMHBIcGBweHCQcKhwwHDYcPBxCHEgcThxUHFocYBxmHGwcchx4HH4chByKHJAclhycHKIcqByuHLQcuhzAHMYczBzSHNgc3hzkHOoc8Bz2HPwdAh0IHQ4dFB0aHSAdJh0sHTIdOB0+HUQdSh1QHVYdXB1iHWgdbh10HXodgB2G' + + 'HYwdkh2YHZ4dpB2qHbAdth28HcIdyB3OHdQd2h3gHeYd7B3yHfgd/h4EHgoeEB4WHhweIh4oHi4eNB46HkAeRh5MHlIeWB5eHmQeah5wHnYefB6CHogejh6UHpoeoB6mHqwesh64Hr4exB7KHtAe1h7cHuIe6B7uHvQe+h8AHwYfDB8SHxgfHh8kHyofMB82HzwfQh9I' + + 'H04fVB9aH2AfZh9sH3IfeB9+H4Qfih+QH5YfnB+iH6gfrh+0H7ofwB/GH8wf0h/YH94f5B/qH/Af9h/8IAIgCCAOIBQgGiAgICYgLCAyIDggPiBEIEogUCBWIFwgYiBoIG4gdCB6IIAghiCMIJIgmCCeIKQgqiCwILYgvCDCIMggziDUINog4CDmIOwg8iD4IP4hBCEK' + + 'IRAhFiEcISIhKCEuITQhOiFAIUYhTCFSIVghXiFkIWohcCF2IXwhgiGIIY4hlCGaIaAhpiGsIbIhuCG+IcQhyiHQIdYh3CHiIegh7iH0IfoiACIGIgwiEiIYIh4iJCIqIjAiNiI8IkIiSCJOIlQiWiJgImYibCJyIngifiKEIooikCKWIpwioiKoIq4itCK6IsAixiLM' + + 'ItIi2CLeIuQi6iLwIvYi/CMCIwgjDiMUIxojICMmIywjMiM4Iz4jRCNKI1AjViNcI2IjaCNuI3QjeiOAI4YjjCOSI5gjniOkI6ojsCO2I7wjwiPII84j1CPaI+Aj5iPsI/Ij+CP+JAQkCiQQJBYkHCQiJCgkLiQ0JDokQCRGJEwkUiRYJF4kZCRqJHAkdiR8JIIkiCSO' + + 'JJQkmiSgJKYkrCSyJLgkviTEJMok0CTWJNwk4iToJO4k9CT6JQAlBiUMJRIlGCUeJSQlKiUwJTYlPCVCJUglTiVUJVolYCVmJWwlciV4JX4lhCWKJZAlliWcJaIlqCWuJbQluiXAJcYlzCXSJdgl3iXkJeol8CX2JfwmAiYIJg4mFCYaJiAmJiYsJjImOCY+JkQmSiZQ' + + 'JlYmXCZiJmgmbiZ0JnomgCaGJowmkiaYJp4mpCaqJrAmtia8JsImyCbOJtQm2ibgJuYm7CbyJvgm/icEJwonECcWJxwnIicoJy4nNCc6J0AnRidMJ1InWCdeJ2QnaidwJ3YnfCeCJ4gnjieUJ5onoCemJ6wnsie4J74nxCfKJ9An1ifcJ+In6CfuJ/Qn+igAKAYoDCgS' + + 'KBgoHigkKCooMCg2KDwoQihIKE4oVChaKGAoZihsKHIoeCh+KIQoiiiQKJYonCiiKKgorii0KLoowCjGKMwo0ijYKN4o5CjqKPAo9ij8KQIpCCkOKRQpGikgKSYpLCkyKTgpPilEKUopUClWKVwpYiloKW4pdCl6KYAphimMKZIpmCmeKaQpqimwKbYpvCnCKcgpzinU' + + 'Kdop4CnmKewp8in4Kf4qBCoKKhAqFiocKiIqKCouKjQqOipAKkYqTCpSKlgqXipkKmoqcCp2KnwqgiqIKo4qlCqaKqAqpiqsKrIquCq+KsQqyirQKtYq3CriKugq7ir0KvorACsGKwwrEisYKx4rJCsqKzArNis8K0IrSCtOK1QrWitgK2YrbCtyK3grfiuEK4orkCuW' + + 'K5wroiuoK64rtCu6K8ArxivMK9Ir2CveK+Qr6ivwK/Yr/CwCLAgsDiwULBosICwmLCwsMiw4LD4sRCxKLFAsVixcLGIsaCxuLHQseiyALIYsjCySLJgsniykLKossCy2LLwswizILM4s1CzaLOAs5izsLPIs+Cz+LQQtCi0QLRYtHC0iLSgtLi00LTotQC1GLUwtUi1Y' + + 'LV4tZC1qLXAtdi18LYItiC2OLZQtmi2gLaYtrC2yLbgtvi3ELcot0C3WLdwt4i3oLe4t9C36LgAuBi4MLhIuGC4eLiQuKi4wLjYuPC5CLkguTi5ULlouYC5mLmwuci54Ln4uhC6KLpAuli6cLqIuqC6uLrQuui7ALsYuzC7SLtgu3i7kLuou8C72LvwvAi8ILw4vFC8a' + + 'LyAvJi8sLzIvOC8+L0QvSi9QL1YvXC9iL2gvbi90L3ovgC+GL4wvki+YL54vpC+qL7Avti+8L8IvyC/OL9Qv2i/gL+Yv7C/yL/gv/jAEMAowEDAWMBwwIjAoMC4wNDA6MEAwRjBMMFIwWDBeMGQwajBwMHYwfDCCMIgwjjCUMJowoDCmMKwwsjC4ML4wxDDKMNAw1jDc' + + 'MOIw6DDuMPQw+jEAMQYxDDESMRgxHjEkMSoxMDE2MTwxQjFIMU4xVDFaMWAxZjFsMXIxeDF+MYQxijGQMZYxnDGiMagxrjG0MboxwDHGMcwx0jHYMd4x5DHqMfAx9jH8MgIyCDIOMhQyGjIgMiYyLDIyMjgyPjJEMkoyUDJWMlwyYjJoMm4ydDJ6MoAyhjKMMpIymDKe' + + 'MqQyqjKwMrYyvDLCMsgyzjLUMtoy4DLmMuwy8jL4Mv4zBDMKMxAzFjMcAAEFOP6EAAEFOAYEAAEFVv6EAAEFVgYEAAEFx/6EAAEFxwYEAAEFx/6EAAEFxwYEAAEFVv6EAAEFVgYEAAEE4/6EAAEE4wYEAAEGOf6EAAEGOQYEAAEFx/6EAAEFxwYEAAECOf6EAAECOQYE' + + 'AAEEAP6EAAEEAAYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEGqv6EAAEGqgYEAAEFx/6EAAEFxwYEAAEGOf6EAAEGOQYEAAEFVv6EAAEFVgYEAAEGOf6EAAEGOQYEAAEFx/6EAAEFxwYEAAEFVv6EAAEFVgYEAAEE4/6EAAEE4wYEAAEFx/6EAAEFxwYEAAEFVv6E' + + 'AAEFVgYEAAEHjf6EAAEHjQYEAAEFVv6EAAEFVgYEAAEFVv6EAAEFVgYEAAEE4/6EAAEE4wYEAAEEc/9MAAEEcwTEAAEEc/9qAAEEcwYEAAEEAP+mAAEEAAS6AAEEc/+mAAEEcwYEAAEEc/+mAAEEcwScAAECOf+mAAECOQYEAAEEc/6EAAEEcwSwAAEEc/+SAAEEcwYE' + + 'AAEBx/+mAAEBxwYEAAEBx/6EAAEBxwYEAAEEAP+cAAEEAAYEAAEBx/+wAAEBxwYEAAEGqv+wAAEGqgTsAAEEc/+wAAEEcwTEAAEEc/+6AAEEcwTEAAEEc/6EAAEEcwTEAAEEc/6EAAEEcwTEAAECqv+mAAECqgTEAAEEAP+mAAEEAASSAAECOf+SAAECOQYEAAEEc/+m' + + 'AAEEcwSSAAEEAP+wAAEEAASwAAEFx/+mAAEFxwSSAAEEAP+mAAEEAAScAAEEAP6EAAEEAASSAAEEAP+mAAEEAASIAAEFVv6EAAEFVgYEAAEFVv6EAAEFVgYEAAEFVv6EAAEFVgYEAAEFVv6EAAEFVgYEAAEFVv6EAAEFVgYEAAEFVv6EAAEFVgYEAAEIAP6EAAEIAAcw' + + 'AAEFx/6EAAEFxwYEAAEFVv6EAAEFVgYEAAEFVv6EAAEFVgYEAAEFVv6EAAEFVgYEAAEFVv6EAAEFVgYEAAECOf6EAAECOQYEAAECOf6EAAECOQYEAAECOf6EAAECOQYEAAECOf6EAAECOQYEAAEFx/6EAAEFxwYEAAEFx/6EAAEFxwYEAAEGOf6EAAEGOQYEAAEGOf6E' + + 'AAEGOQYEAAEGOf6EAAEGOQYEAAEGOf6EAAEGOQYEAAEGOf6EAAEGOQYEAAEGOf6EAAEGOQYEAAEFx/6EAAEFxwYEAAEFx/6EAAEFxwYEAAEFx/6EAAEFxwYEAAEFx/6EAAEFxwYEAAEFVv6EAAEFVgYEAAEFVv6EAAEFVgYEAAEE4/6EAAEE4wYEAAEEc/6EAAEEcwYE' + + 'AAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAEHHf6EAAEHHQYEAAEEAP6EAAEEAAYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAEBx/6EAAEBxwYEAAEBx/6E' + + 'AAEBxwYEAAEBx/6EAAEBxwYEAAEBx/6EAAEBxwYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYE' + + 'AAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAEEAP6EAAEEAAYEAAEEc/6EAAEEcwYEAAEEAP6EAAEEAAYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFx/6EAAEFxwYEAAEEAP6E' + + 'AAEEAAYEAAEFx/6EAAEFxwYEAAEEAP6EAAEEAAYEAAEFx/6EAAEFxwYEAAEEAP6EAAEEAAYEAAEFx/6EAAEFxwYEAAEEAP6EAAEEAAYEAAEFx/6EAAEFxwYEAAEE6/6EAAEE6wYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYE' + + 'AAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEGOf6EAAEGOQYEAAEEc/6EAAEEcwYEAAEGOf6EAAEGOQYEAAEEc/6EAAEEcwYEAAEGOf6E' + + 'AAEGOQYEAAEEc/6EAAEEcwYEAAEGOf6EAAEGOQYEAAEEc/6EAAEEcwYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAECOf6EAAECOQYEAAECOf6EAAECOQYEAAECOf6EAAECOQYEAAECOf6EAAECOQYEAAECOf6EAAECOQYE' + + 'AAECOf6EAAECOQYEAAECOf6EAAECOQYEAAEBx/6EAAEBxwYEAAECOf6EAAECOQYEAAEBx/6EAAEBxwYEAAEF4f6EAAEF4QYEAAEDjf6EAAEDjQYsAAEEAP6EAAEEAAYEAAEBx/6EAAEBxwYEAAEFVv6EAAEFVgYEAAEEAP6EAAEEAAYEAAEEAP6EAAEEAAYEAAEEc/6E' + + 'AAEEcwYEAAEBuP6EAAEBxwcwAAEEc/6EAAEEcwYEAAEBx/6EAAEBxwYEAAEEc/6EAAEEcwYEAAEC2v6EAAECVQYEAAEEc/6EAAEEcwYEAAEDNP6EAAECrAYEAAEEc/6EAAEEcwYEAAEBx/6EAAEBxwYEAAEFtP6EAAEFxwcwAAEEYP6EAAEEcwYEAAEFx/6EAAEFxwYE' + + 'AAEEc/6EAAEEcwYEAAEFtP6EAAEFxwcwAAEEYP6EAAEEcwYEAAEE1f6EAAEE1QYEAAEFyf6EAAEFyQYEAAEEc/6EAAEEcwYEAAEGOf6EAAEGOQYEAAEEc/6EAAEEcwYEAAEGOf6EAAEGOQYEAAEEc/6EAAEEcwYEAAEGOf6EAAEGOQYEAAEEc/6EAAEEcwYEAAEIAP6E' + + 'AAEIAAcwAAEHjf6EAAEHjQYEAAEFx/6EAAEFxwYEAAECqv6EAAECqgYEAAEFx/6EAAEFxwYEAAECqv6EAAECqgYEAAEFx/6EAAEFxwYEAAECqv6EAAECqgYEAAEFVv6EAAEFVgYEAAEEAP6EAAEEAAYEAAEFVv6EAAEFVgYEAAEEAP6EAAEEAAYEAAEFVv6EAAEFVgYE' + + 'AAEEAP6EAAEEAAYEAAEFVv6EAAEFVgYEAAEEAP6EAAEEAAYEAAEFFP6EAAEE4wYEAAECbP6EAAECOQYEAAEFFP6EAAEE4wYEAAEDcP6EAAEDAAYEAAEE4/6EAAEE4wYEAAECOf6EAAECOQYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAEFx/6EAAEFxwYEAAEEc/6E' + + 'AAEEcwYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAEHjf6EAAEHjQYEAAEFx/6EAAEFxwYEAAEFVv6EAAEFVgYEAAEEAP6EAAEEAAYE' + + 'AAEFVv6EAAEFVgYEAAEE4/6EAAEE4wYEAAEEAP6EAAEEAAYEAAEE4/6EAAEE4wYEAAEEAP6EAAEEAAYEAAEE4/6EAAEE4wYEAAEEAP6EAAEEAAYEAAEBx/6EAAEBxwYEAAEEc/6EAAEEcwYEAAEGEf6EAAEGEQYEAAEFQP6EAAEFQAYEAAEEc/6EAAEEcwYEAAEFQP6E' + + 'AAEFQAYEAAEEc/6EAAEEcwYEAAEFx/6EAAEFxwYEAAEFx/6EAAEFxwYEAAEEAP6EAAEEAAYEAAEFx/6EAAEFxwYEAAEGev6EAAEGegYEAAEFQP6EAAEFQAYEAAEEc/6EAAEEcwYEAAEEdP6EAAEEdAYEAAEFVv6EAAEFVgYEAAEGBf6EAAEGBQYEAAEE1f6EAAEE1QYE' + + 'AAEE4/6EAAEE4wYEAAEEc/6EAAEEcwYEAAEGOf6EAAEGOQYEAAEE/v6EAAEE/gYEAAEHDP6EAAEHDAYEAAEBx/6EAAEBxwYEAAECOf6EAAECOQYEAAEFVv6EAAEFVgYEAAEEAP6EAAEEAAYEAAEBx/6EAAEBxwYEAAEEAP6EAAEEAAYEAAEHIP6EAAEHIAYEAAEFx/6E' + + 'AAEFxwYEAAEEc/6EAAEEcwYEAAEGOf6EAAEGOQYEAAEG3P6EAAEG3AYEAAEFP/6EAAEFPwYEAAEG8v6EAAEG8gYEAAEFV/6EAAEFVwYEAAEGCf6EAAEGCQYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEFVv6EAAEFVgYEAAEEAP6EAAEEAAYEAAEE8v6EAAEE8gYE' + + 'AAEDC/6EAAEDCwYEAAECOf6EAAECOQYEAAEE4/6EAAEE4wYEAAECOf6EAAECOQYEAAEE4/6EAAEE4wYEAAEG1f6EAAEG1QYEAAEFW/6EAAEFWwYEAAEF+/6EAAEF+wYEAAEFx/6EAAEFxwYEAAEGLv6EAAEGLgYEAAEEAP6EAAEEAAYEAAEE4/6EAAEE4wYEAAEEAP6E' + + 'AAEEAAYEAAEE4/6EAAEE4wYEAAEE4/6EAAEE4wYEAAEEc/6EAAEEcwYEAAEDq/6EAAEDqwYEAAED5f6EAAED5QYEAAEEc/6EAAEEcwYEAAEKqv6EAAEKqgcwAAEJx/6EAAEJxwYEAAEIZP6EAAEIZAYEAAEIf/6EAAEIfwYEAAEGqv6EAAEGqgYEAAEDnP6EAAEDnAYE' + + 'AAEJx/6EAAEJxwYEAAEHjv6EAAEHjgYEAAEGK/6EAAEGKwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAECOf6EAAECOQYEAAEBx/6EAAEBxwYEAAEGOf6EAAEGOQYEAAEEc/6EAAEEcwYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAEIAP6E' + + 'AAEIAAcwAAEHHf6EAAEHHQYEAAEGOf6EAAEGOQYEAAEEc/6EAAEEcwYEAAEGOf6EAAEGOQYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEAP6EAAEEAAYEAAEGOf6EAAEGOQYEAAEEZP6EAAEEZAYEAAEGOf6EAAEGOQYEAAEEZP6EAAEEZAYEAAEE4/6EAAEE4wYE' + + 'AAEEXP6EAAEEXAYEAAEBx/6EAAEBxwYEAAEKqv6EAAEKqgcwAAEJx/6EAAEJxwYEAAEIZP6EAAEIZAYEAAEGOf6EAAEGOQYEAAEEc/6EAAEEcwYEAAEIRv6EAAEIRgYEAAEE8v6EAAEE8gYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6E' + + 'AAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAECOf6EAAECOQYEAAECOf6EAAECOQYEAAECOf6EAAECOQYEAAECOf6EAAECOQYEAAEGOf6EAAEGOQYEAAEEc/6EAAEEcwYE' + + 'AAEGOf6EAAEGOQYEAAEEc/6EAAEEcwYEAAEFx/6EAAEFxwYEAAECqv6EAAECqgYEAAEFx/6EAAEFxwYEAAECqv6EAAECqgYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAEE4/6EAAEE4wYEAAECOf6EAAECOQYEAAEEXP6E' + + 'AAEEXAYEAAEDfv6EAAEDfgYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAEFpv6EAAEFpgYEAAEFdP6EAAEFdAYEAAEE1v6EAAEE1gYEAAEEhv6EAAEEhgYEAAEE4/6EAAEE4wYEAAEEAP6EAAEEAAYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYE' + + 'AAEEc/6EAAEEcwYEAAEGOf6EAAEGOQYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEAP6EAAEEAAYEAAECy/6EAAECywYEAAEFev6EAAEFegYEAAEC8P6EAAEC8AYEAAEBx/6EAAEBxwYEAAEHGP6EAAEHGAYEAAEHGP6EAAEHGAYEAAEFVv6EAAEFVgYEAAEFx/6E' + + 'AAEFxwYEAAEEAP6EAAEEAAYEAAEEc/6EAAEEcwYEAAEE4/6EAAEE4wYEAAEEAP6EAAEEAAYEAAEEAP6EAAEEAAYEAAEEpf6EAAEEpQYEAAEDoP6EAAEDoAYEAAEFVv6EAAEFVgYEAAEFx/6EAAEFxwYEAAEFWP6EAAEFWAYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYE' + + 'AAEEAP6EAAEEAAYEAAEBx/6EAAEBxwYEAAEF5v6EAAEF5gYEAAEEc/6EAAEEcwYEAAEFx/6EAAEFxwYEAAECqv6EAAECqgYEAAEFVv6EAAEFVgYEAAEEAP6EAAEEAAYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAEEAP6E' + + 'AAEEAAYEAAEEAP6EAAEEAAYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAEF6f6EAAEF6QYEAAEDq/6EAAEDqwYEAAEDq/6EAAEDqwYEAAEFDf6EAAEFDQYEAAEED/6EAAEEDwYEAAECOf6EAAECOQYEAAEEc/6EAAEEcwYE' + + 'AAEEc/6EAAEEcwYEAAEEeP6EAAEEeAYEAAEEAv6EAAEEAgYEAAEE7/6EAAEE7wYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAEBx/6EAAEBxwYEAAEBx/6EAAEBxwYEAAEC2f6EAAEC2QYEAAECnv6EAAECngYEAAECbv6EAAECbgYEAAEBx/6E' + + 'AAEBxwYEAAEElP6EAAEEkwYEAAEGqv6EAAEGqgYEAAEGqv6EAAEGqgYEAAEGqv6EAAEGqgYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAEEbP6EAAEEbAYEAAEEc/6EAAEEcwYEAAEGU/6EAAEGUwYEAAEGP/6EAAEGPwYEAAEEZv6EAAEEZgYEAAECqv6EAAECqgYE' + + 'AAECqv6EAAECqgYEAAECqv6EAAECqgYEAAECqv6EAAECqgYEAAECqv6EAAECqgYEAAECqv6EAAECqgYEAAECqv6EAAECqgYEAAEEVf6EAAEEVQYEAAEEVf6EAAEEVQYEAAEEAP6EAAEEAAYEAAEBx/6EAAEBxwYEAAECFP6EAAECFAYEAAEBx/6EAAEBxwYEAAECy/6E' + + 'AAECywYEAAECOf6EAAECOQYEAAECOf6EAAECOQYEAAEEc/6EAAEEcwYEAAEEjP6EAAEEjAYEAAEEYP6EAAEEcwYEAAEEAP6EAAEEAAYEAAEFx/6EAAEFxwYEAAEEAP6EAAEEAAYEAAEEKP6EAAEEKAYEAAEEAP6EAAEEAAYEAAEEVP6EAAEEVAYEAAEEXP6EAAEEXAYE' + + 'AAEEXP6EAAEEXAYEAAEEAP6EAAEEAAYEAAEEAP6EAAEEAAYEAAEEAP6EAAEEAAYEAAEEAP6EAAEEAAYEAAEGOf6EAAEGOQYEAAEEQP6EAAEEQAYEAAEED/6EAAEEDwYEAAEEeP6EAAEEeAYEAAEEa/6EAAEEawYEAAEDLv6EAAEDLgYEAAEEAP6EAAEEAAYEAAEDO/6E' + + 'AAEDOwYEAAEEc/6EAAEEcwYEAAEEAP6EAAEEAAYEAAEEAP6EAAEEAAYEAAEHt/6EAAEHtwYEAAEHQP6EAAEHQAYEAAEIC/6EAAEICwYEAAEFs/6EAAEFswYEAAEDb/6EAAEDbwYEAAEFwP6EAAEFwAYEAAEGHP6EAAEGHAYEAAEFSv6EAAEFSgYEAAEFD/6EAAEFDwYE' + + 'AAED4v6EAAED4gYEAAEEOP6EAAEEOAYEAAEFf/6EAAEFfwYEAAEFf/6EAAEFfwYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAECOf6EAAECOQYEAAEGqv6EAAEGqgYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAECqv6EAAECqgYEAAECqv6EAAECqgYEAAEEAP6E' + + 'AAEEAAYEAAECOf6EAAECOQYEAAEEAP6EAAEEAAYEAAEEc/6EAAEEcwYEAAEDC/6EAAEDCwYEAAEEdP6EAAEEdAYEAAEGSf6EAAEGSQYEAAEBx/6EAAEBxwYEAAEBx/6EAAEBxwYEAAEEc/6EAAEEcwYEAAEEYP6EAAEEcwYEAAEEjP6EAAEEjAYEAAEEc/6EAAEEcwYE' + + 'AAEEc/6EAAEEcwYEAAECOf6EAAECOQYEAAEFtP6EAAEFxwcwAAEEAP6EAAEEAAYEAAEBx/6EAAEBxwYEAAEGqv6EAAEGqgYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAECqv6EAAECqgYEAAEEAP6EAAEEAAYEAAEDGP6EAAEDGAYEAAEEAP6EAAEEAAYEAAEEAP6E' + + 'AAEEAAYEAAEEAP6EAAEEAAYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAEEc/6EAAEEcwYEAAEDq/6EAAEDqwYEAAEDq/6EAAEDqwYEAAEFNP6EAAEFNAYEAAEBx/6EAAEBxwYEAAEEAP6EAAEEAAYEAAEBx/6EAAEBxwYEAAEEc/6EAAEEcwYE' + + 'AAEEXP6EAAEEXAYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFx/6EAAEFxwYEAAEEAP6EAAEEAAYEAAEFx/6EAAEFxwYEAAEEc/6E' + + 'AAEEcwYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYE' + + 'AAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEE4/6EAAEE4wYEAAECOf6EAAECOQYEAAEGOf6EAAEGOQYEAAEEc/6EAAEEcwYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAEFx/6E' + + 'AAEFxwYEAAEEc/6EAAEEcwYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAECOf6EAAECOQYEAAEBx/6EAAEBxwYEAAECOf6EAAECOQYEAAEBx/6EAAEBxwYEAAEFVv6EAAEFVgYE' + + 'AAEEAP6EAAEEAAYEAAEFVv6EAAEFVgYEAAEEAP6EAAEEAAYEAAEFVv6EAAEFVgYEAAEEAP6EAAEEAAYEAAEEc/6EAAEEcwYEAAEBx/6EAAEBxwYEAAEEc/6EAAEEcwYEAAEBx/6EAAEBxwYEAAEEc/6EAAEEcwYEAAEBx/6EAAEBxwYEAAEEc/6EAAEEcwYEAAEBx/6E' + + 'AAEBxwYEAAEGqv6EAAEGqgYEAAEGqv6EAAEGqgYEAAEGqv6EAAEGqgYEAAEGqv6EAAEGqgYEAAEGqv6EAAEGqgYEAAEGqv6EAAEGqgYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYE' + + 'AAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAEGOf6EAAEGOQYEAAEEc/6EAAEEcwYEAAEGA/6EAAEGAwcwAAEEc/6EAAEEcwYEAAEGOf6EAAEGOQYEAAEEc/6EAAEEcwYEAAEGOf6EAAEGOQYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6E' + + 'AAEFVgYEAAEEc/6EAAEEcwYEAAEFx/6EAAEFxwYEAAECqv6EAAECqgYEAAEFx/6EAAEFxwYEAAECqv6EAAECqgYEAAEFx/6EAAEFxwYEAAECqv6EAAECqgYEAAEFx/6EAAEFxwYEAAECqv6EAAECqgYEAAEFVv6EAAEFVgYEAAEEAP6EAAEEAAYEAAEFVv6EAAEFVgYE' + + 'AAEEAP6EAAEEAAYEAAEFVv6EAAEFVgYEAAEEAP6EAAEEAAYEAAEFVv6EAAEFVgYEAAEEAP6EAAEEAAYEAAEFVv6EAAEFVgYEAAEEAP6EAAEEAAYEAAEE4/6EAAEE4wYEAAECOf6EAAECOQYEAAEE4/6EAAEE4wYEAAECOf6EAAECOQYEAAEE4/6EAAEE4wYEAAECOf6E' + + 'AAECOQYEAAEE4/6EAAEE4wYEAAECOf6EAAECOQYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYE' + + 'AAEFVv6EAAEFVgYEAAEEAP6EAAEEAAYEAAEFVv6EAAEFVgYEAAEEAP6EAAEEAAYEAAEHjf6EAAEHjQYEAAEFx/6EAAEFxwYEAAEHjf6EAAEHjQYEAAEFx/6EAAEFxwYEAAEHjf6EAAEHjQYEAAEFx/6EAAEFxwYEAAEHjf6EAAEHjQYEAAEFx/6EAAEFxwYEAAEHjf6E' + + 'AAEHjQYEAAEFx/6EAAEFxwYEAAEFVv6EAAEFVgYEAAEEAP6EAAEEAAYEAAEFVv6EAAEFVgYEAAEEAP6EAAEEAAYEAAEFVv6EAAEFVgYEAAEEAP6EAAEEAAYEAAEE4/6EAAEE4wYEAAEEAP6EAAEEAAYEAAEE4/6EAAEE4wYEAAEEAP6EAAEEAAYEAAEE4/6EAAEE4wYE' + + 'AAEEAP6EAAEEAAYEAAEEc/6EAAEEcwYEAAECOf6EAAECOQYEAAEFx/6EAAEFxwYEAAEEAP6EAAEEAAYEAAEEc/6EAAEEcwYEAAEBx/6EAAEBxwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6E' + + 'AAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYE' + + 'AAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6E' + + 'AAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEEc/6EAAEEcwYEAAECOf6EAAECOQYEAAEBx/6EAAEBxwYEAAECOf6EAAECOQYE' + + 'AAEBx/6EAAEBxwYEAAEGOf6EAAEGOQYEAAEEc/6EAAEEcwYEAAEGOf6EAAEGOQYEAAEEc/6EAAEEcwYEAAEGOf6EAAEGOQYEAAEEc/6EAAEEcwYEAAEGOf6EAAEGOQYEAAEEc/6EAAEEcwYEAAEGOf6EAAEGOQYEAAEEc/6EAAEEcwYEAAEGOf6EAAEGOQYEAAEEc/6E' + + 'AAEEcwYEAAEGOf6EAAEGOQYEAAEEc/6EAAEEcwYEAAEG3P6EAAEG3AYEAAEFP/6EAAEFPwYEAAEG3P6EAAEG3AYEAAEFP/6EAAEFPwYEAAEG3P6EAAEG3AYEAAEFP/6EAAEFPwYEAAEG3P6EAAEG3AYEAAEFP/6EAAEFPwYEAAEG3P6EAAEG3AYEAAEFP/6EAAEFPwYE' + + 'AAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAEG1f6EAAEG1QYEAAEFW/6EAAEFWwYEAAEG1f6EAAEG1QYEAAEFW/6EAAEFWwYEAAEG1f6EAAEG1QYEAAEFW/6EAAEFWwYEAAEG1f6EAAEG1QYEAAEFW/6EAAEFWwYEAAEG1f6E' + + 'AAEG1QYEAAEFW/6EAAEFWwYEAAEFVv6EAAEFVgYEAAEEAP6EAAEEAAYEAAEFVv6EAAEFVgYEAAEEAP6EAAEEAAYEAAEFVv6EAAEFVgYEAAEEAP6EAAEEAAYEAAEFVv6EAAEFVgYEAAEEAP6EAAEEAAYEAAED6/6EAAED6wYEAAEEsP6EAAEEsAYEAAEEc/6EAAEEcwYE' + + 'AAEBx/6EAAEBxwYEAAEEc/6EAAEEcwYEAAEFVv6EAAEFVgYEAAEFx/6EAAEFxwYEAAEEc/6EAAEEcwYEAAECOf6EAAECOQYEAAEEAP6EAAEEAAYEAAEFMP6EAAEFMAYEAAEBx/6EAAEBxwYEAAIAFgAkAD0AAABEAF0AGgCCAJgANACaALgASwC6AXoAagF+AYEBKwGG' + + 'AZYBLwGfAZ8BQAGkAbsBQQHCAdkBWQHcAesBcQHwAfEBgQH0AnEBgwWMBboCAQXtBogCMAaKBuMCzAg8CDwDJgidCJ0DJwi/CMUDKAjQCNADLwjTCNMDMAnuCe4DMQACAAEDHgMkAAAABwAAAB4AAQAkAAEAKgAAADAAAQA2AAEAPAAAAEIAAQJYAAAAAQJYBJwAAQFy' + + 'BQAAAQFy/5wAAQJYBJwAAQJYBLAAAQFe/4gAAUWWRMYAA0XcAAwC3REwETYRPBFCEUgRThFUEVoRYBFmEWwRchF4EX4RhBGKEZARlhGcEaIRqBGuEbQRuhHAEcYRzBHSEdgR3hHkEeoR8BH2EfwSAhIIEg4SFBIaEiASJhIsEjISOBI+EkQSShJQElYSXBJiEmgSbhJ0' + + 'EnoSgBKGEowSkhKYEp4SpBKqErASthK8EsISyBLOEtQS2hLgEuYS7BLyEvgS/hMEEwoTEBMWExwTIhMoEy4TNBM6E0ATRhNME1ITWBNeE2QTahNwE3YTfBOCE4gTjhOUE5oToBOmE6wTshO4E74TxBPKE9AT1hPcE+IT6BPuE/QT+hQAFAYUDBQSFBgUHhQkFCoUMBQ2' + + 'FDwUQhRIFE4UVBRaFGAUZhRsFHIUeBR+FIQUihSQFJYUnBSiFKgUrhS0FLoUwBTGFMwU0hTYFN4U5BTqFPAU9hT8FQIVCBUOFRQVGhUgFSYVLBUyFTgVPhVEFUoVUBVWFVwVYhVoFW4VdBV6FYAVhhWMFZIVmBWeFaQVqhWwFbYVvBXCFcgVzhXUFdoV4BXmFewV8hX4' + + 'Ff4WBBYKFhAWFhYcFiIWKBYuFjQWOhZAFkYWTBZSFlgWXhZkFmoWcBZ2FnwWghaIFo4WlBaaFqAWphasFrIWuBa+FsQWyhbQFtYW3BbiFugW7hb0FvoXABcGFwwXEhcYFx4XJBcqFzAXNhc8F0IXSBdOF1QXWhdgF2YXbBdyF3gXfheEF4oXkBeWF5wXoheoF64XtBe6' + + 'F8AXxhfMF9IX2BfeF+QX6hfwF/YX/BgCGAgYDhgUGBoYIBgmGCwYMhg4GD4YRBhKGFAYVhhcGGIYaBhuGHQYehiAGIYYjBiSGJgYnhikGKoYsBi2GLwYwhjIGM4Y1BjaGOAY5hjsGPIY+Bj+GQQZChkQGRYZHBkiGSgZLhk0GToZQBlGGUwZUhlYGV4ZZBlqGXAZdhl8' + + 'GYIZiBmOGZQZmhmgGaYZrBmyGbgZvhnEGcoZ0BnWGdwZ4hnoGe4Z9Bn6GgAaBhoMGhIaGBoeGiQaKhowGjYaPBpCGkgaThpUGloaYBpmGmwachp4Gn4ahBqKGpAalhqcGqIaqBquGrQauhrAGsYazBrSGtga3hrkGuoa8Br2GvwbAhsIGw4bFBsaGyAbJhssGzIbOBs+' + + 'G0QbShtQG1YbXBtiG2gbbht0G3obgBuGG4wbkhuYG54bpBuqG7Abthu8G8IbyBvOG9Qb2hvgG+Yb7BvyG/gb/hwEHAocEBwWHBwcIhwoHC4cNBw6HEAcRhxMHFIcWBxeHGQcahxwHHYcfByCHIgcjhyUHJocoBymHKwcshy4HL4cxBzKHNAc1hzcHOIc6BzuHPQc+h0A' + + 'HQYdDB0SHRgdHh0kHSodMB02HTwdQh1IHU4dVB1aHWAdZh1sHXIdeB1+HYQdih2QHZYdnB2iHagdrh20HbodwB3GHcwd0h3YHd4d5B3qHfAd9h38HgIeCB4OHhQeGh4gHiYeLB4yHjgePh5EHkoeUB5WHlweYh5oHm4edB56HoAehh6MHpIemB6eHqQeqh6wHrYevB7C' + + 'Hsgezh7UHtoe4B7mHuwe8h74Hv4fBB8KHxAfFh8cHyIfKB8uHzQfOh9AH0YfTB9SH1gfXh9kH2ofcB92H3wfgh+IH44flB+aH6Afph+sH7IfuB++H8Qfyh/QH9Yf3B/iH+gf7h/0H/ogACAGIAwgEiAYIB4gJCAqIDAgNiA8IEIgSCBOIFQgWiBgIGYgbCByIHggfiCE' + + 'IIogkCCWIJwgoiCoIK4gtCC6IMAgxiDMINIg2CDeIOQg6iDwIPYg/CECIQghDiEUIRohICEmISwhMiE4IT4hRCFKIVAhViFcIWIhaCFuIXQheiGAIYYhjCGSIZghniGkIaohsCG2IbwhwiHIIc4h1CHaIeAh5iHsIfIh+CH+IgQiCiIQIhYiHCIiIigiLiI0IjoiQCJG' + + 'IkwiUiJYIl4iZCJqInAidiJ8IoIiiCKOIpQimiKgIqYirCKyIrgiviLEIsoi0CLWItwi4iLoIu4i9CL6IwAjBiMMIxIjGCMeIyQjKiMwIzYjPCNCI0gjTiNUI1ojYCNmI2wjciN4I34jhCOKI5AjliOcI6IjqCOuI7QjuiPAI8YjzCPSI9gj3iPkI+oj8CP2I/wkAiQI' + + 'JA4kFCQaJCAkJiQsJDIkOCQ+JEQkSiRQJFYkXCRiJGgkbiR0JHokgCSGJIwkkiSYJJ4kpCSqJLAktiS8JMIkyCTOJNQk2iTgJOYk7CTyJPgk/iUEJQolECUWJRwlIiUoJS4lNCU6JUAlRiVMJVIlWCVeJWQlaiVwJXYlfCWCJYgljiWUJZoloCWmJawlsiW4Jb4lxCXK' + + 'JdAl1iXcJeIl6CXuJfQl+iYAJgYmDCYSJhgmHiYkJiomMCY2JjwmQiZIJk4mVCZaJmAmZiZsJnImeCZ+JoQmiiaQJpYmnCaiJqgmria0JromwCbGJswm0ibYJt4m5CbqJvAm9ib8JwInCCcOJxQnGicgJyYnLCcyJzgnPidEJ0onUCdWJ1wnYidoJ24ndCd6J4AnhieM' + + 'J5InmCeeJ6QnqiewJ7YnvCfCJ8gnzifUJ9on4CfmJ+wn8if4J/4oBCgKKBAoFigcKCIoKCguKDQoOihAKEYoTChSKFgoXihkKGoocCh2KHwogiiIKI4olCiaKKAopiisKLIouCi+KMQoyijQKNYo3CjiKOgo7ij0KPopACkGKQwpEikYKR4pJCkqKTApNik8KUIpSClO' + + 'KVQpWilgKWYpbClyKXgpfimEKYopkCmWKZwpoimoKa4ptCm6KcApxinMKdIp2CneKeQp6inwKfYp/CoCKggqDioUKhoqIComKiwqMio4Kj4qRCpKKlAqVipcKmIqaCpuKnQqeiqAKoYqjCqSKpgqniqkKqoqsCq2KrwqwirIKs4q1CraKuAq5irsKvIq+Cr+KwQrCisQ' + + 'KxYrHCsiKygrLis0KzorQCtGK0wrUitYK14rZCtqK3Ardit8K4IriCuOK5QrmiugK6YrrCuyK7grvivEK8or0CvWK9wr4ivoK+4r9Cv6LAAsBiwMLBIsGCweLCQsKiwwLDYsPCxCLEgsTixULFosYCxmLGwscix4LH4shCyKLJAsliycLKIsqCyuLLQsuizALMYszCzS' + + 'LNgs3izkLOos8Cz2LPwtAi0ILQ4tFC0aLSAtJi0sLTItOC0+LUQtSi1QLVYtXC1iLWgtbi10LXotgC2GLYwtki2YLZ4tpC2qLbAtti28LcItyC3OLdQt2i3gLeYt7C3yLfgt/i4ELgouEC4WLhwuIi4oLi4uNC46LkAuRi5MLlIuWC5eLmQuai5wLnYufC6CLoguji6U' + + 'LpouoC6mLqwusi64Lr4uxC7KLtAu1i7cLuIu6C7uLvQu+i8ALwYvDC8SLxgvHi8kLyovMC82LzwvQi9IL04vVC9aL2AvZi9sL3IveC9+L4Qvii+QL5YvnC+iL6gvri+0L7ovwC/GL8wv0i/YL94v5C/qL/Av9i/8MAIwCDAOMBQwGjAgMCYwLDAyMDgwPjBEMEowUDBW' + + 'MFwwYjBoMG4wdDB6MIAwhjCMMJIwmDCeMKQwqjCwMLYwvDDCMMgwzjDUMNow4DDmMOww8jD4MP4xBDEKMRAxFjEcMSIxKDEuMTQxOjFAMUYxTDFSMVgxXjFkMWoxcDF2MXwxgjGIMY4xlDGaMaAxpjGsMbIxuDG+McQxyjHQMdYx3DHiMegx7jH0MfoyADIGMgwyEjIY' + + 'Mh4yJDIqMjAyNjI8MkIySDJOMlQyWjJgMmYybDJyMngyfjKEMooykDKWMpwyojKoMq4ytDK6MsAyxjLMMtIy2DLeMuQy6jLwMvYy/DMCMwgzDjMUMxozIDMmMywzMjM4Mz4zRDNKM1AzVjNcM2IzaDNuM3QzejOAM4YzjDOSM5gznjOkM6ozsDO2M7wzwjPIM84z1DPa' + + 'M+Az5jPsM/Iz+DP+NAQ0CjQQNBY0HDQiNCg0LjQ0NDo0QDRGNEw0UjRYNF40ZDRqNHA0djR8NII0iDSONJQ0mjSgNKY0rDSyNLg0vjTENMo00DTWNNw04jToNO409DT6NQA1BjUMNRI1GDUeNSQ1KjUwNTY1PDVCNUg1TjVUNVo1YDVmNWw1cjV4NX41hDWKNZA1ljWc' + + 'NaI1qDWuNbQ1ujXANcY1zDXSNdg13jXkNeo18DX2Nfw2AjYINg42FDYaNiA2JjYsNjI2ODY+NkQ2SjZQNlY2XDZiNmg2bjZ0Nno2gDaGNow2kjaYNp42pDaqNrA2tja8NsI2yDbONtQ22jbgNuY27DbyNvg2/jcENwo3EDcWNxw3IjcoNy43NDc6N0A3RjdMN1I3WDde' + + 'N2Q3ajdwN3Y3fDeCN4g3jjeUN5o3oDemN6w3sje4N743xDfKN9A31jfcN+I36DfuN/Q3+jgAOAY4DDgSOBg4HjgkOCo4MDg2ODw4QjhIOE44VDhaOGA4ZjhsOHI4eDh+OIQ4ijiQOJY4nDiiOKg4rji0OLo4wDjGOMw40jjYON445DjqOPA49jj8OQI5CDkOORQ5Gjkg' + + 'OSY5LDkyOTg5PjlEOUo5UDlWOVw5YjloOW45dDl6OYA5hjmMOZI5mDmeOaQ5qjmwObY5vDnCOcg5zjnUOdo54DnmOew58jn4Of46BDoKOhA6FjocOiI6KDouOjQ6OjpAOkY6TDpSOlg6XjpkOmo6cDp2Onw6gjqIOo46lDqaOqA6pjqsOrI6uDq+OsQ6yjrQOtY63Dri' + + 'Oug67jr0Ovo7ADsGOww7EjsYOx47JDsqOzA7Njs8O0I7SDtOO1Q7WjtgO2Y7bDtyO3g7fjuEO4o7kDuWO5w7ojuoO647tDu6O8A7xjvMO9I72DveO+Q76jvwO/Y7/DwCPAg8DjwUPBo8IDwmPCw8Mjw4PD48RDxKPFA8VjxcPGI8aDxuPHQ8ejyAPIY8jDySPJg8njyk' + + 'PKo8sDy2PLw8wjzIPM481DzaPOA85jzsPPI8+Dz+PQQ9Cj0QPRY9HD0iPSg9Lj00PTo9QD1GPUw9Uj1YPV49ZD1qPXA9dj18PYI9iD2OPZQ9mj2gPaY9rD2yPbg9vj3EPco90D3WPdw94j3oPe499D36PgA+Bj4MPhI+GD4ePiQ+Kj4wPjY+PD5CPkg+Tj5UPlo+YD5m' + + 'Pmw+cj54Pn4+hD6KPpA+lj6cPqI+qD6uPrQ+uj7APsY+zD7SPtg+3j7kPuo+8D72Pvw/Aj8IPw4/FD8aPyA/Jj8sPzI/OD8+P0Q/Sj9QP1Y/XD9iP2g/bj90P3o/gD+GP4w/kj+YP54/pD+qP7A/tj+8P8I/yD/OP9Q/2j/gP+Y/7D/yP/g//kAEQApAEEAWQBxAIkAo' + + 'QC5ANEA6QEBARkBMQFJAWEBeQGRAakBwQHZAfECCQIhAjkCUQJpAoECmQKxAskC4QL5AxEDKQNBA1kDcQOJA6EDuQPRA+kEAQQZBDEESQRhBHkEkQSpBMEE2QTxBQkFIQU5BVEFaQWBBZkFsQXJBeEF+QYRBikGQQZZBnEGiQahBrkG0QbpBwEHGQcxB0kHYQd5B5EHq' + + 'QfBB9kH8QgJCCEIOQhRCGkIgQiZCLEIyQjhCPkJEQkpCUEJWQlxCYkJoQm5CdEJ6QoBChkKMQpJCmEKeQqRCqkKwQrZCvELCQshCzkLUQtpC4ELmQuxC8kL4Qv5DBEMKQxBDFkMcQyJDKEMuQzRDOkNAQ0ZDTENSQ1hDXkNkQ2pDcEN2Q3xDgkOIQ45DlEOaQ6BDpkOs' + + 'Q7JDuEO+Q8RDykPQQ9ZD3EPiQ+hD7kP0Q/pEAEQGRAxEEkQYRB5EJEQqRDBENkQ8REJESERORFREWkRgRGZEbERyRHhEfkSERIpEkESWRJxEokSoRK5EtAABAqj/fgABA+gGBAABAqgGBAABAoD/fgABA+gGBAABAoAGBAABAwz/fgABBQAGBAABAwwGBAABAoD/fgAB' + + 'A+gGBAABAoAGBAABAuT/fgABBLAGBAABArwGBAABAqj/fgABA+gGBAABAqgGBAABAyD/fgABBQAGBAABAyAGBAABAtr/fgABBRQGBAABAtoGBAABARj/fgABAZAGBAABARgGBAABAcz/fgABA3AGBAABApQGBAABAqj/fgABA+gGBAABAqgGBAABAkT/fgABA4QGBAAB' + + 'AkQGBAABA1z/fgABBgQGBAABA1wGBAABAtr/fgABBRQGBAABAtoGBAABAyD/fgABBQAGBAABAyAGBAABAmz/fgABBJwGBAABAmwGBAABAlj/fgABBTwGBAABAyAGBAABAqj/fgABA+gGBAABAqgGBAABArz/fgABBHQGBAABArwGBAABAmz/fgABBJwGBAABAmwGBAAB' + + 'Atr/fgABBRQGBAABAtoGBAABAqj/fgABA+gGBAABAqgGBAABA8r/fgABB2wGBAABA8oGBAABAqj/fgABA+gGBAABAqgGBAABAqj/fgABA+gGBAABAqgGBAABAlj/fgABBTwGBAABAyAGBAABAhz/fgABA4QEsAABAhwEsAABAkT/fgABA4QGBAABAkQGBAABAhz/fgAB' + + 'A4QEsAABAhwEsAABAhz/fgABA4QEsAABAhwEsAABAkT/fgABA4QGBAABAkQGBAABARj/fgABAZAGBAABARgGBAABAhz95AABA9QEsAABAfQEsAABAhz/fgABA4QEsAABAhwEsAABAOb/fgABAUAGBAABAOYGLAABAIz95AABAUAGBAABAOYGLAABAhz/fgABA4QEsAAB' + + 'AhwEsAABAPD/fgABAUAGBAABAPAGLAABA1z/fgABBgQGBAABA1wGBAABAkT/fgABA4QGBAABAkQGBAABAjD/fgABA4QEsAABAjAEsAABAlj95AABA4QEsAABAlgEsAABAfT95AABA9QEsAABAfQEsAABAPD/fgABAUAGBAABAPAGLAABAfT/fgABA0gEsAABAfQEsAAB' + + 'AXz/fgABAcwFyAABAQQFyAABAhz/fgABA4QEsAABAhwEsAABAfT/fgABA0gEsAABAfQEsAABAuT/fgABBLAGBAABArwGBAABAfT/fgABA0gEsAABAfQEsAABAcz95AABA9QEsAABAfQEsAABAfT/fgABA0gEsAABAfQEsAABAqj/fgABA+gGBAABAqgGBAABAqj/fgAB' + + 'A+gGBAABAqgGBAABAqj/fgABA+gGBAABAqgGBAABAqj/fgABA+gGBAABAqgGBAABAqj/fgABA+gGBAABAqgGBAABAqj/fgABA+gGBAABAqgGBAABBCT/fgABB1gGBAABBRQGBAABAwz95AABBQAGBAABAwwGBAABAuT/fgABBLAGBAABArwGBAABAuT/fgABBLAGBAAB' + + 'ArwGBAABAuT/fgABBLAGBAABArwGBAABAuT/fgABBLAGBAABArwGBAABARj/fgABAZAGBAABARgGBAABARj/fgABAZAGBAABARgGBAABARj/fgABAZAGBAABARgGBAABARj/fgABAZAGBAABARgGBAABAoD/fgABA+gGBAABAoAGBAABAtr/fgABBRQGBAABAtoGBAAB' + + 'AyD/fgABBQAGBAABAyAGBAABAyD/fgABBQAGBAABAyAGBAABAyD/fgABBQAGBAABAyAGBAABAyD/fgABBQAGBAABAyAGBAABAyD/fgABBQAGBAABAyAGBAABAyD/fgABBQAGBAABAyAGBAABAtr/fgABBRQGBAABAtoGBAABAtr/fgABBRQGBAABAtoGBAABAtr/fgAB' + + 'BRQGBAABAtoGBAABAtr/fgABBRQGBAABAtoGBAABAqj/fgABA+gGBAABAqgGBAABAor/fgABBGAE7AABAiYGLAABAlj/fgABBTwGBAABAyAGBAABAib/fgABA8AE7AABAcwGLAABAhz/fgABA4QEsAABAhwEsAABAib/fgABA8AE7AABAcwGLAABAib/fgABA8AE7AAB' + + 'AcwGLAABAib/fgABA8AE7AABAcwGLAABAib/fgABA8AE7AABAcwGLAABA1z/fgABBgQGBAABA1wGBAABAib95AABA1wEsAABAiYEsAABAkT/fgABA4QGBAABAkQGBAABAkT/fgABA4QGBAABAkQGBAABAkT/fgABA4QGBAABAkQGBAABAkT/fgABA4QGBAABAkQGBAAB' + + 'ARj/fgABAZAGBAABARgGBAABARj/fgABAZAGBAABARgGBAABARj/fgABAZAGBAABARgGBAABARj/fgABAZAGBAABARgGBAABAlj/fgABBTwGBAABAyAGBAABAib/fgABA8AE7AABAcwGLAABAkT/fgABA4QGBAABAkQGBAABAkT/fgABA4QGBAABAkQGBAABAkT/fgAB' + + 'A4QGBAABAkQGBAABAkT/fgABA4QGBAABAkQGBAABAkT/fgABA4QGBAABAkQGBAABAmz/fgABBJwGBAABAmwGBAABAkT/fgABA4QGBAABAkQGBAABAkT/fgABA4QGBAABAkQGBAABAkT/fgABA4QGBAABAkQGBAABAkT/fgABA4QGBAABAkQGBAABAZD95AABA+gE7AAB' + + 'AggGLAABAlj95AABA4QEsAABAlgEsAABAZD95AABA+gE7AABAggGLAABAqj/fgABA+gGBAABAqgGBAABAhz/fgABA4QEsAABAhwEsAABAqj/fgABA+gGBAABAqgGBAABAhz/fgABA4QEsAABAhwEsAABAqj95AABA+gGBAABAqgGBAABAfT95AABA9QEsAABAfQEsAAB' + + 'Awz/fgABBQAGBAABAwwGBAABAhz/fgABA4QEsAABAhwEsAABAwz/fgABBQAGBAABAwwGBAABAhz/fgABA4QEsAABAhwEsAABAwz/fgABBQAGBAABAwwGBAABAhz/fgABA4QEsAABAhwEsAABAwz/fgABBQAGBAABAwwGBAABAhz/fgABA4QEsAABAhwEsAABAoD/fgAB' + + 'A+gGBAABAoAGBAABAhz/fgABA4QEsAABAhwEsAABAoD/fgABA+gGBAABAoAGBAABAhz/fgABA4QEsAABAhwEsAABAuT/fgABBLAGBAABArwGBAABAkT/fgABA4QGBAABAkQGBAABAuT/fgABBLAGBAABArwGBAABAkT/fgABA4QGBAABAkQGBAABAuT/fgABBLAGBAAB' + + 'ArwGBAABAkT/fgABA4QGBAABAkQGBAABAqj/fgABA+gGBAABAqgGBAABAkT95AABA4QE7AABAkQEsAABAuT/fgABBLAGBAABArwGBAABAkT/fgABA4QGBAABAkQGBAABAyD/fgABBQAGBAABAyAGBAABAhz95AABA9QEsAABAfQEsAABAyD/fgABBQAGBAABAyAGBAAB' + + 'Ahz95AABA9QEsAABAfQEsAABAyD/fgABBQAGBAABAyAGBAABAhz95AABA9QEsAABAfQEsAABAyD95AABBQAGBAABAzQGBAABAhz95AABA9QEsAABAfQEsAABAtr/fgABBRQGBAABAtoGBAABAhz/fgABA4QEsAABAhwEsAABAtr/fgABBRQGBAABAtoGBAABAhz/fgAB' + + 'A4QEsAABAhwEsAABARj/fgABAZAGBAABARgGBAABARj/fgABAZAGBAABARgGBAABARj/fgABAZAGBAABARgGBAABARj/fgABAZAGBAABARgGBAABARj/fgABAZAGBAABARgGBAABARj/fgABAZAGBAABARgGBAABARj95AABAZAGBAABARgGBAABAOb95AABAUAGBAAB' + + 'APAGLAABARj/fgABAZAGBAABARgGBAABARj/fgABAZAGBAABARgGBAABArz/fgABBHQGBAABArwGBAABAcz95AABA9QEsAABAfQEsAABAcz/fgABA3AGBAABApQGBAABAIz95AABAUAGBAABAOYGLAABAqj95AABA+gGBAABAqgGBAABAhz95AABA9QEsAABAfQEsAAB' + + 'Ahz/fgABA4QEsAABAhwEsAABAkT/fgABA4QGBAABAkQGBAABAPD/fgABAUAGBAABAPAGLAABAmz95AABBLAGBAABAoAGBAABAOb95AABAUAGBAABAPAGLAABAkT/fgABA4QGBAABAkQGBAABAPD/fgABAUAGBAABAPAGLAABAkT/fgABA4QGBAABAkQGBAABAPD/fgAB' + + 'AUAGBAABAPAGLAABAkT/fgABA4QGBAABAkQGBAABAPD/fgABAUAGBAABAPAGLAABAtr/fgABBRQGBAABAtoGBAABAkT/fgABA4QGBAABAkQGBAABAtr95AABBRQGBAABAtAGBAABAkT95AABA4QE7AABAkQEsAABAtr/fgABBRQGBAABAtoGBAABAkT/fgABA4QGBAAB' + + 'AkQGBAABArz/fgABBHQGBAABArwGBAABAtr/fgABBRQGBAABAtoGBAABAkT95AABA4QE7AABAkQEsAABAyD/fgABBQAGBAABAyAGBAABAkT/fgABA4QGBAABAkQGBAABAyD/fgABBQAGBAABAyAGBAABAkT/fgABA4QGBAABAkQGBAABAyD/fgABBQAGBAABAyAGBAAB' + + 'AkT/fgABA4QGBAABAkQGBAABA/z/fgABB0QGBAABBEwGBAABA9T/fgABBvQE7AABA5gEsAABAqj/fgABA+gGBAABAqgGBAABAPD/fgABAUAGBAABAPAGLAABAuT95AABBLAGBAABAqgGBAABAPD95AABAlgE7AABAZAEsAABAqj/fgABA+gGBAABAqgGBAABAPD/fgAB' + + 'AUAGBAABAPAGLAABArz/fgABBHQGBAABArwGBAABAfT/fgABA0gEsAABAfQEsAABArz/fgABBHQGBAABArwGBAABAfT/fgABA0gEsAABAfQEsAABArz95AABBLAGBAABArEGBAABAfT95AABA9QEsAABAfQEsAABArz/fgABBHQGBAABArwGBAABAfT/fgABA0gEsAAB' + + 'AfQEsAABAmz95AABBLAGBAABAoAGBAABAXz95AABAcwFyAABARgFyAABAmz/fgABBJwGBAABAmwGBAABAXz/fgABAcwFyAABAQQFyAABAmz/fgABBJwGBAABAmwGBAABAXz/fgABAcwFyAABAQQFyAABAtr/fgABBRQGBAABAtoGBAABAhz/fgABA4QEsAABAhwEsAAB' + + 'Atr/fgABBRQGBAABAtoGBAABAhz/fgABA4QEsAABAhwEsAABAtr/fgABBRQGBAABAtoGBAABAhz/fgABA4QEsAABAhwEsAABAtr/fgABBRQGBAABAtoGBAABAhz/fgABA4QEsAABAhwEsAABAtr/fgABBRQGBAABAtoGBAABAhz/fgABA4QEsAABAhwEsAABAtr95AAB' + + 'BRQGBAABAtAGBAABAhz95AABA9QEsAABAfQEsAABA8r/fgABB2wGBAABA8oGBAABAuT/fgABBLAGBAABArwGBAABAqj/fgABA+gGBAABAqgGBAABAcz95AABA9QEsAABAfQEsAABAqj/fgABA+gGBAABAqgGBAABAlj/fgABBTwGBAABAyAGBAABAfT/fgABA0gEsAAB' + + 'AfQEsAABAlj/fgABBTwGBAABAyAGBAABAfT/fgABA0gEsAABAfQEsAABAlj/fgABBTwGBAABAyAGBAABAfT/fgABA0gEsAABAfQEsAABAOb/fgABAUAGBAABAOYGLAABAmz/fgABBJwGBAABAmwGBAABA0j/fgABBOwGBAABAwwGBAABAqj/fgABA+gGBAABAqgGBAAB' + + 'Amz/fgABBJwGBAABAmwGBAABAqj/fgABA+gGBAABAqgGBAABAmz/fgABBJwGBAABAmwGBAABArz/fgABBHQGBAABArwGBAABAyD/fgABBQAGBAABAyAGBAABAhz/fgABA4QEsAABAhwEsAABAoD/fgABA+gGBAABAoAGBAABA1z/fgABBgQGBAABA1wGBAABAtD/fgAB' + + 'BLoGBAABArwHWAABAhz/fgABA4QEsAABAhwEsAABAkT95AABA4QE7AABAkQEsAABAoD/fgABA+gGBAABAoAGBAABAyD/fgABBQAGBAABAyAGBAABAmz/fgABBJwGBAABAmwGBAABARj95AABAZAGBAABARgGBAABAQT95AABA5gGBAABAyAGBAABAz7/fgABBrgGBAAB' + + 'AyAGBAABAoD95AABBOwGBAABAoAGBAABA8D/fgABB4oGBAABA7YHMAABAOb/fgABAUAGBAABAOYGLAABARj/fgABAZAGBAABARgGBAABAqj/fgABA+gGBAABAqgGBAABAhz/fgABA4QEsAABAhwEsAABAOb/fgABAUAGBAABAOYGLAABAgj/fgABAlgGBAABAaQGLAAB' + + 'A3r/fgABBmgGBAABA4QGBAABAuT/fgABBLAGBAABArwGBAABAkT95AABA4QE7AABAkQEsAABAyD/fgABBQAGBAABAyAGBAABAyD/fgABBQAGBAABAyAGBAABAkT/fgABA4QGBAABAkQGBAABAyD/fgABBQAGBAABAyAGBAABAkT/fgABA4QGBAABAkQGBAABA0j/fgAB' + + 'BOwGBAABAwwGBAABAlj95AABA4QEsAABAlgEsAABAlj/fgABBTwGBAABAyAGBAABAqj/fgABA+gGBAABAqgGBAABAfT/fgABA0gEsAABAfQEsAABAqj/fgABA+gGBAABAqgGBAABAib95AABA1wEsAABAiYEsAABAXz95AABAcwFyAABARgFyAABAmz/fgABBJwGBAAB' + + 'AmwGBAABAXz/fgABAcwFyAABAQQFyAABAwz95AABBQAGBAABAwwGBAABAtr/fgABBRQGBAABAtoGBAABAhz/fgABA4QEsAABAhwEsAABAwz/fgABBQAGBAABAwwGBAABAtr/fgABBRQGBAABAtoGBAABAqj/fgABA+gGBAABAqgGBAABAcz95AABA9QEsAABAfQEsAAB' + + 'Alj/fgABBTwGBAABAyAGBAABAfT/fgABA0gEsAABAfQEsAABAlj95AABA4QEsAABAlgEsAABAqj95AABA+gGBAABAqgGBAABAkT/fgABA4QGBAABAkQGBAABAfT/fgABA0gEsAABAfQEsAABAOX95AABA7kE7AABAi0EsAABCCr/fgABCjYGLAABCFIHbAABB77/fgAB' + + 'CWAE7AABB5cGLAABBmX/fgABB/oE7AABBjcGLAABBk//fgABB+8GBAABBxMGBAABBV395AABBm4E7AABBckGBAABAnb95AABA1YE7AABArwGBAABB5n/fgABCS4GBAABCDwGBAABBkT95AABB0QE7AABBqUGBAABBM795AABBgAE7AABBUYGBAABAqj/fgABA+gGBAAB' + + 'AqgGBAABAhz/fgABA4QEsAABAhwEsAABARj/fgABAZAGBAABARgGBAABAOb/fgABAUAGBAABAOYGLAABAyD/fgABBQAGBAABAyAGBAABAkT/fgABA4QGBAABAkQGBAABAtr/fgABBRQGBAABAtoGBAABAhz/fgABA4QEsAABAhwEsAABAjD/fgABA4QEsAABAjAEsAAB' + + 'BGD/fgABB3YGBAABBTIHCAABA0L/fgABBgsE7AABA6MFyAABA0L/fgABBgsE7AABA6MFyAABAhz95AABA9QEsAABAfQEsAABAyD/fgABBQAGBAABAyAGBAABAhz95AABA9QEsAABAfQEsAABAqj/fgABA+gGBAABAqgGBAABAhz/fgABA4QEsAABAhwEsAABA3D95AAB' + + 'BRQGBAABAyAGBAABAnb95AABA1YE7AABArwGBAABA3D95AABBRQGBAABAyAGBAABAnb95AABA1YE7AABArwGBAABAkX95AABBFMGBAABAnwHMAABAi/95AABA/AE7AABAkMGLAABAIz95AABAUAGBAABAOYGLAABCD7/fgABCisGBAABCFwGBAABB8X/fgABCTkE7AAB' + + 'B7wEsAABBlr/fgABB+QE7AABBlgEsAABAyD/fgABBQAGBAABAyAGBAABAhz95AABA9QEsAABAfQEsAABAtr/fgABBRQGBAABAtoGBAABAQb95AABBAYGBAABArwGLAABAtr/fgABBRQGBAABAtoGBAABAkT/fgABA4QGBAABAkQGBAABAqj/fgABA+gGBAABAqgGBAAB' + + 'Ahz/fgABA4QEsAABAhwEsAABAqj/fgABA+gGBAABAqgGBAABAhz/fgABA4QEsAABAhwEsAABAuT/fgABBLAGBAABArwGBAABAkT/fgABA4QGBAABAkQGBAABAuT/fgABBLAGBAABArwGBAABAkT/fgABA4QGBAABAkQGBAABARj/fgABAZAGBAABARgGBAABARj/fgAB' + + 'AZAGBAABARgGBAABARj/fgABAZAGBAABARgGBAABARj/fgABAZAGBAABARgGBAABAyD/fgABBQAGBAABAyAGBAABAkT/fgABA4QGBAABAkQGBAABAyD/fgABBQAGBAABAyAGBAABAkT/fgABA4QGBAABAkQGBAABAqj/fgABA+gGBAABAqgGBAABAPD/fgABAUAGBAAB' + + 'APAGLAABAqj/fgABA+gGBAABAqgGBAABAPD/fgABAUAGBAABAPAGLAABAtr/fgABBRQGBAABAtoGBAABAhz/fgABA4QEsAABAhwEsAABAtr/fgABBRQGBAABAtoGBAABAhz/fgABA4QEsAABAhwEsAABAmz95AABBLAGBAABAoAGBAABAXz95AABAcwFyAABARgFyAAB' + + 'Ahn95AABA1wGBAABAiIGBAABAcz+SAABAqYE7AABAbQEsAABAtr/fgABBRQGBAABAtoGBAABAhz/fgABA4QEsAABAhwEsAABAqj/fgABA+gGBAABAqgGBAABAjr95AABA+gGBAABAi0GBAABAoD/fgABA+gGBAABAoAGBAABAkT/fgABA4QGBAABAkQGBAABAmz/fgAB' + + 'BJwGBAABAmwGBAABAeD/fgABA4QE7AABAfQEsAABAqj/fgABA+gGBAABAqgGBAABAhz/fgABA4QEsAABAhwEsAABAuT95AABBLAGBAABAqgGBAABAkT95AABA4QE7AABAkQEsAABAyD/fgABBQAGBAABAyAGBAABAkT/fgABA4QGBAABAkQGBAABAqj/fgABA+gGBAAB' + + 'AqgGBAABAcz95AABA9QEsAABAfQEsAABAT395AABAUAGBAABAOYGLAABAkX95AABBFMGBAABAnwHMAABAZX/fgABAcwFyAABARoFyAABAIz95AABAUAGBAABAOYGLAABA4T/fgABBeoGBAABA4IGBAABA4T95AABBgAE7AABA40EsAABAqj/fgABA+gGBAABAqgGBAAB' + + 'Awz/fgABBQAGBAABAwwGBAABAhz/fgABA4QEsAABAhwEsAABAkT/fgABA4QGBAABAkQGBAABAmz/fgABBJwGBAABAmwGBAABAgj95AABA0gE7AABAgEEsAABAgj95AABA0gE7AABAgEEsAABAhn/fgABA9QGBAABAi0GBAABAcL/fgABAtoE7AABAbQEsAABAoD/fgAB' + + 'A+gGBAABAoAGBAABAtr/fgABBRQGBAABAtoGBAABAqj/fgABA+gGBAABAqgGBAABAuT/fgABBLAGBAABArwGBAABAkT/fgABA4QGBAABAkQGBAABAcz/fgABA3AGBAABApQGBAABAIz95AABAUAGBAABAOYGLAABAtr/fgABBRQGBAABAtoGBAABAgP/fgABA/IE7AAB' + + 'AhIEsAABAqj/fgABA+gGBAABAqgGBAABAPD/fgABAUAGBAABAPAGLAABAqj/fgABA+gGBAABAqgGBAABAcz95AABA9QEsAABAfQEsAABAkT/fgABA4QGBAABAkQGBAABAhz/fgABA4QEsAABAhwEsAABAkT/fgABA4QGBAABAkQGBAABAkT/fgABA4QGBAABAkQGBAAB' + + 'AfT/fgABA0gEsAABAfQEsAABAkT/fgABA4QGBAABAkQGBAABAfT95AABA9QEsAABAfQEsAABAfT/fgABA0gEsAABAfQEsAABAkT/fgABA4QGBAABAkQGBAABAkT/fgABA4QGBAABAkQGBAABAkT/fgABA4QGBAABAkQGBAABAeD/fgABA4QE7AABAfQEsAABAeD/fgAB' + + 'A4QE7AABAfQEsAABAeD/fgABA4QE7AABAfQEsAABAjD/fgABA4QEsAABAjAEsAABARj95AABAZAGBAABARgGBAABAjD95AABBQAGBAABAjAGBAABAjD95AABBQAGBAABAjAGBAABAkT/fgABA4QGBAABAkQGBAABAf795AABA9QE7AABAfQEsAABAmz/fgABBJwGBAAB' + + 'AmwGBAABAhz95AABA9QEsAABAfQEsAABAkT/fgABA4QGBAABAkQGBAABAkT95AABA4QE7AABAkQEsAABAOb/fgABAUAGBAABAOYGLAABAUD/fgABASwE7AABAMgEsAABAWj/fgABAlgE7AABAWgEsAABAVT/fgABAcwGBAABAVQGLAABAVT/fgABAcwGBAABAVQGLAAB' + + 'AXz95AABAcwFyAABARgFyAABAkT95AABA4QE7AABAkQEsAABAyD/fgABBQAGBAABAyAGBAABAyD95AABBQAGBAABAzQGBAABA1z95AABBhgE7AABA1IEsAABAkT95AABA4QE7AABAkQEsAABAkT95AABA4QE7AABAkQEsAABAkT/fgABA4QGBAABAkQGBAABAjD/fgAB' + + 'A4QEsAABAjAEsAABA1z/fgABBgQGBAABA1wGBAABAyD/fgABBQAGBAABAyAGBAABAjD95AABBQAGBAABAjAGBAABAUD/fgABASwE7AABAMgEsAABAUD/fgABASwE7AABAMgEsAABAUD95AABAjAE7AABAcwEsAABAPD95AABAlgE7AABAZAEsAABAXz95AABAcwFyAAB' + + 'ARgFyAABAPD/fgABAUAGBAABAPAGLAABAcL95AABAjAE7AABAaQEsAABAhz/fgABA4QEsAABAhwEsAABAhz/fgABA4QEsAABAhwEsAABAjD95AABBQAGBAABAjAGBAABAIH95AABAlgGBAABAaQGLAABAK395AABAqgGBAABAeAGLAABAZD95AABA+gE7AABAggGLAAB' + + 'AUf95AABA3AGBAABAfQGLAABAUf/fgABAcwFyAABAUAGLAABAYn95AABAcwFyAABARgFyAABAjD/fgABA4QEsAABAjAEsAABAlj/fgABBTwGBAABAyAGBAABAjD/fgABA4QEsAABAjAEsAABAgj/fgABAlgGBAABAaQGLAABAtP/fgABBOwE7AABAtAEsAABAez/fgAB' + + 'A9QGBAABAlgGLAABAg3/fgABA/wE7AABAhIEsAABAez95AABA4QE7AABAfQEsAABAg3+1AABA4QE7AABAfQEsAABAhz95AABA9QEsAABAfQEsAABAhz95AABA9QEsAABAfQEsAABAbj/fgABA4QGBAABAfQGLAABAkT/fgABA4QGBAABAkQGBAABAeD/fgABA4QE7AAB' + + 'AfQEsAABAjD95AABBQAGBAABAjAGBAABAyD/fgABBQAGBAABAyAGBAABAfT/fgABA0gEsAABAfQEsAABAeD/fgABA4QE7AABAfQEsAABAkT/fgABA4QGBAABAkQGBAABAhz/fgABA4QEsAABAhwEsAABAWj95AABAtAGBAABAkQGBAABAfT95AABA9QEsAABAfQEsAAB' + + 'Aa7/fgABAqgE7AABAeAEsAABAhL95AABBOwGBAABAfQGBAABAcz/fgABA3AGBAABApQGBAABAjr/fgABA4QGBAABAhIGLAABBYj/fgABB2IE7AABBYwEsAABBRr95AABBvQE7AABBYwEsAABBWf+1AABB2IE7AABBYwEsAABA23/fgABBQAE7AABA5gEsAABAdb95AAB' + + 'A/wGBAABAeAGBAABA/z/fgABB0QGBAABBEwGBAABA+b95AABBVAE7AABA/kEsAABAwz/fgABBQAGBAABAwwGBAABAv//fgABBLAE7AABAwcEsAABAff/fgABA9QGBAABAfQGBAABAg3/fgABA/wE7AABAhIEsAABAwz95AABBQAGBAABAwwGBAABAwz95AABBQAGBAAB' + + 'AwwGBAABAlj/fgABBTwGBAABAyAGBAABAhz/fgABA4QEsAABAhwEsAABARj/fgABAZAGBAABARgGBAABA2v/fgABBhgE7AABA1cEsAABAjD/fgABA4QEsAABAjAEsAABAlj95AABA4QEsAABAlgEsAABAPD/fgABAUAGBAABAPAGLAABAPD/fgABAUAGBAABAPAGLAAB' + + 'AfT/fgABA0gEsAABAfQEsAABAXz/fgABAcwFyAABAQQFyAABAfT/fgABA0gEsAABAfQEsAABAlj95AABA4QEsAABAlgEsAABAXz/fgABAcwFyAABAQQFyAABAkT95AABA4QE7AABAkQEsAABBAX/fgABBaoGBAABA/wGLAABAOb/fgABAUAGBAABAOYGLAABAOb/fgAB' + + 'AUAGBAABAOYGLAABAlj95AABA4QEsAABAlgEsAABAjD/fgABA4QEsAABAjAEsAABAlj/fgABBTwGBAABAyAGBAABAlj95AABA4QEsAABAlgEsAABAhz95AABA9QEsAABAfQEsAABAQ795AABAjAGBAABAXMGBAABAhz95AABA9QEsAABAfQEsAABAgD95AABA8AGBAAB' + + 'AgIGBAABAOb95AABAUAGBAABAPAGLAABA1X95AABBhgE7AABA1cEsAABAjD95AABBQAGBAABAjAGBAABAlj95AABA4QEsAABAlgEsAABAO395AABAlgE7AABAXwEsAABAfT95AABA9QEsAABAfQEsAABAGn95AABAjAGBAABAV0GBAABAgj95AABA0gE7AABAgEEsAAB' + + 'AgD95AABA8AGBAABAgIGBAABAcz95AABA9QEsAABAfQEsAABAhz95AABA9QEsAABAfQEsAABAhz95AABA9QEsAABAfQEsAABAhz95AABA9QEsAABAfQEsAABAlj95AABA4QEsAABAlgEsAABAeD95AABA0gE7AABAeAEsAABAeD95AABA0gE7AABAeAEsAABAlj95AAB' + + 'A4QEsAABAlgEsAABAOb95AABAUAGBAABAPAGLAABAfT95AABA9QEsAABAfQEsAABAGn95AABAjAGBAABAV0GBAABAhz95AABA9QEsAABAfQEsAABAjD95AABBQAGBAABAjAGBAABArL95AABBOwGBAABAqgGBAABAkT95AABA4QE7AABAkQEsAABAoD/fgABA+gGBAAB' + + 'AoAGBAABAkT/fgABA4QGBAABAkQGBAABAoD+SAABBDgGBAABAooGBAABAmL+SAABA6IGBAABAooGLAABAoD+SAABBDgGBAABAooGBAABAkT+SAABA8AE7AABAkQEsAABAoD/fgABA+gGBAABAoAGBAABAhz/fgABA4QEsAABAhwEsAABArL+SAABBJwGBAABAsYGBAAB' + + 'AhL+SAABA/wE7AABAjAEsAABAoD+SAABBDgGBAABAooGBAABAjD+SAABA8AE7AABAjAEsAABAoD95AABBOwGBAABAoAGBAABAhz95AABA9QEsAABAfQEsAABArz+SAABBJwGBAABAsYGBAABAgj+SAABA+gGBAABAggGLAABAtD+SAABBLoGBAABArwGBAABAkT+SAAB' + + 'A8AE7AABAkQEsAABAtD95AABBLoGBAABArwGBAABAkT95AABA4QE7AABAkQEsAABAqj/fgABA+gGBAABAqgGBAABARj/fgABAZAGBAABARgGBAABAyr/fgABBTwGBAABAyoHCAABAkT95AABA4QE7AABAkQEsAABAtr/fgABBRQGBAABAtoGBAABAhz/fgABA4QEsAAB' + + 'AhwEsAABAtr+SAABBTIGBAABAtoGBAABAjD+SAABA8AE7AABAjAEsAABAtr/fgABBRQGBAABAtoGBAABAjD/fgABA4QEsAABAjAEsAABAtr+SAABBTIGBAABAtoGBAABAjD+SAABA8AE7AABAjAEsAABAtr+SAABBTIGBAABAtoGBAABAkT+SAABA8AE7AABAkQEsAAB' + + 'ARj95AABAZAGBAABARgGBAABAOb95AABAUAGBAABAPAGLAABAqj/fgABA+gGBAABAqgGBAABAhz/fgABA4QEsAABAhwEsAABAqj+SAABBSIGBAABAqgGBAABAhL+SAABA/wE7AABAjAEsAABAqj+SAABBSIGBAABAqgGBAABAhz+SAABA/wGBAABAjoGLAABAmz+SAAB' + + 'A4QGBAABAqgGBAABAOb+SAABAbIE7AABAPAGBAABAmz+SAABA4QGBAABAqgGBAABAOb+SAABAbIE7AABAPAGBAABAmz+SAABA4QGBAABAqgGBAABAOb+SAABAbIE7AABAPAGBAABAlj+SAABA4QGBAABAqgGBAABAOb+SAABAbIE7AABAPAGBAABA1z/fgABBgQGBAAB' + + 'A1wGBAABA1z/fgABBgQGBAABA1wGBAABA1z/fgABBgQGBAABA1wGBAABA1z/fgABBgQGBAABA1wGBAABA1z+SAABBg4GBAABA1IGBAABA1z+SAABBg4GBAABA1IGBAABAtr/fgABBRQGBAABAtoGBAABAkT/fgABA4QGBAABAkQGBAABAtr+SAABBTIGBAABAtoGBAAB' + + 'Ajr+SAABA8AE7AABAk4EsAABAtr+SAABBTIGBAABAtoGBAABAjr+SAABA8AE7AABAk4EsAABAtr+SAABBTIGBAABAtoGBAABAjr+SAABA8AE7AABAk4EsAABAmz/fgABBJwGBAABAmwGBAABAlj95AABA4QEsAABAlgEsAABAmz/fgABBJwGBAABAmwGBAABAlj95AAB' + + 'A4QEsAABAlgEsAABAqj/fgABA+gGBAABAqgGBAABAPD/fgABAUAGBAABAPAGLAABAtD+SAABBLoGBAABArwGBAABAZD+SAABAqgE7AABAaQEsAABAu7+SAABBM4GBAABAsYGBAABAV7+SAABAqgE7AABAaQEsAABArz/fgABBHQGBAABArwGBAABAfT/fgABA0gEsAAB' + + 'AfQEsAABArz+SAABBJwGBAABAsYGBAABAfT+SAABA1wE7AABAggEsAABArz/fgABBHQGBAABArwGBAABAfT/fgABA0gEsAABAfQEsAABArz/fgABBHQGBAABArwGBAABAfT/fgABA0gEsAABAfQEsAABArz+SAABBJwGBAABAsYGBAABAfT+SAABA1wE7AABAggEsAAB' + + 'Amz/fgABBJwGBAABAmwGBAABAXz/fgABAcwFyAABAQQFyAABAmz+SAABA4QGBAABAqgGBAABAV7+SAABAqgE7AABAaQEsAABAmz+SAABA4QGBAABAqgGBAABAV7+SAABAqgE7AABAaQEsAABAmz+SAABA4QGBAABAqgGBAABAV7+SAABAqgE7AABAaQEsAABAtr95AAB' + + 'BRQGBAABAtAGBAABAkT95AABA4QE7AABAkQEsAABAtr95AABBRQGBAABAtAGBAABAkT95AABA4QE7AABAkQEsAABAtr+SAABBTIGBAABAtoGBAABAhz+SAABA/wGBAABAjoGLAABAqj/fgABA+gGBAABAqgGBAABAfT/fgABA0gEsAABAfQEsAABAqj+SAABBSIGBAAB' + + 'AqgGBAABAfT+SAABA1wE7AABAggEsAABA8D/fgABB4oGBAABA7YHMAABAu7/fgABBdIE7AABAuQGLAABA8D/fgABB4oGBAABA7YHMAABAu7/fgABBdIE7AABAuQGLAABA8D/fgABB4oGBAABA7YHMAABAu7/fgABBdIE7AABAuQGLAABA8r/fgABB2wGBAABA8oGBAAB' + + 'AuT/fgABBLAGBAABArwGBAABA9T+SAABB4oGBAABA9QGBAABAuT+SAABBb4E7AABAuQEsAABAqj/fgABA+gGBAABAqgGBAABAfT/fgABA0gEsAABAfQEsAABAqj/fgABA+gGBAABAqgGBAABAfT/fgABA0gEsAABAfQEsAABAqj/fgABA+gGBAABAqgGBAABAcz95AAB' + + 'A9QEsAABAfQEsAABAlj/fgABBTwGBAABAyAGBAABAfT/fgABA0gEsAABAfQEsAABAoD+SAABBDgGBAABAooGBAABAfT+SAABA1wE7AABAggEsAABAmz+SAABA4QGBAABAqgGBAABAfT+SAABA1wE7AABAggEsAABAkT+SAABA8AE7AABAkQEsAABAXz/fgABAcwFyAAB' + + 'AQQFyAABAuT/fgABBLAGBAABArwGBAABAkT95AABA4QE7AABAkQEsAABAhz/fgABA4QEsAABAhwEsAABAOb/fgABAUAGBAABAOYGLAABApz+SAABBOwGBAABAqgGBAABAjD+SAABA8AE7AABAjAEsAABAqj/fgABA+gGBAABAqgGBAABAhz/fgABA4QEsAABAhwEsAAB' + + 'AtD+SAABBLoGBAABArwGBAABAkT+SAABA8AE7AABAkQEsAABAtD/fgABBLoGBAABArwHWAABAkT/fgABA4QGBAABAkQGBAABAtD/fgABBLoGBAABArwHWAABAkT/fgABA4QGBAABAkQGBAABARj/fgABAZAGBAABARgGBAABAOb/fgABAUAGBAABAOYGLAABARj+SAAB' + + 'AZEGBAABARgGBAABAOb+SAABAbIE7AABAPAGBAABAxb+SAABBTIGBAABAyAGBAABAjD+SAABA8AE7AABAjAEsAABAxb/fgABBTIGBAABAyAHWAABAkT/fgABA4QGBAABAkQGBAABAtr+SAABBTIGBAABAtoGBAABAhL+SAABA/wE7AABAjAEsAABAtr/fgABBRQGBAAB' + + 'AtoGBAABAhL/fgABA/wE7AABAjAGLAABAqf/fgABBSIGBAABAowHMAABAhz95AABA9QEsAABAfQEsAABAqj+SAABBSIGBAABAqgGBAABAyr+SAABBBoE7AABAfQEsAABAqj/fgABA+gGBAABAqgGBAABAmz95AABBLAGBAABAoAGBAABAqj/fgABA+gGBAABAqgGBAAB' + + 'AkT95AABA4QE7AABAkQEsAABAeD/fgABA4QE7AABAfQEsAABAlj/fgABBTwGBAABAyAGBAABAkT/fgABA4QGBAABAkQGBAABAOb/fgABAUAGBAABAOYGLAABAkT/fgABA4QGBAABAkQGBAABAmz/fgABBJwGBAABAmwGBAABAtr95AABBRQGBAABAtAGBAABAhL95AAB' + + 'BOwGBAABAfQGBAABAWj95AABAtAGBAABAkQGBAABAgL/fgABBAYE7AABAkQEsAABAnv/fgABBFUE7AABAqgEsAABAOb/fgABAUAGBAABAOYGLAACACIAJAA9AAAARABdABoAggCYADQAmgC4AEsAugF6AGoBfgF/ASsBgQGBAS0BhgGWAS4BnwGfAT8BpAG7AUABwgHZ' + + 'AVgB3AHrAXAB8AHxAYAB9AJxAYIFjAW6AgAF7QX0Ai8F9wYAAjcGBQYIAkEGCwYaAkUGHQY4AlUGQQZIAnEGSwZkAnkGaQaIApMGigaNArMGoganArcGsga5Ar0GzgbRAsUG3AbjAskIPAg8AtEInQidAtIIvwjFAtMI0AjQAtoI0wjTAtsJ7gnuAtwAAgALAsIC3AAA' + + 'At4C4gAbAuUC6AAgAusC9QAkAvsDAQAvAwQDEAA2AxIDGQBDAxsDHQBLAyUDMQBOBDQENwBbBeAF7ABfAGwAAgGyAAIBuAACAb4AAgHEAAIBygACAdAAAgHWAAIB3AACAeIAAgHoAAIB7gACAfQAAgH6AAICAAACAgYAAgIMAAICEgACAhgAAgIeAAICJAACAioAAQIw' + + 'AAACNgAAAjwAAAJCAAACSAACAk4AAAJUAAACWgAAAmAAAAJmAAACbAAAAnIAAAJ4AAACfgAAAoQAAAKKAAACkAAAApYAAAKcAAACogAAAqgAAAKuAAACtAAAAroAAALAAAACxgAAAswAAALSAAAC2AAAAt4AAgLkAAIC6gACAvAAAgL2AAIC/AACAwIAAAMIAAIDDgAA' + + 'AxQAAAMaAAADIAACAyYAAgMsAAIDMgAAAzgAAAM+AAIDRAACA0oAAgNQAAADVgAAA1wAAANiAAADaAACA24AAAN0AAADegACA4AAAgOGAAIDjAACA5IAAgOYAAIDngACA6QAAgOqAAIDsAACA7YAAgO8AAIDwgACA8gAAgPOAAID1AACA9oAAgPgAAID5gACA+wAAgPy' + + 'AAAD+AACA/4AAgQEAAIECgACBBAAAgQWAAIEHAACBCIAAAQoAAIELgAABDQAAf7XBgQAAf7tBgQAAQAABLAAAQFKBLAAAQAABM4AAQAABhgAAQAABLAAAQAABM4AAQAABLoAAf7eBcIAAQAABNgAAf+wBLAAAQAABLAAAQAABIgAAQAABIgAAQBkBLAAAQAABLAAAQAA' + + 'BLAAAQAAA94AAQAAA94AAQAAA94AAf+cA94AAQAA/4gAAQAA/4gAAQAA/4gAAQAA/4gAAQAABLAAAQAU/84AAQAA/7AAAQAA/7AAAQAA/7AAAQAA/3QAAf1Y/34AAQAA/xAAAQAA/84AAQAA/6YAAQAA/8QAAQAA/7AAAQAA/4gAAQAA/2oAAQAA/2oAAQAA/4gAAQAA' + + '/4gAAQAA/3QAAQAA/0wAAQAA/vwAAQAA/7AAAf/s/84AAQAA/7AAAQAA/9gAAQAA/4gAAQAABHQAAQAABHQAAQAABgQAAQAABLAAAQAAA/wAAQAABMQAAQAA/4gAAQAABMQAAQAA/4gAAQAA/8QAAQAA/7AAAQAABLAAAQAABGoAAQAABMQAAQAA/5wAAQAA/8QAAQAA' + + 'BH4AAQAABH4AAQAABM4AAQAAAAAAAQAAAAAAAQAAAAAAAQAeAAAAAQAABH4AAQAAAAAAAQAA/8QAAQAABH4AAQAAAeAAAQAAAeAAAQAAAeAAAQAAAeAAAQAAAeAAAQAAAeAAAQAAAeAAAQAAAeAAAQAAAeAAAQAAAeAAAQAAAeAAAQAAAeAAAQAAAeAAAQAABH4AAQAA' + + 'BLAAAQAABDgAAQAABDgAAQAABMQAAQAABMQAAQAA/7AAAQAABNgAAQAABM4AAQAABM4AAQAABM4AAQAABM4AAQAABM4AAQAABM4AAf/i/84AAQAABH4AAQAeAAAAAAABAAAAAOAD/2MAAAAAyED5mgAAAADdey4W' + }, + { + file: 'LiberationSans-Bold.ttf', + base64: + 'AAEAAAATAQAABAAwRkZUTYXIkLUABlNMAAAAHEdERUbiP+wQAAUe0AAAASpHUE9TUqosPwAFKTQAASoWR1NVQnbuMg0ABR/8AAAJOE9TLzIB0szTAAABuAAAAGBjbWFwVR/lJwAAKwgAAAaYY3Z0IG1fa6EAAD3kAAACiGZwZ21+YbYRAAAxoAAAB7RnYXNwABEACwAF' + + 'HsAAAAAQZ2x5Zp2uUrwAAGlgAAQq2GhlYWQLjfUpAAABPAAAADZoaGVhDhgNrwAAAXQAAAAkaG10eIDDixIAAAIYAAAo8Gtlcm7/1imsAASUOAAAFVpsb2NhFvXY7AAAQGwAACj0bWF4cA5UBTQAAAGYAAAAIG5hbWXxoqIYAASplAAAC5pwb3N0GmByoAAEtTAAAGmN' + + 'cHJlcIqhBLkAADlUAAAEkAABAAAAAhmZq4xBV18PPPUAHwgAAAAAAMhJaCYAAAAA3XspK/wl/P0KbwhEAAEACAACAAEAAAAAAAEAAAc+/k4AQwqq/CX6egpvAAEAAAAAAAAAAAAAAAAAAAo8AAEAAAo8AVIAVABcAAYAAgAQAC8AXAAAA00DVAAEAAEAAwTgArwABQAA' + + 'BZoFMwAAARsFmgUzAAAD0QBmAhIIBQILBwQCAgICAgTgAAr/UAB4/wAAACEAAAAAMUFTQwAgACD//AXT/lEBMwc+AbJgAAG/3/cAAAQ6BYEAAAAgACwGAADNAAAAAAI5AAACOQAAAqoAwQPLAIcEcwAjBHMAGwcdADMFxwBaAecAbQKqAGYCqgACAx0ABgSsAFYCOQCL' + + 'AqoAUAI5AIsCOQAUBHMAUQRzAIEEcwBHBHMALwRzAB8EcwA/BHMASwRzAFgEcwBBBHMARwKqAMUCqgDDBKwAVgSsAFUErABWBOMAXgfNAHUFxwAzBccAiQXHAFQFxwCJBVYAiQTjAIkGOQBUBccAiQI5AIkEcwAfBccAiQTjAIkGqgCJBccAiQY5AFQFVgCJBjkAVAXH' + + 'AIkFVgA7BOMAFwXHAHsFVgAOB40AAgVWABIFVgAjBOMAPQKqAHMCOQAVAqoAGQSsAC0Ec//sAqoAQgRzADwE4wCHBHMAUATjAFQEcwBQAqoAIwTjAFQE4wCPAjkAjwI5/+AEcwCPAjkAjwcdAIcE4wCHBOMAUATjAIcE4wBUAx0AhwRzAEgCqgAZBOMAfwRzAAgGOf/6' + + 'BHMADgRzABAEAABSAx0AIQI9AJwDHQArBKwAUQI5AAACqgDCBHMAMwRzABUEcwA5BHMACAI9AJwEcwA1AqoAEAXlACAC9gAtBHMAXASsAFQCqgBQBeUAIARr/+8DMwBaBGQAMQKqADMCqgAsAqoAVwScAIYEcwBHAqoAjQKqAGACqgBSAuwALQRzAF0GrABeBqwAXgas' + + 'AGcE4wByBccAMwXHADMFxwAzBccAMwXHADMFxwAzCAAABAXHAFQFVgCJBVYAiQVWAIkFVgCJAjn/2AI5AGgCOf+rAjn/1wXHAAgFxwCJBjkAVAY5AFQGOQBUBjkAVAY5AFQErABWBjkAVAXHAHsFxwB7BccAewXHAHsFVgAjBVYAiQTjAI8EcwA0BHMANARzADQEcwA0' + + 'BHMANARzADQHHQBCBHMAUARzAFAEcwBQBHMAUARzAFACOf/AAjkAcgI5/60COf/YBOMAUATjAIcE4wBQBOMAUATjAFAE4wBQBOMAUARkADEE4wABBOMAfwTjAH8E4wB/BOMAfwRzABAE4wCPBHMAEAXHADMEcwA8BccAMwRzADwFxwAzBHMAPAXHAFQEcwBQBccAVARz' + + 'AFAFxwBUBHMAUAXHAFQEcwBQBccAiQXAAFQFxwAIBOMAVAVWAIkEcwBQBVYAiQRzAFAFVgCJBHMAUAVWAIkEcwBQBVYAiQRzAFAGOQBUBOMAVAY5AFQE4wBUBjkAVATjAFQGOQBUBOMAVAXHAIkE4wCPBccADgTjAAoCOf+ZAjn/mQI5/+wCOf/sAjn/vAI5/70COQBY' + + 'AjkARQI5AIkCOQCRBkcAiQRzAI8EcwAfAjn/pgXHAIkEcwCPBHMAjwTjAIkCOQBqBOMAiQI5AI8E4wCJAxUAjwTjAIkD1QCPBOMAAAI5ABIFxwCJBOMAhwXHAIkE4wCHBccAiQTjAIcFq//qBckAhQTjAIcGOQBUBOMAUAY5AFQE4wBQBjkAVATjAFAIAABUB40AUAXH' + + 'AIkDHQCHBccAiQMdAIcFxwCJAx0AOAVWADsEcwBIBVYAOwRzAEgFVgA7BHMASAVWADsEcwBIBOMAFwKqABkE4wAXA9UAGQTjABcCqgAZBccAewTjAH8FxwB7BOMAfwXHAHsE4wB/BccAewTjAH8FxwB7BOMAfwXHAHsE4wB/B40AAgY5//oFVgAjBHMAEAVWACME4wA9' + + 'BAAAUgTjAD0EAABSBOMAPQQAAFICOQCOBOMACgaxAAAFwACJBOMAhwXAAAAE4wAABccAOAXHAFQEcwBQBccACAazAAAFwABYBOMAVATaAFAFVgBQBc8AVAUDAF4E4/+0BHMAqAY5AFQFGAAOB3IAjwI5AIkCOQAABccAiQRzAI8COQAUBHMAEAfvAIkFx/+0BOMAhwY5' + + 'AFQG0wBUBbAAUAcYAFQF8wBQBkEAAATjAI8FVgCJBVYAUARzAFQEzQBaAuEAGAKqABkE4wAAAqoAGQTjABcGowB7BcsAfwZqAGkFxwB7BikAIwRzABAE4wA0BAAAQATjABoE4wBIBDYAKAQ2ADcEcwBHBHMAPQP6ABEEogAfBOMAjwI9AKQD+wCuBK0AUgKqAMEKqgCJ' + + 'CccAiQjjAFQJVgCJBxwAiQRyAI8KOgCJCAAAiQccAIcFxwAzBHMAPAI5/6sCOf+uBjkAVATjAFAFxwB7BOMAfwXHAHsE4wB/BccAewTjAH8FxwB7BOMAfwXHAHsE4wB/BHMAUAXHADMEcwA8BccAMwRzADwIAAAEBx0AQgY5AFQE4wAlBjkAVATjAFQFxwCJBHMAjwY5' + + 'AFQE4wBQBjkAVATjAFAE4wAaBDYAFAI5/6cKqgCJCccAiQjjAFQGOQBUBOMAVAhDAIkFUgCJBccAiQTjAIcFxwAzBHMAPAgAAAQHHQBCBjkAVATjAAEFxwAzBHMADAXHADMEcwA8BVYAiQRzACAFVgCJBHMAUAI5/uACOf7qAjn/zAI5/8oGOQBUBOMASAY5AFQE4wBQ' + + 'BccAhAMd/6gFxwCJAx0AawXHAHsE4wBMBccAewTjAH8FVgA7BHMASATjABcCqgAZBJ4AFAQpAEMFxwCJBOMAjwWfAIwGswBUBQwAYQUMAFQE4wA9BAAARAXHADMEcwA8BVYAiQRzAFAGOQBUBOMAUAY5AFQE4wBQBjkAVATjAFAGOQBUBOMAUAVWACMEcwAQA/7//gar' + + 'AIcEDAAPAjn/4AehAF0HoQBUBccAMwXHAFQEcwAJBOMACgTjABcEcwBPBAAARAUpADQD3wArBccAAAXHABQFVgAOBVYAiQRzAAkEcwAfAjn/4AYzAFQE4wBUBccAAAMdABsFVgAABHMAEARz/+8E4wBUBOMAhQTjAIcEcwA8BHMACATjAFQE4wBUBHMARgRzAFAGQQBQ' + + 'A/oARQP6ADUFhwArBIoAUgKqAA8E4wBUBOMAVASwAFAEcwAIBM4ACgTjAH8E4wCPBOMAjwI5ABYCOQBsAz4ARAKoAAAC2QAUAjkAjwTUAI8HHQB/Bx0AfwcdAIcE4/+lBOMAhwTrAIwE4wBQBqsAUAbCAFEF/wBQAx0AHwMdAB8DHQAfAx0AhwMdAIcDHQCPAx0ACgSr' + + 'AIoEqwCKBHMASAKq/+ACqv/gAqr/uQRRABwCqgAZAqoAGQTjABQE+ABLBKgAfwRzAAgGOf/6BHMAEASRABcEAABEBXAARAQ2ABQENgAaBHMAQgRzAFIEcwBCBHMAVAY5AFQE6wCPBIoAUgSwAFAE1QCPA6sAHwRzAAMDngCIBOMAVARzAEIEcwBXCD8AVAeJAFQJrwBU' + + 'BoIAGQRGABkGmAAZBvQAIwY1AI8FigCPBEUAFgSCAIgF1gAiBdYAIgLxACsC8QAsAY4ABAIEADYCBAAiAgQADwMAADMEL//2AuL/9wHnAG0DywCHAjkAiwI5AIsCOQCLAqoA4gKqAOIDAAA5AwAAOQSsAFYErABWBKwALgSsAC4CqgAAAqoAAAKqAQsCqgAkAqoAfgKq' + + 'AH4CqgELAqoAIgKqAEECqgC7AqoAugKqALoCqgDiAqoA4QKqAJoCqgCaAqoAmgKqABMCqv/HAqoAyAKqACcCqgBMAqr/8gKq/6QCqv/VAqoAAwLt//oBIQAxAwIAMQLu//4DAAA5AxAAlgMQAJYDEACWAxAAlgMQAJYCqgBiAqoAYgKq/+UCqgAjBAAAgwKqAIcCqgCH' + + 'AqoAxQKqAMUCqgCVAqoAQQKq/78Cqv+/Aqr/9AKqAMUCqgCpAqoAqQKqAKkCqgCpAy4AHgMuAB4CqgA6AAD91QAA/mEAAP6RAAD8XgAA/s0AAP2oAAD+ngAA/3MAAP67AAD+DwAA/0AAAP4sAAD+kQAA/7YAAP84AAD+LAAA/qgAAP6sAAD/bgAA/24AAP9uAAAAFAAA' + + '/ykAAP8pAAD/RAAA/2AAAP6HAAD/7AAA/40AAP9JAAD/SQAA/0cAAP5TAAD/FgAAAAAAAP9zAAD+ugAA/0AAAP+FAAD++wAA/0gAAP+2AAD+hwAA/rEAAP6RAAD+kQAA/p8AAP6oAAD+ewAA/s8AAP21AAD+xQAA/nsAAP67AAD9tgAA/h4AAP8GAAD/jAAA/ocAAP9E' + + 'AAD+sAAA/y8AAP+cAAD9swAA/lIAAAAAAAD+oAAA/24AAP4vAAD/owAA/ocAAP4NAAD/PQAA/0QAAP6iAAD+5QAA/qAAAP7+AAD/TAAA/RYAAP9vAAD/jQAA/sMAAP8vAAD/bwAA/28AAP7fAAD/jgAAAPsAAP9DAAD+rAAA/zEAAP9TAAD/UwAA/cMAAP3DAAD/UwAA' + + '/1MAAP9TAAD+jgAA/rEAAP+gAAD+jwAA/rEAAP6uAAD+ogAA/rMAAP3vAAD/LgAA/yoAAP6EAAD+iAKqANkCqgBaAqoAzwRzADwEcwBQBHMAPAKqAMMCqgC5A7gAbgXHACQCqgDFBtMALgc/ACQDygAkBpn/5gdrAIAGtP/QAjn/qQXHADMFxwCJBM8AiQXAAFMFVgCJ' + + 'BOMAPQXHAIkGOQBUAjkAiQXHAIkFVgAOBqoAiQXHAIkFJgBUBjkAVAXHAIkFVgCJBM0AWgTjABcFVgAjBpEAPwVWABIGeQBgBmoAUwI5/9cFVgAjBOsAUAOcAE0E4wBrAjkAiQSoAH8E6wBQBOIAjgRzAAgE2gBWA8wATQOvAEIE4wBrBFMAWgI5AIkEdgCPBHMACQTl' + + 'AJAEcwAAA5AAQgTjAFAGIAAqBPMAeQQpAE8FeQBQA5IAEgSoAH8FuQBQBJsADQYHAIEGwgBRAjn/2QSoAH8E4wBQBKgAfwbCAFEE4gBnBKgAGAYpACMIAgAfBikAIwX/AFAGwgBOBWkAFAY5AFQE4wBQBccAfARzAFAE4wCJA54AiAYDAB8EPAAdBm8AEgTiAB8H7wCW' + + 'Bx0AaQWfAH0E4wCKBZ8AkQTXAAwFVgBWBVYAVgUkACAE1AAEBeEAVASgAFEEDgAQA4QAKAVpABQE8QBaBHMAUAI5/+AGOQBUA9QAUAPUAFEFVgCJBOMAjwXHAFQGqgCJBesAjwTzAAEFxwA4BccAVAXHADgFVgCJBVoAiQcVABcEiQCJBbEAVAVWADsCOQCJAjX/1QRz' + + 'AB8IwAAICIAAiQcAABcE4gCJBcAAiAT6//kFwACJBccAMwXAAIkFxwCJBIkAiQWzABIFVgCJBzv/+gUDAC4FwACIBcAAiATiAIkFnQAIBqoAiQXHAIkGOQBUBcAAiQVWAIkFxwBUBOMAFwT6AAEG1ABHBVYAEgXYAIkFnwBuCAoAiQgnAIkG9QAWB9UAiQXAAIkFsQA2' + + 'CEAAiQXAACMEcwA8BPEAXgTrAI8DVQCPBRQADgRzAFAFrP/vA/oANQTrAI4E6wCOBAEAjgUVABUF6wCPBNUAjwTjAFAE1QCPBOMAhwRzAFAD6wA6BHMAEAcAAFIEcwAOBOsAjwSlAFMGqwCPBsAAjwXVACYG1QCPBOsAjwRrADQG1QCPBKv//wRzAFAEcwBQBOMACgNV' + + 'AI8EawBQBHMASAI5AI8CQP/aAjn/4AfAABUHQACPBOMACgQBAI4E6wCOBHMAEATVAI8KPQBZBjoADAb0ACYFnwAmB84AiQZeAJEFVv/8BHMACAdoAIkGZwCRBnkAVQYHAH0IngCJB9gAkQUDAFAD+gBEBnkAYAYHAHUGOQBUBOMAUAaFAA4FLAAIBoUADgUsAAgI9gBU' + + 'B8sAUAaEACMFGgAjCj0AWQc1AFAKPQBZBjoADAXHAGMEcwBQBKwAGwAA/qEAAP6jAAD/hgAA/4YAAP3JAAD8JQAA/GsFwACIBOsAjgXAAAAE6wASBVYAiQTjAIcD5QCJA5MAjwSJAAADVQAQBZ8AiQTJAI8HO//6Baz/7wUDAC4D+gA1BOIAiQQBAI4E4gCJBAEAjgTi' + + 'AAAEAQALBhcAGgT8ACUFxwCJBNUAjwcJAIkFtgCPCQIAiQdfAI8FxwA7BJ8AOwXHAFQEcwBQBOMAFwPrADoEcwAABHMACARzAAAEcwAIBVYAEgRzAA4G0gAYBYMALgWfAG4EpQBTBZ8AbgSlAFMFnwCJBOMAjwbaAAsFbQALBtoACwVtAAsCOQCJBzv/+gWs/+8FnQCJ' + + 'BMgAjgWdAAgFFQAVBccAiQTVAI8FxwCJBNUAjwWfAG4EpQBdBqoAiQXrAI8COQCPBccAMwRzADwFxwAzBHMAPAgAAAQHHQBCBVYAiQRzAFAFzwBUBHMAUAXPAFQEcwBQBzv/+gWs/+8FAwAuA/oANQUDAC4ENgAUBcAAiATrAI4FwACIBOsAjgY5AFQE4wBQBjkAVATj' + + 'AFAGOQBUBOMAUAWxADYEawA0BPoAAQRzABAE+gABBHMAEAT6AAEEcwAQBZ8AbgSlAFMEiQCJA1UAjwfVAIkG1QCPBIkAAANVABAFVgASBHMADgVWABIEcwAOBcAAVQTjAFQIPgBaB3oAVAetAFEGxABNBUMAUQRKAE0IGgAIB6UAFQhDAIkHZgCPBjkAVASwAFAGIAAX' + + 'BZsAOgUDAF4D+gBFBZ0ACAUVABUGOQBUBOMAVAeNAAIGOf/6AAD/RAAAACsAAP9tAAAAXgAAAGAAAP9OAAD/aAAA/tUAAP64AAAAAAAA/ykAAAAAAAAAAAAA/rgAAP32AAAAAAAA/1wAAP9EAAD/SAAA/14AAP9qAAD+uAAA/2IAAP9cAAD+FAAA/0QAAP9eAAD/SAAA' + + 'AAAAAP2qAAD/KQAA/7AAAP7TAAD+8gAA/vIAAP+wAAD/PQAA/z0AAP9cAAD/XAAA/7AAAP+wAAD/EgAA/7AAAP/JAxAAhQAA/1wEgQH0AAD/sAAA/7ACqgDFAAD/sAAA/7ADXgCaAAAANQV1AEIFHwBSA9UAPwSoACkFaACYAmoArgLsADMFmgCuBYEApAJqAK4EnAAn' + + 'BG0AUASTAEYFwwCuBc8AMQJqAK4DcwBIBZYAMwTyACkFZgCFBTcAjwRoAAoE3wAKBTsAewScACcGcQA5Bb4APQTVAK4E1QCuBNUArgM/ANcE/gDXBLUAAAY1AAAHHQBMBOsAGwRzAFAEmQCPBJkAGwQBAI8D+gA1AjkAkAQPAEEEdgCPA54ADwXrAI8E6wCOBOMAUARz' + + 'ADwE8QBHBPEARwTxACYHjQBCBJIATgTjAFAE4wBQBOkAjASr//8Eq///A+sAOgSoAH8E4wBKBiQAUgTgAEkEcwAIBjn/+gQAAFID3wA1A/IAPQTsABIDVQCPBHMACATVAI8E6QCMBgcAgQUVABUD4wAeBZEAJAOiADcDogAAA6MALANVACQDVQAkBAMAJQN8ACUBcgBU' + + 'At4AEwOwADIDHgApBCIAKgN3ACIDeAAjBCYALwN6AEYDWwAxA6wALwN3ACEDewAbBRT/+wMFABQDBQAUAyEALwS2ACEDIQAzAyEAMQMCADADAgAwAs8AOALPADYDIAAxASEAMQLKACYEhAAwAvIAKANIADEDCgAuA0kAMgNJADIDIAAwAbwACQLyACgDQgAqBIQAMALp' + + '//gDTAALAxsANgLp//kDQwAyA9oAMgMI//oBIQAxAgQALgLyACgC6f/4AxsALQLp//kDQgAxA9oAMgMI//oHYAB/BOP/sgTjAFQCqv/lBx3/vATj/7wE4/+qAx3/sAMd/7AEc///Aqr/wQQAACAE4wCJAvAAJgTcAFIG+wAZAjkAFgI5ABYE4wAUBKgAFAT4AAoE4wCH' + + 'BOMAVAKqACMGJQBUBHMAjwI5AEoHHQCHBOMAhwTjAIcDHQBFBHMASAO6/+AEcwAIBHMADgQAAEQEcwA8BOMAVATjAFQEcwBQA/oARQP6ADUFPgBQAjkAjwRzADwCqv/gBOMAfwQ2ABQDIQAyAwoAMQMKAAkDSAAvAs8ANgHwABsB8AAbAyAAMALxACwBdAAHASEAMQEh' + + 'ADEBdAAHAnYABAGOAD8BUAAPAkkAQgSEAC8EhAAyA1//6QNfADcC+gAwA0gAMQQDAC0DAgAxAjkADwG8AAsDQAAGA14AMgLqADMC6gArAun/+ALkAFIC5AAxA74AMgMKACcC6AA4AAD+kgAA/pIAAP95AAD+nwAA/sYAAP7GAAD+xgAA/sYAAP5YAAD+WAAA/40AAP9v' + + 'AAD+3wXHADMEcwA8BccAiQTjAIcFxwCJBOMAhwXHAIkE4wCHBccAVARzAFAFxwCJBOMAVAXHAIkE4wBUBccAiQTjAFQFxwCJBOMAVAXHAIkE4wBUBVYAiQRzAFAFVgCJBHMAUAVWAIkEcwBQBVYAiQRzAFAFVgCJBHMAUATjAIkCqgAjBjkAVATjAFQFxwCJBOMAjwXH' + + 'AIkE4wCPBccAiQTjAI8FxwCJBOMAjwXHAIkE4wCPAjn/lwI5/5cCOQAbAjn/2gXHAIkEcwCPBccAiQRzAI8FxwCJBHMAjwTjAIkCOQCPBOMAiQI5/+sE4wCJAjn/6wTjAIkCOf+tBqoAiQcdAIcGqgCJBx0AhwaqAIkHHQCHBccAiQTjAIcFxwCJBOMAhwXHAIkE4wCH' + + 'BccAiQTjAIcGOQBUBOMAUAY5AFQE4wBQBjkAVATjAFAGOQBUBOMAUAVWAIkE4wCHBVYAiQTjAIcFxwCJAx0AhwXHAIkDHQCHBccAiQMdAIcFxwCJAx0AXAVWADsEcwBIBVYAOwRzAEgFVgA7BHMASAVWADsEcwBIBVYAOwRzAEgE4wAXAqoAGQTjABcCqgAZBOMAFwKq' + + 'ABkE4wAXAqoAEQXHAHsE4wB/BccAewTjAH8FxwB7BOMAfwXHAHsE4wB/BccAewTjAH8FVgAOBHMACAVWAA4EcwAIB40AAgY5//oHjQACBjn/+geNAAIGOf/6B40AAgY5//oHjQACBjn/+gVWABIEcwAOBVYAEgRzAA4FVgAjBHMAEATjAD0EAABSBOMAPQQAAFIE4wA9' + + 'BAAAUgTjAI8CqgAQBjn/+gRzABAEcwA8AjkAjgW5AIkFxwAzBHMAPAXHADMEcwA8BccAMwRzADwFxwAzBHMACQXHADMEcwA8BccAMwRzADwFxwAzBHMAPAXHADMEcwA8BccAMwRzADwFxwAzBHMAPAXHADMEcwA8BccAMwRzADwFVgCJBHMAUAVWAIkEcwBQBVYAiQRz' + + 'AFAFVgCJBHMAUAVWAIkEcwAXBVYAiQRzAFAFVgCJBHMAUAVWAIkEcwBQAjkAUQI5AFACOQCJAjkAjwY5AFQE4wBQBjkAVATjAFAGOQBUBOMAUAY5AFQE4wBCBjkAVATjAFAGOQBUBOMAUAY5AFQE4wBQBtMAVAWwAFAG0wBUBbAAUAbTAFQFsABQBtMAVAWwAFAG0wBU' + + 'BbAAUAXHAHsE4wB/BccAewTjAH8GowB7BcsAfwajAHsFywB/BqMAewXLAH8GowB7BcsAfwajAHsFywB/BVYAIwRzABAFVgAjBHMAEAVWACMEcwAQBVYAIwRzABAE6wBQBOsAUATrAFAE6wBQBOsAUATrAFAE6wBQBOsAUAXHADMFxwAzBvMAAAbzAAAG8wAUBvMAFAbz' + + 'AEQG8wBEA8wATQPMAE0DzABNA8wATQPMAE0DzABNBh7/9wYe//cHrgAAB64AAAeuAAAHrgAABOMAawTjAGsE4wBrBOMAawTjAGsE4wBrBOMAawTjAGsGjwABBo8AAQgfAAAIHwAACB8AAAgfAAAIHwAVCB8AFQI5AIcCOQCHAjn/xQI5/8UCOf/tAjn/7QI5/7UCOf+1' + + 'AwEAAQMBAAEEkQAABJEAAASRAAAEkQAABJEAFQSRABUE4wBQBOMAUATjAFAE4wBQBOMAUATjAFAGnf/tBp3/4whVAAAIVQAAB8kAAAfJAAAEqAB/BKgAfwSoAH8EqAB/BKgAfwSoAH8EqAB/BKgAfwaCAAEH/gAACGIARgeu//QGwgBRBsIAUQbCAFEGwgBRBsIAUQbC' + + 'AFEGwgBRBsIAUQbO/+MGzv/jCIYAAAiGAAAH+gAAB/oAAAf6//QH+v/0BOsAUATrAFADzABNA8wATQTjAGsE4wBrAjkAIAI5AIcE4wBQBOMAUASoAH8EqAB/BsIAUQbCAFEE6wBQBOsAUATrAFAE6wBQBOsAUATrAFAE6wBQBOsAUAXHADMFxwAzBvMAAAbzAAAG8wAA' + + 'BvMAAAbzAEQG8wBEBOMAawTjAGsE4wBrBOMAawTjAGsE4wBrBOMAawTjAGsGj//tBo//9wgfAAAIHwAACB8AAAgfAAAIH//0CB//9AbCAFEGwgBRBsIAUQbCAFEGwgBRBsIAUQbCAFEGwgBRBs4AAQbO/+MIhgAACIYAAAf6AAAH+gAAB/r/9Af6//QE6wBQBOsAUATr' + + 'AFAE6wBQBOsAUATrAFAE6wBQBccAMwXHADMFxwAKBccAMwXHADMCqgDqAqoA9gKqAOoCqv/0Aqr/9ATjAGsE4wBrBOMAawTjAGsE4wBrBuYAQwbmAE8HVwAvB1cARQXHAIkCqgAAAqoAAAKq//QCOf+TAjn/6wI5/9oCOf/aAjn/mgI5/7MCOf+9Ajn/6gPJAC8DyQBP' + + 'AqoAAAKqAAACqv/0BKgAfwSoAH8EqAB/BKgAfwTzAHkE8wB5BKgAfwSoAH8FVgAjBVYAIwbm//0HSgByBh7/9wO4AAsDuAALAqoAngbCAFEGwgBRBsIAUQbCAFEGwgBRB2UARgad//AHlgBGBs7/8AZqADICqgDXAqoA3AQAAAAIAAAABAAAAAgAAAACqwAAAgAAAAFV' + + 'AAAEcwAAAjkAAAGaAAAAqwAAAAAAAAAA/9YAAP8gAAD/1wAA/kwCqgBQBHP//ARzAD4IAAAACAAAAAP7AK4Ea//sAjkAiwI5AIsCOQCKAjkAiwQAAJcEAACXBAAAlwQAAHsEcwCKBHMAiALNAEEIAADhAAD/1wAA/k0AAP8SAAD/EgAA/xIBmgAACAAAKQHrAFUD1QBV' + + 'A9X/vQKqAFwCqgBdBNUAwQKq/34BVv6HAqoAxQAA/xIAAP8SAAD/EAAA/xAAAP8RAAD/EgP1AH8DwgB4A68AewNNAFEDyACGA8wAiQMrAGwDmwB5A08AawOOAG4DswBvA9AAagOrAG4DogB2AzMAOQO/AH8DmgBtAwUAFAMCADADSAAxAu7//gMCADAEcwAJBccAVAXH' + + 'AFQEcwAHBHMAFQcdAIcFxwAZCMAAngnNAIkHjQAABxIAtAQbAH4EcwAKBccAGQTjABcIsAAABHMAAAVWABIGOQBUBccAAAVWAB4FxwBUBoUAiQAA/oYHFQA2A+kAKQjrAIkF5QAgCAAAfQYlAFUEzQBYCAAAAgQBAGAGrABeBqwAMwasAHIGrABUBqwAqgasAMkEcwA8' + + 'CAABogQAARAIAAGiBAABEAgAAaIEAAEQBAABEAgAAaID9AA1BOUAKwaWAMwFtACGBKwAVQFW/ocCOQCNBGQAAgW0AEgH1QGYBccBGQIx/38EZAArBGQAHQSrAGQIAABkBGQAMQRkADEE1QCdBKwAZATVAiIE1QEFBav/9gUAAdgFqwKNBav/9gWrAo0Fq//2BasCjQWr' + + '//YFq//2Bav/9gWr//YFq//2BasB2QWrAo0FqwHZBasB2QWr//YFq//2Bav/9gWrAo0FqwHZBasB2QWr//YFq//2Bav/9gWrAo0FqwHZBasB2QWr//YFq//2Bav/9gWr//YFq//2Bav/9gWr//YFq//2Bav/9gWr//YFq//2Bav/9gWrAAAFqwAABasAAAWrAAAFqwLV' + + 'BasAZwWrAAAF1QAABNUAewTVAAYC1gBtAtYAbQgAAAAH6wGeB+sBkQfrAZ4H6wGRA/QAAwTVAKcEwQBiBNUAsgTVALIE1QCyBNUAsgTVALIE1QCyBNUAsgTVAaIE1QGaBNUAKQTVACkC1gBzCCsBsQhrAdEHVQFGBgAB2gYAAdoGAAHaBgABUQYAAWwGAAGxBgABagYA' + + 'AXAGAAIqBEAAOwVAADwEwABmBBUAQggAAMQEAADEBgABEAgAARAEAAAwBOMACgI5ABQE4//yBVYAAAXHAIkEcwA8Aqr/wwXHAIkE4wCPBccAiQRzAI8E4wA9BAAARAYbAFQE2QAICFsAAgbe//oEcwAjBFQAiQN8AI8FuQBOAqoAUAAA/z8AAP+tAAD++AAA/vgEAACZ' + + 'BAAAmQKqAMICqgDCAqoAwgAA/qQAAP6kAqr/+AKqAMUDHABVAecAYAHnAGEE4wAjBOMAIwJqAK4AAP6oBNUArgTyACkFdQBCBKgAKQVoAJgEbQBQBJMARgXDAK4EnAAnBb4APQTVAFoGcQA5BnEAOQZxADkGcQA5BXUAQgV1AEIFdQBCBR8AUgPVAD8EqAApBWgAmAJq' + + '/7oC7P/NBYEApAJq/7oEnAAnBG0AUASTAEYFzwAxA3MASAWWADMFZgCFBTcAjwTfAAoFOwB7BJwAJwZxADkFvgA9AmoArgUfAFIEbQBQBTcAjwVYAFAAAP9HAAD/RwAA/0kAAP9JCAAAAAKqAGcCqv+9AccAcQHHAGcCqgBXAqoAVwKq/+UCqv/lAqoADwKq/88Cqv+u' + + 'Aqr/+wAA/wMAAP8DAAD/AwAA/xgAAP8YAAD/GAAA/g8AAP4jAAD+DwAA/nsAAP57AAD+nwAA/pEAAP6gAAD/GAAA/xgAAP8DAAD/AwAA/g8AAP4PAAD+ewAA/nsAAP57AAD+ewAA/nsAAP57AAD/cwAA/3MAAP9zAAD/cwAA/3MAAP57AAD/cwAA/3MAAP9zAAD/cwAA' + + '/3MAAP9zAAD/cwAA/3MAAP9zAAD+ewAA/nsAAP57AAD+ewI5AJEAAP7OAAD++QAA/s4AAP7tAAD+zgAA/sIEVwCgBFcAoARXAKAEVwCgBFcATQRXAFIEVwBNBFcATQRXAEYDEABGBFcANQRXADUEVwBPBFcALQRXAEgDEAAtBFcAJARXACUEVwAlBFcAJwRXAC8DEAAl' + + 'BFcAHQRXABcEVwA2BFcANgRXADADEAApBFcATwRXAEwEVwBMBFcATARXAF4DEABMBFcAoARXAKAEVwCgBFcAoARXAFAEVwBMBFcARgRXAEwEVwBMAxAATARXAC8EVwA5BFcAPwRXAD8EVwA/AxAAPwRXADYEVwA1BFcANgRXADYEVwA2AxAANQRXAEwEVwBMBFcATARX' + + 'AEwEVwBMAxAAaARXAEwEVwBGBFcATARXAEwEVwBMAxAATARXAKAEVwCgBFcAoARXAKAEVwBWBFcAVwRXAFkEVwBXBFcAVgMQAFwEVwA4BFcANwRXADcEVwA4BFcAOAMQADgEVwBHBFcARQRXAEUEVwBFBFcARQMQAEUEVwCBBFcAgQRXADkEVwA5BFcAOgMQADkEVwCR' + + 'BFcAkQRXAJEEVwCRBFcAkQMQAEwEVwCgBFcAoARXAKAEVwCgBFcATARXAEwEVwBMBFcATARXAE8DEABPBFcAMARXADYEVwA2BFcAFwRXAB0DEAApBFcALwRXACcEVwAlBFcAJQRXACQDEAAlBFcASARXAC0EVwBPBFcANQRXADUDEAAtBFcARgRXAE0EVwBNBFcAUgRX' + + 'AE0DEABGBFcAoARXAKAEVwCgBFcAoAAA/jcAAP7OAAD+zgAA/sIAAP7CAAD++QAA/s4AAP7OAjkAFgTrAFAE6wBQBOsAUATrAFAE6wBQBOsAUATrAFAE6wBQAjn/2QI5/+4COf/FAjn/7gI5/7QCOf+0Ajn/tAI5/7QEqAB/BKgAfwSoAH8EqAB/BKgAfwSoAH8EqAB/' + + 'BKgAfwI5/9UCOf/VAjn/twI5/7cEqAB/BKgAfwSoAH8EqAB/AjkAfwXJAJ0FxwCJBckAnQAA/t8AAP9FAAD+3AAA/tMAAP68AAD+0gAA/tsAAP7jAAD+1AAA/toAAP63AAD97gAA/rcAAP7CAAD+xwAA/scAAP7HAAD+wgAA/pAAAP3NAAD+kAAA/osAAP6fAAD+nwAA' + + '/p4AAP6fAAAAAAAAAAAEk/9rBJP/awScACcEnAAnBVgAUAVYAFAFWABQBJMARgV1AEIAAP49AAD+aQAA/mkE2gBWAAAAAwAAAAMAAAAcAAEAAAAABI4AAwABAAAAHAAEBHIAAAC8AIAABgA8AH4DbwN1A34DigOMA6EDzgUTBR0FxwXqBfQdyh6bHp4e+R8VHx0fRR9N' + + 'H1cfXR99H7QfxB/TH9sf7x/0H/4gECAiICYgMCA0ID4gRCBeIG8geSCJIJQgtSC/IPAhBSEXISYhLiFOIVQhXiGEIZUhqCHUIgYiHyIrIkgiZSMCIxAjISUCJRwlJCUsJTQlPCVsJZMloSWsJbIlvCXEJcwl2SXmJjwmRyZvLG0sdy4XpyGnjPsC+0/+I//8//8AAAAg' + + 'AKADdAN6A4QDjAOOA6MD0AUaBZEF0AXwHQAd/h6eHqAfAB8YHyAfSB9QH1kfXx+AH7Yfxh/WH90f8h/2IAAgEiAmICogMiA5IEQgXiBqIHQgfyCQIKAgvyDwIQUhEyEiIS4hTSFTIVshhCGQIagh1CICIg8iKSJIImAjAiMQIyAlACUMJSQlLCU0JTwlUCWAJaAlqiWy' + + 'JbolxCXKJc8l5iY6Jj8mYCxgLHEuF6cXp4j7Afsd/iD//P///+P/wv++/7r/tf+0/7P/sv+x/6v/OP8w/yvoIOft5+vn6ufk5+Ln4Ofe59wAAOfY59bn1efU59Ln0efP587nzefM58nnxufFAADnuueh55bnkueN54fnfOdz50PnLwAAAADnDObu5urm5Oa/5rTmouZ3' + + 'AAAAAAAA5hAAAOVc5U/lQAAAAADjReM+4zfjMOMdAADi8uLq4uUAAOLW4tHiz+LD4nDibgAA3F/cXNq9AAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAA' + + 'AAAAAAAAAAAAAAAAAAAAAAAAAHQAfAAAAAAAAAAAAAAAAAAAAAAAdAB8AJwAAACeAAAAAAAAAKIApgAAAAAAAAAAAAAAvAAAAAAAAADcAAAAAAAAAAAAAAAAANQAAAAAAAAA7AEAAQgBCgFuAXQAAAc0AAAHNQAABzYH+gf7AAAH/AAAB/0INQAAAAAINgg3CDgAAAAA' + + 'AAAIOQhMAAAAAAAACE0ITgAACE8IUAAAAAAIUQAAAAAAAAhSCFMAAAAAAAAIVAhVCFYAAAhXCFkIWghbAAAIXAhdCGIAAAhjCGQAAAAAAAAIZQAAAAAAAAhmAAAAAAAACGcAAAAAAAAIaAiKAAAAAAAACIsAAAAAAAAIjAAAAAAAAAiNAAAAAAAACI4IjwiQCJEImAAA' + + 'CJkItgAAAAAItwAACLgIuQAAAAAIugi7CLwIvQAAAAAIvgjVCNYI1wjYCNkI2gjbCNwI3QjeCN8I4AjhCOII4wjkCOUI5gjnCOgI6QjqCOsI7AjtCO4I7wjwCPEI8gjzCPQI9Qj2CPcI+Aj5CPoI+wj8CP0I/gj/CQAAAAkBCQIJAwkECQUAAAkGAAAJBwkIAAAJCQkK' + + 'AAAJCwkMCQ0JDgkPCRAJEQkSCRMJFAkVCRYJFwkYCRkABgIKAAAAAAEAAAEAAAAAAAAAAAAAAAAAAAABAAIAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAADAAQABQAGAAcACAAJAAoACwAMAA0ADgAPABAAEQASABMAFAAVABYAFwAY' + + 'ABkAGgAbABwAHQAeAB8AIAAhACIAIwAkACUAJgAnACgAKQAqACsALAAtAC4ALwAwADEAMgAzADQANQA2ADcAOAA5ADoAOwA8AD0APgA/AEAAQQBCAEMARABFAEYARwBIAEkASgBLAEwATQBOAE8AUABRAFIAUwBUAFUAVgBXAFgAWQBaAFsAXABdAF4AXwBgAGEAAACG' + + 'AIcAiQCLAJMAmACeAKMAogCkAKYApQCnAKkAqwCqAKwArQCvAK4AsACxALMAtQC0ALYAuAC3ALwAuwC9AL4H7AByAGQAZQBpB+4AeAChAHAAawg4AHYAaghZAIgAmghUAHMIXAhdAGcAdwhMCE8ITgNyCFcAbAB8A1sAqAC6AIEAYwBuCFMBVAhYCE0AbQB9B+8AYgCC' + + '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' + + 'UCYfdVAmH3RQJh9zUCYfKXABG3ABA3AB9HAB1nDmcAJocAFZcAG4//BAfXAKDUZvbkgfbkYyHxoBGFUZMxhVBzMDVQYD/x9hUCYfYF8yH19QJh9eWkgfXEYnH1taeB9aRjEfEzISVQUBA1UEMgNVbwMBDwM/A08DbwN/AwVfUwFAUygsRkBTHiJGQFMTGEZrUntSi1ID' + + 'UU8cH1BPHB8ZTylPAllPaU8CuAESQC1GJR9JRhkfSEYhH0dGNR/4RgGYRgEcSBtVFjIVVREBD1UQMg9VAgEAVQEA/x+4ARGyGwkfuAEQQC0bCR8fDz8PXw9/DwQPDy8PTw9vD48P3w//Dwc/D38P7w8DbwABTwABgBYBBQG4AZCxVFMrK0u4B/9SS7AHUFuwAYiwJVOw' + + 'AYiwQFFasAaIsABVWltYsQEBjlmFjY0AQh1LsDJTWLBgHVlLsGRTWLBAHVlLsIBTWLAQHbEWAEJZc3RzdHUrKysrKysrKwFzdCsrKysAc3QrK3MrKytzc3UrKysBKysrACsrKysrKysrASsrK3Nzc3N0dHQAKysrKwFzcytzACtzcytzKytzAStzKwBzKysrKytzc3Mr' + + 'ASsrAHN0K3N0K3N0K3MBK3N0KwBzdHUrc3QrKysBKwBzKytzdAErKwArcysrc3UrcysrASsrACsrc3QBcysAc3Nzc3NzAXNzcwArKysrKysrKysrKytzKysrKysrGAXMBcwAfQWBABUAeQWBABUAAAAAAAAAAAAAAAAAAAQ6ABQAdwAA/+wAAAAA/+wAAAAA/+wAAP5X' + + '//cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAARkBJQD1AOsAAAAAAAAAAAAAAMEA0wC6ALAAzwAAAAAAAAAAAAAAAAEnASkBBgAAARIA5AD0AMYAAAAAAAAAAAAA' + + 'AAAAAAAAAAAAAAAAAAABGQEfAUwAAAAAAN8A0QDFALUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQIAqQH9ANgBGQCAALcB/QAAAAABPwDbAV0BJQCqAIAAdQCNAfwBeQEhAKABEAAAAAABMQEZAQ4BBAAAAAAAAAAAAAAAAAAAAAAAAAE9Af8A4AEGAJQA4ACUAUQA4AVz' + + 'AxkAAADYAsUAnAOBAs0AywD0AE4CjQAAAP8A1wDMATABRQBzALQApgAAAAAAcwCAAI0AAAAAAAAAAAAAAAADAACiAJgAgwCNAAAAAAAAAAAFrv68BYH9MAAR//YAtgC8AMYAAAB/AIoAYAAAAAAAAAAAAPAB7gGQAAACGQEIARUAAAAAAAAAvgAAAAAAAAAAB0gDagK2' + + 'AgL9kwAAAJEAZwCRAGEB2QAAAo0DQQAAAAAAAAAAAAAAAAAAAKr+b/5oAQUAkwCYAOIBUQCPAL4Arv65/qQAXgCvAtUAVQDyAKYEFQYBAAAD4QAQAvoAD/7UAer/8wC4AAAAAANjAAv9D//1AAAAAAAABoEEdwAVBNkAAP/s/8X+fwB1AM0A8gECANUBGQAAAAAAAABM' + + 'AAAATAAAAEwAAABMAAACWAAAArQAAAPgAAAFIAAAB8gAAAjcAAAJEAAACXAAAAnQAAAKZAAACrwAAAsMAAALPAAAC2wAAAucAAAMJAAADHwAAA0UAAAOJAAADqwAAA+AAAAQRAAAEKwAABGEAAASTAAAE7wAABVAAAAVnAAAFiAAABZ8AAAXNAAAGKwAABsAAAAb+AAA' + + 'HKgAAB0oAAAdzAAAHkAAAB7wAAAfkAAAIBAAACCIAAAg+AAAITwAACMEAAAjkAAAJDwAACTQAAAlqAAAJlwAACc4AAAopAAAKTQAACmkAAArRAAAK7AAAC0cAAAtuAAALgQAAC40AAAugAAALtAAAC8EAAAvWAAAMFwAADEIAAAxpAAAMlAAADMgAAAzqAAANJQAADUw' + + 'AAA1sAAANrgAADcsAAA3jAAAOJQAADk0AAA5wAAAOmwAADsQAAA7mAAAPIQAAD0EAAA9oAAAPygAAEE4AABBuAAAQ8gAAEQ4AABE5AAARTQAAEXgAABGUAAARmAAAEfYAABIXAAASUAAAEoQAABK4AAAS1gAAEycAABNPAAATmgAAE9MAABP7AAAUFQAAFBkAABRnAAA' + + 'UdAAAFJMAABSzAAAU2wAAFRUAABUoAAAVTQAAFWwAABV6AAAVywAAFegAABYGAAAWLQAAFjUAABZAAAAWSAAAFncAABaEAAAWkAAAFpwAABaoAAAWtQAAFsoAABcEAAAXDgAAFxsAABcnAAAXMwAAF0AAABdMAAAXVwAAF2MAABdwAAAXoAAAF6wAABe4AAAXxAAAF9E' + + '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' + + 'AAEYwAABGPQAARm0AAEaVAABGzQAARucAAEcSAABHMwAAR0MAAEd3AABHqAAAR9gAAEgTAABIYgAASLQAAEjyAABJMAAASX4AAEm6AABJ7QAASgoAAEpbAABKfgAASqYAAErVAABK2gAASwIAAEseAABLIwAAS0EAAEtlAABLiAAAS68AAEvQAABL1AAAS9gAAEvrAAB' + + 'L/gAATBEAAEwjAABMNQAATFUAAEx1AABMeQAATH0AAEyRAABMpQAATL4AAEzXAABM4wAATPcAAE0GAABNFQAATSEAAE0sAABNOwAATUoAAE1eAABNagAATXwAAE2OAABNnwAATbAAAE3EAABNzwAATf0AAE4IAABOJQAATj0AAE55AABOkwAATq0AAE7GAABO7wAATvw' + + 'AAE8oAABPLQAATzEAAE8/AABPUQAAT2MAAE91AABPgwAAT5EAAE+jAABPqAAAT7oAAE/YAABP5wAAT/YAAFAGAABQFgAAUDEAAFA+AABQUgAAUGcAAFCDAABQlwAAUKUAAFCzAABQwAAAUM4AAFDfAABQ7QAAUQAAAFELAABRFgAAURsAAFE3AABRQAAAUUkAAFFZAAB' + + 'RYgAAUW8AAFGCAABRmAAAUagAAFGtAABRtgAAUcMAAFHTAABR6AAAUfgAAFIGAABSFAAAUiIAAFIwAABSOwAAUkYAAFJQAABSWgAAUmUAAFJzAABSgQAAUo0AAFKZAABSpQAAUq4AAFK9AABSzAAAUtEAAFLeAABS9AAAUwAAAFMWAABTKAAAUzEAAFM9AABTUwAAU1g' + + 'AAFNnAABTbAAAU30AAFOZAABTogAAU6cAAFO0AABTuQAAU8IAAFPLAABT1QAAU98AAFPtAABT+QAAVAYAAFQgAABULwAAVEUAAFRRAABUXAAAVGcAAFSAAABUjgAAVKEAAFSwAABUvAAAVMkAAFTWAABU4AAAVP4AAFUfAABVUwAAVV8AAFVrAABWLAAAVjgAAFZGAAB' + + 'WWwAAVm4AAFZ6AABWhgAAVpsAAFapAABWtwAAVtAAAFb4AABXBgAAVxgAAFcqAABXMwAAVzwAAFdWAABXaAAAV3IAAFd3AABXfAAAV4sAAFeQAABXlQAAV5oAAFefAABXuQAAV74AAFfWAABX2wAAV+AAAFf2AABYAwAAWA8AAFgUAABYGAAAWEcAAFh3AABYewAAWI0' + + 'AAFiwAABZNgAAWToAAFlLAABZWwAAWW4AAFmHAABZnAAAWbEAAFm9AABZwQAAWcUAAFnVAABZ8wAAWfcAAFn7AABZ/wAAWjgAAFo8AABaQAAAWlwAAFpgAABaZAAAWoEAAFqFAABamAAAWpwAAFq8AABawAAAWsQAAFthAABbZQAAW+kAAFwaAABcJwAAXDUAAFxBAAB' + + 'cyAAAXNQAAFzfAABc7AAAXR0AAF1TAABdmwAAXckAAF4AAABeKgAAXlMAAF58AABelAAAXrEAAF8RAABfPgAAX7MAAF/sAABf8AAAYBkAAGA9AABgZwAAYIwAAGCyAABg1wAAYVwAAGGOAABiAQAAYnwAAGKKAABimAAAYqQAAGKwAABivAAAYv8AAGM/AABjXwAAY2k' + + 'AAGN3AABjewAAY7EAAGPyAABkHAAAZEIAAGRoAABklwAAZLQAAGTQAABlBwAAZSAAAGVQAABldwAAZasAAGXfAABmBwAAZi0AAGZVAABmjQAAZsEAAGbvAABnIQAAZ1MAAGeCAABnrQAAZ9kAAGf7AABoMAAAaGEAAGhlAABoaQAAaG0AAGiTAABouQAAaL0AAGjBAAB' + + 'oxQAAaOQAAGkHAABpOQAAaT0AAGlDAABpSQAAaVYAAGmJAABpwQAAak8AAGqHAABqiwAAao8AAGrNAABq0QAAawgAAGs5AABrXAAAa2gAAGt1AABrggAAa+EAAGvlAABsDwAAbBMAAGwjAABsSgAAbE4AAGzlAABtJAAAbUoAAG1WAABtewAAbZoAAG2eAABtogAAbaY' + + 'AAG25AABtvQAAbcEAAG3FAABt5wAAbmoAAG5uAABuiQAAbqQAAG8WAABviwAAb7MAAG/hAABwCQAAcEIAAHByAABwnQAAcKEAAHDQAABxAAAAcRAAAHE2AABxOgAAcZYAAHHQAABx6wAAcfcAAHIZAAByNwAAcpkAAHK1AAByuQAAcswAAHLQAABy1AAAc0QAAHNIAAB' + + 'z2wAAc98AAHP5AAB0FgAAdI0AAHUKAAB1LAAAdVIAAHVyAAB1qAAAddcAAHX9AAB2CgAAdhcAAHZUAAB2YAAAdpUAAHaZAAB2nQAAduUAAHbpAAB3GgAAd0QAAHd3AAB3gwAAd5AAAHedAAB4EwAAeFMAAHh6AAB4pQAAeNAAAHkJAAB5SAAAeWwAAHmQAAB5wAAAee8' + + 'AAHoiAAB6UgAAeosAAHrBAAB7HgAAe3cAAHugAAB7xgAAfAsAAHxIAAB8ZwAAfIQAAHySAAB8oAAAfNwAAH0VAAB9TwAAfYMAAH3kAAB+MgAAfj4AAH5LAAB+cQAAfpYAAH61AAB+yAAAft0AAH7qAAB+9wAAfwwAAH9dAAB/tQAAf+cAAIAaAACARgAAgHEAAICaAAC' + + 'A0AAAgOMAAID2AACBEwAAgS8AAIFcAACBiQAAgcsAAIIJAACCTAAAgo8AAIK5AACC5AAAgxcAAINFAACDdwAAg6oAAIPUAACD/gAAhB4AAIQ/AACEXAAAhHoAAISrAACE3gAAhSEAAIVgAACFlwAAhcwAAIXlAACF/gAAhhMAAIYsAACGTAAAhm8AAIaXAACGwgAAhuE' + + 'AAIcAAACHJQAAh00AAId6AACHoAAAh8AAAIfEAACH/wAAiDwAAIh8AACIvwAAiMMAAIjQAACI3AAAiRAAAIlCAACJZwAAiYsAAImzAACJ2wAAifwAAIodAACKRAAAimwAAIqcAACKxwAAissAAIrXAACK5AAAivIAAIsAAACLBAAAiwgAAIsVAACLIQAAiyUAAIspAAC' + + 'LNgAAi0QAAItRAACLXgAAi2sAAIt4AACLoQAAi6UAAIuxAACLvQAAi8oAAIvXAACL5QAAi/MAAIwfAACMTwAAjFwAAIxqAACMeAAAjIUAAIyRAACMnQAAjKoAAIy3AACMxAAAjNEAAIzeAACM6wAAjQIAAI0YAACNJgAAjTQAAI1hAACNjAAAjbsAAI3rAACOEwAAjj0' + + 'AAI5cAACOYAAAjpIAAI7IAACO+wAAjykAAI9XAACPgAAAj60AAI/YAACP/wAAkCYAAJAqAACQLgAAkE4AAJBuAACQcgAAkHYAAJCgAACQyAAAkMwAAJDQAACQ1AAAkNgAAJDxAACRFgAAkSYAAJFCAACRYgAAkW8AAJF5AACRmwAAkakAAJGzAACRyQAAkdYAAJHaAAC' + + 'R7wAAkiAAAJI7AACSUAAAkmgAAJJzAACSfQAAkooAAJKeAACSqwAAkrAAAJLLAACSzwAAktoAAJLmAACS6wAAkvAAAJMHAACTHwAAk1MAAJNwAACTkAAAk50AAJO0AACT1gAAk+AAAJPqAACT+AAAk/wAAJQdAACULQAAlDUAAJRAAACUSwAAlFYAAJRaAACUXgAAlHU' + + 'AAJSCAACUjwAAlKkAAJS1AACU4QAAlP4AAJUjAACVNwAAlVUAAJViAACVgQAAlZoAAJXAAACVzgAAleMAAJYBAACWHwAAljsAAJZmAACWcwAAlo0AAJa1AACW1AAAlvIAAJcYAACXOQAAl14AAJeBAACXlgAAl8kAAJftAACX8wAAl/kAAJf/AACYCwAAmBwAAJg2AAC' + + 'YZAAAmLYAAJjtAACY8QAAmQwAAJk1AACZUwAAmYQAAJmYAACZtQAAmbkAAJnXAACaOgAAmlkAAJpdAACaYQAAmoIAAJqiAACa3QAAmyAAAJtTAACbawAAm4MAAJuhAACbxgAAm+sAAJxbAACcXwAAnIEAAJytAACc3AAAnOAAAJzkAACc6AAAnRMAAJ0/AACdcwAAnYM' + + 'AAJ2HAACdmwAAnZ8AAJ3FAACd4wAAngAAAJ4rAACeUwAAnoQAAJ6eAACetwAAntAAAJ73AACfEgAAnx8AAJ85AACfWAAAn2cAAJ+OAACfqwAAn8gAAJ/mAACgHwAAoDsAAKBfAACgcgAAoIsAAKCwAACg6AAAoSEAAKFNAAChlgAAocEAAKHrAACiFAAAojgAAKJlAAC' + + 'ikQAAosQAAKLXAACi9gAAoyQAAKNNAACjaAAAo4kAAKOdAACjsQAAo9sAAKP6AACkGQAApDYAAKRjAACkeAAApKcAAKTXAACk8gAApRkAAKVGAAClbgAApXMAAKV4AAClfQAApYIAAKWvAACltAAApd0AAKXiAACl5wAApiMAAKZoAACmrQAApvMAAKdaAACnpgAAp/c' + + 'AAKg6AACodgAAqMEAAKkKAACpSgAAqYQAAKmeAACp1QAAqh0AAKo1AACqOQAAqnUAAKqeAACq1wAAqxIAAKtMAACrfAAAq8kAAKv2AACsEQAArFEAAKyDAACsuwAArOoAAK0oAACtWwAArYAAAK2xAACt1gAArh8AAK5aAACumgAArtYAAK8TAACvUAAAr4sAAK+uAAC' + + 'v4AAAsAsAALA6AACwcQAAsJ4AALC9AACw7gAAsSIAALEmAACxRgAAsWUAALFpAACxiQAAsaYAALGzAACxwAAAsdcAALIAAACyFQAAsi8AALI/AACydgAAsqEAALLKAACy8wAAsw8AALMyAACzYQAAs5UAALOzAACz2wAAtAsAALQ7AAC0VAAAtHQAALSJAAC0nwAAtME' + + 'AALTuAAC1FAAAtTkAALVLAAC1XQAAtX8AALWTAAC1nwAAtasAALW3AAC1wwAAtdQAALXlAAC1+gAAtgYAALYbAAC2JgAAtjEAALY+AAC2RwAAtlIAALZcAAC2ZwAAtnIAALZ9AAC2iAAAtpUAALaeAAC2qQAAtrMAALa+AAC2yAAAttMAALbdAAC26AAAtvIAALcAAAC' + + '3CwAAtxgAALcjAAC3LQAAtzcAALdBAAC3SwAAt1oAALdpAAC3dQAAt4EAALeNAAC3mQAAt6UAALexAAC3uwAAt8YAALfTAAC34QAAt+cAALftAAC39wAAuAIAALgMAAC4FgAAuCQAALgxAAC4PQAAuEoAALhVAAC4YAAAuGsAALh2AAC4gAAAuIoAALiVAAC4oAAAuKs' + + 'AALi1AAC4wAAAuMoAALjWAAC44gAAuO4AALj6AAC5BAAAuQ4AALkaAAC5JgAAuTAAALk6AAC5RAAAuU8AALlZAAC5ZAAAuXEAALmAAAC5jwAAuZ4AALmsAAC5uwAAucgAALnXAAC54wAAue8AALn8AAC6CAAAuhUAALohAAC6LAAAujcAALpGAAC6VQAAumAAALprAAC' + + '6dwAAuoMAALqNAAC6lwAAuqQAALqxAAC6vgAAutQAALrjAAC68gAAuv4AALsKAAC7FQAAux8AALsqAAC7NAAAuz4AALtIAAC7UwAAu14AALtoAAC7cwAAu30AALuIAAC7lQAAu6QAALuyAAC7wQAAu80AALvZAAC74wAAu+0AALv6AAC8BwAAvBMAALwfAAC8LAAAvDk' + + 'AALxFAAC8UQAAvFwAALxmAAC8cgAAvH4AALyLAAC8mAAAvKUAALyxAAC8vQAAvMkAALzUAAC83wAAvOoAALz1AAC9AAAAvQ0AAL0aAAC9JwAAvTMAAL0/AAC9bgAAvXgAAL2DAAC9jwAAvZwAAL2pAAC9tgAAvcQAAL3SAAC93wAAvewAAL35AAC+BwAAvhgAAL4pAAC' + + '+NgAAvkQAAL5RAAC+XwAAvmwAAL56AAC+hwAAvpUAAL6mAAC+twAAvsEAAL7LAAC+1wAAvuMAAL7vAAC++wAAvwgAAL8VAAC/IwAAvzEAAL8+AAC/SwAAv1gAAL9lAAC/dAAAv4MAAL+PAAC/mwAAv6YAAL+wAAC/ugAAv8UAAL/RAAC/3QAAv+oAAL/3AADABQAAwBM' + + 'AAMAgAADALQAAwDoAAMBHAADAWAAAwGoAAMB3AADAhAAAwJEAAMCeAADAqwAAwLgAAMDEAADA0AAAwNsAAMDmAADA8AAAwPsAAMEHAADBEwAAwSAAAMEtAADBOgAAwUcAAMFUAADBYQAAwW0AAMF5AADBhAAAwY8AAMGcAADBqQAAwbQAAMG6AADBxgAAwdIAAMHeAAD' + + 'B6gAAwfcAAMIEAADCEgAAwiAAAMIuAADCPAAAwkoAAMJYAADCYQAAwmoAAMJ0AADCfgAAwogAAMKSAADCnAAAwqYAAMKyAADCvwAAws0AAMLbAADC6AAAwvUAAML/AADDCQAAwxMAAMMdAADDJwAAwzEAAMM9AADDSQAAw1cAAMNlAADDcgAAw38AAMOMAADDmQAAw6M' + + 'AAMOtAADDtwAAw8EAAMPLAADD1QAAw98AAMPpAADD9QAAxAEAAMQPAADEHQAAxCsAAMQ5AADERwAAxFUAAMRfAADEaQAAxHMAAMR9AADEhwAAxJEAAMSbAADEpQAAxLEAAMS+AADEzAAAxNoAAMTnAADE9AAAxP0AAMUGAADFEAAAxRoAAMUkAADFLgAAxTsAAMVIAAD' + + 'FVgAAxWQAAMVxAADFfgAAxYwAAMWaAADFpAAAxa4AAMW4AADFwgAAxc4AAMXbAADF6AAAxfUAAMYCAADGDwAAxhwAAMYpAADGMgAAxjsAAMZFAADGTwAAxlkAAMZjAADGbQAAxncAAMaEAADGkQAAxp0AAMapAADGtgAAxsIAAMbOAADG2gAAxucAAMbzAADHAAAAxww' + + 'AAMcZAADHJQAAxzQAAMdDAADHUwAAx2MAAMdzAADHgwAAx5MAAMejAADHrgAAx7kAAMfFAADH0QAAx90AAMfpAADH9QAAyAEAAMgQAADIHwAAyC8AAMg/AADITwAAyF8AAMhuAADIfgAAyIoAAMiWAADIogAAyK4AAMi6AADIxgAAyNIAAMjeAADI7QAAyPwAAMkMAAD' + + 'JHAAAySwAAMk8AADJTAAAyVwAAMlnAADJcgAAyX4AAMmKAADJlgAAyaIAAMmuAADJugAAyccAAMnTAADJ4gAAye0AAMn8AADKCAAAyhcAAMojAADKLwAAyjgAAMpBAADKSwAAyl0AAMp1AADKhwAAyqUAAMrQAADK3wAAyuUAAMrzAADK/wAAyw4AAMsbAADLKAAAyzE' + + 'AAMs6AADLRAAAy18AAMt6AADLpwAAy7MAAMu/AADL0AAAy+EAAMvtAADL/AAAzAgAAMwUAADMHQAAzCYAAMxBAADMXAAAzIsAAMyYAADMpAAAzLcAAMzKAADM1wAAzOQAAMzwAADM/wAAzQwAAM0YAADNIgAAzSsAAM01AADNTgAAzWgAAM17AADNigAAzZQAAM2iAAD' + + 'NrgAAzb0AAM3GAADNzwAAzdgAAM3hAADN6wAAzfgAAM4LAADOCwAAzgsAAM4LAADOCwAAzgsAAM4LAADOCwAAzgsAAM4LAADOCwAAzgsAAM4LAADOFgAAzjEAAM5KAADOYgAAzmYAAM5yAADOfgAAzooAAM6WAADOmgAAzqAAAM60AADOyAAAzt0AAM7wAADPFAAAzzg' + + 'AAM9fAADPZQAAz4IAAM+zAADPwwAAz9wAAM/qAADP+AAA0AkAANAhAADQOQAA0D0AAND3AADRBgAA0REAANEaAADRMgAA0UoAANFVAADRYQAA0WwAANGRAADRrQAA0cYAANHUAADR5QAA0f4AANIWAADSKAAA0j8AANJXAADSZAAA0ocAANKhAADSwgAA0tgAANLjAAD' + + 'S9wAA0xYAANMnAADTPQAA01UAANNiAADThAAA054AANOjAADTqAAA060AANOyAADTtwAA0+0AANRBAADUgwAA1LIAANT8AADVNQAA1XwAANZAAADWkAAA1tsAANcLAADXRgAA15UAANe9AADX7wAA2FsAANicAADY4wAA2SQAANlhAADZnwAA2dgAANn+AADaAwAA2kQ' + + 'AANp1AADatQAA2vUAANsjAADbUwAA24IAANvSAADb7AAA2/QAANv8AADcBAAA3AwAANwUAADcHAAA3CAAANw2AADcTQAA3GMAANx6AADcmgAA3L0AANzlAADc/wAA3TIAAN1sAADdfwAA3aYAAN2yAADdtgAA3cMAAN3zAADeKwAA3jkAAN5TAADecAAA3qUAAN7WAAD' + + 'e+QAA3xEAAN8uAADfSgAA32EAAN9zAADfjAAA36QAAN+xAADfvgAA39AAAN/iAADf8wAA4AUAAOAaAADgLgAA4EMAAOBYAADgcwAA4IkAAOCdAADgtwAA4NAAAODuAADhBwAA4SAAAOE+AADhVwAA4W8AAOGNAADhpgAA4b8AAOHdAADh+QAA4hYAAOI6AADiVgAA4nI' + + 'AAOKWAADiswAA4s8AAOL0AADjEQAA4y0AAONSAADjegAA46EAAOPTAADj3wAA4+sAAOP3AADkAwAA5A8AAOUcAADm3wAA6JAAAOibAADorQAA6LkAAOjMAADo1wAA6OMAAOjvAADo+wAA6QYAAOkjAADpRAAA6cwAAOngAADp9wAA6g0AAOojAADqOQAA6lUAAOprAAD' + + 'qdgAA6oEAAOqaAADqwgAA6t4AAOsrAADragAA66kAAOvXAADr9gAA7BUAAOw+AADsXAAA7HsAAOygAADsygAA7OEAAO0IAADtPAAA7VcAAO1uAADtewAA7ZoAAO2zAADt0AAA7ggAAO4yAADuVwAA7oYAAO61AADu5QAA70IAAO90AADvlQAA77wAAO/iAADwCgAA8CU' + + 'AAPBBAADwagAA8I4AAPDAAADw7QAA8ScAAPE7AADxTwAA8XsAAPGPAADxnAAA8aoAAPG2AADxwQAA8dUAAPHpAADx/QAA8hEAAPIlAADyNAAA8kMAAPJTAADyZwAA8nkAAPKFAADykQAA8sEAAPLpAADy7wAA8wAAAPMPAADzEwAA8xcAAPMbAADzHwAA8yMAAPMnAAD' + + 'zKwAA8y8AAPMzAADzRwAA800AAPNTAADzaQAA838AAPOFAADziwAA854AAPOkAADztgAA87wAAPPIAADzzgAA89QAAPPaAADz5gAA8+wAAPP1AAD0AAAA9AwAAPQVAAD0IQAA9CsAAPQ3AAD0RgAA9FIAAPRYAAD0bAAA9HYAAPR8AAD0ggAA9IgAAPSOAAD0swAA9L8' + + 'AAPTLAAD03AAA9O0AAPWGAAD1mgAA9bQAAPXJAAD14AAA9fAAAPYAAAD2EgAA9ikAAPY+AAD2YAAA9ncAAPaRAAD2lgAA9psAAPagAAD2pQAA9qoAAPavAAD2swAA9sYAAPbKAAD2zwAA9tQAAPbZAAD23gAA9ucAAPbsAAD28QAA9vYAAPb7AAD2/wAA9wMAAPcIAAD' + + '3DQAA9xIAAPcXAAD3HAAA9yEAAPcmAAD3KwAA9zAAAPc1AAD3OgAA9z8AAPdEAAD3SQAA904AAPdTAAD3WAAA910AAPdiAAD3ZwAA92wAAPdxAAD3dgAA93sAAPeAAAD3jAAA950AAPewAAD3xgAA99gAAPflAAD4CwAA+CAAAPg1AAD4SgAA+F0AAPhyAAD4hwAA+Jo' + + 'AAPivAAD4wgAA+NUAAPjrAAD5AQAA+RYAAPkrAAD5PAAA+U8AAPllAAD5fAAA+ZIAAPmnAAD5uQAA+cwAAPnhAAD5+AAA+g8AAPomAAD6NwAA+kgAAPpbAAD6cwAA+osAAPqiAAD6uAAA+skAAPrbAAD68QAA+wcAAPsbAAD7MQAA+0gAAPtdAAD7cAAA+4QAAPuXAAD' + + '7rQAA+8UAAPvcAAD78gAA/AYAAPwZAAD8LwAA/EcAAPxfAAD8dwAA/IoAAPycAAD8rwAA/McAAPzfAAD89wAA/Q0AAP0fAAD9MAAA/UYAAP1eAAD9dgAA/YwAAP2fAAD9sgAA/cYAAP3cAAD98AAA/gYAAP4eAAD+NQAA/koAAP5cAAD+bwAA/oUAAP6dAAD+tQAA/s0' + + 'AAP7gAAD+8gAA/wQAAP8cAAD/NAAA/0wAAP9iAAD/dAAA/4cAAP+dAAD/tQAA/80AAP/jAAD/9gABAAwAAQAgAAEANgABAE4AAQBkAAEAdwABAIoAAQCfAAEAtAABAMcAAQDdAAEA9QABAQ0AAQElAAEBOAABAUoAAQFbAAEBcgABAYkAAQGgAAEBtQABAcYAAQHYAAE' + + 'B7QABAgQAAQIbAAECMQABAkQAAQJVAAECagABAn8AAQKWAAECrAABAr8AAQLSAAEC5wABAvoAAQMPAAEDJQABAzgAAQNMAAEDYQABA3cAAQONAAEDngABA60AAQO8AAED2QABA/kAAQQHAAEEGAABBCkAAQRBAAEEUQABBGEAAQRxAAEEgQABBJEAAQShAAEEsQABBME' + + 'AAQTRAAEE4QABBPEAAQUBAAEFEQABBSEAAQUxAAEFQQABBVIAAQVjAAEFdAABBYUAAQWWAAEFpwABBbkAAQXIAAEF2QABBeoAAQYCAAEGFgABBigAAQY6AAEGTAABBl4AAQZqAAEGkgABBrkAAQbkAAEG/AABBwoAAQcmAAEHRwABB2EAAQeAAAEHowABB7QAAQfcAAE' + + 'H/wABCBIAAQglAAEIQQABCGUAAQh7AAEIkgABCLEAAQjWAAEI6QABCPwAAQkaAAEJPwABCVgAAQlwAAEJkgABCbkAAQm5AAEJuQABCcYAAQnMAAEJ0gABCd0AAQnjAAEJ6QABCe8AAQnzAAEKBgABCkIAAQpmAAEKjgABCrYAAIAzQAABTIFgQADAAcAH0ANBgIFAwID' + + 'CQgFAwQAAwA/zS/NERIBOTkRMxEzMTATIREhExEhEc0EZfubTAPNBYH6fwU1+xcE6QAAAAACAMEAAAHnBYEAAwAHAeBA/wMHBwIEBAkIAQEFAgMEBZ1bBIIJAXQJAWQJAVQJAUYJATIJASIJARYJAQQJAfQJAeQJAdQJAcQJAbQJAaQJAZQJAYQJAXIJAWQJAVQJAUQJ' + + 'ATIJASQJARQJAQIJAWj0CQHkCQHSCQHGCQG2CQGmCQGSCQGCCQFyCQFkCQFUCQFECQE2CQEgCQEUCQEGCQH2CQHiCQHUCQHECQG0CQGkCQGUCQGECQF2CQFmCQFWCQE2CQEiCQEBEAkBAAkB8AkB5AkB1AkBwAkBtAkBpAkBlAkBcAkBYAkBUAkBQAkBMAkBJAkBFAkB' + + 'BAkBOPQJAeQJAdAJAcAJAbAJAaQJAZQJAUBZhAkBdAkBZAkBVAkBIAkBFAkBAAkB8AkB5AkB1AkBxAkBlAkBcAkBYAkBVAkBRAkBNAkBJAkBFAkBBAkBxAkBtAkBlAkBhAkBdAkBVAkBRAkBEAkBAgAJAQdeXV9dXV1dXV1dXXFxcXFxcXFxcXFxcXFycnJycnJycnJy' + + 'cnJycl5dXV1dXV1dXV1dXV1dXV1xcV9xcXFxcXFxcXFxcXFxcnJycnJycnJycnJycnJycl5dXV1dXV1dXV1dXV1dXV1dcXFxcXFxcXFxAC8rABg/EjkvERIBOREzMxEzMTABIwMhAREhEQHH5iABJv7aASABqgPX+n8BDv7yAAIAhwOCA0QFgQADAAcALUAWAwIHBgAG' + + 'AQkFAgYJCAQAAgCpWwYCAwA/MysRADMREgE5OV9eXREzETMxMAEjAyEBIwMhAyfbGwET/jnbGwERA4IB//4BAf8AAAAAAgAjAAAEUgVzABsAHwC7QHYEAQAZBBgFBx4fFgQXBggdHBUEFAkLDg8SBBMKFxgGBRQTCQoKExgFBBoMDB0fGgQhIAQHCAsEDA0MrlkBDh0e' + + 'BA0ADxwfBBAREK5ZEhUWGQQRDw2vDQLPDf8NAg8RTxGvEQPPEQENEQ0RBRQXGAMTsQYJCgMFAC8XMz8XMxI5OS8vXXFdcREXMysRABczERczKxEAFzMREgEXORESFzkRMxEzETMRMxESFzkREhc5ERIXORESFzkxMAEDMxUjAyMTIQMjEyM1MxMjNTMTMwMhEzMDMxUh' + + 'AyETA41F1/ZSnFD+zVCZT5u8Rs/uVJlSATNUnFSk/W9IATVGA17+tJX+gwF9/oMBfZUBTJQBgf5/AYH+f5T+tAFMAAAAAwAb/2gEVgXwACgALwA2AI1AUhsjNQQEGS8NBTAACgkrFSAfHxUFCQAFODc1DQYNdFkAChAKMApACoAKkAoGCQMKCgMGDjQkLyMpGCl1WR0g' + + 'AQsgASAgGzQvBg8YARhACxBIGAYALy8rXRI5OTMzL11dKxEAMxEzETMRMzMYL19eXSsRADMREgEXOREzETMRMxEzETMzMzMRMzMzMTABFAYHFSM1LgEnJR4BFxEuASMuAjU0Njc1MxUeAhcFLgEnERcyBBYBBhUUHgEXATQuAScRNgRW8+5t1/AmAQATcWkDGASipVrl' + + '222Dr2sh/vgPV1ALHQEnkv2yuh87YAFKJEV03QGctccJr6wIu8EvcWkKAYcCBSVlm3CmtgiGhgVJjYMnV18L/qACYLsCgQ6SLDomIP46Mj8oIf6RDwAAAAAFADP/8AbnBZEACwAPABsAJwAzAglA/xwAIgYODwwNKBMuGRkTDQ8GAAY1NBYxtlkQFrdbECu2WRAHDgYJ' + + 'H7ZZAwm3WwMltlkDGQ0YlDUBgzUBdDUBZDUBVDUBRTUBNjUBJjUBFzUB9DUB4zUBANA1AcI1AbQ1AaQ1AZI1AYQ1AXY1AWA1AVI1AUA1ATA1ASI1ARQ1AQQ1AWf2NQHmNQHWNQHANQGyNQGgNQGSNQGENQFyNQFkNQFWNQEyNQEiNQESNQEENQHyNQHiNQHUNQHGNQG2' + + 'NQGSNQGENQF2NQFmNQFQNQFCNQE0NQEmNQECNQHyNQHkNQHWNQHGNQG0NQGkNQGWNQGGNQFiNQFUNQFGNQE2NQEmNUB3ARQ1AQY1ATfSNQHCNQG0NQGkNQGWNQF5NQFmNQFJNQE0NQEkNQEUNQEENQH2NQHZNQG5NQGiNQGUNQGENQF2NQFmNQE5NQEgNQESNQEBADUB' + + '8DUB4DUB1DUBuzUBqzUBnzUBcDUBYDUBUDUBRDUBGzUBDzUBBwJfXl1dXV1dXV1dXV1dXXFfcXFxcXFxcXFxcXFycnJycnJycnJycnJeXV1dXV1dXV1dXV1dXV1dcXFxcXFxcXFxcXFxcXFycnJycnJycnJycnJycnJeXV1dXV1dXV1dXV1dXV1fXV1xcXFxcXFxcXEA' + + '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' + + 'BQEABQHwBQHABQGwBQGgBQFwBQFgBQEfBQHgBQHQBQHABQGwBQGABQFdXV1dXXFxcXFxcXFycnJycnJycgA/PxESATkRMzEwMxEhEYkBJwWB+n8AAAEAH//sA+cFgQARADZAHgQDCw4ODQMDExINDF9ZDQMAB19ZBAQAE3ATATATAXFxAD8yLysAGD8rERIBFzkRMxEz' + + 'MTAFIiYnJR4BMzI2NREhNSERFAYCDNvrJwElEmJWWFv+5wI/+hS+1CttaXZuAuPn/D3c9gAAAAEAiQAABbQFgQALADNAGwcDAwQKAQgJAAsLCQEEBAwNBQMAEjANASANAV1dAD8/ERIBFzkRMxEzETMRMxEzMTAhAQcRIREhEQEhCQEEWP4Grv7ZAScCewFY/aYCiwKH' + + 'hf3+BYH9gQJ//az80wAAAAABAIkAAASkBYEABQAjQBEDAAAEBgcBAwADX1kAElAHAV0APysAGD8REgE5OREzMTAzESERIRWJAScC9AWB+2PkAAAAAAEAiQAABiEFgQAXAW1A/xUAFxANDhcOGRgECgcTFxMnEwMIChgKKAoDCQoTFQ8DDggAEosZAWsZAUsZATsZARsZ' + + 'AfsZAe8ZAcQZAasZAZ8ZAYsZAXQZAVsZAU8ZATQZAQsZAWf/GQHkGQHLGQG7GQGvGQGUGQF7GQFvGQFEGQErGQEfGQELGQH0GQHbGQHPGQG7GQGLGQFrGQFLGQE7GQEbGQH7GQHLGQGrGQGLGQF7GQFbGQE7GQEvGQEEGQE36xkByxkBtBkBmxkBdBkBSxkBJBkBCxkB' + + '+xkB1BkBuxkBrxkBhBkBaxkBXxkBAkAZAT8ZAR8ZAfAZAeAZAc8ZAaAZAX8ZAU8ZAT8ZASAZAbMAGQEHXl1dXV1dXV1dXXFxcV9xcXFxcXFxcnJycnJycnJeXV1dXV1dXV1dcXFxcXFxcXFxcnJycnJycnJycnJyXl1dXV1dXV1dXV1dcXFxcXEAPzIyPzM5OV5dXREz' + + 'ERIBOTkRMzMRMzMxMCERNDY3AgcDIwsBFhURIREhEx8BNwEhEQUbAQlHIv7S/msM/voBi/wWMD8BAwGJA1YdOtz+82r87gMSAXfoS/yqBYH87Ey94gM7+n8AAAEAiQAABT0FgQANAFBALwAKCg0HBAQFDQUPDgEICwYDBQASYA8BUA8BQA8BgA8BcA8BwA8BoA8BMA8B' + + 'IA8BXV1dXXFxcnJyAD8yPzM5ORESATk5ETMRMxEzETMxMCEBFhURIREhASY1ESERA+P9mhL++gFRAm8SAQYEPZ5g/MEFgfu6l3wDM/p/AAAAAgBU/+wF4wWWAAwAGABIQCwTBw0ABwAZGgoQX1kKBAQWX1kEE6AaAYAaAXAaAWAaAUAaATAaAfAaASAaAV1dcXFxcXFx' + + 'AD8rABg/KxESATk5ETMRMzEwARQCBCMgABEQACEgAAE0AiMiAhUUEjMyEgXjrv682P60/ocBeAFPAU8Bef7T2MPG2N2/xtcCx9z+srEBhwFUAVMBfP6A/rHkAQP+/+bo/vUBBAAAAAIAiQAABRAFgQALABMASEApDwYGBwwABwAVFAUQX1kFBQYICA9fWQgDBhKAFQFw' + + 'FQFgFQEwFQEfFQFxcXFxcQA/PysREgA5GC8rERIBOTkRMxEzETMxMAEUDgEjIREhESEyBAU0KQERITI2BRB855/+ov7ZAnn9ARH+1/76/s8BOXqEA8OI1nX+EAWB6dre/jd5AAACAFT+bQXjBZYAFgAiAFlANh0RFwAACAMOEQUjJBQaX1kUBAsGX1kLCw4OIF9ZAwMO' + + 'E4AkAXAkAWAkAUAkATAkAfAkASAkAV1dcXFxcXEAPzMvKxEAMxgvKwAYPysREgEXOREzETMxMAEQAAceATMyNwcGIyImJyQAERAAISAAATQCIyICFRQSMzISBeP+6/cie287PAJ+dKPWQf7j/sUBeAFPAU8Bef7T2MPG2NzAxtcCx/7m/okyY1gKyhy20xsBfQE5AVMB' + + 'fP6A/rHkAQP+/+bo/vQBBAACAIkAAAWdBYEADQAVAF1AMwEMDBIJEgMDBA4JAA0NCQQDFxYMEgICEl9ZAgIABQURX1kFAwQAEnAXAaAXATAXASAXAV1dXXEAPzI/KxESADkYLysREgA5ERIBFzkRMxEzETMRMxESOREzMTAhASERIREhMgQVFAYHCQE0KQERITI2BFH+' + + 'uf6m/tkCwPwBEqiPAX3+kf78/oYBgnyAAhf96QWB2cuU1yL9sAPRy/5gcAAAAAABADv/7AUGBZYAKgBSQC8MAB0cIhYHBgYWHAAELCsMIgMZGSBfWR0dGQQDCl9ZEAcgBzAHAzAHQAcCBwcDEwA/My9dcSsAGD8zLysREgA5ORESARc5ETMRMxEzETMxMAEUBCEgJCcl' + + 'HgEzIDU0LgEnLgQ1NCQhIAQXBS4BIyAVFB4BFx4DBQb+zf7X/vH+zCwBHR2olQE1R4G3nnxkRicBHwESAQYBByb+4haHfv70OXCry69mNgGWz9vAwy9wZbw8TjQlJS09VnRLv8ukvSdbXKg3RjElK0lhhwAAAQAXAAAEzQWBAAcBREDoAQIEAgcDCQgABAUEX1kFAwES' + + 'UAkBQAkBNAkBJAkBBAkB9AkB5AkBwAkBtAkBpAkBiwkBcAkBZAkBVAkBOwkBJAkBBAkBaPsJAeQJAcsJAaAJAZAJAYQJAVQJAUQJATQJAQQJAfQJAdsJAcsJAbQJAYsJAXQJAVsJATsJASQJAQsJAfsJAesJAdAJAcQJAZsJAUQJARsJAQsJATf0CQHLCQG7CQGbCQGL' + + 'CQF7CQFvCQFLCQE7CQErCQEECQHbCQGrCQGLCQFbCQFLCQELCQH/CQEC3wkBzwkBjwkBcAkBMAkBIAkBAAkBB15dXV1dXV1dX11xcXFxcXFycnJycnJycnJycl5dXV1dXV1dXXFxcXFxcXFxcXFycnJycnJycnJyXl1dXV1dXV1dXV1dXXFxcXFxAD8/KxEAMxESARc5' + + 'ETMxMAERIREhNSEVAwX+2f45BLYEnftjBJ3k5AAAAAEAe//sBUoFgQARAElALA0OBQQOBBMSDQQDAAlfWQATYBMBUBMBQBMBgBMBcBMBwBMBoBMBMBMBIBMBXV1dXXFxcnJyAD8rABg/MxESATk5ETMRMzEwBSAAGQEhERQWMzI2NREhERAAAtP+3f7LASefmp6qASf+' + + 'tRQBHAEIA3H8pqettakDUPye/vT+2QAAAAEADgAABUgFgQAKADhAHwkKAQAGAwICBgoDDAvADAGfDAFgDAEvDAEJAgMGARIAPzM/MwFdXV1dERIXOREzETMzETMxMCkBASEBFhc/AQEhA0L+1f33ATQBIhsvFTMBIQExBYH8d1iyVrQDiQAAAAABAAIAAAeLBYEAFwFA' + + 'QOUWFwEAExAPBAgHDAoJCQwEExcFGRhrGQFfGQE0GQEbGQH0GQHbGQHPGQG0GQGLGQEEGSQZRBlkGQRq+xkB1BkBuxkBkBkBhBkBaxkBUBkBRBkBKxkBBBkB6xkBxBkBixmrGQIUGTQZVBl0GQT7GQHUGQG7GQGvGQGUGQF7GQFvGQFQGQFEGQErGQEEGQE5tBnUGfQZ' + + 'A5sZAXQZAUsZWxkCMBkBJBkBCxkB8BkBAuAZAc8ZAaAZAU8ZbxmPGQMQGQHwGQHfGQGwGQGfGQFwGQEPGU8ZXxkDCBYPBAkDEwwlDAEMCAASAD8yMl0RMz8zMzMBXl1dXV1dXXFxcXFxX3FycnJycnJyXl1dXV1dXV1dXV1dcXFxcXJycnJycnJycnJeXV1dXV1dcXFx' + + 'cRESFzkRMxEzMxEzMxEzMxEzMTApAQMmJw4BAyEBIRMXPgETIRMWEz8BEyEGH/6ivyMYGB7G/qL+lQErzC4cNa0BSrIVMhk1qgErAy+QnYOJ/LAFgfxy3Iv9AuL9ElT+2HTmAxAAAAEAEgAABUQFgQALAClAFQALAgMICQYFAwUJCwQKBg0MBQMAEgA/PxESARc5ETMR' + + 'MxEzETMxMCEJASEJASEJASEJAQQO/p7+nv7IAej+QQE4ATkBOQE2/lQB1QIx/c8C5QKc/g4B8v1k/RsAAAEAIwAABTUFgQAIAThA2QYBAQICBAcIBQQIBAoJBgYAAwMBCAQHARI0CgEkCgEECgH0CgHECgGkCgGECgF0CgFECgE0CgEUCgEECgFs5AoB1AoBtAoBpAoB' + + 'iwoBcAoBAmAKATAKAQAKAfAKAeAKAbAKAZ8KAYAKAXAKAUAKAQAKAfAKAd8KAcAKAZAKAYAKATAKARAKAQAKATr/CgHgCgHQCgGgCgF/CgFQCgEgCgEPCgHwCgHgCgGwCgGPCgFwCgFgCgFPCgEwCgEfCgHwCgHACgGfCgGACgFwCgFfCgFACgEwCgEACgFdXV1dXV1d' + + 'XV1xcXFxcXFxcXFycnJycnJycl5dXV1dXV1dXXFxcXFxcXFxcnJyX3JycnJycl5dXV1dXV1dXV1xcXEAPz8zEjkvMzMvERIBOTkRMxEzEjkRMxI5MTABESERASEJASEDP/7a/goBNQFSAVYBNQJC/b4CQgM//awCVAAAAAABAD0AAASoBYEACQBuQEYIAgMHCQcEAgQK' + + 'CwcEBQRfWQUDAggBCF9ZARKPCwECAAsB8AsB4AsB0AsBwAsBsAsBoAsBkAsBgAsBcAsBYAsBUAsBQAsBXV1dXV1dXV1dXV1dcV9xAD8rEQAzGD8rEQAzERIBFzkRMxEzMTApATUBITUhFQEhBKj7lQL6/VID9v0GAyPRA8nnzfwzAAABAHP+VwKRBcwABwAmQBQFAAMG' + + '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' + + 'LRYBGxYBDRYB+RYB6xYB3RYBzxYBqRa5FgKbFgGNFgF/FgFrFgFdFgFLFgE9FgEbFisWAg0WAWj/FgHZFukWAssWAb0WAasWAZ0WAYkWAXsWAW0WAUsWWxYCPRYBKxYBGRYBCxYB+xYB7RYB2xYBzRYBuRYBqxYBmRYBixYBbRZ9FgJbFgFJFgErFjsWAh0WAQEPFgG7' + + 'FtsW6xYDrxYBaxaLFgJPFl8WAjQWAQsWGxYCOOsWAd8WAcsWAbQWAZsWAX8WjxYCZBYBSxYBPxYBGxYB+xYB5BZAPwHLFgG/FgGUFqQWAnsWAW8WASsWSxYC+xYB7xYBAsAW0BYCjxavFgJwFgEWQAoNSAAWAQgTDQQIDxEKCgcAFQA/MjIRMz8zMzMBXl0rXV1dX11d' + + 'cXFxcXFxcXFycnJycnJycnJyXl1dXV1dXXFfcXFxcXFxcXFxcXFxcXJycnJycnJycnJycnJyXl1dXV1dXV1dXV1dXV1dcXFxcXFxcXFxETMRMxEzETMSFzkRMzMRMzMRMzMxMCkBAyYnBwMhASETPwETIRMWFzcTIQUh/tesDCM0rv7X/ugBCLIOGaoBLaYOGxycAQQC' + + 'lC2x4P1uBDr8xUp1Anz9hDSLhAK3AAABAA4AAARkBDoACwBAQCQACwgJCgQBBwYFAgMDBQcJCwUNDAUPABXwDQHgDQGfDQFPDQFdXV1xAD8/ERIBFzkRMxEzETMzMxEzETMxMCELASEJASEbASEJAQMz/P7+1QGM/ocBL+fmATH+hwGPAYj+eAIvAgv+ngFi/fj9zgAA' + + 'AAEAEP5XBGgEOgAVAbpA/wsKEwkOERISDgMKBBYXEQoPEw4JAAVQWQAblhcBhhcBcxcBYxcBAFAXAUIXATIXASQXARQXAQYXAfIXAeAXAdAXAcIXAbQXAaQXAZYXAYIXAXQXAWAXAVIXAUIXATQXASYXARIXAQQXAWf0FwHiFwHSFwHEFwG0FwGiFwGUFwGEFwF2FwFm' + + 'FwFUFwFEFwEyFwEiFwEUFwEGFwH2FwHUFwHGFwGwFwGiFwGSFwGEFwF2FwFmFwFAFwEyFwEiFwEUFwEGFwH2FwHUFwHCFwGyFwEBoBcBkBcBhBcBYBcBVBcBRBcBMBcBIBcBFBcBBBcBN/QXAcsXAbQXAXQXAQQXAUA79BcB5BcByxcBuxcBqxcBlBcBdBcBOxcBJBcB' + + 'ABcBAvAXAeAXAb8XAYAXAXAXAVAXATAXARAXAQAXAQdeXV1dXV1dXV1dX3FxcXFxcXFxcXFycnJycl5dXV1dXV1dXV1dX11dXV1xcXFxcXFxcXFxcXFxcXJycnJycnJycnJycnJycnJeXV1dXV1dXV1dXV1dXV1dXXFxcXFxcV9xcXFxAD8rABgvMzM/MxESARc5ETMR' + + 'MzMRMzEwASInNRYzMj4BNwEhExYXPwETIQEOAQEbZUw1LDxPPyf+VAEpqig9GUGgASb+VFa5/lcNyAgmWGkEL/4FbeFf6wH/+43QoAAAAAEAUgAAA7YEOgAJAERAJwIGBwEBAwYIBAsKBgMEA1BZBA8BBwAHUFkAFUALAdALAcALAX8LAV1xcXIAPysRADMYPysRADMR' + + 'EgEXOREzETMxMDM1ASE1IRUBIRVSAf3+LAMK/gYCK8cCqMvJ/VzNAAABACH+VwLyBcwAIwBDQCMWHh4LAxEiAwcEJCUaCAcIB/VZCAgPIQ8S9VkPAAAh9VkAGwA/KwAYPysREgA5GC8rERIAORESARc5ETMzETMxMAEiJjURNCYnNT4BNRE0NjsBFSMiBhURFAYHFR4B' + + 'FREUFjsBFQIthqFud3lsnYrFOltRc1xfcFFbOv5XnY4BSHJxAsMFcXEBSJKZvmhp/tNfihMEFold/tNqZ78AAQCc/jkBogXMAAMANUAhAAQFAQAAUAUBQAUBMAUBIAUBoAUBkAUBgAUBUAUBQAUBXV1dXV1xcXFxAC8/ERIBOTEwExEhEZwBBv45B5P4bQABACv+VwL+' + + 'BcwAIwBDQCMMFhYEHhoeIxEEJCUIGhsaG/VZGhoSACMA9VkjGxIR9VkSAAA/KwAYPysREgA5GC8rERIAORESARc5ETMzETMxMBczMjY1ETQ2NzUuATURNCYrATUzMhYVERQWFxUOARURFAYrASs5XU9xXlt0T105xYqdbnl5bqCHxepnagEtXIoWBBOJYAEtaWi+mZL+' + + 'uHByBcMCdG/+uI2eAAAAAQBRAgQEXwNIABUAJkAUCBMXFhILCwWtWQALr1sAEK1ZCAAALzIrKysRADMREgE5OTEwASImJyYjIgYHNTYzMhceATMyNxUOAQNUS5FLh1ZHd0FxnmmJhGQthnJAdQIEKhovKy3VVC8uGFzbLCQA//8AAAAAAAAAABAGAAMAAAACAML+uQHo' + + 'BDoAAwAHAUlADAcCBAIBAQkIBQUABLgBGkDZAQCdWwEPewkBawkBOwkBCwkB+wkB6wkB2wkBfwkBZAkBSwkBOwkBKwkBCwkBafsJAdQJAcsJAbsJAasJAZsJAYQJAXQJATsJASAJAQsJAfsJAeQJAYAJAXsJAWsJAVsJATQJASQJAesJAdQJAbsJAaQJAZQJATAJASQJ' + + 'ARsJAQsJATj0CQHkCQGkCQGUCQGLCQF7CQFkCQFUCQEbCQHwCQEC4AkB3wkBwAkBkAkBUAkBQAkBPwkBIAkBEAkBAAkBzwkBsAkBkAkBgAkBcAkBUAkBQAkBAAkBB15dXV1dXV1dXXFxcXFxcXFxcXFfcXJycnJycnJycl5dXV1dXV1dXV1xcXFxcXFxcXJycnJycnJy' + + 'cnJyXl1dXV1dXV1dXXFxcXEAPysAGD8SOS8REgE5ETMzETMxMBMRIREBEzMTyAEg/tog5iADLAEO/vL7jQPV/CsAAAAAAgAz/98ERAWBAB0AJgAAJSYCNTQSNzUzHQEeARcFJicmJxE2NzY3BQ4BBxUHEwYHBhUUFxYXAfnW8OvcoqnaHP7mDzgbIyYePA0BGxbgsqMB' + + 'QylAQipAnhUBEOvoARoZuAK2E7uXDloyGA39Wg0cNmUMmcsVvwIEKhU8XKSuWzkVAAAAAQAVAAAEXgWWACYAcUAyIgoEHQAbHx8MCBQTCBMEJgAEACcoHgoLCnVZGwsLBBAQF3VZFBQQBwUiBCJ0WUAmASa4/8C2EhVIJiYEGAA/My8rXSsRADMYPzMvKxESADkYLzMr' + + 'EQAzERIBOTkRMxI5OREzETMzETMSOREzMzEwAQ4BIyE1PgE9ASM1MzU0NjMyFhcHLgEjIgYdASEVIRUUBgchMjY3BF4f0pf9SmZLvLLW1KnCLOkVUkJbUAEe/uJSZAF8aGsRAWusv806kGlcqvjJz4qZL01Gc33hqlpnkjhjXgAAAgA5AKoEOQSsABsAJwBSQCocGQMA' + + 'IhELDgAOKCkSDxgBDQMYFRUfrVkPFQENAxUVCgQHByWtWc8HAQcAL10rABgQxjIzL19eXSsAGBDGX15dMhESATk5ETMzMxEzMzMxMBM0Nyc3FzYzMhc3FwcWFRQHFwcnBiMiJwcnNyY3FBYzMjY1NCYjIgaGPIWdg2V3eWKHnog8OoaehWR5emKHnYc64npXVXt6VlZ7' + + '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' + + 'nwXvBQcFAC9dcSsREgE5MTATNRMhFQFX/AEC/qwEnx8BICv+7AAAAAABAIb+VgQhBDoAHAA3QBsRDQ0OAhcXGg4aHR4YDw8OGwYUUFkJAgYWABUAPz8zMysAGD8/MxESATk5ETMRMxEzETMxMCEmNSMOASMiJicjFhURIREhERQWMzI2NREhERQXAxUNAyFaTzRRFwQE' + + '/ucBGVVaWVkBGQhkLFZOMCorSP6DBeT9o5aGmJ8CQvy4gnAAAAAAAQBH/vgELwWBAA8AQUAaBQYPAgEBBgoDEBEABxAHAgkDBwcNAQAEDQS4ARe0WQ0DBgEALzM/KxEAMxESORgvX15dERIBFzkRMzMRMzEwAREjESMRIxEiJjU0NjMhFQOsnMObqcLFrgJ1BPL6BgX6' + + '+gYDvrmqqb+PAAAAAAEAjQITAa0DRAADABtADQMAAAUEAAGbWQ8AAQAAL10rERIBOREzMTATESERjQEgAhMBMf7PAAAAAQBg/lcB9AAAABQBAUCxERISEA8PAAUABRYVEg0NAxAVAwiSWQMbxBYBtBYBpBYBlBYBhBYBdBYBVBYBRBYBEBYBAgAWAfAWAeAWAdAWAcAW' + + 'AbAWAZAWAYAWAWAWAVAWASAWARAWAQAWAfAWAeAWAdAWAcAWAaAWAZAWAWAWATAWAQAWATjwFgHgFgHQFgGwFgGgFgFwFgEAFgHwFgHgFgHAFgGwFgGAFgEfFgEAFgHwFgHAFgGQFgEvFgEAFgEIXl1dXV1dcXFxcXFxcXJycnJycnJeXV1dXV1dXV1dcXFxcXFxcXFx' + + 'cXFxcl9ycnJycnJycnIAPysAGD8SOS8zERIBOTkREjkRMzMRMzEwBRQGIyInNRYzMjU0JiMiBzczBx4BAfScky04IzGJOEImDj6PIV5b615gBnYHRSMiAqxSBVIAAQBSArYCagWGAAoASUAWCQgIBwYEAAICCwwFAAQQBAILAwRAA7j/4EAOCxBIAwbcCAEAAeRZAN0A' + + 'PysRADMYPzMrGs1fXl0yERIBOREzMzMzMxEzMTATNTMRBzU3MxEzFVK4rbSvqgK2eQHUbHp1/al5AAACAC0C1QLJBYsACwAXACpAExIGDAAGABgZCQ/lWQneAxXlWQO4AR4APysAGD8rERIBOTkRMxEzMTABFAYjIiY1NDYzMhYHNCYjIgYVFBYzMjYCybOfmLKwnqCu' + + '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' + + 'MzMzEjkyMTABNSEVMxUjERQXIS4BNSMGISICERASMzIWFzMnNSE1ATQmIyIGFRAzMjYDOwEahIQI/vAECwRb/wC8z9jIc6ctAgL+4gEidHNxbt1xeAVBi4uq/FVkiA95KMQBGwECAQQBGWBfsn6q/NCnsqq2/qK7//8AiQAABQYGqRImACgAABEHAosBXgFOABi2AQ4O' + + 'BSYBDLj/7bQMDQAKJSsRNQArETUAAP//AFD/7AQtBVsSJgBIAAARBwKLAPUAAAAWQA0CHBwRJgIaDBobAwklKxE1ACsRNf//AIkAAAUGBxASJgAoAAARBwklAWEAAAAYtgEMDAUmAQ+4//e0DxcACiUrETUAKxE1AAD//wBQ/+wELQXiEiYASAAAEQcCmgEQAAAAGLYC' + + 'GhoRJgIduP/7tB0lAwklKxE1ACsRNQAA//8AiQAABQYG2hImACgAABEHApsBbQEOABa1AQwFJgEMuP/6tAwOAAolKxE1ACs1//8AUP/sBC0FzBImAEgAABEHApsA8QAAABZADQIaGhEmAhoHGhwDCSUrETUAKxE1//8Aif5XBQYFgRImACgAABEHAp0C7QAAABO0ARMP' + + 'EwG4/2q0ExMKCiUrXRE1AAAA//8AUP5oBC0EThImAEgAABEHAp0BzwARAA+xAiG4/0G0ISERESUrETUAAAD//wCJAAAFBgcrEiYAKAAAEQcJIQFvAAAAGLYBDAwFJgEOuP/9tA4UAAolKxE1ACsRNQAA//8AUP/sBC0F+RImAEgAABEHAokA2AAAABZADQIaGhEmAhwK' + + 'HCIDCSUrETUAKxE1//8AVP/sBboHKxImACoAABEHCSABxwAAABZADQEeHgUmASMVIx0OByUrETUAKxE1//8AVP5OBFoF+RImAEoAABEHAogA6QAAABZADQItLREmAjICMiwSHCUrETUAKxE1//8AVP/sBboHEBImACoAABEHCSUBzQAAABZADQEdHQUmASAjICgOByUr' + + 'ETUAKxE1//8AVP5OBFoF4hImAEoAABEHApoBNgAAABZADQIsLBEmAi8ILzcSHCUrETUAKxE1//8AVP/sBboG2hImACoAABEHApsB0wEOABRADAEdBSYBHSAdHw4HJSsRNQArNQAA//8AVP5OBFoFzBImAEoAABEHApsBHQAAABZADQIsLBEmAiwaLC4SHCUrETUAKxE1' + + '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' + + 'BgUmAQa4/220BgkABCUrETUAKzX//wBqAAACaAdmEiYATwAAEQYJHxNPABRADAEEAiYBBE0EBwACJSsRNQArNf//AIn+OQSkBYESJgAvAAARBwkaAZkAAAAPsQENuP/ktA0GAAQlKxE1AAAA//8Aj/45AagFzBImAE8AABEGCRo6AAAMtwELAAsEAAIlKxE1//8AiQAA' + + 'BKQFgRAmAC8AABEHCRwCcgAAABNACwEOAwENxw0GAAQlKxE1AD81AAAA//8AjwAAAxYFzBAmAE8AABEHCRwBsABLABNACwEMAAELeQsLAgIlKxE1AD81AAAA//8AiQAABKQFgRImAC8AABEHApsB1f2OAAy3AQaTBggABCUrETUAAP//AI8AAANxBcwQJgBPAAARBwKb' + + 'AZD9jgAHtHAJgAkCXQAAAAABAAAAAASkBYEADQBLQCQIDAcLCwQCAAwADw4KAQkCBwQDCQgDAggCCAILBQMAC19ZABIAPysAGD8SOTkvLxEzETMSOTkREjk5ERIBOTkRMzMzETMSOTEwMxEHNTcRIRElFQURIRWJiYkBJwEz/s0C9AHjQeFCArz90ZPfk/505wAAAAAB' + + 'ABIAAAIpBcwACwBlQD4CDA0LCQEEBgI6CwELNQUBBQMABgkEBAoECgQBBwABFbANAaANAX8NAWANAR8NAe8NAdANAcANAbANAYANAV1dXV1dcXFxcXEAPz8SOTkvLxIXOTJdM10RATMzETMzERI5MTABESERBzU3ESERNxUBqP7nfX0BGYECzf0zAjFF10UCxP3YStUA' + + '//8AiQAABT0HFxImADEAABEHCR8B5wAAABRADAEOBSYBDloOEQUMJSsRNQArNQAA//8AhwAABGQF3hImAFEAABEHAHYBhAAAABRADAEZESYBGWQZHAwXJSsRNQArNQAA//8Aif45BT0FgRImADEAABEHCRoB/AAAAA+xARW4//u0FQ4FDCUrETUAAAD//wCH/jkEZARP' + + 'EiYAUQAAEQcJGgGbAAAADLcBIAcgGQwXJSsRNQAA//8AiQAABT0HKxImADEAABEHCSEBiAAAABi2AQ4OBSYBELj/+7QQFgUMJSsRNQArETUAAP//AIcAAARkBfkSJgBRAAARBwKJAPIAAAAYtgEZGREmARu4/+20GyEMFyUrETUAKxE1AAD////qAAAFLAWBECcAUQDI' + + 'AAARBwfl/18AAAAysQEZuP+2QCIZGQkJJQAPAH8ArwADPwBvAAIQACAAwAADAABwAKAA4AAEXXFdcTUrETUAAAABAIX/7AVLBZUAJABDQCULIhoUFBUVAyIDJiUaDx4PX1keBBgDFRIAB19ZAAQQBAIEBAATAD8yL10rABg/Pz8rEQAzERIBFzkRMxEzETMxMAUiJic3' + + 'HgEzMj4BNRE0JiMiDgEVESERAyEWFTM2JDMyEhkBEAIDiISzSso0Ui8/SiCAkWGqY/7ZBAEgCwRCAQCc6dDZFE9jq0QxQYiMASe6pmKoX/y5BEQBPXmCf5D+/v7m/qX+1P76AAAAAAEAh/5XBGQETwAhAFlANgcfFw4ODw8CHwMjIhcbGwpQWRsQFA8PFQAEUFkAG6Aj' + + 'AZAjAfAjAbAjAaAjAZAjAXAjAe8jAV1xcXFxcXJyAD8rABg/Pz8rEQAzERIBFzkRMxEzETMxMAEiJzUXMjY1ERAjIgYVESERNCYnIR4BFTM+ATMyFhURFAYDRWRGM0o0wWZ9/ucFAwEMAwoEOax3rLiR/lcJxgRBYQKbAR2vif28A0hXbywTpR98cNTM/NGPmgAAAP//' + + 'AFT/7AXjBqkSJgAyAAARBwKLAcYBTgAWQA0CGxsFJgIZABkaBwAlKxE1ACsRNf//AFD/7ASTBVsSJgBSAAARBwKLASAAAAAWQA0CGBgRJgIWBBYXBgAlKxE1ACsRNf//AFT/7AXjBxASJgAyAAARBwklAbUAAAAYtgIZGQUmAhy4//e0HCQHACUrETUAKxE1AAD//wBQ' + + '/+wEkwXiEiYAUgAAEQcCmgFQAAAAFkANAhYWESYCGQcZIQYAJSsRNQArETX//wBU/+wF4wcYEiYAMgAAEQcJJAIxAAAAGkAPAwIZGQUmAwIabxojBwAlKxE1NQArETU1//8AUP/sBJMFzBImAFIAABEHAp8BgQAAABpADwMCFhYRJgMCF2QXIAYAJSsRNTUAKxE1NQAC' + + 'AFT/9gewBYwAFQAgAIpAVhsPExMgDREgAwYUBhQhIhgOCw5fWQ8SX1kPD38Pnw8DDw+PD/8PAw8DDxYVSQ8PARQFDxYMSQ8PHgkJCwMeEwATX1kDABKPIgECbyIBXyIBTyIBPyIBXV1dXV9xAD8yKxEAMxg/MxESOS8rX15dK19eXXErKxEAMxESATk5ERIXOREzETMy' + + 'MTAhDgEjIAAREAAhMhchFSERIRUhESEVASYjIgYVFBIzMjcD4CZrNv6y/okBdwFQR4QDof1lAl79ogLE/BNHYcjW28F0NgIIAX8BUgFSAXML4/6d3f6F4wSRE/nk5f78FAAAAAADAFD/7AdLBE4AGgAkACsAc0A/IAcCDBsoExMbGwcSGBkZKRIHEiwtKBNSWSghEBFI' + + 'KCgECiUeCh5PWQ4KEBYjBCNPWX8YARAYARgYAAQWgC0BXQA/MzMvXV0rEQAzGD8zKxEAMxESORgvKysREgE5OREzMxEzERI5ETMRMxI5OREzMTAFIicGIyIAERAAISAXNjMyEhEVIRQWMzI3BQIBNCYjIBEUFjMgASIGByEuAQVo7oOQ+v3+4AEgAQMBAIqG6en2/Up2' + + 'a5UnAQlz/KV+eP8AfXYBAwH7Y2sDAaQIbhSfnwEsAQYBBQErmZn+y/7WE5KigRf+2gIywa7+kbW9AvGKfIODAP//AIkAAAWdBxcSJgA1AAARBwkfAc0AAAAUQAwCFgUmAhYQFhkEDSUrETUAKzUAAP//AIcAAAMLBd4SJgBVAAARBwB2ALYAAAAUQAwBFxEmARdJFxoE' + + 'DyUrETUAKzUAAP//AIn+OQWdBYESJgA1AAARBwkaAgUAAAAPsQIduP/UtB0WBA0lKxE1AAAA//8Ah/45Av4ETxImAFUAABEGCRo5AAAPsQEeuP9YtB4XBA8lKxE1AP//AIkAAAWdBysSJgA1AAARBwkhAWYAAAAYtgIWFgUmAhi4/6m0GB4EDSUrETUAKxE1AAD//wA4' + + 'AAADGQX5EiYAVQAAEQYCiTgAABi2ARcXESYBGbj/5rQZHwQPJSsRNQArETX//wA7/+wFBgcXEiYANgAAEQcJHwHUAAAAFEAMASsFJgEriSsuBgAlKxE1ACs1AAD//wBI/+wEHwXeEiYAVgAAEQcAdgE5AAAAFEAMASkRJgEpWyksBgAlKxE1ACs1AAD//wA7/+wFBgcr' + + 'EiYANgAAEQcJIAFxAAAAFkANASwsBSYBMSYxKwYAJSsRNQArETX//wBI/+wEHwX5EiYAVgAAEQcCiADGAAAAFkANASoqESYBLwMvKQYAJSsRNQArETX//wA7/lcFBgWWEiYANgAAEQcAegGmAAAADLcBMC8wKwYAJSsRNQAA//8ASP5XBB8ETxImAFYAABEHAHoBHgAA' + + 'AAy3AS4ULikGACUrETUAAP//ADv/7AUGBysSJgA2AAARBwkhAVoAAAAWQA0BKysFJgEtDy0zBgAlKxE1ACsRNf//AEj/7AQfBfkSJgBWAAARBwKJAM0AAAAWQA0BKSkRJgErCisxBgAlKxE1ACsRNf//ABf+VwTNBYESJgA3AAARBwB6AV4AAAAMtwEYTRgYAgIlKxE1' + + 'AAD//wAZ/lcCkQU4EiYAVwAAEQcAegCKAAAADLcBHUgdHQMDJSsRNQAA//8AFwAABM0HKxImADcAABEHCSEBIQAAABZADQEICAUmAQoEChAEBiUrETUAKxE1//8AGf/uA9UFzBAmAFcAABEHCRwCbwBLABNADQEdAB0gHQJbHR0LCyUrXRE1AAAAAAEAFwAABM0FgQAP' + + 'AV5A9wEFBQoGBgkMDgIFERAADA0MX1kECAkIX1kBCQkFDQMFElARAUARATQRASQRAQQRAfQRAeQRAcARAbQRAaQRAYsRAXARAWQRAVQRATsRASQRAQQRAWj7EQHkEQHLEQGgEQGQEQGEEQFUEQFEEQE0EQEEEQH0EQHbEQHLEQG0EQGLEQF0EQFbEQE7EQEkEQELEQH7' + + 'EQHrEQHQEQHEEQGbEQFEEQEbEQELEQE39BEByxEBuxEBmxEBixEBexEBbxEBSxEBOxEBKxEBBBEB2xEBqxEBixEBWxEBSxEBCxEB/xEBAt8RAc8RAY8RAXARATARASARAQARAQdeXV1dXV1dXV9dcXFxcXFxcnJycnJycnJycnJeXV1dXV1dXV1xcXFxcXFxcXFxcnJy' + + 'cnJycnJycl5dXV1dXV1dXV1dXV1xcXFxcQA/PxI5LzMrEQAzKxEAMxESARc5ETMzETMxMAERMxUjESERIzUzESE1IRUDBeTk/tnj4/45BLYEnf6Tvv2OAnK+AW3k5AAAAAEAGf/uApEFOAAdAGhAOBsPExMOEhYLBwMJBQUWAwMfHhEJCglPWQ4KDAwKDxUFBgVPWRJv' + + 'BgEPBk8GfwYDEAMGABlPWQAWAD8rABgvX15dcTMrEQAzGD8zLxEzKxEAMxESATkRMzMRMxEzMxEzMzMRMzMxMAUiJj0BIzUzNSM1MzczFTMVIxUzFSMVFBYzMjcVBgGkfIZ/f4mXWLDNzbm5PD8hPWgSh4nbvuW+/v6+5b6PT0sOriIAAAD//wB7/+wFSgcfEiYAOAAA' + + 'EQcJIwGNAAAAFkANARISBSYBGwAbKAMOJSsRNQArETX//wB//+wEXAXEEiYAWAAAEQcCngDzAAAAGLYBFxcRJgEguP/+tCAtFQslKxE1ACsRNQAA//8Ae//sBUoGpBImADgAABEHAosBjQFJABZADQEUFAUmARIAEhMDDiUrETUAKxE1//8Af//sBFwFWxImAFgAABEH' + + 'AosBFAAAABi2ARkZESYBF7j//bQXGBULJSsRNQArETUAAP//AHv/7AVKBxASJgA4AAARBwklAYYAAAAWQA0BEhIFJgEVABUdAw4lKxE1ACsRNf//AH//7ARcBeISJgBYAAARBwKaAUcAAAAWQA0BFxcRJgEaAhoiFQslKxE1ACsRNf//AHv/7AVKB7oSJgA4AAARBwKc' + + 'Ab8BTgAaQA8CARUVBSYCARgBGBIDDiUrETU1ACsRNTX//wB//+wEXAZsEiYAWAAAEQcCnAFIAAAAGkAPAgEaGhEmAgEdAB0XFQslKxE1NQArETU1//8Ae//sBUoHGBImADgAABEHCSQB2wAAABpADwIBEhIFJgIBE1ITHAMOJSsRNTUAKxE1Nf//AH//7ARjBcwSJgBY' + + 'AAARBwKfAV0AAAAaQA8CARcXESYCARhEGCEVCyUrETU1ACsRNTX//wB7/lcFSgWBEiYAOAAAEQcCnQIgAAAAJ0AWAQ8ZHxkvGT8ZTxlfGW8ZfxmPGQkBGbj+WbQZGQ8PJSsRNQByNQAAAP//AH/+VwRcBDoSJgBYAAARBwKdAoUAAAAMtwEdHx0dDAwlKxE1AAD//wAC' + + 'AAAHiwcrEiYAOgAAEQcJIAJzAAAAFkANARkZBSYBHgIeGAkXJSsRNQArETX////6AAAGPQX5EiYAWgAAEQcCiAGtAAAAFkANARYWESYBGwIbFQgUJSsRNQArETX//wAjAAAFNQcrEiYAPAAAEQcJIAFXAAAAFkANAQoKBSYBDwAPCQQIJSsRNQArETX//wAQ/lcEaAX5' + + 'EiYAXAAAEQcCiADUAAAAFkANARcXESYBHAgcFgoSJSsRNQArETX//wAjAAAFNQbVEiYAPAAAEQcJIgFSAAAAHUAJAgEJCQUmAgENuP/7tA0LBAglKxE1NQArETU1AP//AD0AAASoBxcSJgA9AAARBwkfAYIAAAAUQAwBCgUmAQplCg0BACUrETUAKzUAAP//AFIAAAO2' + + 'Bd4SJgBdAAARBwB2APkAAAAUQAwBChEmAQpJCg0ACCUrETUAKzUAAP//AD0AAASoBtoSJgA9AAARBwKbASgBDgAUQAwBCgUmAQoKCgwBACUrETUAKzUAAP//AFIAAAO2BcwSJgBdAAARBwKbAL0AAAAMtwEKDAoMAAglKxE1AAD//wA9AAAEqAcrEiYAPQAAEQcJIQEt' + + 'AAAAFkANAQoKBSYBDBAMEgEAJSsRNQArETX//wBSAAADtgX5EiYAXQAAEQcCiQCPAAAAGLYBCgoRJgEMuP/6tAwSAAglKxE1ACsRNQAAAAEAjgAAAnsFzAANAFFAMwYMDA0NDw4MFQMIUVkDAVAPAUAPAbAPAaAPAX8PAWAPAR8PAe8PAdAPAcAPAbAPAYAPAV1dXV1d' + + 'cXFxcXFycgA/KwAYPxESATkRMxEzMTATNDYzMhcVJiMiBhURIY6cn09jKSlIO/7oBKuTjhC1CTlI+3EAAAIACv/sBI8FzAAeACoAbEAeHgEcBwQVAyUlHB8PHAUPAywrFhYCCgkJGgIHHgAeuAEPQBdZBAAAGgIMIk9ZDAwaAgEaFRIoT1kSFgA/KwAYPz8SOS8rERIA' + + 'ORgvMysRADMREjkYLzMROS8REgEXOREzETMRFzMRMzMxMBMzNSEVIRUhFQczNjMyEhEQAiMiJicjFAYHITY1ESMBNCYjIgYVFBYzMjYKhQEZATb+ygQEX/vCy9XKdKkrAgkF/u8IhQNganN4cW94dGsFQYuLqpGw0P7t/vr++P7nZV0jehFdmgOg/XaypLOsp7GsAAAA' + + 'AAMAAAAABlcFgQAZACEAKgBXQCwGAwknERYnHh4NGgkWDQkDLCsUFA0ZJx1fWScnDRkmDxkPX1kZAw0eX1kNEgA/KwAYPysRADMREjkYLysREgA5GC8REgEXOREzETMRMxEzERI5OTEwASAEFRQGBx4BFRQEKQERIyIVFBcHJjU0NjMBNCkBESEyNgM0JiMhESEyNgP7' + + 'AQMBCIWIq7P+4P8A/T8chR/WHreXA+H+5P6KAYGNhFJ6dv6wAVJ9cQWBtK54pR0Ur5DA0gSrbjNTEWlgf5P8KMb+bGcCtV9Q/qNXAAAAAAIAiQAABW4FgQANABUAQ0AjCAAKExMFDgAABRcWChJfWQoKBQYGCV9ZBgMFE19ZBRIwFwFdAD8rABg/KxESADkYLysREgE5' + + 'OREzETMRMxEzMTABFA4BIyERIRUhESEyFgU0JiMhESEgBW577aH9JAQl/QIB1e38/tWKiv6BAYUBDgGvgMNsBYHj/qvXyV1p/mwAAAACAIf/7ASPBcwAGAAiAFRAKhAABhEeHg0ZAAANJCMHBw4UExMLDhYbT1kWFg4LFQ4RUFkOAQMhT1kDFgA/KwAYPysAGD8SOS8r' + + 'ERIAORgvMxE5LxESATk5ETMRMxEzMxEzMTABEAIjIiYnIxQGByE2NREhFSEVBzM2MzISARAjIgYVFBYzMgSP28R0qSsCCQX+7wgC5v4zBARf+7zR/tvdb3p3cN8CDf7+/uFlXSN6EV2aBNXV8bDQ/uf/AAFWtaqjtQAAAgAAAAAFbgWBAA4AFgA2QBsHBQsUFAUPAAAF' + + 'GBcLE19ZCwsFCQMFFF9ZBRIAPysAGD8SOS8rERIBOTkRMxEzETMRMzEwARQOASMhESc1JTMRITIWBTQmIyERISAFbnvtof0kiQFlSwHV7fz+1YqK/oEBhQEOAa+Aw2wD648k4/3I18ldaf5sAAIAAP/sBI8FzAAZACQASkAlGgcWFA0ZICAUBxQmJQ4OBAIBARIEGAES' + + 'FQQdT1kEEAojT1kKFgA/KwAYPysAGD8/ERI5LzMROS8REgE5OREzETMzETMRMzEwAQczNjMyEhEQAiMiJicjFAYHITY1ESc1JTMBNCYjIgYVFBYzMgGoBARf+8DN18h0qSsCCQX+7wiPAV1LAcJscXJ3dXLfBC6w0P7d/vb+9P7XZV0jehFdmgNSjyTQ/FW4sr+0rMAA' + + 'AAEAOP/sBXMFlgAYAD5AHhAPDwIDFgkJAxoZAgIGEBAMBgYAX1kGBAwTX1kMEwA/KwAYPysREgA5GC8ROS8REgE5OREzETMzETMxMAEgAyU2JDMgABEQACEiJCclHgEzMjY1NAICrP71aP7/UwFB4AFUAXP+mv6s+P7IPwEEIcGDyM/VBK7+9GHMx/5//qb+pf6Mx8FH' + + 'an347/MBAAAAAAABAFT/7AZFBqsAJQBaQC4fJQYTDA0NGAAlJRMnJhgYFgAAFgwMEBYcH19ZHCFhWRwWFgNfWRYEEAlfWRATAD8rABg/KwAYEMQrKxESADkYLxE5LxE5LxESATk5ETMzMxEzETMRMzEwAS4BIyIGFRQSMzI2NwUGBCMgABEQACEyFzU0NjMyFxUmIyIG' + + 'FREEeSHBg8jP1cl/ujoBAVH+vuH+rP6NAWYBVNOSppRLTToeOzUDx2p9+O/z/wB+jmHKyQGBAVoBWwF0STyOlBHMDEVI/sEAAAEAUP/sBPcFMAAjAFFAKR0jCgsAFwsDIyMSJSQXFxUAABUKCg8VGh9QWRoVFQNPWRUQDwdPWQ8WAD8rABg/KwAYEMQrERIAORgvETkv' + + 'ETkvERIBOTkRFzMRMxEzMTABLgEjIhEQMzI2NwUOAiMiABEQADMyFz4BMzIXFSYjIgYdAQMUDGBY2d1QbA0BGg+A0Ib2/vQBDvh1YQidjktNOh47NQLXU2P+lf6KZWQNb65fASUBBgEMASsmg4URyQxFSPAAAP//AAgAAAVxBYESBgCSAAAAAgAAAAAGXgWBABQAHQA9' + + 'QB8JDg4aBRUAAAUfHgwMBRERGV9ZEQdfWREDBRpfWQUSAD8rABg/KysREgA5GC8REgE5OREzETMzETMxMAEUAgQjIREjIhUUFwcmNTQ2MyEgAAE0JisBETMyEgZeq/7Hyv3GHIUf1h63lwImAWQBhv7X7NvR+r7gAsva/rusBKtuM1MRaWB/k/6X/rPj7/xHAQYAAAAC' + + 'AFgAAAU9BYEADAAUAD1AIA0ABBAQCQAGCQMWFQMSX1kDAwoHBwZfWQcDCg9fWQoSAD8rABg/KxESADkYLysREgEXOREzETMRMzEwEzQ2MyERITUhESEiJCUUKQERISIGWP3sAdX9AgQl/STv/uYBKwEOAYX+gYqKAa/D1wFV4/p/6MHOAZRpAAAAAAIAVP/sBFwFzAAY' + + 'ACIAUkAqEggeHgwZAAAJDAMkIwYGChITEw8KAyFPWQMDCg8VCglQWQoBFhtPWRYWAD8rABg/KwAYPxI5LysREgA5GC8zETkvERIBFzkRMxEzETMzMTATEBIzMhczJzUhNSERFBchLgE1Iw4BIyICARAzMjY1NCYjIlTRvPtfBAT+MwLmCP7vBQkCLqdzw9wBJd9wd3lw' + + '3QINAP8BGtCw8dX7K5pdEHokX2MBHwEC/p+2oqm2AAIAUP5YBJMETgASABsAQkAiAwgFBwUABwwTABcMAAwdHBAVT1kQEAMaUVkDFQYHUFkGGwA/KwAYPysAGD8rERIBOTkRMxEzETMRMxESOTkxMAEUAgcFFSE1IQEuATU0PgEzIAABECMgERQWMyAEk9/OAVv8ZQIZ' + + '/mFgcIH4qgEIARj+2vb/AH90AQMCKN7+4iP9tMsBK0Xsqaf5hv7l/vUBZf6bsLgAAAEAUAAABM0FgQALADpAHwYCAgsACQULBA0MBQRfWQUFAAkJCF9ZCQMAAV9ZABIAPysAGD8rERIAORgvKxESARc5ETMRMzEwMzUhESE1IREhNSERUANW/RAC8PzTBFTkAXPkAWLk' + + '+n8AAgBU/+wFewWWAAYAHQBLQCUXAwMMHQcHBBQMFB8eHR0QCRYEX1kWFhAJCRpfWQkEEABfWRATAD8rABg/KxESADkYLysREgA5GC8REgE5OREzMxEzETMRMzEwJTI2NyEeAQESISAAERQCBCMiJAI1NDchLgEjIgYHAuWhtgz9Ogy8/leDAcMBNgFeoP7Uys3+2Z0J' + + 'A+YTsJp6lyzO0cbD1ANgAWj+g/6u3f6zsa8BS+FMPai9ZmoAAAEAXv/sBNUFlQAlAFlALAYYCA8ODiMIAyIjHQMjAycmDw8LIiIACxcaX1kXFwALCxFfWQsEACBfWQATAD8rABg/KxESADkYLysREgA5GC8ROS8REgE5OREzETMRMxEzETMSOTkxMAUiJDU0NjckNTQk' + + 'MzIEFwUmIyIGFRQWOwEVIyIGFRQWMzI3BQYEAnv+/uGolP7oARjn2gESRP70SdZse5CXOzupn4aB7FwBCET+1xTiwoSsFkf9qNPAyT3tYFtkYONZZWFr/V3FvwAAAAAB/7T+VwSYBYEAEgA9QCIKDwEFBQ8PEgMDFBMHDF9ZBAFfWQcKYFkEBAcQEABfWRADAD8rABgQ' + + 'xDkvKysrERIBFzkRMxEzETMxMAERIRUhERAhIic1FjMyNjURIRUBsALR/S/+qUpbRBtBNQQPBJ3+TOT92/53FNwNTU8Fq+QAAAEAqP5XBAkFrgAXAFdALwsMCBcHCgoQDg0NDBcMFxgZCg4PDnVZBwAPMA9AD1APBAsDDw8LFBQDdVkUBwsbAD8/KxESADkYL19eXTMr' + + 'EQAzERIBOTkREjkRMzMzETMSOREzMTABLgEjIgYPATMHIwMhEyM3Mzc+ATMyFhcD4RBAFkE5DBTUJNX7/uf7niWeGxq2oCpqIgTfBQxCPWu++w8E8b6Hk44RDQAAAAABAFT/7AZkBqsAKQBlQDUaICAIEwMnDgMIDgUIAysqExMRISELERcaX1kXHGFZFxEGBV9ZBgYL' + + 'EREkX1kRBAsAX1kLEwA/KwAYPysREgA5GC8rABgQxCsrERIAORgvETkvERIBFzkRMxEzETMRMxEzMTAlMjY3NSE1IREGBCMgABEQACEyFzU0NjMyFxUmIyIGFREFLgEjIgYVFBIDJnPYO/6oAmZw/pnF/qj+jgF0AV3ZlKaUS006Hjs1/vAsvH/Q2N/TQzTD2v36c4IB' + + 'fQFeAVwBc0g7jpQRzAxFSP7aUmtu/Ovv/vsAAgAO/lcFDAWBABEAHgA+QCEDBAEAEQIFFQQOEggZDgAEDggEIB8LHGFZAhUCFQsDAAMAPzLEOTkvLysREgEXOREzETMSFzkRMxEzMTATIQkBIQEeARUUBiMiJjU0NjcTNCYnDgIVFBYzMjYOATQBTgFLATH+GGZBpZaU' + + 'pjto5R0xLRULKyIiLAWB/J4DYvuNubI6hY2Rgj+ovf55JVlaUjkxGzAtLAAAAQCP/+wG+QXMACEAR0AlDgoKCxgDHSALAyADIyIREBALHgwBHg8LFRQGUFkUEAAbUFkAFgA/KwAYPysAGD8/PxESOS8zERIBFzkRMxEzETMRMzEwBSImPQEQIyIGFREhESERFAczPgEz' + + 'MhYdARQWMzIZASEREAUi8ObBZn3+5wEZCAQ5rHesuF9fvwEYFOnzlgEdr4n9vQXM/mttaHxw1MzuhH0BAQJ6/Y7+JAAAAP//AIkAAAGwBYEQBgAsAAAAAQAAAAACOQWBAAsAMkAYBgQICwEICQkNDAcLAAtfWQQAAAkCAwkSAD8/EjkvMysRADMREgE5ETMzMxEzMzEw' + + 'ETMRIREzFSMRIREjiQEniYn+2YkDOwJG/brk/akCVwAAAQCJAAAFtAWWABQATUAoCgETAwQREhIUDwMDBAAUFAQWFRAQEQEBBBEDAAQSBwpgWQcMX1kHBAA/KysAGD8zPxI5LxE5LxESATk5ETMRMxEzETMRMxIXOTEwIQEHESERECEyFxUmIyIGFREBIQkBBFj+Bq7+' + + '2QFMR1pEGzM0AnsBWP2mAosCh4X9/gQNAYkU3A00SP7LAn/9rPzTAAAAAAEAjwAABHUF1QAWAE5AHAsBFQMUBAAWFhQSAwMEExQUBBgXCA5QWQgTEgG4AQ9ACVkSEgQTDwAEFQA/Mz8SOS8rABgQxCsREgE5OREzETMRMxEzETMREhc5MTAhAQcRIRE0NjMyFxUuASMi' + + 'BhURASEJAQNC/t95/uevmmFVEksVPTcBggEu/oQBmQHqVP5qBLOKmBHJBQdGR/4AAcD+Wv1sAAAAAQAUAAACJQXMAAsAMkAYBgQICwEICQkNDAcLAAtRWQQAAAkCAQkVAD8/EjkvMysRADMREgE5ETMzMxEzMzEwEzMRIREzFSMRIREjFHsBGX19/ud7AzoCkv1uu/2B' + + 'An8AAQAQAAAEaAXMAA8AZUA1AwICDQ4BBAcKBwYAAAsMCQgIBgYMERAFBQ4CDw8OCgoMDgQHUlkEBA4CCQwVAgEOAVJZDhAAPysAGD8/MxESOS8rERIAORgvETkvERI5LxESATk5ETMRMxEzMxESFzkRMzEwEyUnIRc3FwcBIQkBIQEnBTYBHFIBKiW1SrsB1f7a/vf/' + + 'AP7XAZgP/ucEh3nMYE6tUPtDAx384wQvI3gAAAABAIn/7AdmBYEAJABGQCMUASMdGgsHBwoaIwoDJiUMDRQUCyQIGwMLEgQgFyBhWRAXEwA/MysRADMYPz8zMxI5LzMzERIBFzkRMxEzETMRMzMxMAERFBYzMjY1ESERIScjDgEjIiYnIw4BIyImNREhERQWMzI2NREE' + + 'i2Jlbn8BJ/7SDAQ5pHCBpCkHR7GKtcYBJ2RkaoIFgfxblImviQOK+oCoZVhiZ25b18kD9fxblYimhQOXAAAAAf+0/lcFPQWBABcASEAkEBYHAwMGAAsLFgYWGRgICBcBAQcXDhFgWQ4TYFkOBwQXAwcSAD8/MxDEKysREgA5GC8ROS8REgE5OREzETMRMxEzETMxMAkB' + + 'JjURIREhARYVERQGIyInNRYzMjY1EQHaAm8SAQb+pv2aEo+nSltEG0E1BYH7upd8AzP6fwQ9nmD8jceuFOYNTU8FoQAAAQCH/lgEZARPABcANUAaDAcHCAAXFwgZGBAPDwgLDwgVABsTA1BZExAAPysAGD8/PxI5LzMREgE5OREzETMRMzEwAREQIyIGFREhETQnIR4B' + + 'FTM+ATMyFhURA0zBZn3+5wgBDAMKBDmsd6y4/lgEBwEdr4n9vANIimgTpR98cNTM+6n//wBU/+wF4wWWEgYEmQAAAAIAVP/sBtAFlgAVACEAUkAUExIAABACFgMcCgMKIyITEwcUEAK4ARNAElkQEAcUAw0ZX1kNBAcfX1kHEwA/KwAYPysAGD8SOS8rERIAORgvERIB' + + 'OTkRMxEzMzMzETMzMTABEAcXFAIEIyAAERAAISAAFzY1IxEhATQCIyICFRQSMzISBtDxBK7+vNj+tP6HAXgBTwERAWg3e30BB/3m2MPG2N2/xtcEr/7BWVDc/rKxAYcBVAFTAXz++vE/nwEE/UbkAQP+/+bo/vUBBAAAAAACAFD/7AWwBE4AFAAfAEVAIhIRAAAPGgkV' + + 'Aw8PCSEgDw8TEhIGEw8MGE9ZDBAGHU9ZBhYAPysAGD8rABg/EjkvETkvERIBOTkRMzMRMxEzETMzMTABFAYHBgQjIgAREAAhIAAXNjUjESEBNCYjIBEUFjMyNgWwjJYX/uDq/f7gASABAwD/ARULlH0BB/29fnj/AH12hH8DaKvRJuL4ASwBBgEFASv+9/o4swEE/eTB' + + 'rv6Rtb23AAAAAgBU/lcGggWWABEAHABTQCwAEQ4DAxQaCQkUEQMeHQAGDg4GDAIVDBVgWQ8MDBdfWQwEBhRgWQYSX1kGEwA/KysAGD8rEQAzKxEAMxESORgvEMYREgEXOREzETMRMxEzMTABESMRDgEjIAAREAAhMhclMxEBMjcRJiMiBhUUEgVowEbpcP6y/pkBZgFU' + + 'x6YBvkn8mT41PD7H0NX+VwZG+7YsOwGAAVsBWwF0U074xgJ4DgPHD/zw9P78AAACAFD+VwVjBE4AEQAcAElAJgsAABQaBg8OBhQOAx4dCwsDCQ8bDBFQWQwQCRdPWQkQAxJPWQMWAD8rABg/KwAYPysAGD8REjkvERIBFzkRMxEzETMRMzEwJQ4BIyIAERAAITIXJTMR' + + 'IxEjATI3ESYjIgYVFBYDvkC2Zfn+5gEXAQK9iwFlTf2o/qUvKiIqgXd3QyotASkBCQEIAShYWPoJBRb9PwwCywqyvba8AAAAAAIAAAAABf0FgQAWAB4ASEAjAgcHFRsUFBUXDg4VIB8FBRUKGxNfWRsbChUSGgAKAF9ZCgMAPysRADMYPxI5LysREgA5GC8REgE5OREz' + + 'ETMRMxEzETMxMAEiFRQXByY1NDYzITIEFRQOASMhESERBTQpAREhMjYBWoUf1h63lwKh/QERfeee/qL+2QNe/vr+zwE5eoQEq24zUxFpYH+T6dWJ1nT+EASr7d7+N3kAAAAAAgCP/lcEjwXVAB4AKABVQC0ZJAoKCx8ACxMAAyopBwccGhkZAxwPE1BZDxZQWQ8cCxsc' + + 'IU9ZHBADJ09ZAxYAPysAGD8rABg/EMQrKxESADkYLzMROS8REgEXOREzETMRMzMxMAEQAiMiJicjFhURIRE0NjMyFhcVLgEjIh0BMzYzMhIBECMiBhUUFjMyBI/ZxnSrKQYG/uevnDF6FxJLFYYEX/u80f7b33B3dm/hAiL+8f7ZZloemP5hBlyJmQwF0wUHhfHH/t/+' + + '9QFsxLCvvwAAAAACAIn+tgU7BYEADwAXAFJAKA4BCxQHFAMDBBALAA8PCwsEGRgABAcTX1kHBwQFFAJfWRQUBAUDBBIAPz8SOS8rERIAORgvKwAYEMYREgE5OREzETMRMxEzETMzERI5OTEwCQEhESERIRUhMgQVFAYHCQE0KQERITI2A/z+tv7+/tkBJwE3/AESqI8B' + + 'ff6R/vz+6AEgfID+tgKx/pkFgbDZy5TXIv0WBGvL/mBwAAAAAAEAUP/sBRsFlgArAEZAIiEAEBERACYnJwsXFwAtLBAQFCYmKRQUDWFZFAQpI19ZKRMAPysAGD8rERIAORgvETkvERIBOTkRMzMRMxEzETMRMzEwEzQ+BDc+AjU0ISIGByU2JCEgBBUUDgMPAQ4BFRQh' + + 'MjY3BQIhICRQK0tmdoJCqnE5/vR+hxb+4iYBCwEJAQ8BGyhIZYCWj3p2ATWVqB0BHVb93/7Z/tMBllJ4VzwqHg8kMUc3qFxbJ7ylyMJOc1U9LiMhHF5IvGRxL/592gABAFT/7AQrBE8AJwBAQCEhIiIHFA0ODhsAFAApKAcNIRsEJRElHlFZJRYRClFZERAAPysAGD8r' + + 'ERIAFzkREgE5OREzMxEzETMzETMxMBM0PgElPgE1NCYjIgYHJz4BMzIWFRQOAQcOARUUFjMyNjcXDgEjIiRUWaoBAFtMZGRmXgz5He/D2etaruJpV211f2gV9ybw4eD/AAE8ZINUNRI4LzwzQkEajZernWCCUC0VPTRBOz9OJZSOsQAA//8AWgAABI8FgRIGA1UAAAAC' + + 'ABj+VwM4BdIAFgAiAEpADh0RDQcHERcAEQAkIwMguAEftlkDEhQPEhq4AR9ADVkSEA8MUFkPCVBZDxsAPysrABg/KwAYPxDEKxESATk5ETMRMxEzETMxMBM0NjMyFhURFDMyNjcVBiMgGQEGIyImNxQWMzI2NTQmIyIGGH5rp6d3E00SRHL+tyw0WWh4MyQkMjIkJDMF' + + 'Bl5uwr77ao0HBdMRAUkEsRZwWygvLygoLy8AAAABABn+VwKRBTgAHgBUQCoDFxcPHQgKBg0REQYPBiAfFhYDCwkQCAkIT1kNCQ8DFE9ZAxYaAFBZGhsAPysAGD8rABg/MysRADMYEMYSOS8REgE5OREzETMRMzMzETMRMzEwBTI9AS4BNREjNTM3MxUzFSMRFBYzMjcR' + + 'FAYjIic1FgEkdneBiZdYsM3NPD8hPZicTFtI2408A4eGAn6+/v6+/c5PSw7+yI+gFMkPAAAAAAEAAAAABM0FgQAQADNAGAIHBw8MDg4PDxIRBQUKDxINAAoAX1kKAwA/KxEAMxg/EjkvERIBOREzETMRMxEzMTABIhUUFwcmNTQ2MyEVIREhEQFahR/WHqeUA5L+OP7Z' + + 'BJ1gM1MRaWB+lOT7YwSdAAABABn/7gKeBdUAIABPQCceDhcFBwMVGRkDFwMiIR4eAAYLEVBZCwYYBQYFT1kVBg8AHE9ZABYAPysAGD8zKxEAMxgQxCsREgA5GC8REgE5OREzETMRMzMRMzMxMAUiJjURIzUzNTQ2MzIXFS4BIyIGHQEzFSMRFBYzMjcVBgGkfIaJhq+a' + + 'YVUSSxU9N83NPD8hPWgSh4kCfr55ipgRyQUHRkdAvv3OT0sOriIAAQAX/lcEzQWBABEANEAbAwoFAAUQEBMSDQhfWQ0KYFkNAQQAAQBfWQEDAD8rEQAzGBDEKysREgE5ETMzETMzMTATNSEVIREUFjMyNxUGIyImNREXBLb+ODZAG0RbSq2qBJ3k5Ps5T00N3BS8yQTB' + + 'AAEAe//sBqMFgQAbAEpAExIRFRUOCxkGAxkDHRwSEgAEDhi4ARNADlkODgATDAQDAAhfWQATAD8rABg/MzMSOS8rERIAORgvERIBOTkRMxEzMzMRMzMxMAUgABkBIREQITI2NREhET4BNSMRIRUUBgcVEAACy/7g/tABJwExnaQBJ2tzfQEHrLz+uhQBGAEMA3H8pv6s' + + 'takDUP4ADoNrAQTSvN0d2v7z/toAAAABAH//7AXLBDoAIgBbQBoNDBAQCRQYBgYUASEUISQjDQ0iGxwcGCIJE7gBD0AQWQkJGA4HIg8YFR4DUFkeFgA/KwAYPz8zMxI5LysREgA5GC8zETkvERIBOTkRMxEzETMRMzMRMzMxMAEREDMyNjURIRE+ATUjESEVFAYHFRQW' + + 'FyEuAScjBiMiJjURAZjAZn0BGW5/fQEHur0FA/70BAcBBWvxrLgEOv2h/uOviQJE/fcMi24BBNLE2hq+V28sGZAu69TLAq8AAAEAaf/qBgEFgAAlAEdAJB8ZBw0ZDQQcIgoQBBYiIgQnJh8HHQMKCwpfWRoLAwATX1kAEwA/KwAYPzMrEQAXMxESATk5ETMRMzMRMxI5' + + 'OREzETMxMAUiJAI1NBI3BiMhNSERDgEVFBYzMjY1NCYnESEVISInFhIVFAIEAzXP/seo0d2APP7yAoqjpNK4uNOhowKE/vQ6gNnRqP7HFpUBFbnLAShnC+T+y1DhoMjg4Mie41ABNeQLZ/7Zy7f+6ZYAAAEAe//sBUQFlAAaADZAHAkGFRAQAAAGHBsHAxgVYFkYE19Z' + + 'GAQDDF9ZAxMAPysAGD8rKwAYPxESATk5ETMRMxEzMTABEAAhIAAZASERFBYzMjYSETQmIyIHNTYzMhYFRP6z/rT+8f7fASeFhIifTFdcK0Rajqu1A7j+IP4UARgBDANx/Kalr5YBPAEEhoIN3BTzAAABACMAAAXPBZYAEgAyQBgSEQ4PEQ8GAxQTCQkRBwcRAAAPBBEE' + + 'DxIAPz8zEjkvETkvETkvERIBFzkRMxEzMTABEz4BMzIXByYjIgYHAREhEQEhAqrxOH1VnY1tRjolMxv+0P7a/goBNQMtAapkW4G5Pigs/fz9vgJCAz8AAQAQ/lcFkwXVACAAOEAbGxUCAhcWDxYiIRsbDBYABVBZABYPDBFQWQwbAD8rABg/xCsREgA5GC8REgE5OREz' + + 'MhI5OTEwATIXByYjIgYHAQ4BIyInNRYzMjY/AQEhExYSFzcbAT4BBJ1+eF84NiwzEP5lTb6WZUw1LFhiJRL+VAEpqgxOCwlR0iyVBdVKxCQ7L/tGzaMNyAhTZDAEL/4FIv79KSUBJQKRjH0AAAEANAAABKgFgQARAEVAJAkCBgsRDw8DBgwEExIKEQARYVkHAAAOBAQD' + + 'X1kEAw4LX1kOEgA/KwAYPysREgA5GC8zKxEAMxESARc5ETMzETMzMTATIQEhNSEVASEVIQEhFSE1ASE0AfUBDv1SA/b+3wEn/j7+wgMj+5UBUf6mA0MBV+fN/o/F/mnn0QGtAAAAAAEAQAAAA8cEOgARAElAJgsOAgYJDAADDgMGDAQTEgoRABFSWQcAAA4EBANQWQQP' + + 'DgtQWQ4VAD8rABg/KxESADkYLzMrEQAzERIBFzkRMxEzETMRMzEwEyE3ITUhFQczFSEHIRUhNRMjQAFcxP4NAynL2f6gxwJK/H3W2gJ59svJ+LH7zccBAQABABr+TgSbBYEAGwBEQCQVDxEEAxAUFAoYAw8YAx0cAAdfWQ4VYVkEDgQOABISEV9ZEgMAPysAGBDEOTkv' + + 'LysrERIBFzkRMzMRMxEzMxEzMTABIiQnJR4BMzI2NTQmKwE1ASE1IRUBFgAVFAIEAlHX/utLAQI2j2eTn8vIgAGh/U4EGv4m9AERj/70/k62wWWDccK3qrPnAafnzf4tDP7d+Lv+5pcAAAABAEj+TgTJBYEAGwBDQCQMCAgSAwcOGBkDDgsZBB0cABVfWQ8HYVkYDxgP' + + 'AAkJDF9ZCQMAPysAGBDEOTkvLysrERIBFzkRMxEzETMzETMxMAEgABE0PgE3ATUhFSEBFSMiBhUUFjMyNjcFBgQCkv7u/siA6pv+JgQa/U4BoYDJyp+TZ5A1AQJL/uv+TgFEAReo/I0HAdPN5/5Z57Oqt8JygmXBtgAAAAABACj+TgQiBDoAGQBLQCYSDg4YCg0UAwQK' + + 'FBEEBBsaAwMPDRUVBw8OEg8SUFkPDwcAT1kHHAA/KwAYPysRADMREjkYLzMROS8REgEXOREzETMRMzMRMzEwBTI2NwUGBCMiADU0NjcBNSEVIQEVIyIGFRACOVdzCgEVGP790PT+5d7K/pQDhv3LAVBmt6LxX2oNtscBBt/I8hQBdsPL/py9kZv+7QAAAAABADf+TgQP' + + 'BDoAKgBPQCgVGRYkBxkqAA4dGhQHFB0ABCwrCiIqIhoTEwMXFxZQWRcPAydPWQMcAD8rABg/KxESADkYLzM5OREzERIBFzkRMxEzETMzETMzETMxMAUGBCMiLgE1ND4BNz4BNTQuASsBNQEhNSEVAR4BFRQOAQcOARUUFjMyNjcEDyL+49mAzXNgs7puZzJqpmYBL/3m' + + 'A4b+ptC1WbDPdmVuZGJ6C2Ocs0yPZFd/UCoYPSwtLxSQARHLo/7ZBYaLUXdUMh09KThCXFgAAAEARwAABCEFlgAfAFNAKggJCRcbGBIDDxsADwMhIAgIGgwUHwAfYVkRAAAaDAwFX1kMBBoXX1kaEgA/KwAYPysREgA5GC8zKxEAMxESORgvERIBFzkRMzMzETMzETMx' + + 'MBMhNjU0IyIGByU+ATMyFhUUBzMVIQcGByEVITU+ATchVgH5n7laXw7+5Rj10+T0Zm7+0mi8LgKO/CYqinb+5QL8jXW4YWEQxM7QvIuDv1WUbefDXLNrAAABAD3/7AQ1BYEAGgBPQCgCFAgEGBoPDg4YCAMcGw8PCwAEGF9ZBAQLAAMaABpfWQADCxFfWQsTAD8rABg/' + + 'KxEAMxESORgvKxESADkYLxESARc5ETMzETMRMzMxMBMhFSEVMyAEFRQAISIkJyUWMzI2NTQmIyERI0YD1f3tJAEBAQj++P7+0P77GQEaKLR4aniM/uOuBYHk7ujh+f7/yrYNrn+EfXkB2QABABH/7AOxBDoAGgBTQCoCBxoNBBgUBw4NDRgHAxwbDg4KAAQYUVkEBAoA' + + 'AxoAGlBZAA8KEU9ZChYAPysAGD8rEQAzERI5GC8rERIAORgvERIBFzkRMxEzETMRMxEzMTATIRUhFTMgERQGIyImJyUeATMyNjU0JiMhESMeA1T+QTIBzO/duvQmAQ8SZlhZWmt5/v6fBDrLuP6YqbqtoRJTTU5VXlEBcQABAB//7ARVBTgAJgBSQCgSACgnCAkfEhkY' + + 'GAAGCQEDCQAfCRkZFQQCCQECAU9ZBgIPFRxRWRUWAD8rABg/MysRADMYEMYSOS8ROREBMzMzETMRMxEzETMRMxESOTkxMBMjNTM3MxUzFSMVFB4BFx4CFRQEIyImJzceATMyNjU0JicuAjWoiZdYsM3NJ1GNrpRQ/v/j3+0n9xVngHVtV2jrqFkDfL7+/r5NJzIjIChS' + + 'fl+ds42VJU1AO0E0PRUuV5BrAAAAAgCP/lcEjARRABAAGQA3QBsHFwQEBREAAAUbGgoJCQYXFQYPBRsNE09ZDRAAPysAGD8/PxI5LzMREgE5OREzETMRMzMxMAEQAAUVIREhFhczPgEzMh4BBRAjIgYVETYSBIz+ov56/ucBCQcFBDOpcYK2X/7i2nB86twCnP7F/mGd' + + 'zgXjNW9bYG7HnQEPr4z9rXgBOQAAAAABAKQAAAGZBcwAAwAUtwMAAAUEAQASAD/NERIBOREzMTAzETMRpPUFzPo0AAIArgAAA00FzAADAAcAH0ANAwAEBwcACQgFAQQAEgA/Ms0yERIBOTkRMxEzMTAzETMRMxEzEa7wv/AFzPo0Bcz6NAAAAQBSAAAEWwXMABMAT0Ao' + + 'BAgMDAERDQ8ACgUADQUDFRQHEwATYVkEAAsPEA9hWQgQABAAEAINEgA/xjk5Ly8RMysRADMRMysRADMREgEXOREzETMRMzMzETMzMTATIREzESEVIREhFSERIxEhNSERIVIBivUBiv52AYr+dvX+dgGK/nYEOwGR/m/R/vbR/nEBj9EBCgAAAP//AMEAAAHnBYESBgAE' + + 'AAD//wCJAAAKbwcrECYAJwAAECcAPQXHAAAQBwkhBw8AAP//AIkAAAl9BfkQJgAnAAAQJwBdBccAABAHAokGhAAA//8AVP/sCJkF+RAmAEcAABAnAF0E4wAAEAcCiQWZAAD//wCJ/+wIygWBECYALwAAEAcALQTjAAD//wCJ/lcGjAXMECYALwAAEAcATQTjAAD//wCP' + + '/lcD4gXMECYATwAAEAcATQI5AAD//wCJ/+wJrgWBECYAMQAAEAcALQXHAAD//wCJ/lcHcAXMECYAMQAAEAcATQXHAAD//wCH/lcGjAXMECYAUQAAEAcATQTjAAD//wAzAAAFkQcrEiYAJAAAEQcJIQGRAAAAFkANAhERBSYCEwQTGQQHJSsRNQArETX//wA8/+wEgAX5' + + 'EiYARAAAEQcCiQDJAAAAGLYCNTURJgI3uP/ctDc9AxwlKxE1ACsRNQAA////qwAAAowHKxImACwAABEGCSHGAAAYtgEFBQUmAQe4//+0Bw0BAyUrETUAKxE1////rgAAAo8F+RImAPMAABEGAomuAAAWQA0BBQURJgEHAQcNAQMlKxE1ACsRNQAA//8AVP/sBeMHKxIm' + + 'ADIAABEHCSEBxgAAABZADQIaGgUmAhwAHCIHACUrETUAKxE1//8AUP/sBJMF+RImAFIAABEHAokBAQAAABZADQIXFxEmAhkAGR8GACUrETUAKxE1//8Ae//sBUoHKxImADgAABEHCSEBigAAABi2ARMTBSYBFbj//bQVGwQPJSsRNQArETUAAP//AH//7ARcBfkSJgBY' + + 'AAARBwKJAPMAAAAYtgEYGBEmARq4//a0GiAWCyUrETUAKxE1AAD//wB7/+wFSgcrEiYAOAAAEQcJVALcAAAAIUALAwIBFxcFJgMCAR24//q0HRwEDyUrETU1NQArETU1NQD//wB//+wEXAaPEiYAWAAAECcAagEYAAARBwKLARYBNAAbQA8CARsEGxoIFiUCARcXESYA' + + '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' + + 'lxfXF+cXBgcXFxc3F2cXlxe3F8cXB5oXFwE3FwEHFycXdxeHF9cXBTgnF0cXdxenF9cXBRcXNxdHF2cXdxeXF8cX9xcIBxdHF2cXhxeXF7cXxxfnFwgIBhfmFwLSJhf2FwJGF7YXAgYXFhcCnlYXlhemF7YX5hcFJhemFwIGF1YXthcDbhYXZhd2FwMWFzYXZheWF7YX' + + 'xhcGBhcmFzYXVheGF7YX1hfmFwg5RhdWF3YXphfWFwVGF0CtlhemF/YXBAYXZhcCCQUXFRdlFwOOZReFF5UXtRflFwUVF0UXlRf1FwQFFxUXNRdlF5UXtRfFF+UXCFtFF1UXdRelF9UX9RcGRReVF6UX9RcEBRe1F+UXAykEFyQXVBekF7QXBQQXNBdEF3QXpBfEF/QX' + + 'B3sUFyQXRBd0F8QX1BcGRBeUF8QX9BcEBBeEF+QXA0mTF+MX8xcDQxeTF6MXAwMX4xfzFwNjAhcBeABfXl1eXXFyXl1xcl5dcV5dcXJeXXFyXl1eXXFyXl1xcl5dcXJeXXFyXl1eXXFyXl1xcl5dcXJeXXFeXXFyXl0rETUAPzX//wDFAhMB5QNEEgYAeTgA//8ALgAA' + + 'BoMFghAnACgBfQAAEQcDOf91/54AJrQBDgMBD7j/bkASDw8BASUALwA/AE8AjwAEoAABXV01KxE1AD81AAD//wAkAAAGtQWCECcAKwF4AAARBwM5/2v/ngAktAEOAwEPuP9pQBEPDwQEJQAvAD8ATwCvAM8ABV01KxE1AD81//8AJAAAA0EFghAnACwBkQAAEQcDOf9r' + + '/54ALrQBBgMBB7j/UEAaBwcAACUAPwB/AI8AzwDfAO8ABgAAQADwAANdXTUrETUAPzUAAP///+b/7AZDBZYQJgAyYAARBwM5/y3/ngBHQBgCGwMCGQQZFBkkGTQZRBlUGWQZdBmEGQm4/zJAGhkZBwclAQBvAAECDwA/AE8AXwAE/wABYAABXV1xX3E1NStdETUAPzUA' + + 'AAD//wCAAAAHSQWCECcAPAIUAAARBgM5x54AOLcBCwMBDAAMAbj/j0AgDAwEBCUADwA/AE8AfwCPAL8AzwD/AAgQAFAAkADQAARdXTUrXRE1AD81AAD////QAAAGYQWWECYDW0oAEQcDOf8X/54AN0AOASYDASQQJCAkMCRAJAS4/xdAFyQkISElAI8A3wACDwBPAAJw' + + 'AIAA0AADXV1xNStdETUAPzUAAAD///+pAAAChQZVEiYDawAAEQcDOv87AAAAE7MDAgEQuP/ZtBAWAwklKxE1NTUAAAD//wAzAAAFkQWBEgYAJAAA//8AiQAABWoFgRIGACUAAAABAIkAAQSuBYEABQAdQA4DBAAEBwYFAl9ZBQMDEgA/PysREgE5OREzMTABFSERIREE' + + 'rv0C/tkFgeT7ZAWAAAAAAgBTAAAFbAWBAAUADgA0QBoGAgEACg4FBQoCAxAPCQACBQYDBmBZAxIAAwA/PysRADMzEjkREgEXOREzETMzETMxMAEFARUhNyUBJicOAwMCNwFZAdz65wED6v72ORoBCyQ68AWBAfti4uISArqbXAYlbp/9hwD//wCJAAAFBgWBEgYAKAAA' + + '//8APQAABKgFgRIGAD0AAP//AIkAAAU9BYESBgArAAAAAwBU/+wF4wWWAAMAEAAcAHFARwIDCxEEFwsECx4dAANfWR8AAQ8AfwCPAK8A/wAFFwMAABoODhRfWQ4ECBpfWQgToB4BgB4BcB4BYB4BQB4BMB4B8B4BIB4BXV1xcXFxcXEAPysAGD8rERIAORgvX15dcSsR' + + 'EgE5OREzETMSOTkxMAEhFSElFAIEIyAAERAAISAAATQCIyICFRQSMzISAfYCS/21A+2u/rzY/rT+hwF4AU8BTwF5/tPYw8bY3b/G1wM75HDc/rKxAYcBVAFTAXz+gP6x5AED/v/m6P71AQQAAAD//wCJAAABsAWBEgYALAAA//8AiQAABbQFgRIGAC4AAAABAA4AAQVI' + + 'BYIACgA4QB8KCQQHCAEACAAEAwwLBAkDCAASwAwBnwwBYAwBLwwBXV1dXQA/Mj85ERIBFzkRMxEzETMzMTAlIQEmJw4BASEBIQVI/s/+3ysdGjH+3/7MAgkBKwEDdZV1ZKz8kQWBAAD//wCJAAAGIQWBEgYAMAAA//8AiQAABT0FgRIGADEAAAADAFQAAATTBYEAAwAH' + + 'AAsAO0AeAwoJBgIFBgUMDQsKX1kLCwcABgdfWQYSAANfWQADAD8rABg/KxESADkYLysREgE5OREzEjk5MjEwEyEVIQEVITUBFSE1dwQ5+8cEXPuBA+T8twWB5PxH5OQCV+TkAAAA//8AVP/sBeMFlhIGADIAAAABAIkAAAU9BYEABwAjQBEABwMEBwQJCAUCYFkFAwQA' + + 'EgA/Mj8rERIBOTkRMxEzMTAhESERIREhEQQg/Y/+2gS0BI37cwWB+n8AAAD//wCJAAAFEAWBEgYAMwAAAAEAWgAABI8FgQAMAEdAIwcDAwoIAgIGAQsBCw0OAwcEB19ZCQgCAgoEAwEKAApfWQASAD8rEQAzGD8SOREzMysRADMREgE5ORESOTkRMzIyETMxMDM1CQE1' + + 'IRUhARUBIRVaAcD+UQPn/UcBc/52Aw3qAfsBs+nk/ouG/kLkAAD//wAXAAAEzQWBEgYANwAA//8AIwAABTUFgRIGADwAAAADAD//9QZTBYsACAAgACkB7kD/FgUgEyUgCQAaIQ8PCRoDKyoEJhMmX1kWE0AUBAUlCiVfWR8KCROXKwFyKwFiKwFTKwFEKwE1KwEmKwEW' + + 'KwEFKwHzKwHkKwHVKwHGKwG2KwGnKwGWKwGEKwF1KwFmKwFWKwFHKwE2KwEnKwEVKwEDKwFn9CsB5SsB1isBxSsBtisBoysBAJArAYIrAXQrAWYrAVIrAUQrATArASIrARQrAQYrAfYrAeQrAdYrAbQrAaYrAZIrAYQrAXIrAWQrAVYrAUArATIrASQrARYrAQQrAfYr' + + 'AeYrAdIrAcQrAbYrAaQrAZQrAYYrAWQrAVYrATQrASIrARQrAQYrATfyKwHiQFwrAdQrAcIrAQGwKwGkKwFwKwFkKwFQKwFEKwEbKwEEKwHkKwHUKwG0KwGEKwF0KwFUKwE7KwEgKwEUKwH0KwHbKwHEKwGUKwF7KwFrKwFbKwE0KwEQKwECACsBB15dX11dXV1dXV1d' + + 'XXFxcXFxcXFxcXJycnJycnJyX3JycnJeXV1dXV1dXV1dXV1dXV1xcXFxcXFxcXFxcXFxcXFycnJycnJycnJyX3JycnJycl5dXV1dXV1dXV1dXV1dXV1dcXFxcXFxcXFxAD/NMisRADMYPxrNMisAEBjEERIBFzkRMxEzETMzMxEzMzEwATQmKwERMzI2ATUjIiQmNTQA' + + 'ITM1IRUzIAAVFAYEKwEVARQWOwERIyIGBSqepRMamKT9lDaz/vaMATYBHyoBFioBHgE3jP72szb9lKOZGhOlngLamKr9caz9vMeJ+aD7ARSenv7s+6H4iccC5aCtAo+qAAD//wASAAAFRAWBEgYAOwAAAAEAYAAABhkFgQAbAaxA/xEBAQ4CFRgKBwcCGAMdHBEOAw5f' + + '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' + + 'HgIXHgIVFAYHJzY1NC4BJy4CNTQAATUHITUhFQgBAUQoR2E4kHFCOyO3NylVfJ+JTQEeAQl//sUCvf70/uQBpjhFKx0QKEhwV0OwOEpcPyg2KCAjUIJkwgHtAQ0EBL2+/vj+QAABAGv+WARkBE4AGABQQDAAGBAICAkYCRoZEBQUBFBZFBAMDwkVABugGgGQGgHwGgGw' + + 'GgGgGgGQGgFwGgHvGgFdcXFxcXFycgA/Pz8/KxEAMxESATk5ETMRMxEzMTABETQmIyIGFREhETQnIR4BFTM+ATMyFhURA01RaW97/uYkAQ0RFQNAqHu6pv5YBB2VcqeQ/bsDU3tsJ2kpcF21yPuHAAAAAAMAWv/sA/kFywAKABAAFQBHQCUUDQ0AEw4OBgAGFxYTDk9Z' + + 'DxMBGwMTEwsICBFRWQgAAwtRWQMWAD8rABg/KxESADkYL19eXSsREgE5OREzETMRMxEzMTABEAIjIgIRECEyEgEyEyEeARMiAyECA/nw5ODrAdHv3/4tugf+hwNfXbkHAXoHAt3+g/6MAX0BdALu/o/8SAHi6fkEcv4uAdIAAAAAAQCJAAAB8wQ6AAkANkAjCQYGAwML' + + 'CgQPABUfC38LAu8LAWALoAuwCwOAC7ALwAvQCwRdcV1xAD8/ERIBOREzETMxMDMuATURIREUFhfHHiABGislIIdFA078qTx/KAAAAQCPAAAEdQQ6AAsAOEAbAA0HAwMECAkJCgQDDAsNAgcKAQcBCAUPBAAVAD8yPzM5OREzETMRATMSFzkRMxEzETMRMzEwIQEHESER' + + 'IREBIQkBA0r+3X/+5wEZAY0BI/6EAZkBx2r+owQ6/hIB7v4y/ZQAAAABAAkAAARUBgEAFgErQNAEFgoBAAgJCQAKEQQYFwQKChMAEw5QWRMJABVPGAE7GAELGAH/GAG7GAGEGAFrGAFbGAFLGAE0GAELGAFs+xgB2xgBmxgBixgBSxgBOxgBKxgB6xgB2xgBuxgBqxgB' + + 'mxgBhBgBdBgBZBgBSxgBFBgBuxgBhBgBWxgBSxgBNBgBCxgBOusYAasYAZsYAYsYAXQYAVsYAUsYAQQYAeAYAQLQGAGvGAGAGAFwGAFAGAEgGAHwGAHgGAG/GAGgGAGQGAFvGAFPGAEgGAEfGAEAGAEHXl1dXV1dXV1dXV1xcXFxcXFfcXJycnJycnJyXl1dXV1dXXFx' + + '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' + + 'AxoZABYNFk9ZCg0WFxcFEQ8LG1QaAUYaARYaAfkaAekaAdYaAbkaAakaAZsaAYYaAWIaAVQaAUYaARkaAQsaAWn0GgHkGgHWGgG5GgGpGgGbGgF2GgFiGgFUGgFGGgEUGgEGGgHWGgG5GgGpGgGWGgF5GgFpGgFJGgEiGgEBEBoBBBoB2xoBzxoBpBoBlBoBexoBbxoB' + + 'XxoBQBoBNBoBEBoBBBoBOfsaAeAaAdQaAbsaAasaAYsaAX8aAWQaAUsaARsaAdQaAbsaAasaAXQaAWQaAUsaAT8aAQIAGgHQGgG/GgGvGgGQGgF/GgFvGgE/GgEQtRoBABoBCF5dXV1dXV1dXV1xX3FxcXFxcXFycnJycnJycnJyXl1dXV1dXV1dXV1dcXFfcXFxcXFx' + + 'cXFycnJycnJycnJycnJeXV1dXV1dXV1dXV1dcXFxAD8/MzMvPzMrEQAzERIBFzkRMzMRMxEzETMxMCU+AjURIREUBgURIREkJjURIREUFhcRIQOFX2MtARP2/vb+/f72+QETaIgBAbABOn1yAmD9kP/dAv5rAZUC4/kCcP2hm4sEBIsAAAEAUf/sBnEETwAnAWtA/wYN' + + 'EycnJh8YGBwmCQ0FKSh5KQEmKUYpVilmKQQJKQH5KQG2KcYp5ikDiSmZKQJyKQFkKQFWKQEpKTkpAgQpAWj2KQHZKQHLKQGpKQFWKWYphimWKQQ5KQEGKSYpAuYp9ikCySkBuykBpCkBhimWKQJpKQFbKQFJKQEmKTYpAgkpAekpAdspAZYptinGKQN5KQFrKQFWKQE0' + + 'KQEmKQEJKQE4+ykB4ikBAdApAcQpAaspAZ8pAXspAWQpAUspAT8pARspKykC8CkBArApwCngKQOfKQFQKWApgCkDPykBACkBTylfKX8pvynfKQUAKQEIAyYmFQoDIhUiT1kTEBUWHLcJCglRWRsKEAA/MysRADMYPzMzKxEAMxESORgvAV9eXV1xcXFxcV9xcnJycnJy' + + 'cnJyX3JyXl1dXV1dXV1dXXFxcXFxcXFxcXFycnJycnJyXl1dXV1dXV1dcXFxERIXOREzETMSOREzMTABFBYzMjY1NCYnNxYAFRACIyAnIwYhIgIRNAA3Fw4BFRQWMzI2PQEhA+NeVWFchXkX+QEM5M/+7EcER/7sz+QBDPgXdohdX1ZhAQIB2o6co7Si0he9Jf7Q9f7/' + + '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' + + 'EBAJAQkKUFkJFQEAUFkBDwA/KwAYPysREgA5GC9fXl1fXTMREgE5OREzERI5MhEzMTATNSEgABEQACkBNTMyNjchNSEuASNRAQ8BDQEW/un+9P7x94WBD/6oAVkNgocDb8v+7v71/vX+7stzdst5d///AIkAAAUQBYESBgCgAAD//wCP/lcEjwXMEgYAwAAA//8AVP/s' + + 'BY8FlhIGACYAAAABAIkAAAYhBYEADAA+QB4KAAUGAAwIBQYJDAMODQkJBwEEBAcDAwYKBwMABhIAPzM/MxI5LxE5LzMROS8REgEXOREzETMRMxEzMTAhEQEjAREhESEJASERBRv+o9L+o/76AYsBQgFCAYkEgf3XAjH7dwWB/fYCCvp/AAAAAQCP/lcFXAQ6ABQAQEAh' + + 'BQYOEREQCAUGCxADFhURFQYbFAIHAk9ZDgcPAQtQWQEVAD8rABg/MysRADMYPz8REgEXOREzETMRMxEzMTAhIwEWFREjESETFhc2NxMhESMRNDcDZtX+5BD2AXS0OQsQNK8BbvYSA3WbZvvjBeP9z7hmdqgCMfvGAnRnnAACAAH+VwSjBE8AGQAkAFZALBEOCSANDRIO' + + 'GgAOCwADJiUGBgMWDBAREE9ZCRERAw4bFh1PWRYQAyJPWQMWAD8rABg/KwAYPxI5LzMrEQAzERI5GC8REgEXOREzETMzETMzETMxMAEUAiMiJyMWHQEzFSMVITUjNTMRNAAzMhYSBTQmIyIZARYzMjYEo/vRvHsEBLOz/tl4eAEU7Z7+jf7ajHXcc5JncQIE8f7ZiTw5' + + 'eMRtbcQCvfQBFpP+86Gxzv6v/vB+ugAA//8AOP/sBXMFlhIGAUgAAP//AFT/7AWPBZYQJgAmAAAQBwARAgsCOP//ADj/7AVzBZYSJgFIAAAQBwARAYYCOv//AIkAAAUGBxcSJgAoAAARBwkeARUAAAAYtgEREQUmAQ64/6O0DhEBCyUrETUAKxE1AAD//wCJAAAFBgbV' + + 'ECYAKAAAEQcJIgF5AAAAskCYAgEMDAUmAgEQBhAOAAolABUQFTAVQBVgFXAVkBWgFcAV0BUK1xAVQBVwFaAV0BUFIBVQFYAVsBXgFQUAFTAVYBWQFcAV8BUGpxAVQBVwFaAV0BUFIBVQFYAVsBXgFQUAFTAVYBWQFcAV8BUGdxAVQBVwFaAV0BUFIBVQFYAVsBXgFQUA' + + 'FTAVYBWQFcAV8BUGRyAVMBVAFQNdXl1xcl5dcXJeXXFyXl0rETU1ACsRNTUAAQAX/+wGrAWBACMAcUBAFQcBHR0eIx0gHh4OBwMlJAEEBBlfWSAEYASgBAMABAEQAwQEIRIAICEgX1khAx4SAA8QDwIJAw8PCwsSX1kLEwA/KxEAMxgvX15dPz8rEQAzERI5GC9fXl1x' + + 'KxEAMxESARc5ETMRMxEzETMRMzEwARE+ATMyFh0BFAYjIiYnNx4BMzI2PQE0JiMiBgcRIREhNSEVAwV6/Wzo3NfiibxGyjRSL1tOd5Bf0lP+2f45BLYEnf6wMzTX6Tb321Nfq0QxZpMJkXAmHP1rBJ3k5AAAAP//AIkAAQRhBxcQJwkfAXEAABEGA8QAAAIbtgEGBhQn' + + 'AQq4/65A/woGAAMlHw0/DU8NAw8NXw1/Da8Nzw3vDf8NB9EODQHjDg0eDS4NTg1uDX4Nng2+De4NCR4NPg1ODV4Nbg2ODZ4Nrg2+Dc4N3g3+DQwODV4Nfg2uDc4N7g3+DQezDQ1dDQLFDQ0dDS0NTQ1tDX0NnQ29De0NCR0NPQ1NDV0NbQ2NDZ0NrQ29Dc0N3Q39DQwN' + + 'DV0NfQ2tDc0N7Q39DQeVDA1cDQKnDA0cDSwNTA1sDXwNnA28DewNCRwNPA1MDVwNbA2MDZwNrA28DcwN3A38DQwMDVwNfA2sDcwN7A38DQd3AA8NXw0CiQ8NHw0vDU8Nbw1/DZ8Nvw3vDQkfDT8NT0DbDV8Nbw2PDZ8Nrw2/Dc8N3w3/DQwPDV8Nfw2vDc8N7w3/DQdZ' + + 'DQ0tDX0NA2kdDS0NPQ1NDW0NjQ2dDb0N3Q0JDQ09DV0NfQ2NDZ0NrQ3NDd0N7Q39DQudDe0NAgEfDS8NTw1vDb8NBQ8NHw0vDT8NTw1fDW8Nfw2PDa8Nvw3PDd8N/w0OOQ8NLw1fDX8Nnw2vDb8Nzw3vDf8NCr8NAQIfDT8NTw1vDY8N3w0GDw0fDS8NPw1PDV8Nbw1/' + + 'DY8Nnw2vDc8N3w3vDf8NDy8NTw1/DZ8Nvw3PDd8N7w0IXXFyX3FyXl1xX11xcl5dXl1xcl5dX15dcXJeXV5dcXJeXV5dcXJeXV5dcSsRNSsAETUAAAAAAQBU/+wFewWWABkAfUBPFBcXCAIDDg0NAwgWAwMbGhQXX1kfFAEPFH8UjxSvFP8UBRcDFBQACwsRX1kPDgEQ' + + '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' + + 'geT7ZAWAAAAAAgAS/mgFjgWBAA4AFQBFQCMVCRENAwIGBwAPCQ0HDwIFFxYNEWBZDQMVAAgFCGBZBRIHArgBEQA/Mz8rEQAzMxg/KxESARc5ETMRMxEzETMRMzEwJTMRIxEhESMRMzYSNxMhAREhBwYCBwTVufr8ePqcSHAdPQMV/uP++h8dXzT0/XQBmP5oAoyDAYHM' + + 'Ab37cwOZ6sz+i24AAAD//wCJAAAFBgWBEgYAKAAAAAH/+gAAB0UFgQAgAeBA/xYXEiAgDwAFBgYLCgoHAwAdGhcHIRwbGyKSIgGEIgFyIgFgIgFSIgFEIgEyIgEkIgECIhIiAvIiAeAiAdIiAcQiAbIiAaQiAYIikiICdCIBYCIBUiIBRCIBMiIBJCIBECIBAiIBZ/Qi' + + 'AeIiAdQiAcYiAaIisiIClCIBgiIBdCIBYiIBVCIBRiIBMiIBFCIkIgICIgH0IgHiIgHUIgHGIgGyIgGkIgGWIgF0IoQiAmYiAUQiVCICMiIBJCIBFiIBBCIB9iIBxCLUIgKyIgEBoCIBlCIBgCIBZCJ0IgJQIgFEIgEgIjAiAhQiAQAiATfwIgHkIgHQIgGEIqQixCID' + + 'cEBYIgFkIgFQIgEkIkQiAgAiAfQiAdAiAZQipCLEIgOAIgFUInQiAiAiAQIQIgHQIvAiAr8iAXAioCICTyIBICIBDyIBBxoHBwQPHwEBEg8PFhAKAx0EHAYAEgA/MjIvMz8zMzkvMzMRMxESOREzAV5dXV1dXV1xX3FxcXFxcXJycnJycnJycl5dXV1dXV1dXV1fXV1d' + + 'cXFxcXFxcXFxcXFxcXFycnJycnJycnJycnJycl5dXV1dXV1dXV1dXV1dXV1xcXFxcXFxcXERMxEzEhc5ETMzETMRMzMRMxEzMTAhESImJwEhASYnAyETHgEzESERMjY3EyEDBgcBIQEGIxEDEiBNEv6j/sQBxy1z+wEsxm5cLwEcL1xvxgEs+3MtAcf+xP6jOEcCZBAM' + + '/YADDCK8AZf+vLJhAlf9qV+0AUT+abwi/PQCgBz9nAAAAAABAC7/7ASlBZUAJgCEQFAhDiQDFxgSHgkkBBgDAx4kAygnIQ4NDg1fWR8Obw6PDgN/Du8O/w4DDg4GGw8XARADFxcbGxVfWRsEAAZfWTAEASAEYARwBKAE8AQFBAQAEwA/Mi9dcSsAGD8rEQAzGC9fXl0R' + + 'EjkvXXErERIAORESARc5ETMzETMRMxEzERI5OTEwBSIkJyUWMzI2NTQmKwE1MzI2NTQmIyIHJTYkMzIEFRQGBx4BFRQEAn7s/uFFAQhc7IGGn6k7O5eQe2zUTP70RQEV1+cBGI6Kl6X+1hS9x139a2FlWeNgZFtg9z3NxseogawjFqyEwOQAAAABAIgAAAU3BYEADQBc' + + 'QDYMBgkJCA0FAgIBCAEPDgwFDAUGAQMJABJgDwFQDwFADwGADwFwDwHADwGgDwEwDwEgDwEPDwFdXV1dXXFxcnJyAD8yPzM5OS8vERIBOTkRMxEzMxEzETMzMTAzESERFAcBIREhETQ3AYgBBggCZQFM/voI/Z8FgfzNa6gERvp/Az9OsPvDAAAA//8AiAAABTcHPhIm' + + 'A8kAABEHCRsBkgFKABZADQEODgUmAREGERcAByUrETUAKxE1AAEAiQAABOUFgQASAERAIQwLBw0KCxEGBwIRERIHEhQTCg0QAgIQYVkCAhILEgYAAwA/Mj8zOS8rERIAOTkREgE5OREzETMRMxESOTkRMzIxMBMhETI2NxMhAQYHASEBDgEjESGJASc0d1/OASz+93wv' + + 'AeX+v/6KFE4d/toFgf2pe5gBRP5rvSP89AKADRb9owAAAAABAAj/8AUUBYEAEwAvQBgBEBITCBATAxUUExIQAWBZEAMGC2BZBhMAPysAGD8rABg/ERIBFzkRMxEzMTABIQMKAQYjIic1FjMyNhI3EyERIQP4/mkxNmacjUUeDh05SkEiQwO4/uQEjf6k/oj+v4gR9weM' + + 'ATvwAdn6fwD//wCJAAAGIQWBEgYAMAAA//8AiQAABT0FgRIGACsAAP//AFT/7AXjBZYSBgAyAAAAAQCJAAAFNwWBAAcAI0ARAAcDBAcECQgFAmBZBQMEABIAPzI/KxESATk5ETMRMzEwIREhESERIREEGv2V/toErgSN+3MFgfp/AAAA//8AiQAABRAFgRIGADMAAP//' + + 'AFT/7AWPBZYSBgAmAAD//wAXAAAEzQWBEgYANwAAAAEAAf/sBQ0FgQATADlAGxAKDQ0LDg8PDAsLAxUUDQoKBg4LAwAGYFkAEwA/KwAYPzMSOS8zERIBOTkRMzIRMxI5ETMzMTAFIiYnNxYzMj4BNwEhCQEhAQ4CAVVHjCpSWUcvQzs2/dQBMwGEASoBK/3zRXOPFCMZ' + + '9iokT3YDpP1YAqj7vZCFPQADAEf/9QaNBYsACAAgACkBhkD/FgUgICUTCSEPABoPCRoDKyoEJhMmX1kWEwUlCiVfWR8GExYTJhMDEQoTChMJFAQJE5krAYsrAXIrAQFgKwFUKwFAKwE0KwEbKwEEKwH0KwHUKwG7KwF0KwFbKwE7KwErKwEbKwEAKwFn9CsB1CsBxCsB' + + 'oCsBlCsBdCsBRCsBNCsBGysB+ysB6ysByysBuysBlCsBcCsBZCsBQCsBNCsBGysBBCsB6ysB1CsBuysBiysBWysBJCsBBCsBN/QrAdQrAcQrAaQrAYsrAXQrAUQrASsrAR8rAfsrAesrAcsrAaQrAZQrAXArAQJgKwFAKwEfKwEAKwHvKwHPKwGgKwGPQA8rAW8rAV8r' + + 'ASArAQArAQdeXV1dXV1dXV1xcXFxX3FxcXFxcXJycnJycnJycl5dXV1dXV1dcXFxcXFxcXFxcXFycnJycnJycnJeXV1dXV1dXV1dcXFxcXFxX3FxcQA/PxI5OS8vXl0zKxEAMxEzKxEAMxESARc5ETMRMxEzMzMRMzMxMAE0JisBETMyNgE1IyIkJjU0ACEzNSEVMyAA' + + 'FRQGBCsBFQEUFjsBESMiBgVknqUsM5ik/XtPs/72jAE2AR9DARZDAR4BN4z+9rNP/XujmTMspZ4C2piq/XGs/bzHifmg+wEUnp7+7Puh+InHAuWgrQKPqgAA//8AEgAABUQFgRIGADsAAAABAIn+aAXJBYEACwA2QBgGCQkABQIACwsCDQwHAwMJBQIFYFkCEgC4AREA' + + 'Pz8rEQAzGD8zERIBOTkRMxEzETMRMzEwAREhESERIREhETMRBM/7ugEnAjkBHcP+aAGYBYH7cwSN+3P9dAAAAAABAG4AAAUVBYEAEQAtQBYOAAARCAcRBxMSAwxfWQEDAw8HAwASAD8/MzkvMysREgE5OREzETMRMzEwIREGIyImNREhERQWMzI3ESERA+7nzPDdARx/' + + 'lp6xAScCI1Pi7wHg/j+edzUCofp/AAABAIkAAAeBBYEACwGVQP8ICwcEAwAABAsDDQwJBQEDBwMAA2BZABKCDQFwDQFkDQFSDQFEDQEyDQEkDQESDQEEDQHyDQHmDQHUDQHGDQGwDQGiDQGQDQGCDQFyDQFkDQFSDQFEDQE2DQEkDQEWDQEGDQFo4g0BAdANAcANAbQN' + + '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' + + 'ASsWARQWAQQWAWnkFgG0FgF0FgFEFgErFgEUFgH7FgHrFgHUFgG7FgGLFgFrFgFUFgE0FgEEFgHUFgGUFgF7FgFkFgFLFgEkFgELFgE5+xYB2xYByxYBsBYBpBYBlBYBdBYBRBYBKxYBFBYB+xYB7xYByxYBvxYBAq8WAZAWAXAWAU8WAR8WAfAWAeAWAcAWAZAWAX8W' + + 'AWAWAVAWATAWASAWAQ8WAQdeXV1dXV1dXV1dXXFxcXFxX3FxcXFycnJycnJycnJyXl1dXV1dXV1xcXFxcXFxcXFycnJycnJeXV1dXV1dXV1dcXEAPzMzPzMSOTkRMxESARc5ETMRMxEzETMRMzMxMCEjARYVESMRIRMWFzY3EyERIxE0NwNm1f7kEPYBdLQ5CxA0rwFu' + + '9hIDdZtm/YwEOv3PuGZ2qAIx+8YCdGecAAEAjwAABEYEOgALADtAIAEJCQoCBgYFCgUMDQEIT1kfAQF/AY8BAgEBCgUVAwAPAD8yPzM5L11xKxESATk5ETMRMxEzETMxMAERIREhESERIREhEQGpAYMBGv7m/n3+5gQ6/lQBrPvGAc/+MQQ6AP//AFD/7ASTBE4SBgBS' + + 'AAAAAQCPAAAERgQ6AAcAI0ARBQYCAQYBCAkHBE9ZBw8GARUAPzM/KxESATk5ETMRMzEwAREhESERIREERv7m/n3+5gQ6+8YDfPyEBDoA//8Ah/5XBI8EURIGAFMAAP//AFD/7AQ3BE4SBgBGAAAAAQA6AAADsgQ6AAcBmUD/AwYCBgcDCAkEFQMHAAdPWQAPhgkBYgkB' + + 'VAkBRAkBNgkBJgkB9gkB5AkB1gkBxgkBlgkBhgkBdgkBZgkBNgkBJgkBBgkBaNYJAcYJAZYJAXQJAWYJAVYJATYJASYJARIJAQQJAfQJAeYJAdYJAbYJAaIJAZIJAYQJAXQJAWYJAVYJAUQJATIJASQJARQJAQYJAfYJAeQJAdQJAcQJAbQJAaYJAZYJAYQJAXQJAWYJ' + + 'AVQJAUYJATYJASQJARQJAQYJATj2CQHmCQHWCQHECQG0CQGmCQGWCQGGCQFiCQEBUAkBQAkBNAkBJAkB8AkB4AkB1AkBxAkBlAkBgAkBAnAJQCYBYAkBMAkBIAkBEAkBAAkB0AkBwAkBcAkBYAkBQAkBIAkBAAkBCF5dXV1dXV1dcXFxcXFxX3FxcXFxcXJycnJfcnJy' + + 'cnJycnJyXl1dXV1dXV1dXV1dXV1dXV1xcXFxcXFxcXFxcXFxcXFycnJycnJycnJyXl1dXV1dXV1dXV1dcXFxcXFxAD8rEQAzGD8REgEXOREzMTATIRUhESERIToDeP7R/ub+0QQ6vvyEA3wA//8AEP5XBGgEOhIGAFwAAAADAFL+VwatBcwAIQAsADYBo0D/HDIKChsi' + + 'CygSLQASCwADODcqNQM1T1kPAxYvJRUlT1kfFRAbAAobhDgBdjgBZjgBQjgBNDgBIjgBFDgBBjgB9DgB1jgBxjgBsjgBpDgBkjgBhDgBdDgBZjgBVDgBRDgBNjgBJDgBFjgBBjgBaOY4AcQ4AbY4AaQ4AYQ4AXY4AVY4AUY4ATQ4ARY4AfQ4AeY4AdQ4AcQ4AbI4AQGk' + + 'OAGEOAFkOAFAOAEkOAEEOAHkOAHAOAG0OAGUOAF0OAEwOAEkOAEQOAEEOAE48DgB2zgBxDgBpDgBhDgBWzgBRDgBJDgBBDgB9DgB1DgBxDgBsDgBpDgBkDgBAnA4AVA4AUA4QCYBIDgBHzgB/zgB3zgBwDgBoDgBnzgBfzgBXzgBMDgBIDgBDzgBCF5dXV1dXV1dXV1d' + + 'cXFxcXFfcXFxcXFxcnJycnJycnJyXl1dXV1dXV1dXXFxcXFxcV9xcXFxcXJycnJycnJycnJeXV1dXV1dXV1dXV1dXV1dcXFxcXFxcXEAPz8/MysRADMYPzMrEQAzERIBFzkRMxEzETMzMxEzMzEwARACIyImJyMWFREhESMGIyICERASMzIWFzMnESERNjMyEgE0JiMi' + + 'BhUQMzI2JRAjIgYVFBYzMgatybRnnSoGBv77AlTqrr3ItmuaKAICAQVX563A/FRlY2FhwGFpAofCYGhnYMMCIv7x/tlhXx6Y/mECWcQBKAEIAQ0BJWJdsgGL/b7H/t/+862/s8D+kMevAWzCsq7AAP//AA4AAARkBDoSBgBbAAAAAQCP/mgE2AQ6AAsAOEANBAcHCgMA' + + 'CgkJAA0MCrgBEUALBQEPBwMAA09ZABUAPysRADMYPzM/ERIBOTkRMxEzETMRMzEwMxEhESERIREzESMRjwEaAYMBGpL1BDr8hAN8/IT9qgGYAAABAFMAAAQXBDoAEgAwQBcGCgoJAREJERQTBg4OA1BZDg4JFQcADwA/Mj85LysRADMREgE5OREzETMRMzEwAREUMzI2' + + 'NxEhESERBwYjIiY1EQFrni5VcgEZ/udVmYuSoAQ6/n6cDSAB8fvGAZ8eOKWWAbYAAAEAjwAABhgEOgALAalA/wgFCQAEAQEFAAMNDAoGAg8IBAEET1kBFYINAXQNAWQNAVYNAUYNATINASQNARINAQQNAfYNAeYNAdYNAcQNAbQNAaINAZQNAYYNAXQNAWYNAVQNAUYN' + + 'ASINARINAQINAWj0DQHmDQHUDQHGDQGyDQGkDQGEDQF2DQFkDQFUDQFGDQE0DQEWDQHyDQHkDQHWDQHEDQG2DQGmDQGWDQF2DQFkDQFSDQFEDQE2DQEkDQEWDQEEDQH2DQHUDQHGDQG0DQGmDQGGDQF2DQFkDQFGDQE2DQEUDQEGDQE49A0B2Q0Bog0BAZANAYQNAXAN' + + 'AVANAQJADQEgDQEADQHvDQHPDUAvAa8NAZANAY8NAWANAUANATANAQ8NAeANAdANAbANAY8NAXANAVANAUANAQANAQheXV1dXV1dXV1xcXFxcXFxcXFycnJfcnJycl9ycnJeXV1dXV1dXV1dXV1dcXFxcXFxcXFxcXFxcXFxcnJycnJycnJycnJycl5dXV1dXV1dXV1d' + + 'XV1dXV1xcXFxcXFxcXEAPysRADMYPzMzERIBFzkRMxEzETMxMCkBESERIREhESERIQYY+ncBBgE8AQYBOwEGBDr8hAN8/IQDfAAAAQCP/mgGrAQ6AA8BtkARCAsLDg4NBwQDAAAEDQMREA64ARFA/wsHAwADT1kAFQkFAQ+SEQGEEQF0EQFmEQFWEQFEEQE2EQEkEQEW' + + 'EQH2EQHWEQHEEQGyEQGkEQGUEQGEEQF2EQFkEQFUEQFGEQEyEQEiEQESEQEEEQFn9hEB5BEB1hEBwhEBtBEBphEBlBEBhhEBdBEBZhEBVhEBRBEBJhEBBBEB9BEB5hEB1BEBxhEBthEBhBEBdBEBYhEBAVARATQRASQRARARAQQRAeQRAdsRAcQRAZQRAXARAVARAUAR' + + 'ATQRASARARQRAQARATf0EQHUEQGwEQGkEQGUEQGAEQFkEQFUEQE0EQEkEQEQEQH7EQHbEQG7EQGbEQGLEQFrEQFUEUAhARsRAfQRAdsRAYQRAWQRAVQRATsRASsRARARAQIAEQEHXl1fXV1dXV1dXV1xcXFxcXFxcXJycnJycnJycnJyXl1dXV1dXV1dXV1dcXFxcXFf' + + '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' + + 'QA1QDWANgA2QDbANwA3QDfANDNAADRANMA1ADVANcA2ADaANsA3ADeAN8A0MEA0gDTANUA1gDZANoA3ADdANCQANEA0wDUANcA2ADaANsA3gDfANCp8ADRANMA1ADXANgA2wDeAN8A0JIA1QDWANkA3ADdANBgANMA1ADXANsA3gDfANB20ADUANcA2wDeAN8A0GIA1Q' + + 'DZAN0A0EAA1wDbAN4A0EOwANcA2wDQNgDZANoA2wDQRwDYANsA3ADdANBV1xcl5dcXJeXXFyXl1xcl5dcV5dKxE1NQArETU1AAD////g/lcBqQXMEgYATQAAAAIAFf/sB2sEOgAaACMAUEAsAhETGxsAHxcLEQAXBCUkEyNSWRMTEgASAU9ZEg8HDU9ZBxYAG1JZABVA' + + 'JQFdAD8rABg/KwAYPysREgA5GC8rERIBFzkRMxEzETMRMzEwIREhCgEOASMiJic1FjMyNhITIREhMhYVFAYjJTMyNjU0JisBA2T+0jU/SG5dJF8XGSs4OztEAzMBEOvy9+X+79SCeHSF1QN8/nj+1JlDCAW/CWgBMAHz/k2apJ+qr0lRTEYAAAACAI8AAAbrBDoAEgAb' + + 'AEpAJRITEw8HFwMOCgoLCwcDAx0cCBsSG1JZDxISBwwRDwcTUlkLBxUAPzMrABg/MxI5L8UrABgQxRESARc5ETMRMxEzETMzETMxMAEyFhUUBiMhESERIREhESERIRkBMzI2NTQmKwEFDuvy9+X9+f6h/uYBGgFfARqwgnh0hbECh5qkn6oBz/4xBDr+VAGs/k3+KElR' + + 'TEYAAAABAAoAAARkBcwAHQBwQEUAHRIPBwcMCwgIER0DHx4SCgsKUlkPCxUZGQNQWRAZAQAZEBkgGWAZcBmAGQYLGQsZDQAIABWgHwGQHwHwHwFwHwHvHwFdcXFycgA/Mj85OS8vXXErEQAzETMrEQAzERIBFzkRMzMzETMzETMxMCERECMiBhURIREjNTM1IRUhFSEV' + + 'FAczPgEzMhYVEQNMwWZ9/ueFhQEZATb+yggEOax3rLgCNgEdr4n95QSXqouLqohtaHxw1Mz9egAAAP//AI4AAAQCBd4SJgPrAAARBwB2AT8AAAAUQAwBExEmARNNExYADCUrETUAKzUAAP//AI4AAARdBd4SJgPpAAARBwBDANIAAAAYtgEVFREmARK4/520EhUPByUr' + + 'ETUAKxE1AAD//wAQ/lcEaAX0EiYAXAAAEQcJGwDkAAAAGLYBFhYRJgEZuP/8tBkfChIlKxE1ACsRNQAAAAEAj/5oBEYEOgALAaZADQoLBQgEAQELCAMNDAu4ARFA/wkBAQRPWQEVBgIPew0Baw0BXQ0BSQ0BOQ0BKw0BCQ0B+w0B6w0B2w0Byw0BvQ0BqQ0BmQ0Biw0B' + + 'ew0BaQ0BWw0BTQ0BOw0BKw0BGQ0BCw0BaekNAdkNAbkNAasNAZkNAYkNAXkNAWsNAUkNATkNARsNAQsNAf0NAQHbDQHPDQGrDQGbDQGPDQF/DQFvDQFbDQFEDQErDQEbDQH7DQHvDQHbDQHLDQG7DQGLDQF7DQFbDQFPDQE7DQEbDQEPDQE5+w0B6w0B2w0Bzw0Bqw0B' + + 'lA0Bew0BZA0BOw0BKw0BGw0B6w0B3w0BArANAaANAZ8NAW8NAVANAT8NAS8NAeANAUAc0A0Bvw0BoA0BcA0BXw0BTw0BMA0BHw0BAA0BCF5dXV1dXV1dXV1dcXFxcXFxcV9xcXJycnJycnJycnJyXl1dXV1dXV1dXV1dXXFxcXFxcXFxcXFxX3FycnJycnJycnJycnJe' + + 'XV1dXV1dXV1dXV1dXV1dXXFxcXFxcXEAPzM/KxEAMxg/ERIBFzkRMxEzETMxMCkBESERIREhESERIwHw/p8BGgGDARr+n/UEOvyFA3v7xv5oAAABAFn/7AnlBZYAMgBaQCwnJB4AJxgkJBItBgYSNDMMDBUyGRkVJSUOFS8cFRxfWQMVBCohDiFfWQoOEwA/MysRADMY' + + 'PzMrEQAzERI5GC8ROS8zETkvERIBOTkRMxI5ETMRMzIRMzEwAT4BMyAAERQCBCMgJwYhIiQCNRAAITIWFwcuASMgERQSMzI2NxEhER4BMzISNRAhIgYHBdRenlgBUQFsq/6+3f7b19r+3t7+v6sBbAFRWZ9chCthRP5s5cRuv0ABDj++cMTl/mxEYSsFRywj/on+qNv+' + + 's7OIiLMBTNwBWAF3IyzVGSP+GeX+8T84AUH+vzg/AQ/lAecjGQAAAQAMAAAGHgQ6ABcAP0AgFQISERENDAsLDQcTAgUZGAcHChcRCw8TDQoNUFkGChUAPzMrEQAzGD8zMxI5LxESARc5ETMRMxEzETMxMAEWFRQCByEDBgchASETNhI3AyETNhE0JwXsMpi5/vV4YWr+' + + '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' + + '/8sQBgTaAAAAAf9eBU4Aoga2AAUAC7EEAbgBPgA/zDEwEyMnNzMHopC0tJC0BU60tLQAAAAB/0gFTgCPBocABQARtQ8AAQADArgBPgA/M8xdMTATESE1MzWP/rnbBof+x2rPAP//AAD+fwFI/64QBwTOALIAAAAA///9qgVQAAAGgxAHBND+1QAAAAAAAv8pBXsA1wcp' + + 'AAsAFwAQthUvAwEDDwkALzPMXTIxMAM0NjMyFhUUBiMiJjcUFjMyNjU0JiMiBtd+WVl+fFtbfHc4KCg4OiYmOgZSWX5+WVl+flkoODgoKDg4AAAC/7D+fwBQ/+4ACwAXABdADA8AFQFAFaAVAhUJAwAvM8xdcTIxMAc0NjMyFhUUBiMiJhU0NjMyFhUUBiMiJlAvISIu' + + 'MCAgMDAgIDAvISIuYiEvMCAgLi6vIi4wICAwLgAF/tP+fwEt/+4ACwAXACMALwA7ACdAFDMbGzkAIQFAIaAhAiEtFQkJJw8DAC8zMzMRMzPMXXEyMhEzMTAFNDYzMhYVFAYjIiY3NDYzMhYVFAYjIiYHNDYzMhYVFAYjIiYlNDYzMhYVFAYjIiYHNDYzMhYVFAYjIib+' + + '0y4gIi4uIiAu5S4gIi4uIiAuci0gIy0tIyAtAUkuICIuLiIgLgIwICAwLyEiLmAgLi4gIi4uIiAuLiAiLi6vIi4uIiAwMO8iLi4iIC4uryIuMCAgMC4AA/7y/n8BEP/uAAMADwAbAB1ADwABARMAGQFAGaAZAhkNBwAvM8xdcTI5LzMxMAU1IRU3NDYzMhYVFAYjIiYV' + + 'NDYzMhYVFAYjIib+8gFHOC0jIC8vICMtLSAjLS0jIC2ibW1AIi4uIiAuLq8gMDAgIi4uAAAD/vL+fwEQ/+4ABwATAB8AIUARBgICAwMXAB0BQB2gHQIdEQsALzPMXXEyOS8zETMxMAM1IzUhFSMVNzQ2MzIWFRQGIyImFTQ2MzIWFRQGIyImoG4BR2qiLSMgLy8gIy0t' + + 'ICMtLSMgLf7scm1tcrIiLi4iIC4uryAwMCAiLi4AAAH/sP6kAFD/QgALAAixCQMALzMxMAM0NjMyFhUUBiMiJlAvISIuMCAgMP7yIS8wICAuLgAC/z3+pADD/0QACwAXAA60FQkJDwMALzMzETMxMAM0NjMyFhUUBiMiJjc0NjMyFhUUBiMiJsMwICAwLyEiLuguICEv' + + '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' + + '/raP5o7+wgAAAQCPAAAFXAQ6ABQBP0DeCAUFBg4RERAQCwYDFRYRBhUUAgcCT1kOBw8BC1BZARVLFgEkFgH0FgHbFgGbFgGEFgFrFgE7FgErFgEUFgEEFgFp5BYBtBYBdBYBRBYBKxYBFBYB+xYB6xYB1BYBuxYBixYBaxYBVBYBNBYBBBYB1BYBlBYBexYBZBYBSxYB' + + 'JBYBCxYBOfsWAdsWAcsWAbAWAaQWAZQWAXQWAUQWASsWARQWAfsWAe8WAcsWAb8WAQKvFgGQFgFwFgFPFgEfFgHwFgHgFgHAFgGQFgF/FgFgFgFQFgEwFgEgFgEPFgEHXl1dXV1dXV1dXV1xcXFxcV9xcXFxcnJycnJycnJycl5dXV1dXV1dcXFxcXFxcXFxcnJycnJy' + + 'Xl1dXV1dXV1dXXFxAD8rABg/MysRADMYPzMREgEXOREzETMRMxEzMTAhIwEWFREjESETFhc2NxMhESMRNDcDZtX+5BD2AXS0OQsQNK8BbvYSA3WbZv2MBDr9z7hmdqgCMfvGAnRnnAAAAQCOAAAEXQQ6AA8AOEAbBQgIBw0BAQ4HDhEQDAwPBAQOBQ8PCA4V0BEBXQA/' + + 'Mz8zEjkvETkvERIBOTkRMxEzETMRMzEwAREUBgcBIREhETQ2NwEhEQGUDgYBwAEd/vwOBv5N/tQEOv4aLsonAwX7xgImMpIb/PsEOgAA//8AUP/sBJMEThIGAFIAAP//ADz/7AQjBE4SBgIWAAAAAgBH//sEqQQ+AAsAFQAoQBIPCRQDAwkXFgwMBhERBgAPBhUAPz8R' + + 'OS8ROS8REgE5OREzETMxMAEgABEUACEgABEQAAEiBhUQITI2NRACdwEHASv+1P76/vv+1QEhAQ/BrgFvtb0EPv7c/v79/uABIAEDAQkBF/7afnj/AH12AQMAAAAAAQBHACkEqQQQABgAJUAREQANBgAUCgYEGhkPDwMJFQMALy8zEjkvERIBFzkRMxEzMTATNAAhIAAV' + + 'FAYHAz4BNTQhIBUUFhcDLgJHASUBBgEMASvAqQ5TY/6V/oplZA1vrl8CDvYBDP7y+L/6IAEbDGBY2d1QbA3+5g+A0AAAAAADACb/rgTKBIcAEwAaACIAbUAnEA0GAxkNIAMDBQgeFhcdEg8NCiQjBwoUFAAeHgAXFwAbGwoRAAgFuAEftlkICAAKDxK4AR+2WQ8PCg8A' + + 'FgA/PzkvKxESADkYLysAGBDGEjkvETkvETkvETkvEMYREgEXOREzETMRMxEzMTAFIAARNDcnNRc2MyAAERQHFxUnBgMiBwE2NRABMjcBBhUUFgJ7/vn+1Vl815LsAQUBK1Nyzo7zXEcBzUX+kV5E/jRItwsBJAECwIRxt8V2/uD+/ceDZbi4cQMcEf5pPGwBAP4KEAGX' + + 'PmaEfwAAAAMAQv/sBz0ETgAaACQAKwB1QEAgBwIMGxsTKBgZGSkSEigHAy0sCh5PWQoOEilSWQIYAAwSAQ8DDBIYGBIMAw4ADiVSWQ4WBCNPWQQAABZRWQAQAD8rEQAzKwAYPysREgAXORgvLy9fXl0REjkrEQAzKxESARc5ETMzETMRMzMSOTkRMzEwATIXNjMyABEQ' + + 'ACEgJwYjIgIRNSE0JiMiByUSARQWMyARNCYjIAEyNjchHgECJe6DkPr9ASD+4P79/wCKhunp9gK2dmuVJ/73cwNbfngBAH12/v3+BWNrA/5cCG4ETp+f/tT++v77/tWZmQE1ASoTkqKBFwEm/c7BrgFvtb39D4p8g4MAAAACAE7/7ARDBDoAHQApAFBAJxYHCxITDAsT' + + 'GgsnBCEaGgQrKhcHBwALDyRSWQ8PABILDwAeUVkAFgA/KwAYPzMSOS8rERIAORgvMxESATk5ETMRMzMRMxEzETMSOTkxMAUiLgE1NDY3NS4BNSEUFjMyNjUhFAYHFR4BFRQOAScyNjU0JiMiBhUUFgJIm+V6hnBeeAEIcmVibAEIeV5yhXrknXB9fm9wfHwUZ716hbYZ' + + 'BCbCcIJ/f4JywSUEGbeEer1nu4B6b3Z3bnt/AAABAFACHgSTBE4ADAAmQBEHBgwABgAODQcAAwMKT1kDEAA/KwAYEMQyERIBOTkRMxEzMTATEAAhIAARITQmIyARUAEgAQMBCQEX/tp+eP8AAh4BBQEr/t/+8cGu/pEAAAABAFD/7ASTAhwADAAmQBEFBgAMBgwODQUM' + + 'CQkCT1kJFgA/KwAYEMQyERIBOTkRMxEzMTABECEyNjUhEAAhIAARAXcBAHh+ASb+5/75/v3+4AIc/pGuwf7w/uABKgEGAAACAIwAAASIBDoACgATADJAGQsBAQIPBwcCFRQLAFJZCwsDAhUDE1JZAw8APysAGD8SOS8rERIBOTkRMxEzETMxMAERIREhMhYVFAYjJSEy' + + 'NjU0JisBAab+5gIf5/bz6v75AQhhXGdm+AGS/m4EOq6npa6vXEhOWAAC//8AAAQcBDoADQAUAERAEgADFBEGFAwMCwsGFgECAhUTALgBD0ANWRMTCQwCFQkPUlkJDwA/KwAYPzMSOS8rEQEzETMSOTkRMxEzETMSOTkxMAkBIQEuATU0NjMhESEREyMiFRQ7AQJC/vD+' + + 'zQFCcnfz6gHn/uYCwM290AGz/k0B1xucdpqc+8YBswHYl5UAAAAAAv//AAAEHAQ6AA0AFABGQBMNChQHDAsLEQcAFBQDAwcWFQ0PuAEPQA1ZDQ0EAQsPBBNSWQQVAD8rABg/MxI5LysREgE5OREzETMRMzMRMxESOTkxMAERIREhIiY1NDY3ASEBFyMiFRQ7AQMCARr+' + + 'Gen0eHH+vgEzARDC0L3NwAKHAbP7xpyad5sbAdf+TayVlwAAAAEAOgAAA7IEOgAHAZlA/wQFAQUAAwgJBRUDBwAHT1kAD4YJAWIJAVQJAUQJATYJASYJAfYJAeQJAdYJAcYJAZYJAYYJAXYJAWYJATYJASYJAQYJAWjWCQHGCQGWCQF0CQFmCQFWCQE2CQEmCQESCQEE' + + 'CQH0CQHmCQHWCQG2CQGiCQGSCQGECQF0CQFmCQFWCQFECQEyCQEkCQEUCQEGCQH2CQHkCQHUCQHECQG0CQGmCQGWCQGECQF0CQFmCQFUCQFGCQE2CQEkCQEUCQEGCQE49gkB5gkB1gkBxAkBtAkBpgkBlgkBhgkBYgkBAVAJAUAJATQJASQJAfAJAeAJAdQJAcQJAZQJ' + + 'AYAJAQJwCUAmAWAJATAJASAJARAJAQAJAdAJAcAJAXAJAWAJAUAJASAJAQAJAQheXV1dXV1dXXFxcXFxcV9xcXFxcXFycnJyX3JycnJycnJycl5dXV1dXV1dXV1dXV1dXV1dcXFxcXFxcXFxcXFxcXFxcnJycnJycnJycl5dXV1dXV1dXV1dXXFxcXFxcQA/KxEAMxg/' + + 'ERIBFzkRMzEwEyEVIREhESE6A3j+0f7m/tEEOr78hAN8AP//AH//7ARUBDoSBgN3AAAAAQBKACwEmQQJABgANEAXDRQQAwcAAxQUABoZEAcABwAHDBgJCAwALzMzLxI5OS8vETMREgE5OREzETMRMxEzMTATISA1NCYjIREhMjY3EQ4BIxUeARUUBiMhSgJfAR2vif28' + + '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' + + 'AEcAABEHAugCcAAAAAy3AioXKisJFiUrETUAAP//AIn+WAVxBYESJgAnAAARBwLvAscAAAAPsQIauP/MtBoUBgAlKxE1AAAA//8AVP5YBFwFzBImAEcAABEHAu8CdwAAAAy3AikgKSMJFiUrETUAAP//AIkAAAUGBysSJgAoAAARBwnnAqgAAAAdQAkCARMTBSYCARS4' + + '/+G0FBUBCyUrETU1ACsRNTUA//8AUP/sBC0GzBImAEgAABAnAsIDLv+OEQcCiwDv//UACrQDIiIRJgArETX//wCJAAAFBgcrEiYAKAAAEQcJ6ALGAAAAGrcCARUFJgIBFbj//7QVFAELJSsRNTUAKzU1//8AUP/sBC0GzBImAEgAABAnAsMDav+OEQcCiwDv//UACrQD' + + 'IiIRJgArETX//wCJ/lgFBgWBEiYAKAAAEQcC7wLkAAAADLcBEx4TDQELJSsRNQAA//8AUP5YBC0EThImAEgAABEHAu8CTgAAAAy3AiERIRsDCiUrETUAAP//AIn+eQUGBYESJgAoAAARBwLyAswAAAAMtwEVBRUiAQslKxE1AAD//wBQ/nkELQROEiYASAAAEQcC8gJR' + + 'AAAADLcCIxMjMAMKJSsRNQAA//8Aif5XBQYHEBImACgAABAnAHoBqgAAEQcJJQFsAAAAF0ANAiQWJCwBAiUCISEFJgArETUBKxE1AAAA//8AUP5XBC0F4hImAEgAABAnAHoBLAAAEQcCmgEcAAAAF0ANAzIGMjoDCiUDLy8RJgArETUBKxE1AAAA//8AiQAABJgG2hIm' + + 'ACkAABEHApsBVAEOABZADQENDQUmAQsYCw0HCSUrETUAKxE1//8AIwAAAq4HFhImAEkAABEHApsAeAFKABZADQEZGQImARdkFxkFFSUrETUAKxE1//8AVP/sBboGqRImACoAABEHAosBywFOABRADAEgBSYBIBogHw4IJSsRNQArNQAA//8AVP5OBFoFUBImAEoAABEH' + + 'AosBL//1ABRADAIvESYCLy4vLhIcJSsRNQArNQAA//8AiQAABT0G0BImACsAABEHApsBjwEEABZADQEPDwUmAQ0ADQ8FCyUrETUAKxE1//8AjwAABGQG7hImAEsAABEHApsBWQEiABZADQEZGQImARc0FxkRByUrETUAKxE1//8Aif6SBT0FgRImACsAABEHCTMDtgAA' + + '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' + + 'AQslKxE1AAD//wBQ/pIELQROEiYASAAAEQcJMwMqAAAADLcCGxgbHQMKJSsRNQAA//8AiQAABQYHKxImACgAABEHAssD4AAAABZADQEbGwUmARELERYBCyUrETUAKxE1//8AUP/sBC0F+xImAEgAABEHCS0DZwAAABZADQIoKBEmAh8lHyQDCiUrETUAKxE1//8AiQAA' + + 'BQYHGhImACgAABEHAp4BVAFWABRADAEVBSYBFQQVIgELJSsRNQArNQAA//8AUP/sBC0FxBImAEgAABEHAp4A1QAAABRADAIjESYCIw4jMAMKJSsRNQArNQAA//8AiQAABQYHKxImACgAABEHCh0C0gAAABpADwIBGBgFJgIBGW4ZDgELJSsRNTUAKxE1Nf//AFD/7AR1' + + 'BiYSJgBIAAARBwolAjwAAAAaQA8DAiYmESYDAidiJxwDCiUrETU1ACsRNTX//wCJAAAFBgcrEiYAKAAAEQcKHgLJAAAAHUAJAgEaGgUmAgEQuP+dtBAVAQslKxE1NQArETU1AP//ABf/7AQtBiYSJgBIAAARBwomAkoAAAAdQAkDAigoESYDAh64/620HiMDCiUrETU1' + + 'ACsRNTUA//8AiQAABQYHKxImACgAABEHCh8CygAAABpADwIBIyMFJgIBJD0kFQELJSsRNTUAKxE1Nf//AFD/7AREBnUSJgBIAAARBwonAkYAAAAaQA8DAjIyESYDAjNOMyMDCiUrETU1ACsRNTX//wCJAAAFBgcrEiYAKAAAEQcKIALOAAAAGkAPAgEsLAUmAgEUBxQg' + + 'AQslKxE1NQArETU1//8AUP/sBC0HDxImAEgAABEHCigCWgAAABpADwMCPDwRJgMCPRs9NwMKJSsRNTUAKxE1Nf//AIn+kgUGBysSJgAoAAAQJwkgAXwAABEHCTMDrAAAABdADQESHhINAQIlAQ0NBSYAKxE1ASsRNQAAAP//AFD+kgQtBfkSJgBIAAAQJwKIANwAABEH' + + 'CTMDKgAAABdADQIgDiAbAwklAhsbESYAKxE1ASsRNQAAAP//AFEAAAIZBysSJgAsAAARBwLLAkIAAAAWQA0BExMFJgEJGAkOAQMlKxE1ACsRNf//AFAAAAIDBfsSJgDzAAARBwktAi0AAAAWQA0BEhIRJgEJDAkOAQMlKxE1ACsRNf//AIn+kgGwBYESJgAsAAARBwkz' + + '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' + + 'AwIqKhEmAwI5uP+8tDlGBhAlKxE1NQArETU1AP//AFD/7ATWB3oSJgNjAAARBwewAPoAZAAdQAkDAisrESYDAjm4/7y0OUYGECUrETU1ACsRNTUA//8AMwAABZEFzBImACQAABEGB5KJAAAKtAIQEAAmACsRNQAA//8AMwAABZEFzBImACQAABEGB8yJAAAKtAIQEAAm' + + 'ACsRNQAA//8AAAAABr0FzBAnACQBLAAAEQYHoQAAAAy1AwIeHgAmACsRNTUAAP//AAAAAAa9BcwQJwAkASwAABEGB64AAAAMtQMCHh4AJgArETU1AAD//wAUAAAGvQXMECcAJAEsAAARBgeiFAAADLUDAh0dACYAKxE1NQAA//8AFAAABr0FzBAnACQBLAAAEQYHrxQA' + + 'AAy1AwIdHQAmACsRNTUAAP//AEQAAAa9BxYQJwAkASwAABEGB6NQAAAMtQMCGhoAJgArETU1AAD//wBEAAAGvQcWECcAJAEsAAARBgewUAAADLUDAhoaACYAKxE1NQAA//8ATf/sA6sGMBImA2cAABEHB5IAqABkABZADQEuLhEmATMJMyoKAyUrETUAKxE1//8ATf/s' + + 'A6sGMBImA2cAABEHB8wAoABkABi2AS8vESYBM7j/87QzKgoDJSsRNQArETUAAP//AE3/7AOrBjASJgNnAAARBwehAKAAZAAdQAkCAS4uESYCATO4/+a0MzkKAyUrETU1ACsRNTUA//8ATf/sA6sGMBImA2cAABEHB64AoABkAB1ACQIBLy8RJgIBM7j/5rQzOQoDJSsR' + + 'NTUAKxE1NQD//wBN/+wDqwYwEiYDZwAAEQcHogDwAGQAGkAPAgEuLhEmAgEzNjM4CgMlKxE1NQArETU1//8ATf/sA6sGMBImA2cAABEHB68A8ABkABpADwIBLy8RJgIBMzYzOAoDJSsRNTUAKxE1Nf////cAAAXOBcwQJwAoAMgAABEHB5L/DQAAAAq0AQwMACYAKxE1' + + 'AAD////3AAAFzgXMECcAKADIAAARBwfM/xsAAAAKtAEMDAAmACsRNQAA//8AAAAAB14FzBAnACgCWAAAEQYHoQAAAAy1AgEaGgAmACsRNTUAAP//AAAAAAdeBcwQJwAoAlgAABEGB64AAAAMtQIBGhoAJgArETU1AAD//wAAAAAHXgXMECcAKAJYAAARBgeiAAAADLUC' + + 'ARoaACYAKxE1NQAA//8AAAAAB14FzBAnACgCWAAAEQYHrwAAAAy1AgEaGgAmACsRNTUAAP//AGv+WARkBjASJgNpAAARBweSAUAAZAAWQA0BHh4RJgEjNSMaDBglKxE1ACsRNf//AGv+WARkBjASJgNpAAARBwfMASwAZAAWQA0BHx8RJgEjEyMaDBglKxE1ACsRNf//' + + 'AGv+WARkBjASJgNpAAARBwehAQ4AZAAdQAkCAR4eESYCASO4/+m0IykMGCUrETU1ACsRNTUA//8Aa/5YBGQGMBImA2kAABEHB64BDgBkAB1ACQIBHx8RJgIBI7j/6bQjKQwYJSsRNTUAKxE1NQD//wBr/lgEZAYwEiYDaQAAEQcHogFeAGQAGkAPAgEeHhEmAgEjOCMo' + + 'DBglKxE1NQArETU1//8Aa/5YBGQGMBImA2kAABEHB68BXgBkABpADwIBHx8RJgIBIzgjKAwYJSsRNTUAKxE1Nf//AGv+WARkB2ESJgNpAAARBwejASwASwAaQA8CAR4eESYCAS0ZLToMGCUrETU1ACsRNTX//wBr/lgEZAdhEiYDaQAAEQcHsAEsAEsAGkAPAgEfHxEm' + + 'AgEtGS06DBglKxE1NQArETU1//8AAQAABgUFzBAnACsAyAAAEQcHkv8XAAAACrQBDAwAJgArETUAAP//AAEAAAYFBcwQJwArAMgAABEHB8z/JQAAAAq0AQwMACYAKxE1AAD//wAAAAAHlQXMECcAKwJYAAARBgehAAAADLUCARoaACYAKxE1NQAA//8AAAAAB5UFzBAn' + + 'ACsCWAAAEQYHrgAAAAy1AgEaGgAmACsRNTUAAP//AAAAAAeVBcwQJwArAlgAABEGB6IAAAAMtQIBGhoAJgArETU1AAD//wAAAAAHlQXMECcAKwJYAAARBgevAAAADLUCARoaACYAKxE1NQAA//8AFQAAB5UHFhAnACsCWAAAEQYHoyEAAAy1AgEWFgAmACsRNTUAAP//' + + 'ABUAAAeVBxYQJwArAlgAABEGB7AhAAAMtQIBFhYAJgArETU1AAD//wCHAAAB8QYwEiYDa/4AEQYHksFkABi2AQ8PESYBFLj/4rQUCwQJJSsRNQArETX//wCHAAAB8QYwEiYDa/4AEQYHzM5kABi2ARAQESYBFLj/4bQUCwQJJSsRNQArETX////FAAACSQYwEiYDa/4A' + + 'EQYHocVkAB1ACQIBDw8RJgIBFLj/y7QUGgQJJSsRNTUAKxE1NQAAAP///8UAAAJJBjASJgNr/gARBgeuxWQAHUAJAgEQEBEmAgEUuP/LtBQaBAklKxE1NQArETU1AAAA////7QAAAnEGMBImA2v+ABEGB6LtZAAdQAkCAQ8PESYCARS4//O0FBkECSUrETU1ACsRNTUA' + + 'AAD////tAAACcQYwEiYDa/4AEQYHr+1kAB1ACQIBEBARJgIBFLj/87QUGQQJJSsRNTUAKxE1NQAAAP///7UAAAJ2B2ESJgNr/gARBgejwUsAHUAJAgEPDxEmAgEeuP/atB4rBAklKxE1NQArETU1AAAA////tQAAAnYHYRImA2v+ABEGB7DBSwAdQAkCARAQESYCAR64' + + '/9q0HisECSUrETU1ACsRNTUAAAD//wABAAACeAXMECcALADIAAARBweS/xcAAAAKtAEEBAAmACsRNQAA//8AAQAAAngFzBAnACwAyAAAEQcHzP8lAAAACrQBDg4AJgArETUAAP//AAAAAAQIBcwQJwAsAlgAABEGB6EAAAAMtQIBDg4AJgArETU1AAD//wAAAAAECAXM' + + 'ECcALAJYAAARBgeuAAAADLUCAQ4OACYAKxE1NQAA//8AAAAABAgFzBAnACwCWAAAEQYHogAAAAy1AgEODgAmACsRNTUAAP//AAAAAAQIBcwQJwAsAlgAABEGB68AAAAMtQIBDg4AJgArETU1AAD//wAVAAAECAcWECcALAJYAAARBgejIQAADLUCAQ4OACYAKxE1NQAA' + + '//8AFQAABAgHFhAnACwCWAAAEQYHsCEAAAy1AgEODgAmACsRNTUAAP//AFD/7ASTBjASJgBSAAARBweSAR0AZAAWQA0CGxsRJgIgCCAXBgAlKxE1ACsRNf//AFD/7ASTBjASJgBSAAARBwfMASEAZAAYtgIcHBEmAiC4//+0IBcGACUrETUAKxE1AAD//wBQ/+wEkwYw' + + 'EiYAUgAAEQcHoQESAGQAHUAJAwIbGxEmAwIguP/jtCAmBgAlKxE1NQArETU1AP//AFD/7ASTBjASJgBSAAARBweuARIAZAAdQAkDAhwcESYDAiC4/+O0ICYGACUrETU1ACsRNTUA//8AUP/sBJMGMBImAFIAABEHB6IBMgBkABpADwMCGxsRJgMCIAIgJQYAJSsRNTUA' + + 'KxE1Nf//AFD/7ASTBjASJgBSAAARBwevATEAZAAaQA8DAhwcESYDAiABICUGACUrETU1ACsRNTX////t/+wGRwXMECYAMmQAEQcHkv8DAAAACrQCIyMAJgArETX////j/+wGRwXMECYAMmQAEQcHzP8HAAAACrQCIyMAJgArETX//wAA/+wH/wXMECcAMgIcAAARBgeh' + + 'AAAADLUDAiMjACYAKxE1NQAA//8AAP/sB/8FzBAnADICHAAAEQYHrgAAAAy1AwIjIwAmACsRNTUAAP//AAD/7AdzBcwQJwAyAZAAABEGB6IAAAAMtQMCIyMAJgArETU1AAD//wAA/+wHcwXMECcAMgGQAAARBgevAAAADLUDAiMjACYAKxE1NQAA//8Af//sBFQGMBIm' + + 'A3cAABEHB5IA/QBkABi2ARsbESYBILj/8bQgFwcAJSsRNQArETUAAP//AH//7ARUBjASJgN3AAARBwfMAPcAZAAYtgEcHBEmASC4/920IBcHACUrETUAKxE1AAD//wB//+wEVAYwEiYDdwAAEQcHoQDnAGQAHUAJAgEbGxEmAgEguP/AtCAmBwAlKxE1NQArETU1AP//' + + 'AH//7ARUBjASJgN3AAARBweuAOcAZAAdQAkCARwcESYCASC4/8C0ICYHACUrETU1ACsRNTUA//8Af//sBFQGMBImA3cAABEHB6IBSgBkABpADwIBGxsRJgIBICIgJQcAJSsRNTUAKxE1Nf//AH//7ARUBjASJgN3AAARBwevAUoAZAAaQA8CARwcESYCASAiICUHACUr' + + 'ETU1ACsRNTX//wB//+wEVAdhEiYDdwAAEQcHowDtAEsAHUAJAgEbGxEmAgEquP/YtCo3BwAlKxE1NQArETU1AP//AH//7ARUB2ESJgN3AAARBwewAO0ASwAdQAkCARwcESYCASq4/9i0KjcHACUrETU1ACsRNTUA//8AAQAABmEFzBAnADwBLAAAEQcHzP8lAAAACrQB' + + 'ExMAJgArETUAAP//AAAAAAfdBcwQJwA8AqgAABEGB64AAAAMtQIBExMAJgArETU1AAD//wBGAAAIQQXMECcAPAMMAAARBgevRgAADLUCARMTACYAKxE1NQAA////9AAAB40HFhAnADwCWAAAEQYHsAAAAAy1AgETEwAmACsRNTUAAP//AFH/7AZxBjASJgN7AAARBweS' + + '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' + + 'LRktOgwYJSsRNTUAKxE1Nf//AGv+VwRkB38SJgNpAAAQJwewASwAaREHAwcBGAAAABtADwIBLRktOgwYJQIBHx8RJgArETU1ASsRNTUAAAD////t/lcGBQXMECcAKwDIAAAQJweS/wMAABEHAwcDrAAAAAq0AQwMACYAKxE1AAD////3/lcGBQXMECcAKwDIAAAQJwfM' + + '/xsAABEHAwcDrAAAAAq0AQwMACYAKxE1AAD//wAA/lcHlQXMECcAKwJYAAAQJgehAAARBwMHBTwAAAAMtQIBGhoAJgArETU1AAD//wAA/lcHlQXMECcAKwJYAAAQJgeuAAARBwMHBTwAAAAMtQIBGhoAJgArETU1AAD//wAA/lcHlQXMECcAKwJYAAAQJgeiAAARBwMH' + + 'BTwAAAAMtQIBGRkAJgArETU1AAD//wAA/lcHlQXMECcAKwJYAAAQJgevAAARBwMHBTwAAAAMtQIBGRkAJgArETU1AAD////0/lcHlQcWECcAKwJYAAAQJgejAAARBwMHBTwAAAAMtQIBFhYAJgArETU1AAD////0/lcHlQcWECcAKwJYAAAQJgewAAARBwMHBTwAAAAM' + + 'tQIBFhYAJgArETU1AAD//wBR/lcGcQYwEiYDewAAECcHkgIIAGQRBwMHA2EAAAAXQA0BLQUtKA0YJQEsLBEmACsRNQErETUAAAD//wBR/lcGcQYwEiYDewAAECcHzAH0AGQRBwMHA2EAAAAasQEyuP/gQAoyLQ0YJQEtLREmACsRNQErETX//wBR/lcGcQYwEiYDewAA' + + 'ECcHoQH+AGQRBwMHA2EAAAAesgIBLbj/4EALLTgNGCUCASwsESYAKxE1NQErETU1//8AUf5XBnEGMBImA3sAABAnB64B/gBkEQcDBwNhAAAAG0APAgEuCy44DRglAgEtLREmACsRNTUBKxE1NQAAAP//AFH+VwZxBjASJgN7AAAQJweiAhUAZBEHAwcDYQAAAB6yAgEt' + + 'uP/3QAstNw0YJQIBLCwRJgArETU1ASsRNTX//wBR/lcGcQYwEiYDewAAECcHrwIVAGQRBwMHA2EAAAAbQA8CAS4iLjcNGCUCAS0tESYAKxE1NQErETU1AAAA//8AUf5XBnEHYRImA3sAABAnB6MB9ABLEQcDBwNhAAAAHrICATy4/+dACzxJDRglAgEtLREmACsRNTUB' + + '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' + + 'WQQHAgYBGHRKAWZKAVZKATlKAStKAR1KAQ1KAfRKAeZKAcJKAbRKAaZKAYlKAXtKAW1KAVRKAUZKARRKAQZKAWj5SgHrSgHdSgHPSgG0SgGkSgGWSgF0SgFmSgFJSgE7SgEtSgESSgEESgH2SgHZSgHLSgGpSgGbSgGLSgF9SgFkSgFUSgFGSgEpSgEbSgH5SgHpSgHb' + + 'SgHCSgG0SgGmSgGJSgF7SgFtSgFJSgE7SgEiSgEUSgEGSgE39koB2UoByUoBQG67SgGZSgGLSgFySgFkSgFWSgE5SgEpSgEbSgENSgH5SgHrSgHSSgHESgG2SgGWSgF5SgFrSgFdSgFJSgE7SgEkSgEWSgEGSgH2SgHZSgHLSgGpSgGbSgGNSgF0SgFmSgFWSgEpSgEb' + + 'SgENSgEHAV9eXV1dXV1dXV1dXV1dcXFxcXFxcXFxcXFxcXFycnJycnJycnJycnJyXl1dXV1dXV1dXV1dXV1dcXFxcXFxcXFxcXFxcnJycnJycnJycnJycnJeXV1dXV1dXV1dXV1dcXFxcXFxcQA/Pz8rKysAGD8zKxEAMysRADMrEQAzERIBOTkRMxIXOREzETMRMzMR' + + 'MxEzETMyMhEzMTAhIwEzJSARFAYjIiY1NDYBNCYjIgYVFBYzMjYFIBEUBiMiJjU0NgE0JiMiBhUUFjMyNgEgERQGIyImNTQ2ATQmIyIGFRQWMzI2AX7FAyzH/J8BHZOOjZGNAQIxPD80Mz47NAJpAR2Tjo2RjQECMTxBMzM/OzQCLAEdk46NkY0BAjE8PzQzPjs0BYEK' + + '/pqsu7ewtrD+mnxuaIJ8bmvc/pqsu7ewtrD+mnxubH58bmsB5f6ar7i3sLaw/pp8bmiCfG5rAAAAAQBVA3oBxwWBAAMAHkAOAQIDAAIABQQBAKlbAQMAPysREgE5OREzETMxMBsBIQNVQAEyngN6Agf9+QD//wBVA3oDsAWBECYH9wAAEQcH9wHpAAAAD7EBBLgB6bQE' + + 'BgACJSsRNQAAAP///70DegQjBYEQJwf3/2gAABAnB/cA4QAAEAcH9wJcAAAAAAABAFwAjQJMA6wACAAxQBgGAgMEBAAIAggJCgYD7VsCAQYGAO1bBu8AGT8rEQAzMysREgE5OREzMxEzETMxMCUBNQEzFQMBFQFe/v4BAuz+AQCNAWlHAW8l/pL+lyMAAAABAF0AjQJN' + + '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' + + 'GRcMDhWAEkAACwkCgAUALxrMMjk5Gt0azDI5ORESATkRMxEzETMRMxEzMTABBgc1NjczFhcVJicRNjcVBgcjJic1FhcB1UOClUkkSZWCQ0OClUkkSZWCQwOgOT5If4+Pf0g+Of0COT5If4+Pf0g+OQACARD/SALwBH8AAwAbAD5AHBMMDAEPDwQZBwcABAQdHBsQEhkW' + + 'AwAWBA8NBgkAL8wyOTnd3s0QzDI5ORESATkRMzMRMxEzETMzETMxMAUhFSETBgc1NjczFhcVJicRNjcVBgcjJic1FhcBEAHg/iDFQ4KVSSRJlYJDQ4KVSSRJlYJDaFAEWDk+SH+Pj39IPjn9Ajk+SH+Pj39IPjkAAAAAAgGiARgGXgL4AAUAHQAAARchNycFExYXIyYn' + + 'NTY3MwYHISYnMxYXFQYHIzY3AkVQAt1PUv0nHiIiSH+Pj39IIiMCmiMiSH+Pj39IIiMCAmdtZgj+/ycmlUkkSZUsKysslUkkSZUmJwACADX/5wOxBbwAHQAqAEVAIyUYCB4SEgAIACssDCFSWQ8MDCgbGBgbGxVPWRsABShPWQUWAD8rABg/KxEAMxgvERI5LzMrERIB' + + 'OTkRMxEzEjkyMTABFAIOASMiJjU0EjYzMhYXMzY1NCYjIgYHNzYzMhIBLgEjIg4BFRQWMzISA7FPj8qAo7F3v3lMeh8EAWpvNXclLWFzvND+/A9WN0BsQ0c+XpIDi8j+mPZ+zMCiASuXVkxAGq2+KBzNOf7f/epLXXXYaWFsARYAAAACACsAAAS5BYEABQALAK1AdQoE' + + 'AwIGCQEBBgQDDQwGCQIDAAlfWQASkA0BcA0BYA0BUA0BQA0BIA0BEA0B8A0B0A0BoA0BgA0BUA0BMA0BTw0BAA0BOeANAdANAbANAZANAWANAUANARANAQ8NAd8NAb8NAaANAZANAXANAVANASANAQANAV1dXV1dXV1dcXJycnJycnJeXV1xcXFxcXFycnJycnJyAD8r' + + 'ABg/EjkREgEXOREzETMzETMxMDM1ASEBFQEPAQMhACsBjQFwAZH9twlIzwJE/t/XBKr7VtcEuCL+/U8DwgAAAQDM/jkFygWBAAcAJEARAwQABwQHCAkFAmBZBQMEBAAALzIvPysREgE5OREzETMxMAERIREhESERBLD9Q/7ZBP7+OQZU+awHSPi4AAEAhv45BUQFgQAL' + + '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' + + 'ETMzMysRADMzMxEzMysRADMzETMzMysRADMzMxEzMysRADMzETMzMysRADMzMxEzMysRADMzETMzMysRADMzMysRADMzMxESATkRMzMzMzMzETMzMzMzMhEzMzMzMxIXOREzMzMzMzMRMzMzMzMRMzMzMzMzETMzMzMzETMzMzMzMxEzMzMzMxEzMzMzMzMRMzMzMzMR' + + 'MzMzMzMzETMzMzMzETMRMzMzMzMxMBMzFSMlMxUjJTMVIwUzFSMlMxUjJTMVIwczFSMlMxUjJTMVIwUzFSMlMxUjJTMVIwczFSMlMxUjJTMVIxczFSMlMxUjJTMVIwczFSMlMxUjJTMVIwUzFSMlMxUjJTMVIwczFSMlMxUjJTMVIxczFSMlMxUjJTMVIwEzFSMlMxUj' + + 'JTMVIwEzFSMlMxUjJTMVIwEzFSMRMxUjETMVIxEzFSMRMxUjETMVI2doaAGeaGgBoGdn/ZFoaAGfaGgBn2hoz2dn/mBoaP5iaGgEDWho/mFoaP5haGjPaGgBnmhoAaBnZ89oaP5haGj+YWhoz2hoAZ5oaAGgZ2f9kWhoAZ9oaAGfaGjPZ2f+YGho/mJoaM9oaAGfaGgB' + + 'n2ho/MJoaAGfaGgBn2ho+/NoaAGeaGgBoGdnAZ5oaGhoaGhoaGhoaGgFImJiYmJiYWBgYGBgYGBgYGBgY2BgYGBgYGBgYGBgY2BgYGBgYGFhYWFhYl5eXl5eYmFhYWFhYGBgYGBgB+1iYmJiYgEjYGBgYGD+32L+32D+3WD+3WH+3mEH7mAAVAAA/fUFqwajAAMABwAL' + + 'AA8AEwAXABsAHwAjACcAKwAvADMANwA7AD8AQwBHAEsATwBTAFcAWwBfAGMAZwBrAG8AcwB3AHsAfwCDAIcAiwCPAJMAlwCbAJ8AowCnAKsArwCzALcAuwC/AMMAxwDLAM8A0wDXANsA3wDjAOcA6wDvAPMA9wD7AP8BAwEHAQsBDwETARcBGwEfASMBJwErAS8BMwE3' + + 'ATsBPwFDAUcBSwFPA1SzAjJiprgBCrYF1tYDM2OnuAELQBUF1x5Ojq72Bd7eH0+Pr/cF3wY2ZqK4AQ62BdLSBzdno7gBD0AVBdMiUn6y+gXi4iNTf7P7BeMKOmqeuAEStgXOzgs7a5+4ARNAFQXPJlaCtv4F5uYnV4O3/wXnDj5umrgBFrYFysoPP2+buAEXtQXLKlqG' + + 'urgBArYF6uorW4e7uAEDtQXrEkJylrgBGrYFxsYTQ3OXuAEbtQXHLl6KvrgBBrYF7u4vX4u/uAEHtQXvFkZ2krgBHrYFwsIXR3eTQRMBHwAFAMMBJgEuATYBPgFKAAUBRgFGAScBLwE3AT8BSwAFAUcBR0ANw+/H68vnz+PT39cM27gBQkAQGkp6qvIF2tobS3ur8wXb' + + '20ESAVABIwErATMBOwFPAAUBQwFDASIBKgEyAToBTgAFAUIBQgFRtMPHy8/TuAFDtwbX18DEyMzQuAFAtgbUr7O3u7+4AT+3BqurrLC0uLy4ATy2BqiTl5ufo7gBO7cGp6eQlJicoLgBOLYGpH+Dh4uPuAE3twZ7e3yAhIiMuAE0tgZ4Z2tvc3e4ATO3BmNjZGhscHS4' + + 'ATC2BmBPU1dbX7gBL7cGS0tMUFRYXLgBLLYGSDc7P0NHuAErtwYzMzQ4PEBEuAEotgYwHyMnKy+4ASe3BhsbHCAkKCy4ASS2BhgHCw8TF7gBI7cGAwMECAwQFLgBILQGAPf7/7oBAwEHAUu1BvPz9Pj8ugEAAQQBSEAXBvDUqKR4YEgwGADw8AAYMEhgeKSo1Aq4AQi0' + + '3ODk6Oy4AUS3BtjY3+Pn6+9BFAFHAAYA2wEPARMBFwEbAR8BTwAGAQsBCwEMARABFAEYARwBTAAGAQgALxczMxEXMy8XMzMRFzMSFzkvLy8vLy8vLy8vERczMxEXMxEXMzMRFzMRFzMzERczERczMxEXMxEXMzMRFzMRFzMzERczERczMxEXMxEXMzMRFzMRFzMzERcz' + + 'ERczMxEXMxEBMxEXMzMRFzMRMxEXMzMRFzMREhc5ERczMxEXMxEXMzMRFzMRFzMzERczERczMxEXMxEXMzMRFzMRFzMzERczERczMxEXMxEXMzMRFzMRFzMzERczERczMxEXMxEXMzMRFzMRFzMzERczMTATMxUjNzMVIzczFSM3MxUjNzMVIzczFSMFMxUjNzMVIzcz' + + 'FSM3MxUjNzMVIzczFSMFMxUjNzMVIzczFSM3MxUjNzMVIzczFSMFMxUjNzMVIzczFSM3MxUjNzMVIzczFSMFMxUjNzMVIzczFSM3MxUjNzMVIzczFSMFMxUjJTMVIzczFSM3MxUjNzMVIyUzFSMFMxUjJzMVIyczFSMnMxUjJzMVIyczFSMHMxUjNzMVIzczFSM3MxUj' + + 'NzMVIzczFSMXMxUjJzMVIyczFSMnMxUjJzMVIyczFSMHMxUjNzMVIzczFSM3MxUjNzMVIzczFSMBMxUjNzMVIzczFSM3MxUjNzMVIzczFSMBMxUjNzMVIzczFSM3MxUjNzMVIzczFSMTMxUjBzMVIxczFSMHMxUjFzMVIwczFSMXMxUjBzMVIxczFSMHMxUjETMVIxMz' + + 'FSNnaGjPaGjPaGjQaGjQaGjPaGj7jGdnz2dnz2dnz2ho0Gho0Gdn/FpoaM9oaM9oaNBoaNBoaM9oaPuMZ2fPZ2fPZ2fPaGjQaGjQZ2f8Wmhoz2hoz2ho0Gho0Ghoz2ho+4xnZwGeZ2fPaGjQaGjQZ2f8wmdnA6VoaM9oaNBoaNBoaM9oaM9oaGdnZ89nZ89nZ89oaNBo' + + 'aNBnZ2doaM9oaNBoaNBoaM9oaM9oaGdnZ89nZ89nZ89oaNBoaNBnZ/vzZ2fPZ2fPZ2fPaGjQaGjQZ2f8Wmhoz2hoz2ho0Gho0Ghoz2hoz2hoZ2dnZ2hoZ2dnZ2hoZ2dnZ2hoZ2dnZ2hoZ2dnZ2dnaGgFImJiYmJiYmJiYmJiYWBgYGBgYGBgYGBgYGBgYGBgYGBgYGBg' + + 'Y2BgYGBgYGBgYGBgYGBgYGBgYGBgYGBgY2BgYGBgYGBgYGBgYGFhYWFhYWFhYWFhYl5eXl5eXl5eXl5eYmFhYWFhYWFhYWFhYGBgYGBgYGBgYGBgB+1iYmJiYmJiYmJiYgEjYGBgYGBgYGBgYGD+32JhYGBgY2BgYGNgYGFiXmJhYGAH7WIBI2AAAEMAAP2TBdUGowBJ' + + 'AE0AUQBVAFkAXQBhAGUAaQBtAHEAdQB5AH0AgQCFAIkAjQCRAJUAmQCdAKEApQCpAK0AsQC1ALkAvQDBAMUAyQDNANEA1QDZAN0A4QDlAOkA7QDxAPUA+QD9AQEBBQEJAQ0BEQEVARkBHQEhASUBKQEtATEBNQE5AT0BQQFFAUkBTQFRA0RAbABGaHyp6BoFyckHCw8T' + + 'FwUDT2+Vr/QFz89MbIys+QXMZH+l5B4FxcVpfabpGwXGU3OPs/AF09NQcJKw9QXQYIOh4CIFwcFlgKLlHwXCV3eXt+wF19dUdJC08QXUXIed3CYFvb1hhJ7hIwW++74BCwEbASsBUAAFATsBO7ZYeJi47QXYvwEIARQBKQFIACoABQE5ATm3XYia3ScFuv9BHQEPASEB' + + 'LwFMAAUBPwE/APwBDAEcASwBUQAFATwBBAEXASUBRAAuAAUBNQE1AQkBFQEmAUkAKwAFATa3NDg8QEQFSEhBCgEAARABHgEwAU0ABQFAAUABNgE8QBy62L7UwtDGzAMMAUZLa4ur+AXLywUJDREVBQEBQQkBUgEFARgBIgFFAC8ABQEyATK3MjY6PkIFRka4AVOyztLW' + + 'uQE6AT63RwbKyr3Bxcm5ATUBObUGArzAxMi5ATQBOLUGBQWvs7e5ASsBL7VEBquusra5ASoBLrdDBqqqnaGlqbkBJQEptQYGnKCkqLkBJAEotQYJCY+Vl7kBGwEhtUAGi46UlrkBGgEgtz8Giop8f4OHuQEUARe1Bgp7foKGuQETARa1Bg0Nb3N3uQELAQ+1PAZrbnJ2' + + 'uQEKAQ63OwZqalxgZGi5AQQBCLUGDltfY2e5AQMBB0AYBhERT1NX+/84BktOUlb6/jcGSkrc4OTouQFEAUi1BhLb3+PnuQFDAUe1BhUV7PD0uQFMAVBAJjQG+BoeIiYqLgYWAqsGiwprDksS+BYW+BJLDmsKiwarAgsYz9PXuQE7AT+3SAbLywHr7/O5AUsBT0AMMwb3' + + '9xwgJCgsMAYYAC8XMzMRFzMvMxEXMxIXOS8vLy8vLy8vLy8vERczERczMxEXMxEXMzMRFzMRFzMzERczERczMxEXMxEXMzMRFzMRFzMzERczERczMxEXMxEXMzMRFzMRFzMzERczERczMxEXMxEBMxEXMzMRFzMRMxEXMzMRFzMREhc5ERczMxEXMxEXMzMRFzMRFzMz' + + 'ERczERczMxEXMxEXMzMRFzMRFzMzERczERczMxEXMxEXMzMRFzMRFzMzERczERczMxEXMxEXMzMRFzMRFzMzERczETMxMAEhETM1IxEzNSMRMzUjETM1IxEzNSMRMzUzFTM1MxUzNTMVMzUzFTM1MxUzNTMVMzUzFSMVMxEjFTMRIxUzESMVMxEjFTMRIxUzARUzNTMV' + + 'MzUzFTM1MxUzNRcjFTMnIxUzJyMVMycjFTMHFTM1MxUzNTMVMzUzFTM1BSMVMzcVMzUzFTM1MxUzNQUVMzUhFTM1BzUjFSUVMzUTNSMVIzUjFSM1IxUjNSMVBxUzNTMVMzUzFTM1MxUzNRM1IxUjNSMVIzUjFSM1IxUHFTM1MxUzNTMVMzUzFTM1EyMVMycjFTMnIxUz' + + 'JyMVMwEjFTMnIxUzJyMVMycjFTMBFTM1MxUzNRcjFTMnIxUzBxUzNTMVMzUHIxUzNxUzNQUVMzUXNSMVFzUjFSM1IxUHFTM1MxUzNRM1IxUjNSMVBxUzNTMVMzUTIxUzJyMVMxMjFTMnIxUzBdX6K2pqampqampqampqa2pramtra2tramtqa2tra2tra2tra2tra/qV' + + 'a2pramtra2tra9Zra9ZqatVqatVramtqa2tr/epqamtqa2tra/yqawE/a9VrAatra2tra2tqa2pra2pramtra2tra2tramtqa2tqa2pra2tra2vWa2vWamrVamoCFmtr1mtr1Wtr1WtrAutramtqamrVamrVa2pra2pqa2r+VmvVa9Vqa2pra2prampramtramtqamrV' + + 'ampra2vVa2v9kwEiYQEiYQEjYAEhYgEhYgEhYGBgYGBgYGBgYGBgYMFi/t9g/t1g/t1g/t1e/t1gBmpgYGBgYGBgYMBiYmJiYmJiYWBgYGBgYGBgwGBgYGBgYGBgw2BgYGBgYGBgYGD+32FhYWFhYWFhYl5eXl5eXl5e/t9hYWFhYWFhYWBgYGBgYGBgYAbNYmJiYmJi' + + 'YgEiYmJiYmJiYv7fYGBgYMBiYmJhYGBgYMBgYGBgw2BgYGBgwWFhYWFiXl5eXv7fYWFhYWBgYGBgBs1iYmIBImJiYgAAAAABAHsAdQRaBFQAAwARtQEABQQDAQAvLxESATk5MTATIREhewPf/CEEVPwhAAIABgAABM8EyQADAAcAHkAMBAAHAQABCAkEAAUDAC/N3c0R' + + 'EgE5OREzETMxMBMhESETESERBgTJ+zdMBDEEyfs3BH37zwQxAAEAbQF/AmkDewADABG1AwIFBAECAC/NERIBOTkxMAEhESECaf4EAfwBfwH8AAAAAAIAbQF/AmkDewADAAcAHkAMBQMGAgMCCQgHAQYCAC/N3c0REgE5OREzETMxMAEhESEDESERAmn+BAH8TP6cAX8B' + + '/P5QAWL+ngAAAAABAAAAAAgAAmgAAwARtQEABQQDAQAvLxESATk5MTARIREhCAD4AAJo/ZgAAAEBngAABkwErgACABO3AgEAAwMEAAEALy8REgEXOTEwIQkBAZ4CWAJWBK77UgAAAAEBkf/lBloErAACABG1AQAEAwIAAC8vERIBOTkxMAkCAZEEyfs3BKz9nv2bAAAA' + + 'AAEBnv/lBkwEkwACABO3AgEAAwQDAQAALy8REgEXOTEwCQIGTP2q/agEk/tSBK4AAAEBkf/lBloErAACABG1AAIEAwEAAC8vERIBOTkxMAERAQZa+zcErPs5AmUAAgADAAAD9AWmAAUACQA8QBsHBAMGAQAIBggCCQUCBQoLCQUCBwcBBgMHCAEALzM/MxI5PS8zMzMR' + + 'EgE5OREzEjk5ETMzETMzMjEwISMJATMJBAIuaP49AcNoAcb+B/7fASEBIQLRAtX9LQHh/h/+EgHuAAACAKcAogQuBCkADwAfAB5ADBAAGAgACCAhFAwcBAAvzdzNERIBOTkRMxEzMTATND4BMzIeARUUDgEjIi4BNxQeATMyPgE1NC4BIyIOAad40Xl60nl50Xt60HhW' + + 'YqdjYqlkYqtiYaliAmR60nl503l50Xh40HpiqWFgqmJiq2JiqQAAAAAQAGIAVgRfBFIABwAPABcAHwAnAC8ANwA/AEcATwBXAF8AZwBvAHcAfwDSQGxQaGhUbDh4eDx8KHBwLHQgYGAkZAhISAxMAEBABEQQMDAUNDRETGR0fGwHGFhcHBgYXIGASnJyTnZCenpGfjJq' + + 'ajZuGlpaHl4SUlIWVgI6OgY+CioqDi52fm5eVj4uLj5WXm5+dgdmJmZiIiYALzMvMxESFzkvLy8vLy8vETMzETMRMzMRMxEzMxEzETMzETMRMzMRMxEzMxEzETMzETMREgE5OREzETMSFzkRMzMRMxEzMxEzETMzETMRMzMRMxEzMxEzETMzETMRMzMRMzEwARQjIjU0' + + 'MzInFCMiNTQzMhMUIyI1NDMyFxQjIjU0MzIBFCMiNTQzMgcUIyI1NDMyARQjIjU0MzIBFCMiNTQzMgEUIyI1NDMyBxQjIjU0MzIBFCMiNTQzMgcUIyI1NDMyARQjIjU0MzIlFCMiNTQzMhMUIyI1NDMyJxQjIjU0MzID2DQ4ODSUNDg4NPc3NTc1JDQ4ODT+NzY2Njat' + + 'NzU1NwJSNzU1N/0aNjY2NgKDNDg4NJQ0ODg0/a40ODY2JDQ4ODQByDY2Njb+XDY2Njb3NzU1N5Q2NjY2A5Y2NjYsNTU3/tM3NzXjNjY2AZM3NzVaNTU3/Xc1NTcBuTYzOf1ENTU3mTQ0OAIcNzc14zY2Nv4DNzc15DU1N/7VODQ4KjU1NwAAAQCyAIkEIwP6AA0AFkAJ' + + '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' + + 'ETUALzU1AAD///+0AAAChAeiEiYDa/4AECcHogAAAdYRBgKa7fcAIEARAgEXFAMeAh4mBAUlAxsbESYAKxE1ASsRNQAvETU1////tAAAAngHohImA2v+ABAnB67/uwHWEQYCmu33AB5AEAIBGAMeAh4mBAUlAxsbESYAKxE1ASsRNQAvNTUAAP///7QAAAJ4B6ISJgNr' + + '/gAQJwev/+0B1hEGAprt9wAeQBACARcDHgIeJgQFJQMbGxEmACsRNQErETUALzU1AAD//wB//+wEVAc9EiYDdwAAECcHoQD1AXERBwKLAOD/9gAhtAIBIAMquP/MQAoqKQAHJQMpKREmACsRNQErETUALzU1AP//AH//7ARUBz0SJgN3AAAQJweiASIBcREHAosA4P/2' + + 'ACG0AgEgAyq4/8xACiopAAclAykpESYAKxE1ASsRNQAvNTUA//8Af//sBFQHPRImA3cAABAnB64A5gFxEQcCiwDg//YAIbQCASADKrj/zEAKKikAByUDKSkRJgArETUBKxE1AC81NQD//wB//+wEVAc9EiYDdwAAECcHrwEiAXERBwKLAOD/9gAhtAIBIAMquP/MQAoq' + + 'KQAHJQMpKREmACsRNQErETUALzU1AP//AH//7ARUB6ISJgN3AAAQJwKaAQ//9xEHB6EA+gHWACG0AwIuARm4/85AChkhAAclARYWESYAKxE1ASsRNQAvNTUA//8Af//sBFQHohImA3cAABAnB6IBDgHWEQcCmgEP//cAIbQCASADKrj/zkAKKjIAByUDJycRJgArETUB' + + 'KxE1AC81NQD//wB//+wEVAeiEiYDdwAAECcHrgDcAdYRBwKaAQ//9wAjtAIBIAMquP/OQAoqMgAHJQMnJxEmACsRNQErETUALzU1MTAAAAD//wB//+wEVAeiEiYDdwAAECcHrwEOAdYRBwKaAQ//9wAasQMquP/OQAoqMgAHJQMnJxEmACsRNQErETX////VAAACYAfn' + + 'EiYDa/4AECYAasXeECcHwP+AAgMRBwKL/8EA+QAbQA8CAQ4GDg0EBSUCAQoKESYAKxE1NQErETU1AP///9UAAAJgB+cSJgNr/gAQJgBqxd4QJwM5AAECAxEHAov/wQD5ABtADwIBDgYODQQFJQIBCgoRJgArETU1ASsRNTUA////twAAAnsH5xImA2v+ABAmAGrF3hAn' + + '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' + + 'AB3/aAA8AB7/aAA8ACT/RAA8AET/jwA8AEj/jwA8AEz/tAA8AFL/aAA8AFP/jwA8AFT/aAA8AFj/jwA8AFn/jwBJB+UAJQBVAA//jwBVABH/jwBVB+UATABZAA//aABZABH/aABaAA//tABaABH/tABcAA//aABcABH/aAM7A0v/yQM7A1L/yQM7A1b/VgM7A1f/RgM7' + + 'A1j/yQM7A13/RgM7A2X/tAM7A2//tAM7A3n/tANAA1f/xwNAA13/xwNBA0MBAANBA0T/RgNBA0f/RgNBA0v/sgNBA07/RgNBA1L/sgNBA1j/sgNBA1v/sgNBA17/aANBA2D/tANBA2H/tANBA2P/aANBA2b/tANBA2n/tANBA2v/tANBA2z/tANBA27/tANBA3H/aANB' + + 'A3X/aANBA3j/aANBA3wAXANBA37/aANCA1f/xwNCA13/xwNEA0v/yQNEA1L/yQNEA1b/VgNEA1f/RgNEA1j/yQNEA13/RgNEA2X/tANEA2//tANEA3n/tANEB+X/jwNGAA//HwNGABH/HwNGA0T/IQNGA0f/IQNGA07/IQNGA2H/vgNGA2v/vgNGA3wAXgNHA0v/yQNH' + + 'A1L/yQNHA1b/VgNHA1f/RgNHA13/RgNLA0T/yQNLA0f/yQNLA07/yQNLA1f/xwNLA13/xwNNA0v/ogNNA1L/ogNNA1j/ogNNA17/0QNNA2P/0QNNA2b/0QNNA2j/0QNNA2r/0QNNA3D/0QNNA3H/0QNNA3X/0QNNA3j/0QNNA3v/0QNNA37/0QNNA4D/0QNOA0v/yQNO' + + 'A1L/yQNOA1b/VgNOA1f/RgNOA13/RgNSA0T/yQNSA0f/yQNSA07/yQNSA1f/xwNSA13/xwNUAA/++gNUABH++gNUA0T/aANUA0f/aANUA07/aANVA3L/3QNVA3b/3QNWAA//HwNWABD/jwNWABH/HwNWAB3/HwNWAB7/HwNWA0MA8gNWA0T/aANWA0f/XANWA0v/2wNW' + + 'A07/aANWA1L/2wNWA1j/yQNWA1v/2wNWA17/aANWA1//aANWA2P/aANWA2X/aANWA2b/rANWA2f/aANWA2n/aANWA2v/2wNWA27/aANWA2//aANWA3H/aANWA3X/aANWA3f/aANWA3j/aANWA3n/hQNWA3r/aANWA3wAXANWA33/aANWA37/aANWA3//aANXAA//HwNX' + + 'ABD/jwNXABH/HwNXAB3/aANXAB7/aANXA0MBAANXA0T/RgNXA0f/RgNXA0v/sgNXA07/RgNXA1L/sgNXA1j/sgNXA1v/sgNXA17/aANXA2D/tANXA2H/tANXA2P/aANXA2X/rANXA2b/tANXA2n/tANXA2v/tANXA2z/tANXA27/tANXA3H/aANXA3X/aANXA3j/aANX' + + 'A3wAXANXA37/aANYA0T/yQNYA1b/yQNYA1f/xwNYA13/xwNZA3v/5QNZA4D/5QNaA17/2wNaA2P/2wNaA2b/2wNaA3H/2wNaA3X/2wNaA3j/2wNaA3v/2wNaA37/2wNaA4D/2wNbA1f/xwNbA13/xwNdA0MBAANdA0T/RgNdA0f/RgNdA0v/sgNdA07/RgNdA1L/sgNd' + + 'A1j/sgNdA1v/sgNdA17/aANdA2D/tANdA2H/tANdA2P/aANdA2b/tANdA2n/tANdA2v/tANdA2z/tANdA27/tANdA3H/aANdA3X/aANdA3j/aANdA3wAXANdA37/aANmA3L/xwNmA3b/xwNmA3n/tgNoA17/jQNoA2D/zwNoA2P/jQNoA2X/vgNoA2b/tANoA2n/zwNo' + + 'A2r/tANoA2v/zwNoA2z/zwNoA2//vgNoA3H/jQNoA3L/tANoA3X/jQNoA3b/tANoA3j/jQNoA3v/jQNoA37/jQNoA4D/jQNsA17/vANsA2P/vANsA2b/vANsA2j/vANsA2r/4wNsA3D/vANsA3H/vANsA3T/vANsA3X/vANsA3j/vANsA3v/vANsA37/vANsA4D/vANt' + + 'A17/5wNtA2L/4QNtA2P/5wNtA2b/5wNtA2j/5wNtA3D/5wNtA3H/5wNtA3T/5wNtA3X/5wNtA3f/4QNtA3j/5wNtA3v/5wNtA33/4QNtA37/5wNtA3//4QNtA4D/5wNwA17/5wNwA2P/5wNwA2b/5wNwA2j/5wNwA3D/5wNwA3H/5wNwA3T/5wNwA3X/5wNwA3j/5wNw' + + 'A37/5wNxA3L/xwNxA3b/xwNxA3n/tgNyA17/xwNyA2P/xwNyA2b/xwNyA2j/xwNyA23/tANyA3H/xwNyA3T/xwNyA3X/xwNyA3j/xwNyA3v/xwNyA4D/xwNzA3L/xwNzA3b/xwN2A17/xwN2A2P/xwN2A2b/xwN2A2j/xwN2A3H/xwN2A3T/xwN2A3X/xwN2A3j/xwN2' + + 'A3v/xwN2A4D/xwN4A23/5wN4A3L/xwN4A3b/xwN4A3n/tgN5A17/tgN5A2P/tgN5A2b/tgN5A2j/tgN5A3H/tgN5A3T/tgN5A3X/tgN5A3j/tgN5A3v/1QN5A37/tgN5A4D/1QN7A3L/xwN7A3b/xwN7A3n/1QN+A3L/xwN+A3b/xwN+A3n/tgOAA3L/xwOAA3b/xwOA' + + 'A3n/1QO0AA//GQO0ABH/AAO0AB3/5QO0AB7/5QO0AG3/sgO0AH3/sgO6B+X/MwO7B+X/MwPBA8UATAPBA8wAGQPBA8//5QPBA9D/5QPBA9L/zQPBA9P/mgPBA9T/sgPBA9X/zQPBA9j/ZAPBA97/zQPBA+EAGQPBA+L/5QPBA/L/5QPBA/P/5QPBA/4AGQPBB+X/mAPC' + + 'A8H/sgPCA8f/zQPCA8j/5QPCA8z/zQPCA9L/5QPCA9P/zQPCA9T/zQPCA9X/5QPCA9b/zQPCA9j/sgPCA9v/sgPCA97/zQPCA+D/zQPCA/T/5QPDA8H/mgPDA8X/5QPDA8f/sgPDA8j/5QPDA8z/zQPDA8//zQPDA9L/sgPDA9P/sgPDA9T/sgPDA9X/zQPDA9b/sgPD' + + 'A9j/sgPDA9v/mgPDA+D/zQPDA/P/5QPDA/b/5QPDA/j/sgPEAA//GQPEABH/AAPEAB3/5QPEAB7/5QPEAG3/sgPEAH3/sgPEA8H/fwPEA8X/zQPEA8z/zQPEA8//5QPEA9L/5QPEA+H/5QPEA+P/zQPEA+X/sgPEA+b/mAPEA+n/zQPEA+z/mgPEA+3/sgPEA+7/zQPE' + + 'A+//mgPEA/H/sgPEA/T/sgPEA/z/sgPEA/3/sgPEA///sgPEBAD/sgPFA8gAGQPFA9QAGQPFA9X/5QPFA9j/5QPFA+YAGQPFA+gAMwPFA+8AGQPFA/QAGQPHA8gAGQPHA8//5QPHA9L/zQPHA9MAMwPHA9QAMwPHA9gAGQPHA9sATAPHA+EAGQPHA+//5QPIA8f/zQPI' + + 'A8z/zQPIA8//5QPIA9L/zQPIA9P/sgPIA9T/sgPIA9X/zQPIA9j/sgPIA+D/zQPLA8gATAPLA9L/5QPLA9MAMwPLA9QAMwPLA9X/5QPLA9gAMwPLA94AGQPLA+EAGQPLA+gAGQPLA/L/5QPMA+EAMwPNA+EAGQPNA/L/5QPNA/j/5QPPA8H/zQPPA8X/5QPPA8f/5QPP' + + 'A8z/zQPPA9T/zQPPA9b/sgPPA+D/5QPPA+X/zQPPA+z/5QPRAA/+5QPRABH+zQPRAB3/5QPRAB7/5QPRA8H/TAPRA8X/fwPRA8f/5QPRA8j/5QPRA8z/fwPRA83/5QPRA8//5QPRA9L/zQPRA9P/5QPRA9T/5QPRA9X/5QPRA9b/sgPRA+D/zQPRA+H/5QPRA+X/fwPR' + + 'A+b/zQPRA+//zQPRBAD/5QPSA8H/zQPSA8X/5QPSA8j/5QPSA8z/zQPSA83/5QPSA8//zQPSA9P/zQPSA9T/5QPSA9b/sgPSA9j/zQPSA9v/5QPSA97/5QPSA+EAGQPSA+L/5QPSA+cAGQPSA/L/5QPSA/X/5QPSA/j/5QPTAA//MwPTABH/GQPTAB3/5QPTAB7/5QPT' + + 'AG3/zQPTA8H/fwPTA8X/zQPTA8cAMwPTA8z/zQPTA8//zQPTA9X/sgPTA+D/5QPTA+H/zQPTA+P/sgPTA+b/mgPTA+n/sgPTA+v/sgPTA+z/fwPTA+3/mAPTA+//fwPTA/D/5QPTA/H/sgPTA/L/fwPTA/T/sgPTA/b/sgPTA/r/5QPTA/z/5QPTA/3/5QPTA///5QPT' + + 'BAD/zQPUAA//GQPUABH/AAPUAB3/zQPUAB7/zQPUAG3/sgPUAH3/sgPUA8H/ZgPUA8X/mAPUA8z/sgPUA8//zQPUA9X/sgPUA97/5QPUA+D/zQPUA+L/zQPUA+P/sgPUA+T/sgPUA+X/fwPUA+b/fwPUA+f/5QPUA+j/mgPUA+n/sgPUA+r/sgPUA+v/sgPUA+z/fwPU' + + 'A+3/mgPUA+7/sgPUA+//fwPUA/D/sgPUA/H/sgPUA/L/fwPUA/b/zQPUA/f/sgPUA/n/sgPUA/r/sgPUA///sgPUBAD/mgPVA8H/zQPVA8X/mAPVA8z/sgPVA9P/sgPVA9T/sgPVA9X/5QPVA9j/5QPVA+D/ywPVA+z/zQPWA8j/5QPWA8//ywPWA9L/sgPWA9X/sgPW' + + 'A97/zQPWA+//5QPWA/T/5QPXA+EATAPXA+YAGQPXA+8AGQPaA+EAGQPbA+D/sgPbB+X/MwPdA8H/zQPdA8X/5QPdA8f/sgPdA8j/zQPdA8z/sgPdA83/zQPdA8//5QPdA9L/zQPdA9P/MQPdA9b/mAPdA9j/ZgPdA97/sgPdA+D/sgPdB+X/ZgPeA8X/zQPeA8f/zQPe' + + 'A8j/5QPeA8z/sgPeA9X/5QPeA9b/zQPeA+D/zQPeA+X/5QPeA+cAGQPeA+z/zQPfA8H/zQPfA8X/zQPfA8f/zQPfA8z/sgPfA9L/5QPfA9P/zQPfA9b/sgPfA9j/5QPfA+X/zQPfA+cAGQPfA+z/zQPhA+gAGQPhA/j/zQPiA+X/zQPiA+f/5QPiA+j/5QPiA+z/zQPi' + + 'A+3/5QPiA/L/5QPiA/T/5QPiA/b/zQPiA/j/zQPiA/v/5QPiA/7/5QPiBAD/5QPjA+H/5QPjA+L/5QPjA+b/5QPjA+f/5QPjA+z/5QPjA+3/5QPjA+//5QPjA/L/zQPjA/P/5QPjA/T/zQPjA/X/5QPjA/j/sgPjA/v/zQPjBAD/5QPkAA//TAPkABH/MwPkA+X/sgPk' + + 'A+z/zQPkA+//5QPkA/L/5QPlA+gAGQPlA/L/5QPlA/QAGQPlA/v/5QPmA+L/5QPmA+f/5QPmA+3/5QPmA/L/5QPmA/P/5QPmA/T/5QPmA/b/5QPmA/j/zQPnA+EAGQPnA+b/5QPnA+gAGQPnA+//zQPnA/L/5QPnA/j/zQPoA+H/5QPoA+L/zQPoA+b/5QPoA+f/5QPo' + + 'A+j/5QPoA+z/5QPoA+3/zQPoA+//zQPoA/L/zQPoA/T/zQPoA/X/5QPoA/j/sgPoA/v/zQPrA+wAGQPrA+//5QPrA/L/5QPrA/X/5QPrA/j/5QPrA/7/5QPsA+L/5QPsA+b/5QPsA+//5QPsA/L/5QPsA/T/5QPsA/j/zQPtA+H/5QPtA+L/5QPtA+j/5QPtA+//5QPt' + + 'A/L/5QPtA/T/5QPtA/X/5QPtA/7/5QPvA+X/5QPvA+f/5QPvA+j/5QPvA+z/zQPvA+3/5QPvA/L/5QPvA/P/zQPvA/T/5QPvA/b/zQPvA/j/zQPvA/7/5QPvBAD/5QPxA+X/zQPxA+f/5QPxA+j/5QPxA+z/zQPxA+3/5QPxA/P/5QPxA/T/5QPxA/b/5QPxA/j/zQPx' + + 'A/7/5QPxBAD/5QPyA+EAGQPyA+L/5QPyA/b/5QPyA/j/ywPyA/v/5QPzAA//ZgPzABH/TAPzA+X/5QPzA+cAGQPzA+z/5QPzA+//5QPzA/L/5QPzA/QAMwP0AA//ZgP0ABH/TAP0AB3/5QP0AB7/5QP0AH0AMwP0A+H/5QP0A+X/zQP0A+b/5QP0A+cAGQP0A+j/5QP0' + + 'A+z/5QP0A+3/5QP0A+//zQP0A/H/5QP0A/L/zQP0A/MAGQP0A/X/5QP0A/YAGQP0A/7/5QP0BAD/5QP1A+L/5QP1A+X/5QP1A+b/5QP1A+z/zQP1A+3/5QP1A+//5QP1A/P/5QP1A/T/5QP1A/j/zQP1BAD/5QP2A+L/5QP2A+b/zQP2A+j/5QP2A+//zQP2A/L/zQP2' + + 'A/QAGQP2A/X/5QP2A/j/zQP2A/7/5QP3A+EAGQP3A+gAGQP3A/L/5QP6A+EAGQP6A+//5QP9A/P/TAP9A/j/TAP+A+L/5QP+A+X/5QP+A+f/5QP+A+j/5QP+A+z/zQP+A+3/5QP+A/L/5QP+A/P/5QP+A/b/5QP+BAD/5QP/A+L/5QP/A+X/5QP/A+f/5QP/A+z/zQP/' + + 'A+3/5QP/A/L/5QP/A/P/zQP/A/b/zQP/A/j/sgP/A/7/5QQPAA//ZgQPABH/TAQPAB3/5QQPAB7/5QQPAG3/zQRBAA//fwRBABH/ZgRBAB3/5QRBAB7/5QRBAG3/zQRBAH3/zQfkB+T/tAflAAP/jwflAFb/tAflB+X/tAfqA7P/MwfqA7z/MwfqA9P/TAfqA9j/MQfq' + + 'A9v/TAAAAAAAHgFuAAEAAAAAAAAAVgCuAAEAAAAAAAEADwElAAEAAAAAAAIABAE/AAEAAAAAAAMAGgF6AAEAAAAAAAQAFAG/AAEAAAAAAAUADQHwAAEAAAAAAAYAEwImAAEAAAAAAAcAegMwAAEAAAAAAAgAFAPVAAEAAAAAAAkADgQIAAEAAAAAAAoBaQbrAAEAAAAA' + + 'AAsAHAiPAAEAAAAAAAwALgkKAAEAAAAAAA0ANQmlAAEAAAAAAA4AGgoRAAMAAQQJAAAArAAAAAMAAQQJAAEAHgEFAAMAAQQJAAIACAE1AAMAAQQJAAMANAFEAAMAAQQJAAQAKAGVAAMAAQQJAAUAGgHUAAMAAQQJAAYAJgH+AAMAAQQJAAcA9AI6AAMAAQQJAAgAKAOr' + + 'AAMAAQQJAAkAHAPqAAMAAQQJAAoC0gQXAAMAAQQJAAsAOAhVAAMAAQQJAAwAXAisAAMAAQQJAA0Aagk5AAMAAQQJAA4ANAnbAEQAaQBnAGkAdABpAHoAZQBkACAAZABhAHQAYQAgAGMAbwBwAHkAcgBpAGcAaAB0ACAAKABjACkAIAAyADAAMQAwACAARwBvAG8AZwBs' + + 'AGUAIABDAG8AcgBwAG8AcgBhAHQAaQBvAG4ALgAKAEMAbwBwAHkAcgBpAGcAaAB0ACAAKABjACkAIAAyADAAMQAyACAAUgBlAGQAIABIAGEAdAAsACAASQBuAGMALgAARGlnaXRpemVkIGRhdGEgY29weXJpZ2h0IChjKSAyMDEwIEdvb2dsZSBDb3Jwb3JhdGlvbi4K' + + 'Q29weXJpZ2h0IChjKSAyMDEyIFJlZCBIYXQsIEluYy4AAEwAaQBiAGUAcgBhAHQAaQBvAG4AIABTAGEAbgBzAABMaWJlcmF0aW9uIFNhbnMAAEIAbwBsAGQAAEJvbGQAAEEAcwBjAGUAbgBkAGUAcgAgAC0AIABMAGkAYgBlAHIAYQB0AGkAbwBuACAAUwBhAG4AcwAA' + + 'QXNjZW5kZXIgLSBMaWJlcmF0aW9uIFNhbnMAAEwAaQBiAGUAcgBhAHQAaQBvAG4AIABTAGEAbgBzACAAQgBvAGwAZAAATGliZXJhdGlvbiBTYW5zIEJvbGQAAFYAZQByAHMAaQBvAG4AIAAyAC4AMQAuADUAAFZlcnNpb24gMi4xLjUAAEwAaQBiAGUAcgBhAHQAaQBv' + + 'AG4AUwBhAG4AcwAtAEIAbwBsAGQAAExpYmVyYXRpb25TYW5zLUJvbGQAAEwAaQBiAGUAcgBhAHQAaQBvAG4AIABpAHMAIABhACAAdAByAGEAZABlAG0AYQByAGsAIABvAGYAIABSAGUAZAAgAEgAYQB0ACwAIABJAG4AYwAuACAAcgBlAGcAaQBzAHQAZQByAGUAZAAg' + + 'AGkAbgAgAFUALgBTAC4AIABQAGEAdABlAG4AdAAgAGEAbgBkACAAVAByAGEAZABlAG0AYQByAGsAIABPAGYAZgBpAGMAZQAgAGEAbgBkACAAYwBlAHIAdABhAGkAbgAgAG8AdABoAGUAcgAgAGoAdQByAGkAcwBkAGkAYwB0AGkAbwBuAHMALgAATGliZXJhdGlvbiBp' + + 'cyBhIHRyYWRlbWFyayBvZiBSZWQgSGF0LCBJbmMuIHJlZ2lzdGVyZWQgaW4gVS5TLiBQYXRlbnQgYW5kIFRyYWRlbWFyayBPZmZpY2UgYW5kIGNlcnRhaW4gb3RoZXIganVyaXNkaWN0aW9ucy4AAEEAcwBjAGUAbgBkAGUAcgAgAEMAbwByAHAAbwByAGEAdABpAG8A' + + 'bgAAQXNjZW5kZXIgQ29ycG9yYXRpb24AAFMAdABlAHYAZQAgAE0AYQB0AHQAZQBzAG8AbgAAU3RldmUgTWF0dGVzb24AAEIAYQBzAGUAZAAgAG8AbgAgAEEAcgBpAG0AbwAsACAAdwBoAGkAYwBoACAAdwBhAHMAIABkAGUAcwBpAGcAbgBlAGQAIABiAHkAIABTAHQA' + + 'ZQB2AGUAIABNAGEAdAB0AGUAcwBvAG4AIABhAHMAIABhAG4AIABpAG4AbgBvAHYAYQB0AGkAdgBlACwAIAByAGUAZgByAGUAcwBoAGkAbgBnACAAcwBhAG4AcwAgAHMAZQByAGkAZgAgAGQAZQBzAGkAZwBuACAAdABoAGEAdAAgAGkAcwAgAG0AZQB0AHIAaQBjAGEA' + + 'bABsAHkAIABjAG8AbQBwAGEAdABpAGIAbABlACAAdwBpAHQAaAAgAEEAcgBpAGEAbCEiAC4AIABBAHIAaQBtAG8AIABvAGYAZgBlAHIAcwAgAGkAbQBwAHIAbwB2AGUAZAAgAG8AbgAtAHMAYwByAGUAZQBuACAAcgBlAGEAZABhAGIAaQBsAGkAdAB5ACAAYwBoAGEA' + + 'cgBhAGMAdABlAHIAaQBzAHQAaQBjAHMAIABhAG4AZAAgAHQAaABlACAAcABhAG4ALQBFAHUAcgBvAHAAZQBhAG4AIABXAEcATAAgAGMAaABhAHIAYQBjAHQAZQByACAAcwBlAHQAIABhAG4AZAAgAHMAbwBsAHYAZQBzACAAdABoAGUAIABuAGUAZQBkAHMAIABvAGYA' + + 'IABkAGUAdgBlAGwAbwBwAGUAcgBzACAAbABvAG8AawBpAG4AZwAgAGYAbwByACAAdwBpAGQAdABoAC0AYwBvAG0AcABhAHQAaQBiAGwAZQAgAGYAbwBuAHQAcwAgAHQAbwAgAGEAZABkAHIAZQBzAHMAIABkAG8AYwB1AG0AZQBuAHQAIABwAG8AcgB0AGEAYgBpAGwA' + + 'aQB0AHkAIABhAGMAcgBvAHMAcwAgAHAAbABhAHQAZgBvAHIAbQBzAC4AAEJhc2VkIG9uIEFyaW1vLCB3aGljaCB3YXMgZGVzaWduZWQgYnkgU3RldmUgTWF0dGVzb24gYXMgYW4gaW5ub3ZhdGl2ZSwgcmVmcmVzaGluZyBzYW5zIHNlcmlmIGRlc2lnbiB0aGF0IGlz' + + 'IG1ldHJpY2FsbHkgY29tcGF0aWJsZSB3aXRoIEFyaWFsqi4gQXJpbW8gb2ZmZXJzIGltcHJvdmVkIG9uLXNjcmVlbiByZWFkYWJpbGl0eSBjaGFyYWN0ZXJpc3RpY3MgYW5kIHRoZSBwYW4tRXVyb3BlYW4gV0dMIGNoYXJhY3RlciBzZXQgYW5kIHNvbHZlcyB0aGUg' + + 'bmVlZHMgb2YgZGV2ZWxvcGVycyBsb29raW5nIGZvciB3aWR0aC1jb21wYXRpYmxlIGZvbnRzIHRvIGFkZHJlc3MgZG9jdW1lbnQgcG9ydGFiaWxpdHkgYWNyb3NzIHBsYXRmb3Jtcy4AAGgAdAB0AHAAOgAvAC8AdwB3AHcALgBhAHMAYwBlAG4AZABlAHIAYwBvAHIA' + + 'cAAuAGMAbwBtAC8AAGh0dHA6Ly93d3cuYXNjZW5kZXJjb3JwLmNvbS8AAGgAdAB0AHAAOgAvAC8AdwB3AHcALgBhAHMAYwBlAG4AZABlAHIAYwBvAHIAcAAuAGMAbwBtAC8AdAB5AHAAZQBkAGUAcwBpAGcAbgBlAHIAcwAuAGgAdABtAGwAAGh0dHA6Ly93d3cuYXNj' + + 'ZW5kZXJjb3JwLmNvbS90eXBlZGVzaWduZXJzLmh0bWwAAEwAaQBjAGUAbgBzAGUAZAAgAHUAbgBkAGUAcgAgAHQAaABlACAAUwBJAEwAIABPAHAAZQBuACAARgBvAG4AdAAgAEwAaQBjAGUAbgBzAGUALAAgAFYAZQByAHMAaQBvAG4AIAAxAC4AMQAATGljZW5zZWQg' + + 'dW5kZXIgdGhlIFNJTCBPcGVuIEZvbnQgTGljZW5zZSwgVmVyc2lvbiAxLjEAAGgAdAB0AHAAOgAvAC8AcwBjAHIAaQBwAHQAcwAuAHMAaQBsAC4AbwByAGcALwBPAEYATAAAaHR0cDovL3NjcmlwdHMuc2lsLm9yZy9PRkwAAAAAAgAAAAAAAP/+ANcAAAAAAAAAAAAA' + + 'AAAAAAAAAAAAAAo8AAAAAQACAAMABAAFAAYABwAIAAkACgALAAwADQAOAA8AEAARABIAEwAUABUAFgAXABgAGQAaABsAHAAdAB4AHwAgACEAIgAjACQAJQAmACcAKAApACoAKwAsAC0ALgAvADAAMQAyADMANAA1ADYANwA4ADkAOgA7ADwAPQA+AD8AQABBAEIAQwBE' + + 'AEUARgBHAEgASQBKAEsATABNAE4ATwBQAFEAUgBTAFQAVQBWAFcAWABZAFoAWwBcAF0AXgBfAGAAYQECAKMAhACFAL0AlgDoAIYAjgCLAJ0AqQCkAQMAigDaAIMAkwDyAPMAjQCXAIgAwwDeAPEAngCqAPUA9AD2AKIArQDJAMcArgBiAGMAkABkAMsAZQDIAMoAzwDM' + + 'AM0AzgDpAGYA0wDQANEArwBnAPAAkQDWANQA1QBoAOsA7QCJAGoAaQBrAG0AbABuAKAAbwBxAHAAcgBzAHUAdAB2AHcA6gB4AHoAeQB7AH0AfAC4AKEAfwB+AIAAgQDsAO4AugEEAQUBBgEHAQgBCQD9AP4BCgELAQwBDQD/AQABDgEPARABAQERARIBEwEUARUBFgEX' + + 'ARgBGQEaARsBHAD4APkBHQEeAR8BIAEhASIBIwEkASUBJgEnASgBKQEqASsBLAD6ANcBLQEuAS8BMAExATIBMwE0ATUBNgE3ATgBOQE6ATsA4gDjATwBPQE+AT8BQAFBAUIBQwFEAUUBRgFHAUgBSQFKALAAsQFLAUwBTQFOAU8BUAFRAVIBUwFUAPsA/ADkAOUBVQFW' + + 'AVcBWAFZAVoBWwFcAV0BXgFfAWABYQFiAWMBZAFlAWYBZwFoAWkBagC7AWsBbAFtAW4A5gDnAW8BcAFxAXIBcwF0AXUBdgF3AXgBeQF6AXsBfAF9AX4BfwGAAYEApgGCAYMBhAGFAYYBhwGIAYkBigGLAYwBjQGOAY8BkAGRAZIBkwGUAZUBlgGXAZgBmQGaAZsBnAGd' + + 'AZ4BnwGgAaEBogGjAaQBpQGmAacBqAGpAaoBqwGsAa0BrgGvAbABsQGyAbMBtAG1AbYBtwG4AbkBugG7AbwBvQG+Ab8BwAHBAcIBwwHEAcUBxgHHAcgByQHKAcsBzAHNAc4BzwHQAdEB0gHTAdQB1QHWAdcB2AHZAdoB2wHcAd0B3gHfAeAB4QHiAeMB5AHlAeYB5wHo' + + 'AekB6gHrAewB7QHuAe8B8AHxAfIB8wH0AfUB9gH3AfgB+QH6AfsB/AH9Af4B/wIAAgECAgIDAgQCBQIGAgcCCAIJAgoCCwIMAg0CDgIPAhACEQISAhMCFAIVAhYCFwIYAhkCGgIbAhwCHQIeAh8CIAIhAiICIwIkAiUCJgInAigCKQIqAisCLAItAi4CLwIwAjECMgIz' + + 'AjQCNQI2AjcCOAI5AjoCOwI8Aj0CPgI/AkACQQJCAkMCRAJFAkYCRwJIAkkCSgJLAkwCTQJOAk8CUAJRAlICUwJUAlUCVgJXAlgCWQJaAlsCXAJdAl4CXwJgAmECYgJjAmQCZQJmAmcCaAJpAmoCawJsAm0CbgJvAnACcQJyAnMCdAJ1AnYCdwJ4AnkCegJ7AnwCfQJ+' + + 'An8CgAKBAoICgwKEAoUChgKHAogCiQKKAosCjAKNAo4CjwKQApECkgKTApQClQKWApcCmAKZApoCmwKcAp0CngKfAqACoQKiAqMCpAKlAqYCpwKoAqkCqgKrAqwCrQKuAq8CsAKxArICswK0ANgA4QK1ArYCtwK4ArkCugK7ArwCvQK+Ar8CwALBAsICwwLEANsA3ADd' + + 'AOAA2QDfAsUCxgLHAsgCyQLKAssCzALNAs4CzwLQAtEC0gLTAtQC1QLWAtcC2ALZAtoC2wLcAt0C3gLfAuAC4QLiAuMC5ALlAuYC5wLoAukC6gLrAuwC7QLuAu8C8ALxAvIC8wL0AvUC9gL3AvgC+QL6AvsC/AL9Av4C/wMAAwEDAgMDAwQDBQMGAwcDCAMJAwoDCwMM' + + 'Aw0DDgMPAxADEQMSAxMDFAMVAxYDFwMYAxkDGgMbAxwDHQMeAx8DIAMhAyIDIwMkAyUDJgMnAygDKQMqAysDLAMtAy4DLwMwAzEDMgMzAzQDNQM2AzcDOAM5AzoDOwM8Az0DPgM/A0ADQQNCA0MDRANFA0YDRwNIA0kDSgNLA0wDTQNOA08DUANRA1IDUwNUA1UDVgNX' + + 'A1gDWQNaA1sDXANdA14DXwNgA2EDYgNjA2QDZQNmA2cDaANpA2oDawNsA20DbgNvA3ADcQNyA3MDdAN1A3YDdwN4A3kDegN7A3wDfQN+A38DgAOBA4IDgwOEA4UDhgOHA4gDiQOKA4sDjAONA44DjwOQA5EDkgOTA5QDlQOWAJsDlwOYA5kDmgObA5wDnQOeA58DoAOh' + + 'A6IDowOkA6UDpgOnA6gDqQOqA6sDrAOtA64DrwOwA7EDsgOzA7QDtQO2A7cDuAO5A7oDuwO8A70DvgO/A8ADwQPCA8MDxAPFA8YDxwPIA8kDygPLA8wDzQPOA88D0APRA9ID0wPUA9UD1gPXA9gD2QPaA9sD3APdA94D3wPgA+ED4gPjA+QD5QPmA+cD6APpA+oD6wPs' + + 'A+0D7gPvA/AD8QPyA/MD9AP1A/YD9wP4A/kD+gP7A/wD/QP+A/8EAAQBBAIEAwQEBAUEBgQHBAgECQQKBAsEDAQNBA4EDwQQBBEEEgQTBBQEFQQWBBcEGAQZBBoEGwQcBB0EHgQfBCAEIQQiBCMEJAQlBCYEJwQoBCkEKgQrBCwELQQuBC8EMAQxBDIEMwQ0BDUENgQ3' + + 'BDgEOQQ6BDsEPAQ9BD4EPwRABEEEQgRDBEQERQRGBEcESARJBEoESwRMBE0ETgRPBFAEUQRSBFMEVARVBFYEVwRYBFkEWgRbBFwEXQReBF8EYARhBGIEYwRkBGUEZgRnBGgEaQRqBGsEbARtBG4EbwRwBHEEcgRzBHQEdQR2BHcEeAR5BHoEewR8BH0EfgR/BIAEgQSC' + + 'BIMEhASFBIYEhwSIBIkEigSLBIwEjQSOBI8EkASRBJIEkwSUBJUElgSXBJgEmQSaBJsEnASdBJ4EnwSgBKEEogSjBKQEpQSmBKcEqASpBKoEqwSsBK0ErgSvBLAEsQSyBLMEtAS1BLYEtwS4BLkEugS7BLwEvQS+BL8EwATBBMIEwwTEBMUExgTHBMgEyQTKBMsEzATN' + + 'BM4EzwTQBNEE0gTTBNQE1QTWBNcE2ATZBNoE2wTcBN0E3gTfBOAE4QTiBOME5ATlBOYE5wToBOkE6gTrBOwE7QTuBO8E8ATxBPIE8wT0BPUE9gT3BPgE+QT6BPsE/AT9BP4E/wUABQEFAgUDBQQFBQUGBQcFCAUJBQoFCwUMBQ0FDgUPBRAFEQUSBRMFFAUVBRYFFwUY' + + 'BRkFGgUbBRwFHQUeBR8FIAUhBSIFIwUkBSUFJgUnBSgFKQUqBSsFLAUtBS4FLwUwBTEFMgUzBTQFNQU2BTcFOAU5BToFOwU8BT0FPgU/BUAFQQVCBUMFRAVFBUYFRwVIBUkFSgVLBUwFTQVOBU8FUAVRBVIFUwVUBVUFVgVXBVgFWQVaBVsFXAVdBV4FXwVgBWEFYgVj' + + 'BWQFZQVmBWcFaAVpBWoFawVsBW0FbgVvBXAFcQVyBXMFdAV1BXYFdwV4BXkFegV7BXwFfQV+BX8FgAWBBYIFgwWEBYUFhgWHBYgFiQWKBYsFjAWNBY4FjwWQBZEFkgWTBZQFlQWWBZcFmAWZBZoFmwWcBZ0FngWfBaAFoQWiBaMFpAWlBaYFpwWoBakFqgWrBawFrQWu' + + 'Ba8FsAWxBbIFswW0BbUFtgW3BbgFuQW6BbsFvAW9Bb4FvwXABcEFwgXDBcQFxQXGBccFyAXJBcoFywXMBc0FzgXPBdAF0QXSBdMF1AXVBdYF1wXYBdkF2gXbBdwF3QXeBd8F4AXhBeIF4wXkBeUF5gXnBegF6QXqBesF7AXtBe4F7wXwBfEF8gXzBfQF9QX2BfcF+AX5' + + 'BfoF+wX8Bf0F/gX/BgAGAQYCBgMGBAYFBgYGBwYIBgkGCgYLBgwGDQYOBg8GEAYRBhIGEwYUBhUGFgYXBhgGGQYaBhsGHAYdBh4GHwYgBiEGIgYjBiQGJQYmBicGKAYpBioGKwYsBi0GLgYvBjAGMQYyBjMGNAY1BjYGNwY4BjkGOgY7BjwGPQY+Bj8GQAZBBkIGQwZE' + + 'BkUGRgZHBkgGSQZKBksGTAZNBk4GTwZQBlEGUgZTBlQGVQZWBlcGWAZZBloGWwZcBl0GXgZfBmAGYQZiBmMGZAZlBmYGZwZoBmkGagZrBmwGbQZuBm8GcAZxBnIGcwZ0BnUGdgZ3BngGeQZ6BnsGfAZ9Bn4GfwaABoEGggaDBoQGhQaGBocGiAaJBooGiwaMBo0GjgaP' + + 'BpAGkQaSBpMGlAaVBpYGlwaYBpkGmgabBpwGnQaeBp8GoAahBqIGowakBqUGpganBqgGqQaqBqsGrAatBq4GrwawBrEGsgazBrQGtQa2BrcGuAa5BroGuwa8Br0Gvga/BsAGwQbCBsMGxAbFBsYGxwbIBskGygbLBswGzQbOBs8G0AbRBtIG0wbUBtUG1gbXBtgG2Qba' + + 'BtsG3AbdBt4G3wbgBuEG4gbjBuQG5QbmBucG6AbpBuoG6wbsBu0G7gbvBvAG8QbyBvMG9Ab1BvYG9wb4BvkG+gb7BvwG/Qb+Bv8HAAcBBwIHAwcEBwUHBgcHBwgHCQcKBwsHDAcNBw4HDwcQBxEHEgcTBxQHFQcWBxcHGAcZBxoHGwccBx0HHgcfByAHIQciByMHJAcl' + + 'ByYHJwcoBykHKgcrBywHLQcuBy8HMAcxBzIHMwc0BzUHNgc3BzgHOQc6BzsHPAc9Bz4HPwdAB0EHQgdDB0QHRQdGB0cHSAdJB0oHSwdMB00HTgdPB1AHUQdSB1MHVAdVB1YHVwdYB1kHWgdbB1wHXQdeB18HYAdhB2IHYwdkB2UHZgdnB2gHaQdqB2sHbAdtB24Hbwdw' + + 'B3EHcgdzB3QHdQd2B3cHeAd5B3oHewd8B30Hfgd/B4AHgQeCB4MHhAeFB4YHhweIB4kHigeLB4wHjQeOB48HkAeRB5IHkweUB5UHlgeXB5gHmQeaB5sHnAedB54HnwegB6EHogejB6QHpQemB6cHqAepB6oHqwesB60HrgevB7AHsQeyB7MHtAe1B7YHtwe4B7kHuge7' + + 'B7wHvQe+B78HwAfBB8IHwwfEB8UHxgfHB8gHyQfKB8sHzAfNB84HzwfQB9EH0gfTB9QH1QfWB9cH2AfZB9oH2wfcB90H3gffB+AH4QfiB+MH5AflB+YH5wfoB+kH6gfrB+wH7QfuB+8H8AfxB/IH8wf0B/UH9gf3B/gH+Qf6B/sH/Af9B/4H/wgACAEIAgCyALMIAwgE' + + 'CAUAtgC3AMQIBgC0ALUAxQgHAIIAwgCHAKsICAgJCAoICwgMCA0AxggOCA8IEAC+AL8IEQgSALwIEwgUCBUIFggXCBgIGQgaCBsIHAgdCB4IHwggCCEIIggjCCQIJQgmCCcIKAgpCCoIKwgsCC0ILggvCDAIMQgyAPcIMwg0CDUINgg3CDgIOQg6CDsIPAg9CD4IPwhA' + + 'CEEIQghDCEQIRQhGCEcISAhJCEoAjAhLCEwITQhOCE8IUAhRCFIIUwhUCFUIVghXCFgIWQhaCFsIXAhdAJgAqACaAJkA7wheCF8ApQCSCGAIYQCcAKcAjwhiCGMAlACVCGQIZQhmCGcIaAhpCGoIawhsCG0IbghvCHAIcQhyCHMIdAh1CHYIdwh4CHkIegh7CHwIfQh+' + + 'CH8IgAiBCIIIgwiECIUIhgiHCIgIiQiKCIsIjAiNCI4IjwiQCJEIkgiTCJQIlQiWCJcImAiZCJoImwicCJ0IngifCKAAuQihCKIIowikCKUIpginCKgIqQiqCKsIrAitCK4IrwiwCLEIsgizCLQItQi2CLcIuAi5CLoIuwi8CL0Ivgi/CMAIwQjCCMMIxAjFCMYIxwjI' + + 'CMkIygjLCMwIzQjOCM8I0AjRCNII0wjUCNUI1gjXCNgI2QjaCNsI3AjdCN4I3wjgCOEI4gjjCOQI5QjmCOcI6AjpCOoI6wjsCO0I7gjvCPAI8QjyCPMI9Aj1CPYI9wj4CPkI+gj7CPwI/Qj+CP8JAAkBCQIJAwkECQUJBgkHCQgJCQkKCQsJDAkNCQ4JDwkQCREJEgkT' + + 'CRQJFQkWCRcJGAkZCRoJGwkcCR0JHgkfCSAJIQkiCSMJJAklCSYJJwkoCSkJKgkrCSwJLQkuCS8JMAkxCTIJMwk0CTUJNgk3CTgJOQk6CTsJPAk9CT4JPwlACUEJQglDCUQJRQlGCUcJSAlJCUoJSwlMCU0JTglPCVAJUQlSCVMJVAlVCVYJVwlYCVkJWglbCVwJXQle' + + 'CV8JYAlhCWIJYwlkCWUJZglnCWgJaQlqCWsJbAltCW4JbwlwCXEJcglzCXQJdQl2CXcJeAl5CXoJewl8CX0Jfgl/CYAJgQmCCYMJhAmFCYYJhwmICYkJigmLCYwJjQmOCY8JkAmRCZIJkwmUCZUJlgmXCZgJmQmaCZsJnAmdCZ4JnwmgCaEJogmjCaQJpQmmCacJqAmp' + + 'CaoJqwmsCa0JrgmvCbAJsQmyCbMJtAm1CbYJtwm4CbkJugm7CbwJvQm+Cb8JwAnBCcIJwwnECcUJxgnHCcgJyQnKCcsJzAnNCc4JzwnQCdEJ0gnTCdQJ1QnWCdcJ2AnZCdoJ2wncCd0J3gnfCeAJ4QniCeMJ5AnlCeYJ5wnoCekJ6gnrCewJ7QnuCe8J8AnxCfIJ8wn0' + + 'CfUJ9gn3CfgJ+Qn6CfsJ/An9Cf4J/woACgEKAgoDCgQKBQoGCgcKCAoJCgoKCwoMCg0KDgoPChAKEQoSChMKFAoVChYKFwoYChkKGgobChwKHQoeCh8KIAohCiIKIwokCiUKJgonCigKKQoqCisKLAotCi4KLwowCjEKMgozCjQKNQo2CjcKOAo5CjoKOwo8Cj0KPgo/' + + 'CkAHdW5pMDBBMAd1bmkwMEFEB0FtYWNyb24HYW1hY3JvbgZBYnJldmUGYWJyZXZlB0FvZ29uZWsHYW9nb25lawtDY2lyY3VtZmxleAtjY2lyY3VtZmxleApDZG90YWNjZW50CmNkb3RhY2NlbnQGRGNhcm9uBmRjYXJvbgZEY3JvYXQHRW1hY3JvbgdlbWFjcm9uBkVi' + + 'cmV2ZQZlYnJldmUKRWRvdGFjY2VudAplZG90YWNjZW50B0VvZ29uZWsHZW9nb25lawZFY2Fyb24GZWNhcm9uC0djaXJjdW1mbGV4C2djaXJjdW1mbGV4Ckdkb3RhY2NlbnQKZ2RvdGFjY2VudAxHY29tbWFhY2NlbnQMZ2NvbW1hYWNjZW50C0hjaXJjdW1mbGV4C2hj' + + 'aXJjdW1mbGV4BEhiYXIEaGJhcgZJdGlsZGUGaXRpbGRlB0ltYWNyb24HaW1hY3JvbgZJYnJldmUGaWJyZXZlB0lvZ29uZWsHaW9nb25lawJJSgJpagtKY2lyY3VtZmxleAtqY2lyY3VtZmxleAxLY29tbWFhY2NlbnQMa2NvbW1hYWNjZW50DGtncmVlbmxhbmRpYwZM' + + 'YWN1dGUGbGFjdXRlDExjb21tYWFjY2VudAxsY29tbWFhY2NlbnQGTGNhcm9uBmxjYXJvbgRMZG90BGxkb3QGTmFjdXRlBm5hY3V0ZQxOY29tbWFhY2NlbnQMbmNvbW1hYWNjZW50Bk5jYXJvbgZuY2Fyb24LbmFwb3N0cm9waGUDRW5nA2VuZwdPbWFjcm9uB29tYWNy' + + 'b24GT2JyZXZlBm9icmV2ZQ1PaHVuZ2FydW1sYXV0DW9odW5nYXJ1bWxhdXQGUmFjdXRlBnJhY3V0ZQxSY29tbWFhY2NlbnQMcmNvbW1hYWNjZW50BlJjYXJvbgZyY2Fyb24GU2FjdXRlBnNhY3V0ZQtTY2lyY3VtZmxleAtzY2lyY3VtZmxleAxUY29tbWFhY2NlbnQM' + + 'dGNvbW1hYWNjZW50BlRjYXJvbgZ0Y2Fyb24EVGJhcgR0YmFyBlV0aWxkZQZ1dGlsZGUHVW1hY3Jvbgd1bWFjcm9uBlVicmV2ZQZ1YnJldmUFVXJpbmcFdXJpbmcNVWh1bmdhcnVtbGF1dA11aHVuZ2FydW1sYXV0B1VvZ29uZWsHdW9nb25lawtXY2lyY3VtZmxleAt3' + + 'Y2lyY3VtZmxleAtZY2lyY3VtZmxleAt5Y2lyY3VtZmxleAZaYWN1dGUGemFjdXRlClpkb3RhY2NlbnQKemRvdGFjY2VudAVsb25ncwd1bmkwMTgwB3VuaTAxODEHdW5pMDE4Mgd1bmkwMTgzB3VuaTAxODQHdW5pMDE4NQd1bmkwMTg2B3VuaTAxODcHdW5pMDE4OAd1' + + 'bmkwMTg5B3VuaTAxOEEHdW5pMDE4Qgd1bmkwMThDB3VuaTAxOEQHdW5pMDE4RQd1bmkwMThGB3VuaTAxOTAHdW5pMDE5MQd1bmkwMTkzB3VuaTAxOTQHdW5pMDE5NQd1bmkwMTk2B3VuaTAxOTcHdW5pMDE5OAd1bmkwMTk5B3VuaTAxOUEHdW5pMDE5Qgd1bmkwMTlD' + + 'B3VuaTAxOUQHdW5pMDE5RQd1bmkwMTlGBU9ob3JuBW9ob3JuB3VuaTAxQTIHdW5pMDFBMwd1bmkwMUE0B3VuaTAxQTUHdW5pMDFBNgd1bmkwMUE3B3VuaTAxQTgHdW5pMDFBOQd1bmkwMUFBB3VuaTAxQUIHdW5pMDFBQwd1bmkwMUFEB3VuaTAxQUUFVWhvcm4FdWhv' + + 'cm4HdW5pMDFCMQd1bmkwMUIyB3VuaTAxQjMHdW5pMDFCNAd1bmkwMUI1B3VuaTAxQjYHdW5pMDFCNwd1bmkwMUI4B3VuaTAxQjkHdW5pMDFCQQd1bmkwMUJCB3VuaTAxQkMHdW5pMDFCRAd1bmkwMUJFB3VuaTAxQkYHdW5pMDFDMAd1bmkwMUMxB3VuaTAxQzIHdW5p' + + 'MDFDMwd1bmkwMUM0B3VuaTAxQzUHdW5pMDFDNgd1bmkwMUM3B3VuaTAxQzgHdW5pMDFDOQd1bmkwMUNBB3VuaTAxQ0IHdW5pMDFDQwd1bmkwMUNEB3VuaTAxQ0UHdW5pMDFDRgd1bmkwMUQwB3VuaTAxRDEHdW5pMDFEMgd1bmkwMUQzB3VuaTAxRDQHdW5pMDFENQd1' + + 'bmkwMUQ2B3VuaTAxRDcHdW5pMDFEOAd1bmkwMUQ5B3VuaTAxREEHdW5pMDFEQgd1bmkwMURDB3VuaTAxREQHdW5pMDFERQd1bmkwMURGB3VuaTAxRTAHdW5pMDFFMQd1bmkwMUUyB3VuaTAxRTMHdW5pMDFFNAd1bmkwMUU1B3VuaTAxRTYHdW5pMDFFNwd1bmkwMUU4' + + 'B3VuaTAxRTkHdW5pMDFFQQd1bmkwMUVCB3VuaTAxRUMHdW5pMDFFRAd1bmkwMUVFB3VuaTAxRUYHdW5pMDFGMAd1bmkwMUYxB3VuaTAxRjIHdW5pMDFGMwd1bmkwMUY0B3VuaTAxRjUHdW5pMDFGNgd1bmkwMUY3B3VuaTAxRjgHdW5pMDFGOQpBcmluZ2FjdXRlCmFy' + + 'aW5nYWN1dGUHQUVhY3V0ZQdhZWFjdXRlC09zbGFzaGFjdXRlC29zbGFzaGFjdXRlB3VuaTAyMDAHdW5pMDIwMQd1bmkwMjAyB3VuaTAyMDMHdW5pMDIwNAd1bmkwMjA1B3VuaTAyMDYHdW5pMDIwNwd1bmkwMjA4B3VuaTAyMDkHdW5pMDIwQQd1bmkwMjBCB3VuaTAy' + + 'MEMHdW5pMDIwRAd1bmkwMjBFB3VuaTAyMEYHdW5pMDIxMAd1bmkwMjExB3VuaTAyMTIHdW5pMDIxMwd1bmkwMjE0B3VuaTAyMTUHdW5pMDIxNgd1bmkwMjE3DFNjb21tYWFjY2VudAxzY29tbWFhY2NlbnQHdW5pMDIxQQd1bmkwMjFCB3VuaTAyMUMHdW5pMDIxRAd1' + + 'bmkwMjFFB3VuaTAyMUYHdW5pMDIyMAd1bmkwMjIxB3VuaTAyMjIHdW5pMDIyMwd1bmkwMjI0B3VuaTAyMjUHdW5pMDIyNgd1bmkwMjI3B3VuaTAyMjgHdW5pMDIyOQd1bmkwMjJBB3VuaTAyMkIHdW5pMDIyQwd1bmkwMjJEB3VuaTAyMkUHdW5pMDIyRgd1bmkwMjMw' + + 'B3VuaTAyMzEHdW5pMDIzMgd1bmkwMjMzB3VuaTAyMzQHdW5pMDIzNQd1bmkwMjM2CWouZG90bGVzcwd1bmkwMjM4B3VuaTAyMzkHdW5pMDIzQQd1bmkwMjNCB3VuaTAyM0MHdW5pMDIzRAd1bmkwMjNFB3VuaTAyM0YHdW5pMDI0MAd1bmkwMjQxB3VuaTAyNDIHdW5p' + + 'MDI0Mwd1bmkwMjQ0B3VuaTAyNDUHdW5pMDI0Ngd1bmkwMjQ3B3VuaTAyNDgHdW5pMDI0OQd1bmkwMjRBB3VuaTAyNEIHdW5pMDI0Qwd1bmkwMjREB3VuaTAyNEUHdW5pMDI0Rgd1bmkwMjUwB3VuaTAyNTEHdW5pMDI1Mgd1bmkwMjUzB3VuaTAyNTQHdW5pMDI1NQd1' + + 'bmkwMjU2B3VuaTAyNTcHdW5pMDI1OAd1bmkwMjU5B3VuaTAyNUEHdW5pMDI1Qgd1bmkwMjVDB3VuaTAyNUQHdW5pMDI1RQd1bmkwMjVGB3VuaTAyNjAHdW5pMDI2MQd1bmkwMjYyB3VuaTAyNjMHdW5pMDI2NAd1bmkwMjY1B3VuaTAyNjYHdW5pMDI2Nwd1bmkwMjY4' + + 'B3VuaTAyNjkHdW5pMDI2QQd1bmkwMjZCB3VuaTAyNkMHdW5pMDI2RAd1bmkwMjZFB3VuaTAyNkYHdW5pMDI3MAd1bmkwMjcxB3VuaTAyNzIHdW5pMDI3Mwd1bmkwMjc0B3VuaTAyNzUHdW5pMDI3Ngd1bmkwMjc3B3VuaTAyNzgHdW5pMDI3OQd1bmkwMjdBB3VuaTAy' + + 'N0IHdW5pMDI3Qwd1bmkwMjdEB3VuaTAyN0UHdW5pMDI3Rgd1bmkwMjgwB3VuaTAyODEHdW5pMDI4Mgd1bmkwMjgzB3VuaTAyODQHdW5pMDI4NQd1bmkwMjg2B3VuaTAyODcHdW5pMDI4OAd1bmkwMjg5B3VuaTAyOEEHdW5pMDI4Qgd1bmkwMjhDB3VuaTAyOEQHdW5p' + + 'MDI4RQd1bmkwMjhGB3VuaTAyOTAHdW5pMDI5MQd1bmkwMjkyB3VuaTAyOTMHdW5pMDI5NAd1bmkwMjk1B3VuaTAyOTYHdW5pMDI5Nwd1bmkwMjk4B3VuaTAyOTkHdW5pMDI5QQd1bmkwMjlCB3VuaTAyOUMHdW5pMDI5RAd1bmkwMjlFB3VuaTAyOUYHdW5pMDJBMAd1' + + 'bmkwMkExB3VuaTAyQTIHdW5pMDJBMwd1bmkwMkE0B3VuaTAyQTUHdW5pMDJBNgd1bmkwMkE3B3VuaTAyQTgHdW5pMDJBOQd1bmkwMkFBB3VuaTAyQUIHdW5pMDJBQwd1bmkwMkFEB3VuaTAyQUUHdW5pMDJBRgd1bmkwMkIwB3VuaTAyQjEHdW5pMDJCMgd1bmkwMkIz' + + 'B3VuaTAyQjQHdW5pMDJCNQd1bmkwMkI2B3VuaTAyQjcHdW5pMDJCOAd1bmkwMkI5B3VuaTAyQkEHdW5pMDJCQgd1bmkwMkJDB3VuaTAyQkQHdW5pMDJCRQd1bmkwMkJGB3VuaTAyQzAHdW5pMDJDMQd1bmkwMkMyB3VuaTAyQzMHdW5pMDJDNAd1bmkwMkM1B3VuaTAy' + + 'QzgQZmlyc3R0b25lY2hpbmVzZQd1bmkwMkNBB3VuaTAyQ0IHdW5pMDJDQwd1bmkwMkNEB3VuaTAyQ0UHdW5pMDJDRgd1bmkwMkQwB3VuaTAyRDEHdW5pMDJEMgd1bmkwMkQzB3VuaTAyRDQHdW5pMDJENQd1bmkwMkQ2B3VuaTAyRDcHdW5pMDJERQd1bmkwMkRGB3Vu' + + 'aTAyRTAHdW5pMDJFMQd1bmkwMkUyB3VuaTAyRTMHdW5pMDJFNAd1bmkwMkU1B3VuaTAyRTYHdW5pMDJFNwd1bmkwMkU4B3VuaTAyRTkHdW5pMDJFQQd1bmkwMkVCB3VuaTAyRUMHdW5pMDJFRAd1bmkwMkVFB3VuaTAyRUYHdW5pMDJGMAd1bmkwMkYxB3VuaTAyRjIH' + + 'dW5pMDJGMwd1bmkwMkY0B3VuaTAyRjUHdW5pMDJGNgd1bmkwMkY3B3VuaTAyRjgHdW5pMDJGOQd1bmkwMkZBB3VuaTAyRkIHdW5pMDJGQwd1bmkwMkZEB3VuaTAyRkUHdW5pMDJGRglncmF2ZWNvbWIJYWN1dGVjb21iB3VuaTAzMDIJdGlsZGVjb21iB3VuaTAzMDQH' + + 'dW5pMDMwNQd1bmkwMzA2B3VuaTAzMDcHdW5pMDMwOA1ob29rYWJvdmVjb21iB3VuaTAzMEEHdW5pMDMwQgd1bmkwMzBDB3VuaTAzMEQHdW5pMDMwRQd1bmkwMzBGB3VuaTAzMTAHdW5pMDMxMQd1bmkwMzEyB3VuaTAzMTMHdW5pMDMxNAd1bmkwMzE1B3VuaTAzMTYH' + + 'dW5pMDMxNwd1bmkwMzE4B3VuaTAzMTkHdW5pMDMxQQd1bmkwMzFCB3VuaTAzMUMHdW5pMDMxRAd1bmkwMzFFB3VuaTAzMUYHdW5pMDMyMAd1bmkwMzIxB3VuaTAzMjIMZG90YmVsb3djb21iB3VuaTAzMjQHdW5pMDMyNQd1bmkwMzI2B3VuaTAzMjcHdW5pMDMyOAd1' + + 'bmkwMzI5B3VuaTAzMkEHdW5pMDMyQgd1bmkwMzJDB3VuaTAzMkQHdW5pMDMyRQd1bmkwMzJGB3VuaTAzMzAHdW5pMDMzMQd1bmkwMzMyB3VuaTAzMzMHdW5pMDMzNAd1bmkwMzM1B3VuaTAzMzYHdW5pMDMzNwd1bmkwMzM4B3VuaTAzMzkHdW5pMDMzQQd1bmkwMzNC' + + 'B3VuaTAzM0MHdW5pMDMzRAd1bmkwMzNFB3VuaTAzM0YHdW5pMDM0MAd1bmkwMzQxB3VuaTAzNDIHdW5pMDM0Mwd1bmkwMzQ0B3VuaTAzNDUHdW5pMDM0Ngd1bmkwMzQ3B3VuaTAzNDgHdW5pMDM0OQd1bmkwMzRBB3VuaTAzNEIHdW5pMDM0Qwd1bmkwMzREB3VuaTAz' + + 'NEUHdW5pMDM0Rgd1bmkwMzUwB3VuaTAzNTEHdW5pMDM1Mgd1bmkwMzUzB3VuaTAzNTQHdW5pMDM1NQd1bmkwMzU2B3VuaTAzNTcHdW5pMDM1OAd1bmkwMzU5B3VuaTAzNUEHdW5pMDM1Qgd1bmkwMzVDB3VuaTAzNUQHdW5pMDM1RQd1bmkwMzVGB3VuaTAzNjAHdW5p' + + 'MDM2MQd1bmkwMzYyB3VuaTAzNjMHdW5pMDM2NAd1bmkwMzY1B3VuaTAzNjYHdW5pMDM2Nwd1bmkwMzY4B3VuaTAzNjkHdW5pMDM2QQd1bmkwMzZCB3VuaTAzNkMHdW5pMDM2RAd1bmkwMzZFB3VuaTAzNkYHdW5pMDM3NAd1bmkwMzc1B3VuaTAzN0EHdW5pMDM3Qgd1' + + 'bmkwMzdDB3VuaTAzN0QHdW5pMDM3RQV0b25vcw1kaWVyZXNpc3Rvbm9zCkFscGhhdG9ub3MJYW5vdGVsZWlhDEVwc2lsb250b25vcwhFdGF0b25vcwlJb3RhdG9ub3MMT21pY3JvbnRvbm9zDFVwc2lsb250b25vcwpPbWVnYXRvbm9zEWlvdGFkaWVyZXNpc3Rvbm9z' + + 'BUFscGhhBEJldGEFR2FtbWEKRGVsdGFncmVlawdFcHNpbG9uBFpldGEDRXRhBVRoZXRhBElvdGEFS2FwcGEGTGFtYmRhAk11Ak51AlhpB09taWNyb24CUGkDUmhvBVNpZ21hA1RhdQdVcHNpbG9uA1BoaQNDaGkDUHNpCk9tZWdhZ3JlZWsMSW90YWRpZXJlc2lzD1Vw' + + 'c2lsb25kaWVyZXNpcwphbHBoYXRvbm9zDGVwc2lsb250b25vcwhldGF0b25vcwlpb3RhdG9ub3MUdXBzaWxvbmRpZXJlc2lzdG9ub3MFYWxwaGEEYmV0YQVnYW1tYQVkZWx0YQdlcHNpbG9uBHpldGEDZXRhBXRoZXRhBGlvdGEFa2FwcGEGbGFtYmRhB211Z3JlZWsC' + + 'bnUCeGkHb21pY3JvbgNyaG8Gc2lnbWExBXNpZ21hA3RhdQd1cHNpbG9uA3BoaQNjaGkDcHNpBW9tZWdhDGlvdGFkaWVyZXNpcw91cHNpbG9uZGllcmVzaXMMb21pY3JvbnRvbm9zDHVwc2lsb250b25vcwpvbWVnYXRvbm9zB3VuaTAzRDAHdW5pMDNEMQd1bmkwM0Qy' + + 'B3VuaTAzRDMHdW5pMDNENAd1bmkwM0Q1B3VuaTAzRDYHdW5pMDNENwd1bmkwM0Q4B3VuaTAzRDkHdW5pMDNEQQd1bmkwM0RCB3VuaTAzREMHdW5pMDNERAd1bmkwM0RFB3VuaTAzREYHdW5pMDNFMAd1bmkwM0UxB3VuaTAzRTIHdW5pMDNFMwd1bmkwM0U0B3VuaTAz' + + 'RTUHdW5pMDNFNgd1bmkwM0U3B3VuaTAzRTgHdW5pMDNFOQd1bmkwM0VBB3VuaTAzRUIHdW5pMDNFQwd1bmkwM0VEB3VuaTAzRUUHdW5pMDNFRgd1bmkwM0YwB3VuaTAzRjEHdW5pMDNGMgd1bmkwM0YzB3VuaTAzRjQHdW5pMDNGNQd1bmkwM0Y2B3VuaTAzRjcHdW5p' + + 'MDNGOAd1bmkwM0Y5B3VuaTAzRkEHdW5pMDNGQgd1bmkwM0ZDB3VuaTAzRkQHdW5pMDNGRQd1bmkwM0ZGB3VuaTA0MDAHdW5pMDQwMQd1bmkwNDAyB3VuaTA0MDMHdW5pMDQwNAd1bmkwNDA1B3VuaTA0MDYHdW5pMDQwNwd1bmkwNDA4B3VuaTA0MDkHdW5pMDQwQQd1' + + 'bmkwNDBCB3VuaTA0MEMHdW5pMDQwRAd1bmkwNDBFB3VuaTA0MEYHdW5pMDQxMAd1bmkwNDExB3VuaTA0MTIHdW5pMDQxMwd1bmkwNDE0B3VuaTA0MTUHdW5pMDQxNgd1bmkwNDE3B3VuaTA0MTgHdW5pMDQxOQd1bmkwNDFBB3VuaTA0MUIHdW5pMDQxQwd1bmkwNDFE' + + 'B3VuaTA0MUUHdW5pMDQxRgd1bmkwNDIwB3VuaTA0MjEHdW5pMDQyMgd1bmkwNDIzB3VuaTA0MjQHdW5pMDQyNQd1bmkwNDI2B3VuaTA0MjcHdW5pMDQyOAd1bmkwNDI5B3VuaTA0MkEHdW5pMDQyQgd1bmkwNDJDB3VuaTA0MkQHdW5pMDQyRQd1bmkwNDJGB3VuaTA0' + + 'MzAHdW5pMDQzMQd1bmkwNDMyB3VuaTA0MzMHdW5pMDQzNAd1bmkwNDM1B3VuaTA0MzYHdW5pMDQzNwd1bmkwNDM4B3VuaTA0MzkHdW5pMDQzQQd1bmkwNDNCB3VuaTA0M0MHdW5pMDQzRAd1bmkwNDNFB3VuaTA0M0YHdW5pMDQ0MAd1bmkwNDQxB3VuaTA0NDIHdW5p' + + 'MDQ0Mwd1bmkwNDQ0B3VuaTA0NDUHdW5pMDQ0Ngd1bmkwNDQ3B3VuaTA0NDgHdW5pMDQ0OQd1bmkwNDRBB3VuaTA0NEIHdW5pMDQ0Qwd1bmkwNDREB3VuaTA0NEUHdW5pMDQ0Rgd1bmkwNDUwB3VuaTA0NTEHdW5pMDQ1Mgd1bmkwNDUzB3VuaTA0NTQHdW5pMDQ1NQd1' + + 'bmkwNDU2B3VuaTA0NTcHdW5pMDQ1OAd1bmkwNDU5B3VuaTA0NUEHdW5pMDQ1Qgd1bmkwNDVDB3VuaTA0NUQHdW5pMDQ1RQd1bmkwNDVGB3VuaTA0NjAHdW5pMDQ2MQd1bmkwNDYyB3VuaTA0NjMHdW5pMDQ2NAd1bmkwNDY1B3VuaTA0NjYHdW5pMDQ2Nwd1bmkwNDY4' + + 'B3VuaTA0NjkHdW5pMDQ2QQd1bmkwNDZCB3VuaTA0NkMHdW5pMDQ2RAd1bmkwNDZFB3VuaTA0NkYHdW5pMDQ3MAd1bmkwNDcxB3VuaTA0NzIHdW5pMDQ3Mwd1bmkwNDc0B3VuaTA0NzUHdW5pMDQ3Ngd1bmkwNDc3B3VuaTA0NzgHdW5pMDQ3OQd1bmkwNDdBB3VuaTA0' + + 'N0IHdW5pMDQ3Qwd1bmkwNDdEB3VuaTA0N0UHdW5pMDQ3Rgd1bmkwNDgwB3VuaTA0ODEHdW5pMDQ4Mgd1bmkwNDgzB3VuaTA0ODQHdW5pMDQ4NQd1bmkwNDg2B3VuaTA0ODcHdW5pMDQ4OAd1bmkwNDg5B3VuaTA0OEEHdW5pMDQ4Qgd1bmkwNDhDB3VuaTA0OEQHdW5p' + + 'MDQ4RQd1bmkwNDhGB3VuaTA0OTAHdW5pMDQ5MQd1bmkwNDkyB3VuaTA0OTMHdW5pMDQ5NAd1bmkwNDk1B3VuaTA0OTYHdW5pMDQ5Nwd1bmkwNDk4B3VuaTA0OTkHdW5pMDQ5QQd1bmkwNDlCB3VuaTA0OUMHdW5pMDQ5RAd1bmkwNDlFB3VuaTA0OUYHdW5pMDRBMAd1' + + 'bmkwNEExB3VuaTA0QTIHdW5pMDRBMwd1bmkwNEE0B3VuaTA0QTUHdW5pMDRBNgd1bmkwNEE3B3VuaTA0QTgHdW5pMDRBOQd1bmkwNEFBB3VuaTA0QUIHdW5pMDRBQwd1bmkwNEFEB3VuaTA0QUUHdW5pMDRBRgd1bmkwNEIwB3VuaTA0QjEHdW5pMDRCMgd1bmkwNEIz' + + 'B3VuaTA0QjQHdW5pMDRCNQd1bmkwNEI2B3VuaTA0QjcHdW5pMDRCOAd1bmkwNEI5B3VuaTA0QkEHdW5pMDRCQgd1bmkwNEJDB3VuaTA0QkQHdW5pMDRCRQd1bmkwNEJGB3VuaTA0QzAHdW5pMDRDMQd1bmkwNEMyB3VuaTA0QzMHdW5pMDRDNAd1bmkwNEM1B3VuaTA0' + + 'QzYHdW5pMDRDNwd1bmkwNEM4B3VuaTA0QzkHdW5pMDRDQQd1bmkwNENCB3VuaTA0Q0MHdW5pMDRDRAd1bmkwNENFB3VuaTA0Q0YHdW5pMDREMAd1bmkwNEQxB3VuaTA0RDIHdW5pMDREMwd1bmkwNEQ0B3VuaTA0RDUHdW5pMDRENgd1bmkwNEQ3B3VuaTA0RDgJYWZp' + + 'aTEwODQ2B3VuaTA0REEHdW5pMDREQgd1bmkwNERDB3VuaTA0REQHdW5pMDRERQd1bmkwNERGB3VuaTA0RTAHdW5pMDRFMQd1bmkwNEUyB3VuaTA0RTMHdW5pMDRFNAd1bmkwNEU1B3VuaTA0RTYHdW5pMDRFNwd1bmkwNEU4B3VuaTA0RTkHdW5pMDRFQQd1bmkwNEVC' + + 'B3VuaTA0RUMHdW5pMDRFRAd1bmkwNEVFB3VuaTA0RUYHdW5pMDRGMAd1bmkwNEYxB3VuaTA0RjIHdW5pMDRGMwd1bmkwNEY0B3VuaTA0RjUHdW5pMDRGNgd1bmkwNEY3B3VuaTA0RjgHdW5pMDRGOQd1bmkwNEZBB3VuaTA0RkIHdW5pMDRGQwd1bmkwNEZEB3VuaTA0' + + 'RkUHdW5pMDRGRgd1bmkwNTAwB3VuaTA1MDEHdW5pMDUwMgd1bmkwNTAzB3VuaTA1MDQHdW5pMDUwNQd1bmkwNTA2B3VuaTA1MDcHdW5pMDUwOAd1bmkwNTA5B3VuaTA1MEEHdW5pMDUwQgd1bmkwNTBDB3VuaTA1MEQHdW5pMDUwRQd1bmkwNTBGB3VuaTA1MTAHdW5p' + + 'MDUxMQd1bmkwNTEyB3VuaTA1MTMHdW5pMDUxQQd1bmkwNTFCB3VuaTA1MUMHdW5pMDUxRAd1bmkwNTkxB3VuaTA1OTIHdW5pMDU5Mwd1bmkwNTk0B3VuaTA1OTUHdW5pMDU5Ngd1bmkwNTk3B3VuaTA1OTgHdW5pMDU5OQd1bmkwNTlBB3VuaTA1OUIHdW5pMDU5Qwd1' + + 'bmkwNTlEB3VuaTA1OUUHdW5pMDU5Rgd1bmkwNUEwB3VuaTA1QTEHdW5pMDVBMgd1bmkwNUEzB3VuaTA1QTQHdW5pMDVBNQd1bmkwNUE2B3VuaTA1QTcHdW5pMDVBOAd1bmkwNUE5B3VuaTA1QUEHdW5pMDVBQgd1bmkwNUFDB3VuaTA1QUQHdW5pMDVBRQd1bmkwNUFG' + + 'BXNoZXZhCmhhdGFmc2Vnb2wKaGF0YWZwYXRhaAtoYXRhZnFhbWF0cwVoaXJpcQV0c2VyZQVzZWdvbAVwYXRhaAZxYW1hdHMFaG9sYW0HdW5pMDVCQQZxdWJ1dHMGZGFnZXNoBW1ldGVnBW1hcWFmBHJhZmUFcGFzZXEHc2hpbmRvdAZzaW5kb3QIc29mcGFzdXEJdXBw' + + 'ZXJfZG90CGxvd2VyZG90B3VuaTA1QzYLcWFtYXRzcWF0YW4EYWxlZgNiZXQFZ2ltZWwFZGFsZXQCaGUDdmF2BXpheWluA2hldAN0ZXQDeW9kCGZpbmFsa2FmA2thZgVsYW1lZAhmaW5hbG1lbQNtZW0IZmluYWxudW4DbnVuBnNhbWVraARheWluB2ZpbmFscGUCcGUK' + + 'ZmluYWx0c2FkaQV0c2FkaQNxb2YEcmVzaARzaGluA3RhdgZ2YXZ2YXYGdmF2eW9kBnlvZHlvZAZnZXJlc2gJZ2Vyc2hheWltB3VuaTFEMDAHdW5pMUQwMQd1bmkxRDAyB3VuaTFEMDMHdW5pMUQwNAd1bmkxRDA1B3VuaTFEMDYHdW5pMUQwNwd1bmkxRDA4B3VuaTFE' + + 'MDkHdW5pMUQwQQd1bmkxRDBCB3VuaTFEMEMHdW5pMUQwRAd1bmkxRDBFB3VuaTFEMEYHdW5pMUQxMAd1bmkxRDExB3VuaTFEMTIHdW5pMUQxMwd1bmkxRDE0B3VuaTFEMTUHdW5pMUQxNgd1bmkxRDE3B3VuaTFEMTgHdW5pMUQxOQd1bmkxRDFBB3VuaTFEMUIHdW5p' + + 'MUQxQwd1bmkxRDFEB3VuaTFEMUUHdW5pMUQxRgd1bmkxRDIwB3VuaTFEMjEHdW5pMUQyMgd1bmkxRDIzB3VuaTFEMjQHdW5pMUQyNQd1bmkxRDI2B3VuaTFEMjcHdW5pMUQyOAd1bmkxRDI5B3VuaTFEMkEHdW5pMUQyQgd1bmkxRDJDB3VuaTFEMkQHdW5pMUQyRQd1' + + 'bmkxRDJGB3VuaTFEMzAHdW5pMUQzMQd1bmkxRDMyB3VuaTFEMzMHdW5pMUQzNAd1bmkxRDM1B3VuaTFEMzYHdW5pMUQzNwd1bmkxRDM4B3VuaTFEMzkHdW5pMUQzQQd1bmkxRDNCB3VuaTFEM0MHdW5pMUQzRAd1bmkxRDNFB3VuaTFEM0YHdW5pMUQ0MAd1bmkxRDQx' + + 'B3VuaTFENDIHdW5pMUQ0Mwd1bmkxRDQ0B3VuaTFENDUHdW5pMUQ0Ngd1bmkxRDQ3B3VuaTFENDgHdW5pMUQ0OQd1bmkxRDRBB3VuaTFENEIHdW5pMUQ0Qwd1bmkxRDREB3VuaTFENEUHdW5pMUQ0Rgd1bmkxRDUwB3VuaTFENTEHdW5pMUQ1Mgd1bmkxRDUzB3VuaTFE' + + 'NTQHdW5pMUQ1NQd1bmkxRDU2B3VuaTFENTcHdW5pMUQ1OAd1bmkxRDU5B3VuaTFENUEHdW5pMUQ1Qgd1bmkxRDVDB3VuaTFENUQHdW5pMUQ1RQd1bmkxRDVGB3VuaTFENjAHdW5pMUQ2MQd1bmkxRDYyB3VuaTFENjMHdW5pMUQ2NAd1bmkxRDY1B3VuaTFENjYHdW5p' + + 'MUQ2Nwd1bmkxRDY4B3VuaTFENjkHdW5pMUQ2QQd1bmkxRDZCB3VuaTFENkMHdW5pMUQ2RAd1bmkxRDZFB3VuaTFENkYHdW5pMUQ3MAd1bmkxRDcxB3VuaTFENzIHdW5pMUQ3Mwd1bmkxRDc0B3VuaTFENzUHdW5pMUQ3Ngd1bmkxRDc3B3VuaTFENzgHdW5pMUQ3OQd1' + + 'bmkxRDdBB3VuaTFEN0IHdW5pMUQ3Qwd1bmkxRDdEB3VuaTFEN0UHdW5pMUQ3Rgd1bmkxRDgwB3VuaTFEODEHdW5pMUQ4Mgd1bmkxRDgzB3VuaTFEODQHdW5pMUQ4NQd1bmkxRDg2B3VuaTFEODcHdW5pMUQ4OAd1bmkxRDg5B3VuaTFEOEEHdW5pMUQ4Qgd1bmkxRDhD' + + 'B3VuaTFEOEQHdW5pMUQ4RQd1bmkxRDhGB3VuaTFEOTAHdW5pMUQ5MQd1bmkxRDkyB3VuaTFEOTMHdW5pMUQ5NAd1bmkxRDk1B3VuaTFEOTYHdW5pMUQ5Nwd1bmkxRDk4B3VuaTFEOTkHdW5pMUQ5QQd1bmkxRDlCB3VuaTFEOUMHdW5pMUQ5RAd1bmkxRDlFB3VuaTFE' + + 'OUYHdW5pMURBMAd1bmkxREExB3VuaTFEQTIHdW5pMURBMwd1bmkxREE0B3VuaTFEQTUHdW5pMURBNgd1bmkxREE3B3VuaTFEQTgHdW5pMURBOQd1bmkxREFBB3VuaTFEQUIHdW5pMURBQwd1bmkxREFEB3VuaTFEQUUHdW5pMURBRgd1bmkxREIwB3VuaTFEQjEHdW5p' + + 'MURCMgd1bmkxREIzB3VuaTFEQjQHdW5pMURCNQd1bmkxREI2B3VuaTFEQjcHdW5pMURCOAd1bmkxREI5B3VuaTFEQkEHdW5pMURCQgd1bmkxREJDB3VuaTFEQkQHdW5pMURCRQd1bmkxREJGB3VuaTFEQzAHdW5pMURDMQd1bmkxREMyB3VuaTFEQzMHdW5pMURDNAd1' + + 'bmkxREM1B3VuaTFEQzYHdW5pMURDNwd1bmkxREM4B3VuaTFEQzkHdW5pMURDQQd1bmkxREZFB3VuaTFERkYHdW5pMUUwMAd1bmkxRTAxB3VuaTFFMDIHdW5pMUUwMwd1bmkxRTA0B3VuaTFFMDUHdW5pMUUwNgd1bmkxRTA3B3VuaTFFMDgHdW5pMUUwOQd1bmkxRTBB' + + 'B3VuaTFFMEIHdW5pMUUwQwd1bmkxRTBEB3VuaTFFMEUHdW5pMUUwRgd1bmkxRTEwB3VuaTFFMTEHdW5pMUUxMgd1bmkxRTEzB3VuaTFFMTQHdW5pMUUxNQd1bmkxRTE2B3VuaTFFMTcHdW5pMUUxOAd1bmkxRTE5B3VuaTFFMUEHdW5pMUUxQgd1bmkxRTFDB3VuaTFF' + + 'MUQHdW5pMUUxRQd1bmkxRTFGB3VuaTFFMjAHdW5pMUUyMQd1bmkxRTIyB3VuaTFFMjMHdW5pMUUyNAd1bmkxRTI1B3VuaTFFMjYHdW5pMUUyNwd1bmkxRTI4B3VuaTFFMjkHdW5pMUUyQQd1bmkxRTJCB3VuaTFFMkMHdW5pMUUyRAd1bmkxRTJFB3VuaTFFMkYHdW5p' + + 'MUUzMAd1bmkxRTMxB3VuaTFFMzIHdW5pMUUzMwd1bmkxRTM0B3VuaTFFMzUHdW5pMUUzNgd1bmkxRTM3B3VuaTFFMzgHdW5pMUUzOQd1bmkxRTNBB3VuaTFFM0IHdW5pMUUzQwd1bmkxRTNEB3VuaTFFM0UHdW5pMUUzRgd1bmkxRTQwB3VuaTFFNDEHdW5pMUU0Mgd1' + + 'bmkxRTQzB3VuaTFFNDQHdW5pMUU0NQd1bmkxRTQ2B3VuaTFFNDcHdW5pMUU0OAd1bmkxRTQ5B3VuaTFFNEEHdW5pMUU0Qgd1bmkxRTRDB3VuaTFFNEQHdW5pMUU0RQd1bmkxRTRGB3VuaTFFNTAHdW5pMUU1MQd1bmkxRTUyB3VuaTFFNTMHdW5pMUU1NAd1bmkxRTU1' + + 'B3VuaTFFNTYHdW5pMUU1Nwd1bmkxRTU4B3VuaTFFNTkHdW5pMUU1QQd1bmkxRTVCB3VuaTFFNUMHdW5pMUU1RAd1bmkxRTVFB3VuaTFFNUYHdW5pMUU2MAd1bmkxRTYxB3VuaTFFNjIHdW5pMUU2Mwd1bmkxRTY0B3VuaTFFNjUHdW5pMUU2Ngd1bmkxRTY3B3VuaTFF' + + 'NjgHdW5pMUU2OQd1bmkxRTZBB3VuaTFFNkIHdW5pMUU2Qwd1bmkxRTZEB3VuaTFFNkUHdW5pMUU2Rgd1bmkxRTcwB3VuaTFFNzEHdW5pMUU3Mgd1bmkxRTczB3VuaTFFNzQHdW5pMUU3NQd1bmkxRTc2B3VuaTFFNzcHdW5pMUU3OAd1bmkxRTc5B3VuaTFFN0EHdW5p' + + 'MUU3Qgd1bmkxRTdDB3VuaTFFN0QHdW5pMUU3RQd1bmkxRTdGBldncmF2ZQZ3Z3JhdmUGV2FjdXRlBndhY3V0ZQlXZGllcmVzaXMJd2RpZXJlc2lzB3VuaTFFODYHdW5pMUU4Nwd1bmkxRTg4B3VuaTFFODkHdW5pMUU4QQd1bmkxRThCB3VuaTFFOEMHdW5pMUU4RAd1' + + 'bmkxRThFB3VuaTFFOEYHdW5pMUU5MAd1bmkxRTkxB3VuaTFFOTIHdW5pMUU5Mwd1bmkxRTk0B3VuaTFFOTUHdW5pMUU5Ngd1bmkxRTk3B3VuaTFFOTgHdW5pMUU5OQd1bmkxRTlBB3VuaTFFOUIHdW5pMUU5RQlBZG90YmVsb3cJYWRvdGJlbG93CkFob29rYWJvdmUK' + + 'YWhvb2thYm92ZRBBY2lyY3VtZmxleGFjdXRlEGFjaXJjdW1mbGV4YWN1dGUQQWNpcmN1bWZsZXhncmF2ZRBhY2lyY3VtZmxleGdyYXZlFEFjaXJjdW1mbGV4aG9va2Fib3ZlFGFjaXJjdW1mbGV4aG9va2Fib3ZlEEFjaXJjdW1mbGV4dGlsZGUQYWNpcmN1bWZsZXh0' + + 'aWxkZRNBY2lyY3VtZmxleGRvdGJlbG93E2FjaXJjdW1mbGV4ZG90YmVsb3cLQWJyZXZlYWN1dGULYWJyZXZlYWN1dGULQWJyZXZlZ3JhdmULYWJyZXZlZ3JhdmUPQWJyZXZlaG9va2Fib3ZlD2FicmV2ZWhvb2thYm92ZQtBYnJldmV0aWxkZQthYnJldmV0aWxkZQ5B' + + 'YnJldmVkb3RiZWxvdw5hYnJldmVkb3RiZWxvdwlFZG90YmVsb3cJZWRvdGJlbG93CkVob29rYWJvdmUKZWhvb2thYm92ZQZFdGlsZGUGZXRpbGRlEEVjaXJjdW1mbGV4YWN1dGUQZWNpcmN1bWZsZXhhY3V0ZRBFY2lyY3VtZmxleGdyYXZlEGVjaXJjdW1mbGV4Z3Jh' + + 'dmUURWNpcmN1bWZsZXhob29rYWJvdmUUZWNpcmN1bWZsZXhob29rYWJvdmUQRWNpcmN1bWZsZXh0aWxkZRBlY2lyY3VtZmxleHRpbGRlE0VjaXJjdW1mbGV4ZG90YmVsb3cTZWNpcmN1bWZsZXhkb3RiZWxvdwpJaG9va2Fib3ZlCmlob29rYWJvdmUJSWRvdGJlbG93' + + 'CWlkb3RiZWxvdwlPZG90YmVsb3cJb2RvdGJlbG93Ck9ob29rYWJvdmUKb2hvb2thYm92ZRBPY2lyY3VtZmxleGFjdXRlEG9jaXJjdW1mbGV4YWN1dGUQT2NpcmN1bWZsZXhncmF2ZRBvY2lyY3VtZmxleGdyYXZlFE9jaXJjdW1mbGV4aG9va2Fib3ZlFG9jaXJjdW1m' + + 'bGV4aG9va2Fib3ZlEE9jaXJjdW1mbGV4dGlsZGUQb2NpcmN1bWZsZXh0aWxkZRNPY2lyY3VtZmxleGRvdGJlbG93E29jaXJjdW1mbGV4ZG90YmVsb3cKT2hvcm5hY3V0ZQpvaG9ybmFjdXRlCk9ob3JuZ3JhdmUKb2hvcm5ncmF2ZQ5PaG9ybmhvb2thYm92ZQ5vaG9y' + + 'bmhvb2thYm92ZQpPaG9ybnRpbGRlCm9ob3JudGlsZGUNT2hvcm5kb3RiZWxvdw1vaG9ybmRvdGJlbG93CVVkb3RiZWxvdwl1ZG90YmVsb3cKVWhvb2thYm92ZQp1aG9va2Fib3ZlClVob3JuYWN1dGUKdWhvcm5hY3V0ZQpVaG9ybmdyYXZlCnVob3JuZ3JhdmUOVWhv' + + 'cm5ob29rYWJvdmUOdWhvcm5ob29rYWJvdmUKVWhvcm50aWxkZQp1aG9ybnRpbGRlDVVob3JuZG90YmVsb3cNdWhvcm5kb3RiZWxvdwZZZ3JhdmUGeWdyYXZlCVlkb3RiZWxvdwl5ZG90YmVsb3cKWWhvb2thYm92ZQp5aG9va2Fib3ZlBll0aWxkZQZ5dGlsZGUHdW5p' + + 'MUYwMAd1bmkxRjAxB3VuaTFGMDIHdW5pMUYwMwd1bmkxRjA0B3VuaTFGMDUHdW5pMUYwNgd1bmkxRjA3B3VuaTFGMDgHdW5pMUYwOQd1bmkxRjBBB3VuaTFGMEIHdW5pMUYwQwd1bmkxRjBEB3VuaTFGMEUHdW5pMUYwRgd1bmkxRjEwB3VuaTFGMTEHdW5pMUYxMgd1' + + 'bmkxRjEzB3VuaTFGMTQHdW5pMUYxNQd1bmkxRjE4B3VuaTFGMTkHdW5pMUYxQQd1bmkxRjFCB3VuaTFGMUMHdW5pMUYxRAd1bmkxRjIwB3VuaTFGMjEHdW5pMUYyMgd1bmkxRjIzB3VuaTFGMjQHdW5pMUYyNQd1bmkxRjI2B3VuaTFGMjcHdW5pMUYyOAd1bmkxRjI5' + + 'B3VuaTFGMkEHdW5pMUYyQgd1bmkxRjJDB3VuaTFGMkQHdW5pMUYyRQd1bmkxRjJGB3VuaTFGMzAHdW5pMUYzMQd1bmkxRjMyB3VuaTFGMzMHdW5pMUYzNAd1bmkxRjM1B3VuaTFGMzYHdW5pMUYzNwd1bmkxRjM4B3VuaTFGMzkHdW5pMUYzQQd1bmkxRjNCB3VuaTFG' + + 'M0MHdW5pMUYzRAd1bmkxRjNFB3VuaTFGM0YHdW5pMUY0MAd1bmkxRjQxB3VuaTFGNDIHdW5pMUY0Mwd1bmkxRjQ0B3VuaTFGNDUHdW5pMUY0OAd1bmkxRjQ5B3VuaTFGNEEHdW5pMUY0Qgd1bmkxRjRDB3VuaTFGNEQHdW5pMUY1MAd1bmkxRjUxB3VuaTFGNTIHdW5p' + + 'MUY1Mwd1bmkxRjU0B3VuaTFGNTUHdW5pMUY1Ngd1bmkxRjU3B3VuaTFGNTkHdW5pMUY1Qgd1bmkxRjVEB3VuaTFGNUYHdW5pMUY2MAd1bmkxRjYxB3VuaTFGNjIHdW5pMUY2Mwd1bmkxRjY0B3VuaTFGNjUHdW5pMUY2Ngd1bmkxRjY3B3VuaTFGNjgHdW5pMUY2OQd1' + + 'bmkxRjZBB3VuaTFGNkIHdW5pMUY2Qwd1bmkxRjZEB3VuaTFGNkUHdW5pMUY2Rgd1bmkxRjcwB3VuaTFGNzEHdW5pMUY3Mgd1bmkxRjczB3VuaTFGNzQHdW5pMUY3NQd1bmkxRjc2B3VuaTFGNzcHdW5pMUY3OAd1bmkxRjc5B3VuaTFGN0EHdW5pMUY3Qgd1bmkxRjdD' + + 'B3VuaTFGN0QHdW5pMUY4MAd1bmkxRjgxB3VuaTFGODIHdW5pMUY4Mwd1bmkxRjg0B3VuaTFGODUHdW5pMUY4Ngd1bmkxRjg3B3VuaTFGODgHdW5pMUY4OQd1bmkxRjhBB3VuaTFGOEIHdW5pMUY4Qwd1bmkxRjhEB3VuaTFGOEUHdW5pMUY4Rgd1bmkxRjkwB3VuaTFG' + + 'OTEHdW5pMUY5Mgd1bmkxRjkzB3VuaTFGOTQHdW5pMUY5NQd1bmkxRjk2B3VuaTFGOTcHdW5pMUY5OAd1bmkxRjk5B3VuaTFGOUEHdW5pMUY5Qgd1bmkxRjlDB3VuaTFGOUQHdW5pMUY5RQd1bmkxRjlGB3VuaTFGQTAHdW5pMUZBMQd1bmkxRkEyB3VuaTFGQTMHdW5p' + + 'MUZBNAd1bmkxRkE1B3VuaTFGQTYHdW5pMUZBNwd1bmkxRkE4B3VuaTFGQTkHdW5pMUZBQQd1bmkxRkFCB3VuaTFGQUMHdW5pMUZBRAd1bmkxRkFFB3VuaTFGQUYHdW5pMUZCMAd1bmkxRkIxB3VuaTFGQjIHdW5pMUZCMwd1bmkxRkI0B3VuaTFGQjYHdW5pMUZCNwd1' + + 'bmkxRkI4B3VuaTFGQjkHdW5pMUZCQQd1bmkxRkJCB3VuaTFGQkMHdW5pMUZCRAd1bmkxRkJFB3VuaTFGQkYHdW5pMUZDMAd1bmkxRkMxB3VuaTFGQzIHdW5pMUZDMwd1bmkxRkM0B3VuaTFGQzYHdW5pMUZDNwd1bmkxRkM4B3VuaTFGQzkHdW5pMUZDQQd1bmkxRkNC' + + 'B3VuaTFGQ0MHdW5pMUZDRAd1bmkxRkNFB3VuaTFGQ0YHdW5pMUZEMAd1bmkxRkQxB3VuaTFGRDIHdW5pMUZEMwd1bmkxRkQ2B3VuaTFGRDcHdW5pMUZEOAd1bmkxRkQ5B3VuaTFGREEHdW5pMUZEQgd1bmkxRkREB3VuaTFGREUHdW5pMUZERgd1bmkxRkUwB3VuaTFG' + + 'RTEHdW5pMUZFMgd1bmkxRkUzB3VuaTFGRTQHdW5pMUZFNQd1bmkxRkU2B3VuaTFGRTcHdW5pMUZFOAd1bmkxRkU5B3VuaTFGRUEHdW5pMUZFQgd1bmkxRkVDB3VuaTFGRUQHdW5pMUZFRQd1bmkxRkVGB3VuaTFGRjIHdW5pMUZGMwd1bmkxRkY0B3VuaTFGRjYHdW5p' + + 'MUZGNwd1bmkxRkY4B3VuaTFGRjkHdW5pMUZGQQd1bmkxRkZCB3VuaTFGRkMHdW5pMUZGRAd1bmkxRkZFB3VuaTIwMDAHdW5pMjAwMQd1bmkyMDAyB3VuaTIwMDMHdW5pMjAwNAd1bmkyMDA1B3VuaTIwMDYHdW5pMjAwNwd1bmkyMDA4B3VuaTIwMDkHdW5pMjAwQQd1' + + 'bmkyMDBCB3VuaTIwMEMHdW5pMjAwRAd1bmkyMDBFB3VuaTIwMEYHdW5pMjAxMAd1bmkyMDEyB3VuaTIwMTUHdW5pMjAxNg11bmRlcnNjb3JlZGJsDXF1b3RlcmV2ZXJzZWQHdW5pMjAxRgd1bmkyMDJBB3VuaTIwMkIHdW5pMjAyQwd1bmkyMDJEB3VuaTIwMkUHdW5p' + + 'MjAyRgZtaW51dGUGc2Vjb25kB3VuaTIwMzQJZXhjbGFtZGJsCXJhZGljYWxleAd1bmkyMDVFB3VuaTIwNkEHdW5pMjA2Qgd1bmkyMDZDB3VuaTIwNkQHdW5pMjA2RQd1bmkyMDZGCWZvdXIuc3VwcwlmaXZlLnN1cHMIc2l4LnN1cHMKc2V2ZW4uc3VwcwplaWdodC5z' + + 'dXBzCW5pbmUuc3Vwcwluc3VwZXJpb3IJemVyby5zdWJzCG9uZS5zdWJzCHR3by5zdWJzCnRocmVlLnN1YnMJZm91ci5zdWJzCWZpdmUuc3VicwhzaXguc3VicwpzZXZlbi5zdWJzCmVpZ2h0LnN1YnMJbmluZS5zdWJzB3VuaTIwOTAHdW5pMjA5MQd1bmkyMDkyB3Vu' + + 'aTIwOTMHdW5pMjA5NAd1bmkyMEEwB3VuaTIwQTEHdW5pMjBBMgRsaXJhB3VuaTIwQTUHdW5pMjBBNgZwZXNldGEHdW5pMjBBOAd1bmkyMEE5BnNoZXFlbARkb25nBEV1cm8HdW5pMjBBRAd1bmkyMEFFB3VuaTIwQUYHdW5pMjBCMAd1bmkyMEIxB3VuaTIwQjIHdW5p' + + 'MjBCMwd1bmkyMEI0B3VuaTIwQjUHdW5pMjBCRgd1bmkyMEYwB3VuaTIxMDUHdW5pMjExMwd1bmkyMTE2B3VuaTIxMTcDT2htCWVzdGltYXRlZAd1bmkyMTREB3VuaTIxNEUIb25ldGhpcmQJdHdvdGhpcmRzCW9uZWVpZ2h0aAx0aHJlZWVpZ2h0aHMLZml2ZWVpZ2h0' + + 'aHMMc2V2ZW5laWdodGhzB3VuaTIxODQJYXJyb3dsZWZ0B2Fycm93dXAKYXJyb3dyaWdodAlhcnJvd2Rvd24JYXJyb3dib3RoCWFycm93dXBkbgxhcnJvd3VwZG5ic2UMYXJyb3dkYmxib3RoB3VuaTIyMTUOYnVsbGV0b3BlcmF0b3IKb3J0aG9nb25hbAxpbnRlcnNl' + + 'Y3Rpb24LZXF1aXZhbGVuY2UHdW5pMjI2MgVob3VzZQ1yZXZsb2dpY2Fsbm90CmludGVncmFsdHAKaW50ZWdyYWxidAd1bmkyNTAwB3VuaTI1MDIHdW5pMjUwQwd1bmkyNTEwB3VuaTI1MTQHdW5pMjUxOAd1bmkyNTFDB3VuaTI1MjQHdW5pMjUyQwd1bmkyNTM0B3Vu' + + 'aTI1M0MHdW5pMjU1MAd1bmkyNTUxB3VuaTI1NTIHdW5pMjU1Mwd1bmkyNTU0B3VuaTI1NTUHdW5pMjU1Ngd1bmkyNTU3B3VuaTI1NTgHdW5pMjU1OQd1bmkyNTVBB3VuaTI1NUIHdW5pMjU1Qwd1bmkyNTVEB3VuaTI1NUUHdW5pMjU1Rgd1bmkyNTYwB3VuaTI1NjEH' + + 'dW5pMjU2Mgd1bmkyNTYzB3VuaTI1NjQHdW5pMjU2NQd1bmkyNTY2B3VuaTI1NjcHdW5pMjU2OAd1bmkyNTY5B3VuaTI1NkEHdW5pMjU2Qgd1bmkyNTZDB3VwYmxvY2sHZG5ibG9jawVibG9jawdsZmJsb2NrB3J0YmxvY2sHbHRzaGFkZQVzaGFkZQdka3NoYWRlCWZp' + + 'bGxlZGJveAd1bmkyNUExB3VuaTI1QUEHdW5pMjVBQgpmaWxsZWRyZWN0B3RyaWFndXAHdHJpYWdydAd0cmlhZ2RuB3RyaWFnbGYGY2lyY2xlB3VuaTI1Q0MHdW5pMjVDRgd1bmkyNUQwB3VuaTI1RDEHdW5pMjVEMgd1bmkyNUQzB3VuaTI1RDQHdW5pMjVENQd1bmky' + + 'NUQ2B3VuaTI1RDcJaW52YnVsbGV0CWludmNpcmNsZQpvcGVuYnVsbGV0CXNtaWxlZmFjZQxpbnZzbWlsZWZhY2UDc3VuB3VuaTI2M0YGZmVtYWxlB3VuaTI2NDEEbWFsZQd1bmkyNjQzB3VuaTI2NDQHdW5pMjY0NQd1bmkyNjQ2B3VuaTI2NDcFc3BhZGUEY2x1YgVo' + + 'ZWFydAdkaWFtb25kB3VuaTI2NjkLbXVzaWNhbG5vdGUHdW5pMjY2Qgd1bmkyNjZDB3VuaTI2NkYHdW5pMkM2MAd1bmkyQzYxB3VuaTJDNjIHdW5pMkM2Mwd1bmkyQzY0B3VuaTJDNjUHdW5pMkM2Ngd1bmkyQzY3B3VuaTJDNjgHdW5pMkM2OQd1bmkyQzZBB3VuaTJD' + + 'NkIHdW5pMkM2Qwd1bmkyQzZEB3VuaTJDNzEHdW5pMkM3Mgd1bmkyQzczB3VuaTJDNzQHdW5pMkM3NQd1bmkyQzc2B3VuaTJDNzcHdW5pMkUxNwd1bmlBNzE3B3VuaUE3MTgHdW5pQTcxOQd1bmlBNzFBB3VuaUE3MUIHdW5pQTcxQwd1bmlBNzFEB3VuaUE3MUUHdW5p' + + 'QTcxRgd1bmlBNzIwB3VuaUE3MjEHdW5pQTc4OAd1bmlBNzg5B3VuaUE3OEEHdW5pQTc4Qgd1bmlBNzhDB3VuaUZCMDEHdW5pRkIwMgd1bmlGQjFEB3VuaUZCMUUMeW9keW9kX3BhdGFoD2FsdGVybmF0aXZlYXlpbghhbGVmd2lkZQlkYWxldHdpZGUGaGV3aWRlB2th' + + 'ZndpZGUJbGFtZWR3aWRlDGZpbmFsbWVtd2lkZQhyZXNod2lkZQd0YXZ3aWRlDGFsdF9wbHVzc2lnbgtzaGluc2hpbmRvdApzaGluc2luZG90EXNoaW5kYWdlc2hzaGluZG90EHNoaW5kYWdlc2hzaW5kb3QJYWxlZnBhdGFoCmFsZWZxYW1hdHMJYWxlZm1hcGlxCWJl' + + 'dGRhZ2VzaAtnaW1lbGRhZ2VzaAtkYWxldGRhZ2VzaAhoZWRhZ2VzaAl2YXZkYWdlc2gLemF5aW5kYWdlc2gJdGV0ZGFnZXNoCXlvZGRhZ2VzaA5maW5hbGthZmRhZ2VzaAlrYWZkYWdlc2gLbGFtZWRkYWdlc2gJbWVtZGFnZXNoCW51bmRhZ2VzaAxzYW1la2hkYWdl' + + 'c2gNZmluYWxwZWRhZ2VzaAhwZWRhZ2VzaAt0c2FkaWRhZ2VzaAlxb2ZkYWdlc2gKcmVzaGRhZ2VzaApzaGluZGFnZXNoCXRhdmRhZ2VzaAh2YXZob2xhbQdiZXRyYWZlB2thZnJhZmUGcGVyYWZlCWFsZWZsYW1lZAd1bmlGRTIwB3VuaUZFMjEHdW5pRkUyMgd1bmlG' + + 'RTIzB3VuaUZGRkMLY29tbWFhY2NlbnQJYnJldmUuY3lyEGNhcm9uY29tbWFhY2NlbnQRY29tbWFhY2NlbnRyb3RhdGUIZ3JhdmUudWMIYWN1dGUudWMNY2lyY3VtZmxleC51YwhjYXJvbi51YwtkaWVyZXNpcy51Ywh0aWxkZS51Yw9odW5nYXJ1bWxhdXQudWMIYnJl' + + 'dmUudWMKZ3JhdmUuYWx0MQpncmF2ZS5hbHQyCmdyYXZlLmFsdDMKYWN1dGUuYWx0MQphY3V0ZS5hbHQyCmFjdXRlLmFsdDMOaG9va2Fib3ZlLmFsdDEOaG9va2Fib3ZlLmFsdDIOaG9va2Fib3ZlLmFsdDMKdGlsZGUuYWx0MQp0aWxkZS5hbHQyCmJyZXZlLmFsdDEP' + + 'Y2lyY3VtZmxleC5hbHQxDWRvdGJlbG93LmFsdDEKYWN1dGUuYWx0NAphY3V0ZS5hbHQ1CmdyYXZlLmFsdDQKZ3JhdmUuYWx0NQ5ob29rYWJvdmUuYWx0NA5ob29rYWJvdmUuYWx0NQp0aWxkZS5hbHQzCnRpbGRlLmFsdDQKdGlsZGUuYWx0NQp0aWxkZS5hbHQ2CnRp' + + 'bGRlLmFsdDcKdGlsZGUuYWx0OA1kb3RiZWxvdy5hbHQyDWRvdGJlbG93LmFsdDMNZG90YmVsb3cuYWx0NA1kb3RiZWxvdy5hbHQ1DWRvdGJlbG93LmFsdDYKdGlsZGUuYWx0OQ1kb3RiZWxvdy5hbHQ3DWRvdGJlbG93LmFsdDgNZG90YmVsb3cuYWx0OQ5kb3RiZWxv' + + 'dy5hbHQxMA5kb3RiZWxvdy5hbHQxMQ5kb3RiZWxvdy5hbHQxMg5kb3RiZWxvdy5hbHQxMw5kb3RiZWxvdy5hbHQxNA5kb3RiZWxvdy5hbHQxNQt0aWxkZS5hbHQxMAt0aWxkZS5hbHQxMQt0aWxkZS5hbHQxMgt0aWxkZS5hbHQxMw1kb3RsZXNzaS5hbHQxD3VuaTAz' + + 'MDgwMzA0LmNhcA91bmkwMzA4MDMwMS5jYXAPdW5pMDMwODAzMEMuY2FwD3VuaTAzMDgwMzAwLmNhcA91bmkwMzA3MDMwNC5jYXAPdW5pMDMwMzAzMDQuY2FwD3VuaTAyRTUwMkU1MDJFNg91bmkwMkU1MDJFNTAyRTcPdW5pMDJFNTAyRTUwMkU4D3VuaTAyRTUwMkU1' + + 'MDJFOQ91bmkwMkU1MDJFNjAyRTUPdW5pMDJFNTAyRTYwMkU2D3VuaTAyRTUwMkU2MDJFNw91bmkwMkU1MDJFNjAyRTgPdW5pMDJFNTAyRTYwMkU5C3VuaTAyRTUwMkU2D3VuaTAyRTUwMkU3MDJFNQ91bmkwMkU1MDJFNzAyRTYPdW5pMDJFNTAyRTcwMkU3D3VuaTAy' + + 'RTUwMkU3MDJFOA91bmkwMkU1MDJFNzAyRTkLdW5pMDJFNTAyRTcPdW5pMDJFNTAyRTgwMkU1D3VuaTAyRTUwMkU4MDJFNg91bmkwMkU1MDJFODAyRTcPdW5pMDJFNTAyRTgwMkU4D3VuaTAyRTUwMkU4MDJFOQt1bmkwMkU1MDJFOA91bmkwMkU1MDJFOTAyRTUPdW5p' + + 'MDJFNTAyRTkwMkU2D3VuaTAyRTUwMkU5MDJFNw91bmkwMkU1MDJFOTAyRTgPdW5pMDJFNTAyRTkwMkU5C3VuaTAyRTUwMkU5D3VuaTAyRTYwMkU1MDJFNQ91bmkwMkU2MDJFNTAyRTYPdW5pMDJFNjAyRTUwMkU3D3VuaTAyRTYwMkU1MDJFOA91bmkwMkU2MDJFNTAy' + + 'RTkLdW5pMDJFNjAyRTUPdW5pMDJFNjAyRTYwMkU1D3VuaTAyRTYwMkU2MDJFNw91bmkwMkU2MDJFNjAyRTgPdW5pMDJFNjAyRTYwMkU5D3VuaTAyRTYwMkU3MDJFNQ91bmkwMkU2MDJFNzAyRTYPdW5pMDJFNjAyRTcwMkU3D3VuaTAyRTYwMkU3MDJFOA91bmkwMkU2' + + 'MDJFNzAyRTkLdW5pMDJFNjAyRTcPdW5pMDJFNjAyRTgwMkU1D3VuaTAyRTYwMkU4MDJFNg91bmkwMkU2MDJFODAyRTcPdW5pMDJFNjAyRTgwMkU4D3VuaTAyRTYwMkU4MDJFOQt1bmkwMkU2MDJFOA91bmkwMkU2MDJFOTAyRTUPdW5pMDJFNjAyRTkwMkU2D3VuaTAy' + + 'RTYwMkU5MDJFNw91bmkwMkU2MDJFOTAyRTgPdW5pMDJFNjAyRTkwMkU5C3VuaTAyRTYwMkU5D3VuaTAyRTcwMkU1MDJFNQ91bmkwMkU3MDJFNTAyRTYPdW5pMDJFNzAyRTUwMkU3D3VuaTAyRTcwMkU1MDJFOA91bmkwMkU3MDJFNTAyRTkLdW5pMDJFNzAyRTUPdW5p' + + 'MDJFNzAyRTYwMkU1D3VuaTAyRTcwMkU2MDJFNg91bmkwMkU3MDJFNjAyRTcPdW5pMDJFNzAyRTYwMkU4D3VuaTAyRTcwMkU2MDJFOQt1bmkwMkU3MDJFNg91bmkwMkU3MDJFNzAyRTUPdW5pMDJFNzAyRTcwMkU2D3VuaTAyRTcwMkU3MDJFOA91bmkwMkU3MDJFNzAy' + + 'RTkPdW5pMDJFNzAyRTgwMkU1D3VuaTAyRTcwMkU4MDJFNg91bmkwMkU3MDJFODAyRTcPdW5pMDJFNzAyRTgwMkU4D3VuaTAyRTcwMkU4MDJFOQt1bmkwMkU3MDJFOA91bmkwMkU3MDJFOTAyRTUPdW5pMDJFNzAyRTkwMkU2D3VuaTAyRTcwMkU5MDJFNw91bmkwMkU3' + + 'MDJFOTAyRTgPdW5pMDJFNzAyRTkwMkU5C3VuaTAyRTcwMkU5D3VuaTAyRTgwMkU1MDJFNQ91bmkwMkU4MDJFNTAyRTYPdW5pMDJFODAyRTUwMkU3D3VuaTAyRTgwMkU1MDJFOA91bmkwMkU4MDJFNTAyRTkLdW5pMDJFODAyRTUPdW5pMDJFODAyRTYwMkU1D3VuaTAy' + + 'RTgwMkU2MDJFNg91bmkwMkU4MDJFNjAyRTcPdW5pMDJFODAyRTYwMkU4D3VuaTAyRTgwMkU2MDJFOQt1bmkwMkU4MDJFNg91bmkwMkU4MDJFNzAyRTUPdW5pMDJFODAyRTcwMkU2D3VuaTAyRTgwMkU3MDJFNw91bmkwMkU4MDJFNzAyRTgPdW5pMDJFODAyRTcwMkU5' + + 'C3VuaTAyRTgwMkU3D3VuaTAyRTgwMkU4MDJFNQ91bmkwMkU4MDJFODAyRTYPdW5pMDJFODAyRTgwMkU3D3VuaTAyRTgwMkU4MDJFOQ91bmkwMkU4MDJFOTAyRTUPdW5pMDJFODAyRTkwMkU2D3VuaTAyRTgwMkU5MDJFNw91bmkwMkU4MDJFOTAyRTgPdW5pMDJFODAy' + + 'RTkwMkU5C3VuaTAyRTgwMkU5D3VuaTAyRTkwMkU1MDJFNQ91bmkwMkU5MDJFNTAyRTYPdW5pMDJFOTAyRTUwMkU3D3VuaTAyRTkwMkU1MDJFOA91bmkwMkU5MDJFNTAyRTkLdW5pMDJFOTAyRTUPdW5pMDJFOTAyRTYwMkU1D3VuaTAyRTkwMkU2MDJFNg91bmkwMkU5' + + 'MDJFNjAyRTcPdW5pMDJFOTAyRTYwMkU4D3VuaTAyRTkwMkU2MDJFOQt1bmkwMkU5MDJFNg91bmkwMkU5MDJFNzAyRTUPdW5pMDJFOTAyRTcwMkU2D3VuaTAyRTkwMkU3MDJFNw91bmkwMkU5MDJFNzAyRTgPdW5pMDJFOTAyRTcwMkU5C3VuaTAyRTkwMkU3D3VuaTAy' + + 'RTkwMkU4MDJFNQ91bmkwMkU5MDJFODAyRTYPdW5pMDJFOTAyRTgwMkU3D3VuaTAyRTkwMkU4MDJFOA91bmkwMkU5MDJFODAyRTkLdW5pMDJFOTAyRTgPdW5pMDJFOTAyRTkwMkU1D3VuaTAyRTkwMkU5MDJFNg91bmkwMkU5MDJFOTAyRTcPdW5pMDJFOTAyRTkwMkU4' + + 'D2N5cmlsbGljX290bWFyaw91bmkwMzA0MDMwMC5jYXAPdW5pMDMwNDAzMDEuY2FwD3VuaTAzMDMwMzAxLmNhcA91bmkwMzAzMDMwOC5jYXAPdW5pMDMwMTAzMDcuY2FwD3VuaTAzMEMwMzA3LmNhcA91bmkwMzA0MDMwOC5jYXAMYmFyaS5kb3RsZXNzE3VuaTAzQjEw' + + 'MzA0MDMxMzAzMDATdW5pMDNCMTAzMDQwMzEzMDMwMRN1bmkwM0IxMDMwNDAzMTQwMzAwE3VuaTAzQjEwMzA0MDMxNDAzMDETdW5pMDNCMTAzMDYwMzEzMDMwMBN1bmkwM0IxMDMwNjAzMTMwMzAxE3VuaTAzQjEwMzA2MDMxNDAzMDATdW5pMDNCMTAzMDYwMzE0MDMw' + + 'MRN1bmkwM0I5MDMwNDAzMTMwMzAwE3VuaTAzQjkwMzA0MDMxMzAzMDETdW5pMDNCOTAzMDQwMzE0MDMwMBN1bmkwM0I5MDMwNDAzMTQwMzAxE3VuaTAzQjkwMzA2MDMxMzAzMDATdW5pMDNCOTAzMDYwMzEzMDMwMRN1bmkwM0I5MDMwNjAzMTQwMzAwE3VuaTAzQjkw' + + 'MzA2MDMxNDAzMDETdW5pMDNDNTAzMDQwMzEzMDMwMBN1bmkwM0M1MDMwNDAzMTMwMzAxE3VuaTAzQzUwMzA0MDMxNDAzMDATdW5pMDNDNTAzMDQwMzE0MDMwMRN1bmkwM0M1MDMwNjAzMTMwMzAwE3VuaTAzQzUwMzA2MDMxMzAzMDETdW5pMDNDNTAzMDYwMzE0MDMw' + + 'MBN1bmkwM0M1MDMwNjAzMTQwMzAxE3VuaTAzQjkwMzA4MDMwNDAzMDATdW5pMDNCOTAzMDgwMzA0MDMwMRN1bmkwM0I5MDMwODAzMDYwMzAwE3VuaTAzQjkwMzA4MDMwNjAzMDETdW5pMDNDNTAzMDgwMzA0MDMwMBN1bmkwM0M1MDMwODAzMDQwMzAxE3VuaTAzQzUw' + + 'MzA4MDMwNjAzMDATdW5pMDNDNTAzMDgwMzA2MDMwMQxkb3R0ZWRpYWN1dGUIRW5nLmFsdDEIRW5nLmFsdDIIRW5nLmFsdDMIemVyby5hbHQHb25lLmFsdAd0d28uYWx0CXRocmVlLmFsdAhmb3VyLmFsdAhmaXZlLmFsdAdzaXguYWx0CXNldmVuLmFsdAllaWdodC5h' + + 'bHQIbmluZS5hbHQPY2lyY3VtZmxleGFjdXRlD2NpcmN1bWZsZXhncmF2ZQ5jaXJjdW1mbGV4aG9vaw9jaXJjdW1mbGV4dGlsZGUKYnJldmVhY3V0ZQpicmV2ZWdyYXZlCWJyZXZlaG9vawpicmV2ZXRpbGRlEmNpcmN1bWZsZXhhY3V0ZS5sYxJjaXJjdW1mbGV4Z3Jh' + + 'dmUubGMRY2lyY3VtZmxleGhvb2subGMSY2lyY3VtZmxleHRpbGRlLmxjDWJyZXZlYWN1dGUubGMNYnJldmVncmF2ZS5sYwxicmV2ZWhvb2subGMNYnJldmV0aWxkZS5sYw11bmkxRkVGLnNob3J0C3Rvbm9zLnNob3J0EGxhbWVkaG9sYW1kYWdlc2gKbGFtZWRob2xh' + + 'bQ5maW5hbGthZnFhbWF0cw1maW5hbGthZnNoZXZhE2FsZWZsYW1lZGhhdGFmc2Vnb2wOYWxlZmxhbWVkc2Vnb2wOYWxlZmxhbWVkdHNlcmUQYWx0ZXJuYXRpdmVsYW1lZAphbGVmZGFnZXNoC3VuaTA1QjEwNUJEC3VuaTA1QjIwNUJEC3VuaTA1QjMwNUJEBFNfQkUA' + + 'AAAAAAADAAgAAgAKAAP//wADAAEAAAAMAAAAdgB+AAIAEQAABMgAAQTJBPUAAwT2BPYAAQT3BPcAAwT4BPgAAQT5BP0AAwT+BP4AAQT/BP8AAwUACOcAAQjoCOgAAwjpCRMAAQkUCRQAAgkVCjIAAQozCjUAAgo2CjcAAQo4CjoAAwo7CjsAAQAEAAAAAgAAAAIAHALC' + + 'AtYAAgLYAtsAAwLcAtwAAgLeAuIAAwLlAugAAwLrAvUAAwL7Av4AAwL/AwEAAgMEAwYAAgMHAwcAAwMIAwgAAgMJAwsAAwMMAw4AAgMPAxAAAwMSAxQAAgMVAxgAAwMZAxkAAgMbAxwAAwMdAx0AAgMlAzEAAgQ0BDcAAgXgBeEAAgXiBeIAAwXjBekAAgXqBeoAAwXr' + + 'BesAAgXsBewAAwkVCRgAAQAAAAEAAAAKAKAA4AAHREZMVAAsYm9wbwA6Y29wdABIY3lybABWZ3JlawBkaGVicgB0bGF0bgCGAAQAAAAA//8AAgADAAQABAAAAAD//wACAAMABAAEAAAAAP//AAIAAwAEAAQAAAAA//8AAgADAAQABAAAAAD//wADAAAAAwAEAAQAAAAA' + + '//8ABAABAAIAAwAEAAQAAAAA//8AAwAAAAMABAAFY2NtcAAgY2NtcAAmZGxpZwAuc3VicwA0c3VwcwA6AAAAAQADAAAAAgABAAIAAAABAAAAAAABAAYAAAABAAUABwAQABgAIAAoADAAOABAAAQAAQABADgABAABAAEASAAGAAEAAQIKAAQAAAABAkQABAABAAEHsAAB' + + 'AAAAAQgAAAEAAAABCAgAAQASAAEACAABAAQJFAACBQwAAQABBQAAAQGcABkAOABCAEwAVgBgAGoAdAB+AIgAmgCkAK4AwADaAOQBAAEKARQBHgEoATIBPAFGAVABkgABAAQKOAACBPUAAQAECjkAAgT1AAEABAo6AAIE9QABAAQKNwACBPQAAQAECPsAAgT0AAEABAj8' + + 'AAIE9AABAAQI/QACBPQAAQAECP4AAgT0AAIABgAMCRAAAgTxCP8AAgT0AAEABAkAAAIE9AABAAQJAQACBPQAAgAGAAwJAgACBPQI5wACBOwAAwAIAA4AFAoyAAIE6AoxAAIE8AkDAAIE9AABAAQJBAACBPQAAwAIABAAFgovAAME9ATxCjAAAgTxCQUAAgT0AAEABAkG' + + 'AAIE9AABAAQJBwACBPQAAQAECQgAAgT0AAEABAkJAAIE9AABAAQJCgACBPQAAQAECQsAAgT0AAEABAkMAAIE9AABAAQJDQACBPQABwAQABgAIAAoADAANgA8CPcAAwT6BPQI9wADBPQE+gj2AAME+QT0CPYAAwT0BPkJDgACBPQI9QACBPoI9AACBPkAAQAECQ8AAgT0' + + 'AAIABwTpBOsAAAUABQYAAwUIBQwACgUOBQ4ADwUQBREAEAUTBRQAEgUWBRoAFAADAAAAAgAUACIAAQAsAAEAAAAEAAEABQUABQEFCwUUBR0AAQADBO8E8AT3AAIAAwUABR0AAAidCJ0AHgjrCPIAHwABBWoABQAQASICNANGBFgAHAA6AEIASgBSAFoAYgBqAHIAegCC' + + 'AIoAkgCaAKIAqgCyALoAwgDKANIA2gDiAOoA8gD6AQABBgEMCXQAAwKrAqsJcwADAqsCqglyAAMCqwKpCXEAAwKrAqgJcAADAqsCpwluAAMCqgKrCW0AAwKqAqoJbAADAqoCqQlrAAMCqgKoCWoAAwKqAqcJaAADAqkCqwlnAAMCqQKqCWYAAwKpAqkJZQADAqkCqAlk' + + 'AAMCqQKnCWIAAwKoAqsJYQADAqgCqglgAAMCqAKpCV8AAwKoAqgJXgADAqgCpwldAAMCpwKrCVwAAwKnAqoJWwADAqcCqQlaAAMCpwKoCW8AAgKqCXUAAgKrCWMAAgKoCWkAAgKpABwAOgBCAEoAUgBaAGIAagByAHoAggCKAJIAmgCiAKoAsgC6AMIAygDSANoA4gDq' + + 'APIA+gEAAQYBDAmQAAMCqwKrCY8AAwKrAqoJjgADAqsCqQmNAAMCqwKoCYwAAwKrAqcJigADAqoCqwmJAAMCqgKqCYgAAwKqAqkJhwADAqoCqAmGAAMCqgKnCYQAAwKpAqsJgwADAqkCqgmCAAMCqQKpCYEAAwKpAqgJgAADAqkCpwl/AAMCqAKrCX4AAwKoAqoJfQAD' + + 'AqgCqQl8AAMCqAKnCXoAAwKnAqsJeQADAqcCqgl4AAMCpwKpCXcAAwKnAqgJdgADAqcCpwmRAAICqwmFAAICqQl7AAICpwmLAAICqgAcADoAQgBKAFIAWgBiAGoAcgB6AIIAigCSAJoAogCqALIAugDCAMoA0gDaAOIA6gDyAPoBAAEGAQwJrAADAqsCqwmrAAMCqwKq' + + 'CaoAAwKrAqkJqQADAqsCqAmoAAMCqwKnCaYAAwKqAqsJpQADAqoCqgmkAAMCqgKpCaMAAwKqAqgJogADAqoCpwmhAAMCqQKrCaAAAwKpAqoJnwADAqkCqAmeAAMCqQKnCZwAAwKoAqsJmwADAqgCqgmaAAMCqAKpCZkAAwKoAqgJmAADAqgCpwmWAAMCpwKrCZUAAwKn' + + 'AqoJlAADAqcCqQmTAAMCpwKoCZIAAwKnAqcJpwACAqoJrQACAqsJlwACAqcJnQACAqgAHAA6AEIASgBSAFoAYgBqAHIAegCCAIoAkgCaAKIAqgCyALoAwgDKANIA2gDiAOoA8gD6AQABBgEMCcgAAwKrAqsJxwADAqsCqgnGAAMCqwKpCcUAAwKrAqgJxAADAqsCpwnD' + + 'AAMCqgKrCcIAAwKqAqkJwQADAqoCqAnAAAMCqgKnCb4AAwKpAqsJvQADAqkCqgm8AAMCqQKpCbsAAwKpAqgJugADAqkCpwm4AAMCqAKrCbcAAwKoAqoJtgADAqgCqQm1AAMCqAKoCbQAAwKoAqcJsgADAqcCqwmxAAMCpwKqCbAAAwKnAqkJrwADAqcCqAmuAAMCpwKn' + + 'Cb8AAgKpCckAAgKrCbMAAgKnCbkAAgKoABwAOgBCAEoAUgBaAGIAagByAHoAggCKAJIAmgCiAKoAsgC6AMIAygDSANoA4gDqAPIA+gEAAQYBDAnlAAMCqwKqCeQAAwKrAqkJ4wADAqsCqAniAAMCqwKnCeAAAwKqAqsJ3wADAqoCqgneAAMCqgKpCd0AAwKqAqgJ3AAD' + + 'AqoCpwnaAAMCqQKrCdkAAwKpAqoJ2AADAqkCqQnXAAMCqQKoCdYAAwKpAqcJ1AADAqgCqwnTAAMCqAKqCdIAAwKoAqkJ0QADAqgCqAnQAAMCqAKnCc4AAwKnAqsJzQADAqcCqgnMAAMCpwKpCcsAAwKnAqgJygADAqcCpwnbAAICqQnhAAICqgnPAAICpwnVAAICqAAC' + + 'AAECpwKrAAAAAQBKAAUAEAAiACwANgBAAAIABgAMCPkAAgTwCPgAAgTvAAEABAkRAAIE9wABAAQJEgACBPcAAQAECRMAAgT3AAEABAjpAAIE7wABAAUFAAUBBQsFFAUdAAEABgfvAAIAAQAXABwAAAABAAYH+gACAAEAEwAcAAAAAQAAAAoAkgEKAAdERkxUACxib3Bv' + + 'ADZjb3B0AEBjeXJsAEpncmVrAFpoZWJyAGpsYXRuAHgABAAAAAD//wAAAAQAAAAA//8AAAAEAAAAAP//AAAABAAAAAD//wADAAAAAgAFAAQAAAAA//8AAwAAAAMABQAEAAAAAP//AAIAAQAEAAQAAAAA//8AAwAAAAMABQAGa2VybgAma2VybgAsbWFyawAybWFyawA4' + + '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' + + 'BMkEzgTbBNwE3QT1AAEAAQTSAAEAAQTuAAMAAgAkACoAAQAUAAAAAQAAABgAAQAGBMkEzgTbBNwE3QT1AAEAAQTOAAEAAQTvAAMAAgAkACoAAQAUAAAAAQAAABgAAQAGBMkEzgTbBNwE3QT1AAEAAQToAAEAAQTwAAMAAgAkACoAAQAUAAAAAQAAABgAAQAGBMkEzgTb' + + 'BNwE3QT1AAEAAQTsAAEAAQTwAAMAAgAkACoAAQAUAAAAAQAAABgAAQAGBMkEzgTbBNwE3QT1AAEAAQTOAAEAAQTwAAMAAgAkACoAAQAUAAAAAQAAABgAAQAGBMkEzgTbBNwE3QT1AAEAAQTSAAEAAQTwAAMAAgAkACoAAQAUAAAAAQAAABgAAQAGBMkEzgTbBNwE3QT1' + + 'AAEAAQTbAAEAAQTwAAMAAgAkACoAAQAUAAAAAQAAABgAAQAGBMkEzgTbBNwE3QT1AAEAAQTcAAEAAQTwAAMAAgAkACoAAQAUAAAAAQAAABgAAQAGBMkEzgTbBNwE3QT1AAEAAQT1AAEAAQTwAAEClAJOAAECmgAMAEgAkgCYAJ4ApACqALAAtgC8AMIAyADOANQA2gDg' + + 'AOYA7ADyAPgA/gEEAQoBEAEWARwBIgEoAS4BNAE6AUABRgFMAVIBWAFeAWQBagFwAXYBfAGCAYgBjgGUAZoBoAGmAawBsgG4Ab4BxAHKAdAB1gHcAeIB6AHuAfQB+gIAAgYCDAISAhgCHgIkAioCMAI2AjwAAQOEBRQAAQRMBRQAAQSIBRQAAQRMBRQAAQSwBTwAAQSI' + + 'BTwAAQScBRQAAQUUBRQAAQGQBRQAAQOsBRQAAQSIBTwAAQGQBRQAAQYEBRQAAQUUBRQAAQTYBRQAAQRMBRQAAQTYBRQAAQSwBRQAAQRMBRQAAQSwBTwAAQUUBRQAAQSwBRQAAQcwBRQAAQRMBRQAAQSIBRQAAQRMBRQAAQM0A+gAAQPUA+gAAQOEA+gAAQQkBRQAAQOE' + + 'A+gAAQKoBaAAAQQ4A+gAAQPUA+gAAQF8A+gAAQF8A+gAAQNcA+gAAQF8BRQAAQZAA+gAAQPUA+gAAQPUA+gAAQPUA+gAAQQ4A+gAAQLXA+gAAQOEA+gAAQF8BRQAAQQ4A+gAAQPUA+gAAQXcA+gAAQOEA+gAAQPUA+gAAQNmA+gAAQTYBRQAAQTYBRQAAQTYBRQAAQUU' + + 'BRQAAQUUBRQAAQPUA+gAAQPUA+gAAQPUA+gAAQQ4A+gAAQQ4A+gAAQUUBRQAAQQ4A+gAAQTYBRQAAQPUA+gAAQTYBRQAAQPUA+gAAQUUBRQAAQQ4A+gAAQUUBRQAAQQ4A+gAAgALACQAPQAAAEQAXQAaAJQAlQA0AJcAlwA2AJsAnAA3ALQAtQA5ALcAtwA7ALsAvAA8' + + 'ASoBKwA+BrYGuQBABs4G0QBEAAEAAQLdAAEAAAAGAAH/2AOEAAEClgJuAAECnAAMAEwAmgCgAKYArACyALgAvgDEAMoA0ADWANwA4gDoAO4A9AD6AQABBgEMARIBGAEeASQBKgEwATYBPAFCAUgBTgFUAVoBYAFmAWwBcgF4AX4BhAGKAZABlgGcAaIBqAGuAbQBugHA' + + 'AcYBzAHSAdgB3gHkAeoB8AH2AfwCAgIIAg4CFAIaAiACJgIsAjICOAI+AkQCSgJQAlYCXAABADwFlgABADwFlgABADwFlgABAAAFlgABADwFlgABASwFlgABAAAFlgABADwFlgABADwFlgABADwFlgABAAAFlgABAAAFlgAB/34FlgABADwFlgABAAAFlgABADwFlgAB' + + 'ADwFlgABAAAFlgABADwFlgABADwFlgABADwFlgABAAAFlgABAAAFlgABADwFlgABAAAFlgABAAAFlgABAAAFlgABADwFlgABAFAFlgABAFAFlgABAGQFoQABADwFlgABADwFlgABAAAFlgABADwFlgABAAAFlgAB/34FlgABADwFlgABAAAFlgABAAAFlgABAAAFlgAB' + + '/7AFlgABAAAFlgAB/7AFlgABADwFlgABADwFlgABADwFlgABADwFlgABADwFlgABAAAFlgABADwFlgABADwFlgABAAAFlgABADwFlgABADwFlgABAAAFlgABAAAFlgAB/34FlgABAAAFlgABADwFlgABAAAFlgABADwFlgABADwFlgABAAAFlgABADwFlgABAAAFlgAB' + + 'AAAFlgABAAAFlgABAAAFlgABAAAFlgABAAAFlgABADwFlgAB/tQFlgAB/tQFlgABAAAFlgABAAAFlgACAAYFAAUdAAAInQidAB4I6QjpAB8I6wjyACAI9AkTACgKLwoyAEgAAQABBPEAAQAAAAYAAQAABZYAAQKWAm4AAQKeAAwATACaAKAApgCsALIAuAC+AMQAygDQ' + + 'ANYA3ADiAOgA7gD0APoBAAEGAQwBEgEYAR4BJAEqATABNgE8AUIBSAFOAVQBWgFgAWYBbAFyAXgBfgGEAYoBkAGWAZwBogGoAa4BtAG6AcABxgHMAdIB2AHeAeQB6gHwAfYB/AICAggCDgIUAhoCIAImAiwCMgI4Aj4CRAJKAlACVgJcAAEEnAVGAAED1AVGAAECMAVG' + + 'AAEDhAVGAAEEOAVGAAEBaAVGAAECCAVGAAEEYAVGAAEEYAVGAAEBaAVGAAEDcAVGAAEDSAVGAAEDhAVGAAEEiAVGAAEEiAVGAAEBaAVGAAECMAVGAAEEYAVGAAEEEAVGAAEEJAVGAAEEJAVGAAEDwAVGAAEEBgVGAAEEJAVGAAEDXAVGAAEFtAVGAAEEdAVGAAEDogVG' + + 'AAEDogVGAAEDogVGAAED6AVGAAEDogVGAAEEnAVGAAEDhAVGAAEEOAVGAAEDSAVGAAEDhAVGAAEEiAVGAAEDXAVGAAEEdAVGAAEGGAVGAAEFtAVGAAEGGAVGAAEFtAVGAAEEnAVGAAEEnAVGAAEEnAVGAAED1AVGAAECMAVGAAEDhAVGAAEEOAVGAAEBaAVGAAECCAVG' + + 'AAEEYAVGAAEBaAVGAAEDcAVGAAEDSAVGAAEDhAVGAAEEiAVGAAECMAVGAAEEYAVGAAEEJAVGAAEEJAVGAAEEBgVGAAEEJAVGAAEDXAVGAAEFtAVGAAEEdAVGAAEBpAVGAAED1AVGAAEDSAVGAAEEJAVGAAEDhAVGAAEDhAVGAAEDcAVGAAEDcAVGAAIABgUABR0AAAid' + + 'CJ0AHgjpCOkAHwjrCPIAIAj0CRMAKAovCjIASAABAAIE1QTYAAIAAAAKAAAAEAABAAAFRgABAAAFRgABApYCbgABAp4ADABMAJoAoACmAKwAsgC4AL4AxADKANAA1gDcAOIA6ADuAPQA+gEAAQYBDAESARgBHgEkASoBMAE2ATwBQgFIAU4BVAFaAWABZgFsAXIBeAF+' + + 'AYQBigGQAZYBnAGiAagBrgG0AboBwAHGAcwB0gHYAd4B5AHqAfAB9gH8AgICCAIOAhQCGgIgAiYCLAIyAjgCPgJEAkoCUAJWAlwAAQQkAAAAAQNIAAAAAQKAAAAAAQLQAAAAAQPAAAAAAQC0AAAAAQDwAAAAAQP8AAAAAQP8AAAAAQC0AAAAAQQ4AAAAAQL4AAAAAQMM' + + 'AAAAAQQ4AAAAAQQ4AAAAAQH0AAAAAQHMAAAAAQPoAAAAAQNcAAAAAQUAAAAAAQPAAAAAAQLkAAAAAQMgAAAAAQJYAAAAAQL4AAAAAQSwAAAAAQQQAAAAAQMgAAAAAQMgAAAAAQMgAAAAAQPoAAAAAQMgAAAAAQQkAAAAAQLQAAAAAQPAAAAAAQL4AAAAAQMMAAAAAQQ4' + + 'AAAAAQL4AAAAAQQQAAAAAQSwAAAAAQSwAAAAAQSwAAAAAQSwAAAAAQQkAAAAAQQkAAAAAQQkAAAAAQNIAAAAAQKAAAAAAQLQAAAAAQPAAAAAAQC0AAAAAQDwAAAAAQP8AAAAAQC0AAAAAQQ4AAAAAQL4AAAAAQMMAAAAAQQkAAAAAQHMAAAAAQPoAAAAAQUAAAAAAQPA' + + 'AAAAAQMgAAAAAQJYAAAAAQL4AAAAAQSwAAAAAQQQAAAAAQC0AAAAAQNIAAAAAQL4AAAAAQPAAAAAAQMMAAAAAQMMAAAAAQQ4AAAAAQQ4AAAAAgAGBQAFHQAACJ0InQAeCOkI6QAfCOsI8gAgCPQJEwAoCi8KMgBIAAEAAgTSBOUAAgAAAAoAAAAQAAEAAAAoAAEAAAAK' + + 'AAEClgJuAAECngAMAEwAmgCgAKYArACyALgAvgDEAMoA0ADWANwA4gDoAO4A9AD6AQABBgEMARIBGAEeASQBKgEwATYBPAFCAUgBTgFUAVoBYAFmAWwBcgF4AX4BhAGKAZABlgGcAaIBqAGuAbQBugHAAcYBzAHSAdgB3gHkAeoB8AH2AfwCAgIIAg4CFAIaAiACJgIs' + + 'AjICOAI+AkQCSgJQAlYCXAABBOwFlgABBBAFlgABAuQFlgABA9QFlgABBJwFlgABAjAFlgABAkQFlgABBNgFlgABBNgFlgABAjAFlgABA/wFlgABA9QFlgABA+gFlgABBQAFlgABBOwFlgABAjAFlgABAqgFlgABBOwFlgABBHQFlgABBIgFlgABBIgFlgABBBAFlgAB' + + 'BGAFlgABBIgFlgABA9QFlgABBfAFlgABBNgFlgABA/wFlgABA/wFlgABA/wFlgABBBAFlgABA/wFlgABBOwFlgABA9QFlgABBJwFlgABA9QFlgABA+gFlgABBQAFlgABA9QFlgABBNgFlgABBxwFlgABBfAFlgABBxwFlgABBfAFlgABBOwFlgABBOwFlgABBOwFlgAB' + + 'BBAFlgABAuQFlgABA9QFlgABBJwFlgABAjAFlgABAkQFlgABBNgFlgABAjAFlgABA/wFlgABA9QFlgABA+gFlgABBQAFlgABAqgFlgABBOwFlgABBIgFlgABBIgFlgABBGAFlgABBIgFlgABA9QFlgABBfAFlgABBNgFlgABAqgFlgABBDgFlgABA/wFlgABBIgFlgAB' + + 'A+gFlgABA+gFlgABA/wFlgABA/wFlgACAAYFAAUdAAAInQidAB4I6QjpAB8I6wjyACAI9AkTACgKLwoyAEgAAQACBPcI6AACAAAACgAAABAAAQAABZYAAQAABZYAAQKWAm4AAQKgAAwATACaAKAApgCsALIAuAC+AMQAygDQANYA3ADiAOgA7gD0APoBAAEGAQwBEgEY' + + 'AR4BJAEqATABNgE8AUIBSAFOAVQBWgFgAWYBbAFyAXgBfgGEAYoBkAGWAZwBogGoAa4BtAG6AcABxgHMAdIB2AHeAeQB6gHwAfYB/AICAggCDgIUAhoCIAImAiwCMgI4Aj4CRAJKAlACVgJcAAEBQAVGAAEA8AVGAAEA8AVGAAEAjAVGAAEA8AVGAAEBBAVGAAEAjAVG' + + 'AAEA8AVGAAEA8AVGAAEBBAVGAAEAjAVGAAEAyAVGAAEAAAVGAAEA8AVGAAEAjAVGAAEBBAVGAAEA8AVGAAEAyAVGAAEAyAVGAAEA8AVGAAEA8AVGAAEAjAVGAAEAjAVGAAEA8AVGAAEAjAVGAAEAjAVGAAEAyAVGAAEBBAVGAAEBBAVGAAEBBAVGAAEBBAVGAAEBBAVG' + + 'AAEA8AVGAAEAjAVGAAEA8AVGAAEAyAVGAAEAAAVGAAEA8AVGAAEAjAVGAAEAyAVGAAEAjAVGAAEAPAVGAAEAjAVGAAEAPAVGAAEA8AVGAAEA8AVGAAEA8AVGAAEA8AVGAAEA8AVGAAEAjAVGAAEA8AVGAAEBBAVGAAEAjAVGAAEA8AVGAAEBBAVGAAEAjAVGAAEAyAVG' + + 'AAEAAAVGAAEAjAVGAAEAyAVGAAEAyAVGAAEA8AVGAAEA8AVGAAEAjAVGAAEA8AVGAAEAjAVGAAEAjAVGAAEAyAVGAAEAZAVGAAEA8AVGAAEAyAVGAAEA8AVGAAH/TAVGAAH/TAVGAAEAjAVGAAEAjAVGAAIABgUABR0AAAidCJ0AHgjpCOkAHwjrCPIAIAj0CRMAKAov' + + 'CjIASAABAAME0QThBOYAAwAAAA4AAAAUAAAAGgABAAAFRgABAAAFRgABAAAFRgADAAIAHAA+AAEAFAAAAAEAAAAXAAEAAgTSBOUAAQAPBOgE6QTqBOsE7ATtBO4E7wTwBPME9QT/CjgKOQo6AAEAFgUCBQMFBQUGBQkFDAUQBRgI7AjvCPEI/Aj9CP8JAAkCCQUJBwkN' + + 'CRAKLwowAAMAAwAeACQAKgABABYAAAABAAAAFwABAAIE0gTlAAEAAQTsAAEAAQToAAEAFgUCBQMFBQUGBQkFDAUQBRgI7AjvCPEI/Aj9CP8JAAkCCQUJBwkNCRAKLwowAAMAAwAeACQAKgABABYAAAABAAAAFwABAAIE0gTlAAEAAQT1AAEAAQToAAEAFgUCBQMFBQUG' + + 'BQkFDAUQBRgI7AjvCPEI/Aj9CP8JAAkCCQUJBwkNCRAKLwowAAMAAwAeACQAKgABABYAAAABAAAAFwABAAIE0gTlAAEAAQT1AAEAAQTsAAEAFgUCBQMFBQUGBQkFDAUQBRgI7AjvCPEI/Aj9CP8JAAkCCQUJBwkNCRAKLwowAAMAAwAeACQAKgABABYAAAABAAAAFwAB' + + 'AAIE0gTlAAEAAQT1AAEAAQTtAAEAFgUCBQMFBQUGBQkFDAUQBRgI7AjvCPEI/Aj9CP8JAAkCCQUJBwkNCRAKLwowAAMAAwAeACQAKgABABYAAAABAAAAFwABAAIE0gTlAAEAAQT1AAEAAQTvAAEAFgUCBQMFBQUGBQkFDAUQBRgI7AjvCPEI/Aj9CP8JAAkCCQUJBwkN' + + 'CRAKLwowAAMAAwAeACQAKgABABYAAAABAAAAFwABAAIE0gTlAAEAAQT1AAEAAQTwAAEAFgUCBQMFBQUGBQkFDAUQBRgI7AjvCPEI/Aj9CP8JAAkCCQUJBwkNCRAKLwowAAMAAgAcACIAAQAUAAAAAQAAABcAAQACBNIE5QABAAEE9QABABYFAgUDBQUFBgUJBQwFEAUY' + + 'COwI7wjxCPwI/Qj/CQAJAgkFCQcJDQkQCi8KMAABApYCbgABArYADABMAJoAoACmAKwAsgC4AL4AxADKANAA1gDcAOIA6ADuAPQA+gEAAQYBDAESARgBHgEkASoBMAE2ATwBQgFIAU4BVAFaAWABZgFsAXIBeAF+AYQBigGQAZYBnAGiAagBrgG0AboBwAHGAcwB0gHY' + + 'Ad4B5AHqAfAB9gH8AgICCAIOAhQCGgIgAiYCLAIyAjgCPgJEAkoCUAJWAlwAAQLaBUYAAQJYBUYAAQGkBUYAAQIwBUYAAQKUBUYAAQE2BUYAAQGkBUYAAQKoBUYAAQKoBUYAAQE2BUYAAQHMBUYAAQHMBUYAAQMqBUYAAQKoBUYAAQM0BUYAAQE2BUYAAQF8BUYAAQKo' + + 'BUYAAQKUBUYAAQKABUYAAQKABUYAAQIwBUYAAQJEBUYAAQJYBUYAAQHgBUYAAQNIBUYAAQK8BUYAAQJYBUYAAQJYBUYAAQJYBUYAAQJYBUYAAQJYBUYAAQLaBUYAAQIwBUYAAQKUBUYAAQHMBUYAAQMqBUYAAQKoBUYAAQHgBUYAAQK8BUYAAQNIBUYAAQNIBUYAAQNI' + + 'BUYAAQNIBUYAAQLaBUYAAQLaBUYAAQLaBUYAAQJYBUYAAQGkBUYAAQIwBUYAAQKUBUYAAQE2BUYAAQGkBUYAAQKoBUYAAQE2BUYAAQHMBUYAAQHMBUYAAQMqBUYAAQM0BUYAAQF8BUYAAQKoBUYAAQKABUYAAQKABUYAAQJEBUYAAQJYBUYAAQHgBUYAAQNIBUYAAQK8' + + 'BUYAAQC0BUYAAQFoBUYAAQEsBUYAAQGQBUYAAQMqBUYAAQMqBUYAAQHMBUYAAQHMBUYAAgAGBQAFHQAACJ0InQAeCOkI6QAfCOsI8gAgCPQJEwAoCi8KMgBIAAEADgTKBMsEzATNBM8E0ATUBNYE1wTZBOAE4wTkBOcADgAAADoAAABAAAAARgAAAEwAAABSAAAAWAAA' + + 'AF4AAABkAAAAagAAAHAAAAB2AAAAfAAAAIIAAACIAAEB4AVGAAEAyAVGAAEBQAVGAAECCAVGAAEA3AVGAAEBQAVGAAEBaAVGAAEBVAVGAAEB9AVGAAEAyAVGAAEAyAVGAAEAyAVGAAEAyAVGAAEBBAVuAAEDoAMeAAEDpgAMAGIAxgDMANIA2ADeAOQA6gDwAPYA/AEC' + + 'AQgBDgEUARoBIAEmASwBMgE4AT4BRAFKAVABVgFcAWIBaAFuAXQBegGAAYYBjAGSAZgBngGkAaoBsAG2AbwBwgHIAc4B1AHaAeAB5gHsAfIB+AH+AgQCCgIQAhYCHAIiAigCLgI0AjoCQAJGAkwCUgJYAl4CZAJqAnACdgJ8AoICiAKOApQCmgKgAqYCrAKyArgCvgLE' + + 'AsoC0ALWAtwC4gLoAu4C9AL6AwADBgMMAAEDogWMAAEE7AR+AAEFFATYAAEFFAR+AAEEvwWMAAEEdwWMAAEFRgTYAAEFFAWMAAEBfAWMAAEDwAWMAAEEsAWMAAEBkAWMAAEGBAWMAAEFFAWMAAEFoAR+AAEE7AR+AAEFoAR+AAEFKAR+AAEEiAUAAAEEnAWMAAEFFAWM' + + 'AAEE2AWMAAEHMAWMAAEEiAWMAAEEsAWMAAEEagWMAAEDtgOEAAEEYAOEAAEDhAOsAAEEOAXcAAED/AOEAAECqAXcAAEEOARMAAEEOAOEAAEBmgRMAAEBmgRMAAEDrARMAAEBmgXcAAEGkAOEAAEEOAOEAAEEYAOEAAEEYAOEAAEEOARMAAEC+ARMAAEDwAP8AAECWARM' + + 'AAEEOARMAAED/ARMAAEF8ARMAAEDrARMAAED/ARMAAEDcARMAAEDtgOEAAEDtgOEAAEDtgOEAAEDtgOEAAEDtgOEAAEDtgOEAAEGmgOEAAED6AOEAAED6AOEAAED6AOEAAED6AOEAAEBmgRMAAEBmgRMAAEBmgRMAAEBmgRMAAEEYAOEAAEEYAOEAAEEYAOEAAEEYAOE' + + 'AAEEYAOEAAEEYAOEAAEEOARMAAEEOARMAAEEOARMAAEEOARMAAED/ARMAAED/ARMAAEBmgRMAAEHHAOEAAED6AOEAAEEBgOEAAEEOARMAAEEYAOEAAED6AOEAAED6AOEAAEDXAPoAAEDXAPoAAED1AOEAAEEiAQGAAEBmgRMAAECvARMAAEEYAOEAAEGQARMAAEEOARM' + + 'AAEEsARMAAEDIARMAAIAFQAkAD0AAABEAF0AGgCiAKgANACqALEAOwC0ALgAQwC6AL8ASADBAMEATgDzAPMATwEVARUAUAGfAZ8AUQISAhQAUgIWAhYAVQIaAhoAVgIdAh4AVwIgAiAAWQImAiYAWgIqAioAWwIsAiwAXAI3AjgAXQJLAkwAXwJOAk4AYQABAAECoAAB' + + 'AAAABgABAAADDAABAbgBZgABAgoADAArAFgAXgBkAGoAcAB2AHwAggCIAI4AlACaAKAApgCsALIAuAC+AMQAygDQANYA3ADiAOgA7gD0APoBAAEGAQwBEgEYAR4BJAEqATABNgE8AUIBSAFOAVQAAQAA/fgAAQAA/fgAAQAA/fgAAQAA/fgAAQAA/fgAAQAA/fgAAQAA' + + '/fgAAQAA/fgAAQAA/kgAAQAA/fgAAQAA/fgAAQAA/fgAAQAA/fgAAQAA/fgAAQAA/fgAAQAA/fgAAQAA/fgAAQAA/fgAAQAA/fgAAQAA/fgAAQAA/fgAAQAA/kgAAQAA/kgAAQAA/KQAAQAA/fgAAQAA/fgAAQAA/fgAAQAA/fgAAQAA/fgAAQAA/fgAAQAA/fgAAQAA' + + '/fgAAQAA/fgAAQAA/fgAAQAA/fgAAQAA/fgAAQAA/fgAAQAA/fgAAQAA/fgAAQAA/fgAAQAA/fgAAQAA/fgAAQAA/fgAAgANAtgC2wAAAt4C4gAEAuUC6AAJAusC9QANAvsC/gAYAwcDBwAcAwkDCwAdAw8DEAAgAxUDGAAiAxsDHAAmBeIF4gAoBeoF6gApBewF7AAq' + + 'AAIADQLYAtsAAALeAuIABALlAugACQLrAvUADQL7Av4AGAMHAwcAHAMJAwsAHQMPAxAAIAMVAxgAIgMbAxwAJgXiBeIAKAXqBeoAKQXsBewAKgArAAAArgAAALQAAAC6AAAAwAAAAMYAAADMAAAA0gAAANgAAADeAAAA5AAAAOoAAADwAAAA9gAAAPwAAAECAAABCAAA' + + 'AQ4AAAEUAAABGgAAASAAAAEmAAABLAAAATIAAAE4AAABPgAAAUQAAAFKAAABUAAAAVYAAAFcAAABYgAAAWgAAAFuAAABdAAAAXoAAAGAAAABhgAAAYwAAAGSAAABmAAAAZ4AAAGkAAABqgABAAD/nAABAAD/nAABAAD/sAABAAD/sAABABT/zgABAAD/sAABAAD/sAAB' + + 'AAD/sAABAAD/nAABAAD/fgABAAD/fgABAAD/zgABAAD/sAABAAD/xAABAAD/2AABAAD/iAABAAD/nAABAAD/nAABAAD/iAABAAD/iAABAAD/nAABAAD/dAABAAD/dAABAAD/TAAB/+z/zgABAAD/2AABAAD/2AABAAD/iAABAAD/iAABAAD/iAABAAD/xAABAAD/zgAB' + + 'AAD/nAABAAD/xAABAAAAAAABAAAAAAABAAAAAAABAB4AAAABAAD/xAABAAD/7AABAAD/sAAB/+L/zgABAB4AAAABApYCbgABAswADABMAJoAoACmAKwAsgC4AL4AxADKANAA1gDcAOIA6ADuAPQA+gEAAQYBDAESARgBHgEkASoBMAE2ATwBQgFIAU4BVAFaAWABZgFs' + + 'AXIBeAF+AYQBigGQAZYBnAGiAagBrgG0AboBwAHGAcwB0gHYAd4B5AHqAfAB9gH8AgICCAIOAhQCGgIgAiYCLAIyAjgCPgJEAkoCUAJWAlwAAQKUAAAAAQIwAAAAAQIIAAAAAQIIAAAAAQK8AAAAAQE2AAAAAQFoAAAAAQK8AAAAAQK8AAAAAQDIAAAAAQEsAAAAAQHM' + + 'AAAAAQGkAAAAAQLaAAAAAQK8AAAAAQIIAAAAAQF8AAAAAQLQAAAAAQKoAAAAAQGQAAAAAQJYAAAAAQKUAAAAAQJYAAAAAQJsAAAAAQIwAAAAAQMgAAAAAQLkAAAAAQGQAAAAAQGQAAAAAQGQAAAAAQJYAAAAAQGQAAAAAQKUAAAAAQIIAAAAAQK8AAAAAQHMAAAAAQGk' + + 'AAAAAQLaAAAAAQIwAAAAAQLkAAAAAQMgAAAAAQMgAAAAAQMgAAAAAQMgAAAAAQPUAAAAAQPUAAAAAQKUAAAAAQIwAAAAAQIIAAAAAQIIAAAAAQK8AAAAAQE2AAAAAQFoAAAAAQK8AAAAAQDIAAAAAQEsAAAAAQHMAAAAAQGkAAAAAQK8AAAAAQF8AAAAAQLQAAAAAQGQ' + + 'AAAAAQJYAAAAAQJYAAAAAQJsAAAAAQIwAAAAAQMgAAAAAQLkAAAAAQE2AAAAAQIwAAAAAQHMAAAAAQJYAAAAAQGkAAAAAQGkAAAAAQEsAAAAAQEsAAAAAgAGBQAFHQAACJ0InQAeCOkI6QAfCOsI8gAgCPQJEwAoCi8KMgBIAAEAGQTJBM4E0wTaBNsE3ATdBN4E3wTi' + + 'BOgE6QTqBOsE7ATtBO4E7wTwBPME9QT/CjgKOQo6ABkAAABmAAAAbAAAAHIAAAB4AAAAfgAAAIQAAACKAAAAkAAAAJYAAACcAAAAogAAAKgAAACuAAAAtAAAALoAAADAAAAAxgAAAMwAAADSAAAA2AAAAN4AAADkAAAA6gAAAPAAAAD2AAH/EAAUAAH/EAAUAAH+/AAU' + + 'AAH/EAAUAAH/EAAUAAH/EAAUAAH/EAAUAAH+mAAUAAH/EAAUAAH/EAAUAAH+/AAUAAH+6AAUAAH+/AAUAAH+/AAUAAH+/AAUAAH+/AAUAAH+/AAUAAH+/AAUAAH+/AAUAAH+/AAUAAH/EAAAAAH/2AAAAAH+rAAUAAH+rAAUAAH+rAAUAAEClgJuAAECzAAMAEwAmgCg' + + 'AKYArACyALgAvgDEAMoA0ADWANwA4gDoAO4A9AD6AQABBgEMARIBGAEeASQBKgEwATYBPAFCAUgBTgFUAVoBYAFmAWwBcgF4AX4BhAGKAZABlgGcAaIBqAGuAbQBugHAAcYBzAHSAdgB3gHkAeoB8AH2AfwCAgIIAg4CFAIaAiACJgIsAjICOAI+AkQCSgJQAlYCXAAB' + + 'ApQAAAABAjAAAAABAggAAAABArwAAAABArwAAAABAbgAAAABAWgAAAABArwAAAABArwAAAABAbgAAAABAlgAAAABAcwAAAABAaQAAAABAtoAAAABArwAAAABAGQAAAABAXwAAAABAtAAAAABAqgAAAABAoAAAAABAlgAAAABARgAAAABAlgAAAABAIwAAAABApQAAAAB' + + 'AyAAAAABAuQAAAABAlgAAAABAlgAAAABAlgAAAABAlgAAAABAlgAAAABApQAAAABArwAAAABArwAAAABAcwAAAABAaQAAAABAtoAAAABApQAAAABAuQAAAABAyAAAAABAyAAAAABAyAAAAABAyAAAAABAcwAAAABAcwAAAABApQAAAABAjAAAAABAggAAAABArwAAAAB' + + 'ArwAAAABAbgAAAABAWgAAAABArwAAAABAbgAAAABAlgAAAABAcwAAAABAaQAAAABArwAAAABAXwAAAABAtAAAAABAoAAAAABAlgAAAABAlgAAAABAIwAAAABApQAAAABAyAAAAABAuQAAAABAbgAAAABAjAAAAABAcwAAAABAlgAAAABAaQAAAABAaQAAAABAlgAAAAB' + + 'AlgAAAACAAYFAAUdAAAInQidAB4I6QjpAB8I6wjyACAI9AkTACgKLwoyAEgAAQAZBMkEzgTTBNoE2wTcBN0E3gTfBOIE6ATpBOoE6wTsBO0E7gTvBPAE8wT1BP8KOAo5CjoAGQAAAGYAAABsAAAAcgAAAHgAAAB+AAAAhAAAAIoAAACQAAAAlgAAAJwAAACiAAAAqAAA' + + 'AK4AAAC0AAAAugAAAMAAAADGAAAAzAAAANIAAADYAAAA3gAAAOQAAADqAAAA8AAAAPYAAQDwABQAAQDIAAAAAQDIABQAAQDwABQAAQDIABQAAQDIABQAAQDcAAAAAQFoAAAAAQDIABQAAQDwABQAAQCgABQAAQFAABQAAQEsABQAAQEsABQAAQCMABQAAQDwABQAAQDw' + + 'ABQAAQDwABQAAQDwABQAAQEYABQAAQB4AAAAAQIwAAAAAQGQABQAAQGQABQAAQGQABQAAQJmAg4AAQK+AAwAQACCAIgAjgCUAJoAoACmAKwAsgC4AL4AxADKANAA1gDcAOIA6ADuAPQA+gEAAQYBDAESARgBHgEkASoBMAE2ATwBQgFIAU4BVAFaAWABZgFsAXIBeAF+' + + 'AYQBigGQAZYBnAGiAagBrgG0AboBwAHGAcwB0gHYAd4B5AHqAfAB9gH8AAH+ygeUAAH/EAeUAAEAAAaQAAH90AeUAAEAAAaQAAEAAAcIAAEAAAaQAAEAAAaQAAEAAAaQAAH+3geUAAEAAAaQAAEAAAaQAAEAAAaQAAEAAAaQAAEAAAaQAAH/kgaQAAEAAAcIAAEAAAZA' + + 'AAEAAAYEAAEAAAYEAAEAAAYEAAEAAAcwAAEAAAaQAAEAAAbgAAEAAAeUAAEAAAYEAAEAAAYEAAEAAAaQAAEAAAaQAAEAAAaQAAEAAAeUAAEAAAcwAAEAAAaQAAEAAAaQAAEAAAcwAAEAAAaQAAEAAAaQAAEAAAaQAAEAAAaQAAEAAAaQAAEAAAaQAAEAAAaQAAEAAAaQ' + + 'AAEAAAaQAAEAAAaQAAEAAAaQAAEAAAaQAAEAAAaQAAEAAAaQAAEAAAaQAAEAAAaQAAEAAAaQAAEAAAaQAAEAAAaQAAEAAAbMAAEAAAbMAAEAAAaQAAEAAAaQAAEAAAaQAAEAAAaQAAEAAAaQAAEAAAaQAAEAAAaQAAEAAAaQAAIADgLCAtYAAALcAtwAFQL/AwEAFgME' + + 'AwYAGQMIAwgAHAMMAw4AHQMSAxQAIAMZAxkAIwMdAx0AJAMlAzEAJQQ0BDcAMgXgBeEANgXjBekAOAXrBesAPwACAA4CwgLWAAAC3ALcABUC/wMBABYDBAMGABkDCAMIABwDDAMOAB0DEgMUACADGQMZACMDHQMdACQDJQMxACUENAQ3ADIF4AXhADYF4wXpADgF6wXr' + + 'AD8AQAAAAQIAAAEIAAABDgAAARQAAAEaAAABIAAAASYAAAEsAAABMgAAATgAAAE+AAABRAAAAUoAAAFQAAABVgAAAVwAAAFiAAABaAAAAW4AAAF0AAABegAAAYAAAAGGAAABjAAAAZIAAAGYAAABngAAAaQAAAGqAAABsAAAAbYAAAG8AAABwgAAAcgAAAHOAAAB1AAA' + + 'AdoAAAHgAAAB5gAAAewAAAHyAAAB+AAAAf4AAAIEAAACCgAAAhAAAAIWAAACHAAAAiIAAAIoAAACLgAAAjQAAAI6AAACQAAAAkYAAAJMAAACUgAAAlgAAAJeAAACZAAAAmoAAAJwAAACdgAAAnwAAf78BhgAAf7tBhgAAQAABJwAAf28BhgAAQAABRQAAQAABhgAAQAA' + + 'BLAAAQAABOIAAQAABOIAAf7eBb4AAQAABIgAAf+wBJwAAQAABJwAAQAABGAAAQAABGAAAQBkBJwAAQAABJwAAQAABJwAAQAAAzQAAQAAAzQAAQAAAzQAAQAABLAAAQAABHQAAQAABHQAAQAABgQAAQAABLAAAQAAA4QAAQAABJwAAQAABLAAAQAABIgAAQAABOwAAQAA' + + 'BJwAAQAABH4AAQAABH4AAQAABM4AAQAABH4AAQAABH4AAQAAAeAAAQAAAeAAAQAAAeAAAQAAAeAAAQAAAeAAAQAAAeAAAQAAAeAAAQAAAeAAAQAAAeAAAf+cAeAAAQAAAeAAAQAAAeAAAQAAAeAAAQAABEwAAQAABLAAAQAABDgAAQAABDgAAQAABJwAAQAABJwAAQAA' + + 'BNgAAQAABJwAAQAABJwAAQAABJwAAQAABJwAAQAABM4AAQAABM4AAQAABH4AAQT2BM4AAgUcAAwATAEyATgBPgFEAUoBUAFWAVwBYgFoAW4BdAF6AYABhgGMAZIBmAGeAaQBqgGwAbYBvAHCAcgBzgHUAdoB4AHmAewB8gH4Af4CBAIKAhACFgIcAiICKAIuAjQCOgJA' + + 'AkYCTAJSAlgCXgJkAmoCcAJ2AnwCggKIAo4ClAKaAqACpgKsArICuAK+AsQCygLQAtYC3ALiAugC7gL0AvoDAAMGAwwDEgMYAx4DJAMqAzADNgM8A0IDSANOA1QDWgNgA2YDbANyA3gDfgOEA4oDkAOWA5wDogOoA64DtAO6A8ADxgPMA9ID2APeA+QD6gPwA/YD/AQC' + + 'BAgEDgQUBBoEIAQmBCwEMgQ4BD4ERARKBFAEVgRcBGIEaARuBHQEegSABIYEjASSBJgEngSkBKoEsAS2BLwAAQLaBUYAAQLaBqQAAQJYBUYAAQJYBqQAAQGkBUYAAQGkBqQAAQIwBUYAAQIwBqQAAQKUBUYAAQKUBqQAAQE2BUYAAQE2BqQAAQGkBUYAAQGkBqQAAQKo' + + 'BUYAAQKoBqQAAQKoBUYAAQKoBqQAAQE2BUYAAQE2BqQAAQHMBUYAAQHMBqQAAQHMBUYAAQHMBqQAAQKoBUYAAQKoBqQAAQKoBUYAAQKoBqQAAQM0BUYAAQM0BqQAAQE2BUYAAQE2BqQAAQF8BUYAAQF8BqQAAQKoBUYAAQKoBqQAAQKUBUYAAQKUBqQAAQKABUYAAQKA' + + 'BqQAAQKABUYAAQKABqQAAQIwBUYAAQIwBqQAAQJEBUYAAQJEBqQAAQJYBUYAAQJYBqQAAQHgBUYAAQHgBqQAAQNIBUYAAQNIBqQAAQK8BUYAAQK8BqQAAQJYBUYAAQJYBqQAAQJYBUYAAQJYBqQAAQJYBUYAAQJYBqQAAQJYBUYAAQJYBqQAAQJYBUYAAQJYBqQAAQLa' + + 'BUYAAQLaBqQAAQIwBUYAAQIwBqQAAQKUBUYAAQKUBqQAAQHMBUYAAQHMBqQAAQKoBUYAAQKoBqQAAQKoBUYAAQKoBqQAAQHgBUYAAQHgBqQAAQK8BUYAAQK8BqQAAQNIBUYAAQNIBqQAAQNIBUYAAQNIBqQAAQNIBUYAAQNIBqQAAQNIBUYAAQNIBqQAAQLaBUYAAQLa' + + 'BqQAAQLaBUYAAQLaBqQAAQLaBUYAAQLaBqQAAQJYBUYAAQJYBqQAAQGkBUYAAQGkBqQAAQIwBUYAAQIwBqQAAQKUBUYAAQKUBqQAAQE2BUYAAQE2BqQAAQGkBUYAAQGkBqQAAQKoBUYAAQKoBqQAAQE2BUYAAQE2BqQAAQHMBUYAAQHMBqQAAQHMBUYAAQHMBqQAAQKo' + + 'BUYAAQKoBqQAAQM0BUYAAQM0BqQAAQF8BUYAAQF8BqQAAQKoBUYAAQKoBqQAAQKABUYAAQKABqQAAQKABUYAAQKABqQAAQJEBUYAAQJEBqQAAQJYBUYAAQJYBqQAAQHgBUYAAQHgBqQAAQNIBUYAAQNIBqQAAQK8BUYAAQK8BqQAAQE2BqQAAQE2BqQAAQIcBqQAAQIc' + + 'BqQAAQHgBqQAAQHgBqQAAQJiBqQAAQJiBqQAAQKoBUYAAQKoBqQAAQKoBUYAAQKoBqQAAQHMBUYAAQHMBqQAAQHMBUYAAQHMBqQAAgAGBQAFHQAACJ0InQAeCOkI6QAfCOsI8gAgCPQJEwAoCi8KMgBIAAEAEQTKBMsEzATNBM8E0ATUBNYE1wTZBOAE4wTkBOcE9wT8' + + 'COgAEQAAAEYAAABMAAAAUgAAAFgAAABeAAAAZAAAAGoAAABwAAAAdgAAAHwAAACCAAAAiAAAAI4AAACUAAAAmgABAKAAAACmAAEA6wVGAAEAAAVGAAEAtAVGAAEBBAVGAAEAAAVGAAEAAAVGAAEAoAVGAAH/nAVGAAEAAAVGAAEAAAVGAAEAAAVGAAEAFAVGAAEAAAVG' + + 'AAEAAAVuAAEAAAWWAAEAAAYOAAEAAAWWAAEE9gTOAAIFLgAMAEwBMgE4AT4BRAFKAVABVgFcAWIBaAFuAXQBegGAAYYBjAGSAZgBngGkAaoBsAG2AbwBwgHIAc4B1AHaAeAB5gHsAfIB+AH+AgQCCgIQAhYCHAIiAigCLgI0AjoCQAJGAkwCUgJYAl4CZAJqAnACdgJ8' + + 'AoICiAKOApQCmgKgAqYCrAKyArgCvgLEAsoC0ALWAtwC4gLoAu4C9AL6AwADBgMMAxIDGAMeAyQDKgMwAzYDPANCA0gDTgNUA1oDYANmA2wDcgN4A34DhAOKA5ADlgOcA6IDqAOuA7QDugPAA8YDzAPSA9gD3gPkA+oD8AP2A/wEAgQIBA4EFAQaBCAEJgQsBDIEOAQ+' + + 'BEQESgRQBFYEXARiBGgEbgR0BHoEgASGBIwEkgSYBJ4EpASqBLAEtgS8AAEClAAAAAEClAAAAAECMAAAAAECMAAAAAECCAAAAAECCAAAAAEDPgAAAAEDPgAAAAECvAAAAAECvAAAAAEBNgAAAAEBNgAAAAEBaAAAAAEBaAAAAAECvAAAAAECvAAAAAECvAAAAAECvAAA' + + 'AAEBLAAAAAEBNgAAAAEBfAAAAAEBfAAAAAEBzAAAAAEBzAAAAAEB4AAAAAEB4AAAAAEC2gAAAAEC2gAAAAECvAAAAAECvAAAAAH/EAAAAAEBNgAAAAEBfAAAAAEBfAAAAAEC0AAAAAEC0AAAAAECqAAAAAECqAAAAAEB9AAAAAEB9AAAAAECWAAAAAECWAAAAAEDwAAA' + + 'AAEB4AAAAAECWAAAAAECWAAAAAEDXAAAAAEClAAAAAEDcAAAAAEB9AAAAAEDIAAAAAEDIAAAAAEC5AAAAAEC5AAAAAECWAAAAAECWAAAAAECWAAAAAECWAAAAAECWAAAAAECWAAAAAECYgAAAAECYgAAAAECWAAAAAECWAAAAAEClAAAAAEClAAAAAEDPgAAAAEDPgAA' + + 'AAECvAAAAAECvAAAAAEBzAAAAAEBzAAAAAEB4AAAAAEB4AAAAAEC2gAAAAEC2gAAAAEDcAAAAAEB9AAAAAEC5AAAAAEC5AAAAAEDIAAAAAEDIAAAAAEDIAAAAAEDIAAAAAEDIAAAAAEDIAAAAAEDIAAAAAEDIAAAAAEBaAAAAAECqAAAAAEBaAAAAAECqAAAAAECqAAA' + + 'AAECbAAAAAECMAAAAAECMAAAAAECCAAAAAECCAAAAAEDPgAAAAECMAAAAAECvAAAAAECvAAAAAEBNgAAAAEBNgAAAAEBaAAAAAEBaAAAAAECvAAAAAECvAAAAAEBNgAAAAEBNgAAAAEBaAAAAAEBkAAAAAEBzAAAAAEBzAAAAAEB4AAAAAEB4AAAAAECvAAAAAECvAAA' + + 'AAEBfAAAAAEBfAAAAAEC0AAAAAEC0AAAAAEB9AAAAAEB9AAAAAECWAAAAAECWAAAAAECWAAAAAECWAAAAAEDXAAAAAECqAAAAAEDcAAAAAEB9AAAAAEDIAAAAAEDIAAAAAEC5AAAAAEC5AAAAAEBQAAAAAEBNgAAAAECMAAAAAECMAAAAAEBzAAAAAEBzAAAAAECWAAA' + + 'AAECWAAAAAEB4AAAAAEB4AAAAAEB4AAAAAEB4AAAAAEBfAAAAAEBfAAAAAEBfAAAAAEBfAAAAAIABgUABR0AAAidCJ0AHgjpCOkAHwjrCPIAIAj0CRMAKAovCjIASAABABoEyQTOBNME2gTbBNwE3QTeBN8E4gToBOkE6gTrBOwE7QTuBO8E8ATzBPUE/QT/CjgKOQo6' + + 'ABoAAABqAAAAcAAAAHYAAAB8AAAAggAAAIgAAACOAAAAlAAAAJoAAACgAAAApgAAAKwAAACyAAAAuAAAAL4AAADEAAAAygAAANAAAADWAAAA3AAAAOIAAQDoAAAA7gAAAPQAAAD6AAABAAABAAAAFAABAC0AAAAB/+wAFAABAAAAFAABAAAAFAABAAAAFAABAAAAAAAB' + + 'ABsAAAABAAAAFAABAAAAFAABAAAAFAABAAAAFAABAAAAFAABAAAAFAABAAAAAAABAAAAAAABAAAAFAABAAAAAAABAAAAAAABAAAAFAABAAAAAAABAAAAMgABARgAAAAB/+IAFAAB/+IAFAAB/+IAFAABBqoABQAAADEAbABsAGwAzgF+Ai4CNgDOAGwC4APqAGwETALg' + + 'BPYAzgIuAGwGBgYGAGwAzgBsAuAAzgBsAi4CLgIuAi4AbABsAGwAbADOAi4AzgLgAuAAzgIuAGwAbALgBPYAzgDOAuAAbAAQBQz/1//XBRL/1//XBRf/1//XBRn/1//XCOr/1//XCO//1//XCPT/1//XCPX/1//XCPb/1//XCPf/1//XCQX/1//XCQz/1//XCQ7/1//X' + + 'Ci//1//XCjD/1//XCjb/1//XAB0FAf/D/8MFAv+a/5oFBP/D/8MFBgApACkFB//D/8MFCv/D/8MFC//D/8MFDf/D/8MFDv/D/8MFEf/D/8MFE//D/8MFFP/D/8MFGv/D/8MI7f/D/8MI7v/D/8MI8P/D/8MI8v/D/8MI/v/D/8MJAf/D/8MJBP/D/8MJCP/D/8MJCf/D' + + '/8MJCv/D/8MJD//D/8MJEf/D/8MJEv/D/8MJE//D/8MKMf/D/8MKMv/D/8MAHQUB/9f/1wUC/+z/7AUDACkAKQUE/9f/1wUH/9f/1wUK/9f/1wUL/9f/1wUN/9f/1wUO/9f/1wUR/9f/1wUT/9f/1wUU/9f/1wUa/9f/1wjt/9f/1wju/9f/1wjw/9f/1wjy/9f/1wj+' + + '/9f/1wkB/9f/1wkE/9f/1wkI/9f/1wkJ/9f/1wkK/9f/1wkP/9f/1wkR/9f/1wkS/9f/1wkT/9f/1wox/9f/1woy/9f/1wABBQL/1//XABwFAf/X/9cFAv/X/9cFBP/X/9cFB//X/9cFCv/X/9cFC//X/9cFDf/X/9cFDv/X/9cFEf/X/9cFE//X/9cFFP/X/9cFGv/X' + + '/9cI7f/X/9cI7v/X/9cI8P/X/9cI8v/X/9cI/v/X/9cJAf/X/9cJBP/X/9cJCP/X/9cJCf/X/9cJCv/X/9cJD//X/9cJEf/X/9cJEv/X/9cJE//X/9cKMf/X/9cKMv/X/9cALAUB/9f/1wUC/9f/1wUE/9f/1wUH/9f/1wUK/9f/1wUL/9f/1wUM/+z/7AUN/9f/1wUO' + + '/9f/1wUR/9f/1wUS/+z/7AUT/9f/1wUU/9f/1wUX/+z/7AUZ/+z/7AUa/9f/1wjq/+z/7Ajt/9f/1wju/9f/1wjv/+z/7Ajw/9f/1wjy/9f/1wj0/+z/7Aj1/+z/7Aj2/+z/7Aj3/+z/7Aj+/9f/1wkB/9f/1wkE/9f/1wkF/+z/7AkI/9f/1wkJ/9f/1wkK/9f/1wkM' + + '/+z/7AkO/+z/7AkP/9f/1wkR/9f/1wkS/9f/1wkT/9f/1wov/+z/7Aow/+z/7Aox/9f/1woy/9f/1wo2/+z/7AAQBQz/7P/sBRL/7P/sBRf/7P/sBRn/7P/sCOr/7P/sCO//7P/sCPT/7P/sCPX/7P/sCPb/7P/sCPf/7P/sCQX/7P/sCQz/7P/sCQ7/7P/sCi//7P/s' + + 'CjD/7P/sCjb/7P/sABwFAf/s/+wFBP/s/+wFBgApACkFB//s/+wFCv/s/+wFC//s/+wFDf/s/+wFDv/s/+wFEf/s/+wFE//s/+wFFP/s/+wFGv/s/+wI7f/s/+wI7v/s/+wI8P/s/+wI8v/s/+wI/v/s/+wJAf/s/+wJBP/s/+wJCP/s/+wJCf/s/+wJCv/s/+wJD//s' + + '/+wJEf/s/+wJEv/s/+wJE//s/+wKMf/s/+wKMv/s/+wALQUB/9f/1wUC/9f/1wUE/9f/1wUH/9f/1wUI/+z/7AUK/9f/1wUL/9f/1wUM/+z/7AUN/9f/1wUO/9f/1wUR/9f/1wUS/+z/7AUT/9f/1wUU/9f/1wUX/+z/7AUZ/+z/7AUa/9f/1wjq/+z/7Ajt/9f/1wju' + + '/9f/1wjv/+z/7Ajw/9f/1wjy/9f/1wj0/+z/7Aj1/+z/7Aj2/+z/7Aj3/+z/7Aj+/9f/1wkB/9f/1wkE/9f/1wkF/+z/7AkI/9f/1wkJ/9f/1wkK/9f/1wkM/+z/7AkO/+z/7AkP/9f/1wkR/9f/1wkS/9f/1wkT/9f/1wov/+z/7Aow/+z/7Aox/9f/1woy/9f/1wo2' + + '/+z/7AAbBQH/1//XBQT/1//XBQf/1//XBQr/1//XBQv/1//XBQ3/1//XBQ7/1//XBRH/1//XBRP/1//XBRT/1//XBRr/1//XCO3/1//XCO7/1//XCPD/1//XCPL/1//XCP7/1//XCQH/1//XCQT/1//XCQj/1//XCQn/1//XCQr/1//XCQ//1//XCRH/1//XCRL/1//X' + + 'CRP/1//XCjH/1//XCjL/1//XAAEAMQUABQEFAgUDBQYFCAUJBQoFCwUMBQ4FEAURBRMFFQUYBRkFGgUcBR0I6wjsCO4I7wjxCPII9Aj1CPYI9wj4CPkI+gj7CP0JAQkDCQUJCQkNCQ4JDwkRCi8KMAoxCjIKNgo3AAEPBgAEAAAAaADaAPwBAgEoATYBVAFmAXQBugHw' + + 'AiYCZAJqAngCggJ4AowCsgK8ArIDFgNAA2IDeAOOA2IDeAPMA+ID7ARyBOQE9gUAArICvAUmBTQFfgW0BfYFJgYgBk4GWAaCBpQGwgUmBsIG0AbqBuoG8AcyB2wHsggcCD4IZAiKCLQIugjICO4JSAmSCgwKngrECuIK8Ar2CwALOgtkC5ILnAvODAgMIgw0DFYMcAym' + + 'DMAM2gz8DS4NXA1yDZQN5g4QDjYORA5ODlgOgg6sDsIO3A7iDvAACAAk/7QAPP/bAzv/tANE/7QDR/+0A07/tANX/9sDXf/bAAEAFP+PAAkAA/+0ADf/aAA5/2gAOv+PADz/RABZ/7QAWv/bAFz/tAfl/48AAwAP/x0AEf8dACT/jwAHAAP/2wA3/2gAOf9oADr/jwA8' + + '/0QAXP+0B+X/jwAEAAP/2wAP/vgAEf74ACT/aAADADn/2wA6/9sAPP+0ABEAD/8dABD/jwAR/x0AHf8dAB7/HQAk/2gAMv/bAET/aABG/2gASP9oAEz/2wBS/2gAVf+PAFb/aABY/2gAWv9oAFz/aAANAA//RAAQ/48AEf9EAB3/jwAe/48AJP9oAET/jwBI/48ATP/b' + + 'AFL/aABV/48AWP+0AFz/tAANAA//jwAQ/9cAEf+PAB3/2wAe/9sAJP+PAET/tABI/9sATP/uAFL/2wBV/9sAWP/bAFz/2wAPAAP/2wAP/x0AEP+PABH/HQAd/2gAHv9oACT/RABE/48ASP+PAEz/tABS/2gAU/+PAFT/aABY/48AWf+PAAEH5QAlAAMAD/+PABH/jwfl' + + 'AEwAAgAP/2gAEf9oAAIAD/+0ABH/tAAJA0v/yQNS/8kDVv9WA1f/RgNY/8kDXf9GA2X/tANv/7QDef+0AAIDV//HA13/xwAWA0MBAANE/0YDR/9GA0v/sgNO/0YDUv+yA1j/sgNb/7IDXv9oA2D/tANh/7QDY/9oA2b/tANp/7QDa/+0A2z/tANu/7QDcf9oA3X/aAN4' + + '/2gDfABcA37/aAAKA0v/yQNS/8kDVv9WA1f/RgNY/8kDXf9GA2X/tANv/7QDef+0B+X/jwAIAA//HwAR/x8DRP8hA0f/IQNO/yEDYf++A2v/vgN8AF4ABQNL/8kDUv/JA1b/VgNX/0YDXf9GAAUDRP/JA0f/yQNO/8kDV//HA13/xwAPA0v/ogNS/6IDWP+iA17/0QNj' + + '/9EDZv/RA2j/0QNq/9EDcP/RA3H/0QN1/9EDeP/RA3v/0QN+/9EDgP/RAAUAD/76ABH++gNE/2gDR/9oA07/aAACA3L/3QN2/90AIQAP/x8AEP+PABH/HwAd/x8AHv8fA0MA8gNE/2gDR/9cA0v/2wNO/2gDUv/bA1j/yQNb/9sDXv9oA1//aANj/2gDZf9oA2b/rANn' + + '/2gDaf9oA2v/2wNu/2gDb/9oA3H/aAN1/2gDd/9oA3j/aAN5/4UDev9oA3wAXAN9/2gDfv9oA3//aAAcAA//HwAQ/48AEf8fAB3/aAAe/2gDQwEAA0T/RgNH/0YDS/+yA07/RgNS/7IDWP+yA1v/sgNe/2gDYP+0A2H/tANj/2gDZf+sA2b/tANp/7QDa/+0A2z/tANu' + + '/7QDcf9oA3X/aAN4/2gDfABcA37/aAAEA0T/yQNW/8kDV//HA13/xwACA3v/5QOA/+UACQNe/9sDY//bA2b/2wNx/9sDdf/bA3j/2wN7/9sDfv/bA4D/2wADA3L/xwN2/8cDef+2ABIDXv+NA2D/zwNj/40DZf++A2b/tANp/88Dav+0A2v/zwNs/88Db/++A3H/jQNy' + + '/7QDdf+NA3b/tAN4/40De/+NA37/jQOA/40ADQNe/7wDY/+8A2b/vANo/7wDav/jA3D/vANx/7wDdP+8A3X/vAN4/7wDe/+8A37/vAOA/7wAEANe/+cDYv/hA2P/5wNm/+cDaP/nA3D/5wNx/+cDdP/nA3X/5wN3/+EDeP/nA3v/5wN9/+EDfv/nA3//4QOA/+cACgNe' + + '/+cDY//nA2b/5wNo/+cDcP/nA3H/5wN0/+cDdf/nA3j/5wN+/+cACwNe/8cDY//HA2b/xwNo/8cDbf+0A3H/xwN0/8cDdf/HA3j/xwN7/8cDgP/HAAIDcv/HA3b/xwAKA17/xwNj/8cDZv/HA2j/xwNx/8cDdP/HA3X/xwN4/8cDe//HA4D/xwAEA23/5wNy/8cDdv/H' + + 'A3n/tgALA17/tgNj/7YDZv+2A2j/tgNx/7YDdP+2A3X/tgN4/7YDe//VA37/tgOA/9UAAwNy/8cDdv/HA3n/1QAGAA//GQAR/wAAHf/lAB7/5QBt/7IAff+yAAEH5f8zABADxQBMA8wAGQPP/+UD0P/lA9L/zQPT/5oD1P+yA9X/zQPY/2QD3v/NA+EAGQPi/+UD8v/l' + + 'A/P/5QP+ABkH5f+YAA4Dwf+yA8f/zQPI/+UDzP/NA9L/5QPT/80D1P/NA9X/5QPW/80D2P+yA9v/sgPe/80D4P/NA/T/5QARA8H/mgPF/+UDx/+yA8j/5QPM/80Dz//NA9L/sgPT/7ID1P+yA9X/zQPW/7ID2P+yA9v/mgPg/80D8//lA/b/5QP4/7IAGgAP/xkAEf8A' + + 'AB3/5QAe/+UAbf+yAH3/sgPB/38Dxf/NA8z/zQPP/+UD0v/lA+H/5QPj/80D5f+yA+b/mAPp/80D7P+aA+3/sgPu/80D7/+aA/H/sgP0/7ID/P+yA/3/sgP//7IEAP+yAAgDyAAZA9QAGQPV/+UD2P/lA+YAGQPoADMD7wAZA/QAGQAJA8gAGQPP/+UD0v/NA9MAMwPU' + + 'ADMD2AAZA9sATAPhABkD7//lAAkDx//NA8z/zQPP/+UD0v/NA9P/sgPU/7ID1f/NA9j/sgPg/80ACgPIAEwD0v/lA9MAMwPUADMD1f/lA9gAMwPeABkD4QAZA+gAGQPy/+UAAQPhADMAAwPhABkD8v/lA/j/5QAJA8H/zQPF/+UDx//lA8z/zQPU/80D1v+yA+D/5QPl' + + '/80D7P/lABYAD/7lABH+zQAd/+UAHv/lA8H/TAPF/38Dx//lA8j/5QPM/38Dzf/lA8//5QPS/80D0//lA9T/5QPV/+UD1v+yA+D/zQPh/+UD5f9/A+b/zQPv/80EAP/lABIDwf/NA8X/5QPI/+UDzP/NA83/5QPP/80D0//NA9T/5QPW/7ID2P/NA9v/5QPe/+UD4QAZ' + + 'A+L/5QPnABkD8v/lA/X/5QP4/+UAHgAP/zMAEf8ZAB3/5QAe/+UAbf/NA8H/fwPF/80DxwAzA8z/zQPP/80D1f+yA+D/5QPh/80D4/+yA+b/mgPp/7ID6/+yA+z/fwPt/5gD7/9/A/D/5QPx/7ID8v9/A/T/sgP2/7ID+v/lA/z/5QP9/+UD///lBAD/zQAkAA//GQAR' + + '/wAAHf/NAB7/zQBt/7IAff+yA8H/ZgPF/5gDzP+yA8//zQPV/7ID3v/lA+D/zQPi/80D4/+yA+T/sgPl/38D5v9/A+f/5QPo/5oD6f+yA+r/sgPr/7ID7P9/A+3/mgPu/7ID7/9/A/D/sgPx/7ID8v9/A/b/zQP3/7ID+f+yA/r/sgP//7IEAP+aAAkDwf/NA8X/mAPM' + + '/7ID0/+yA9T/sgPV/+UD2P/lA+D/ywPs/80ABwPI/+UDz//LA9L/sgPV/7ID3v/NA+//5QP0/+UAAwPhAEwD5gAZA+8AGQABA+EAGQACA+D/sgfl/zMADgPB/80Dxf/lA8f/sgPI/80DzP+yA83/zQPP/+UD0v/NA9P/MQPW/5gD2P9mA97/sgPg/7IH5f9mAAoDxf/N' + + 'A8f/zQPI/+UDzP+yA9X/5QPW/80D4P/NA+X/5QPnABkD7P/NAAsDwf/NA8X/zQPH/80DzP+yA9L/5QPT/80D1v+yA9j/5QPl/80D5wAZA+z/zQACA+gAGQP4/80ADAPl/80D5//lA+j/5QPs/80D7f/lA/L/5QP0/+UD9v/NA/j/zQP7/+UD/v/lBAD/5QAOA+H/5QPi' + + '/+UD5v/lA+f/5QPs/+UD7f/lA+//5QPy/80D8//lA/T/zQP1/+UD+P+yA/v/zQQA/+UABgAP/0wAEf8zA+X/sgPs/80D7//lA/L/5QAEA+gAGQPy/+UD9AAZA/v/5QAIA+L/5QPn/+UD7f/lA/L/5QPz/+UD9P/lA/b/5QP4/80ABgPhABkD5v/lA+gAGQPv/80D8v/l' + + 'A/j/zQANA+H/5QPi/80D5v/lA+f/5QPo/+UD7P/lA+3/zQPv/80D8v/NA/T/zQP1/+UD+P+yA/v/zQAGA+wAGQPv/+UD8v/lA/X/5QP4/+UD/v/lAAYD4v/lA+b/5QPv/+UD8v/lA/T/5QP4/80ACAPh/+UD4v/lA+j/5QPv/+UD8v/lA/T/5QP1/+UD/v/lAAwD5f/l' + + 'A+f/5QPo/+UD7P/NA+3/5QPy/+UD8//NA/T/5QP2/80D+P/NA/7/5QQA/+UACwPl/80D5//lA+j/5QPs/80D7f/lA/P/5QP0/+UD9v/lA/j/zQP+/+UEAP/lAAUD4QAZA+L/5QP2/+UD+P/LA/v/5QAIAA//ZgAR/0wD5f/lA+cAGQPs/+UD7//lA/L/5QP0ADMAFAAP' + + '/2YAEf9MAB3/5QAe/+UAfQAzA+H/5QPl/80D5v/lA+cAGQPo/+UD7P/lA+3/5QPv/80D8f/lA/L/zQPzABkD9f/lA/YAGQP+/+UEAP/lAAoD4v/lA+X/5QPm/+UD7P/NA+3/5QPv/+UD8//lA/T/5QP4/80EAP/lAAkD4v/lA+b/zQPo/+UD7//NA/L/zQP0ABkD9f/l' + + 'A/j/zQP+/+UAAwPhABkD6AAZA/L/5QACA+EAGQPv/+UAAgPz/0wD+P9MAAoD4v/lA+X/5QPn/+UD6P/lA+z/zQPt/+UD8v/lA/P/5QP2/+UEAP/lAAoD4v/lA+X/5QPn/+UD7P/NA+3/5QPy/+UD8//NA/b/zQP4/7ID/v/lAAUAD/9mABH/TAAd/+UAHv/lAG3/zQAG' + + 'AA//fwAR/2YAHf/lAB7/5QBt/80Aff/NAAEH5P+0AAMAA/+PAFb/tAfl/7QABQOz/zMDvP8zA9P/TAPY/zED2/9MAAEAaAADABQAJAApAC8AMwA1ADcAOQA6ADwASQBVAFkAWgBcAzsDQANBA0IDRANGA0cDSwNNA04DUgNUA1UDVgNXA1gDWQNaA1sDXQNmA2gDbANt' + + 'A3ADcQNyA3MDdgN4A3kDewN+A4ADtAO6A7sDwQPCA8MDxAPFA8cDyAPLA8wDzQPPA9ED0gPTA9QD1QPWA9cD2gPbA90D3gPfA+ED4gPjA+QD5QPmA+cD6APrA+wD7QPvA/ED8gPzA/QD9QP2A/cD+gP9A/4D/wQPBEEH5AflB+oAARomGZ4AARosAAwDMgZmBmwGcgZ4' + + 'Bn4GhAaKBpAGlgacBqIGqAauBrQGugbABsYGzAbSBtgG3gbkBuoG8Ab2BvwHAgcIBw4HFAcaByAHJgcsBzIHOAc+B0QHSgdQB1YHXAdiB2gHbgd0B3oHgAeGB4wHkgeYB54HpAeqB7AHtge8B8IHyAfOB9QH2gfgB+YH7AfyB/gH/ggECAoIEAgWCBwIIggoCC4INAg6' + + 'CEAIRghMCFIIWAheCGQIaghwCHYIfAiCCIgIjgiUCJoIoAimCKwIsgi4CL4IxAjKCNAI1gjcCOII6AjuCPQI+gkACQYJDAkSCRgJHgkkCSoJMAk2CTwJQglICU4JVAlaCWAJZglsCXIJeAl+CYQJigmQCZYJnAmiCagJrgm0CboJwAnGCcwJ0gnYCd4J5AnqCfAJ9gn8' + + 'CgIKCAoOChQKGgogCiYKLAoyCjgKPgpECkoKUApWClwKYgpoCm4KdAp6CoAKhgqMCpIKmAqeCqQKqgqwCrYKvArCCsgKzgrUCtoK4ArmCuwK8gr4Cv4LBAsKCxALFgscCyILKAsuCzQLOgtAC0YLTAtSC1gLXgtkC2oLcAt2C3wLgguIC44LlAuaC6ALpgusC7ILuAu+' + + 'C8QLygvQC9YL3AviC+gL7gv0C/oMAAwGDAwMEgwYDB4MJAwqDDAMNgw8DEIMSAxODFQMWgxgDGYMbAxyDHgMfgyEDIoMkAyWDJwMogyoDK4MtAy6DMAMxgzMDNIM2AzeDOQM6gzwDPYM/A0CDQgNDg0UDRoNIA0mDSwNMg04DT4NRA1KDVANVg1cDWINaA1uDXQNeg2A' + + 'DYYNjA2SDZgNng2kDaoNsA22DbwNwg3IDc4N1A3aDeAN5g3sDfIN+A3+DgQOCg4QDhYOHA4iDigOLg40DjoOQA5GDkwOUg5YDl4OZA5qDnAOdg58DoIOiA6ODpQOmg6gDqYOrA6yDrgOvg7EDsoO0A7WDtwO4g7oDu4O9A76DwAPBg8MDxIPGA8eDyQPKg8wDzYPPA9C' + + 'D0gPTg9UD1oPYA9mD2wPcg94D34PhA+KD5APlg+cD6IPqA+uD7QPug/AD8YPzA/SD9gP3g/kD+oP8A/2D/wQAhAIEA4QFBAaECAQJhAsEDIQOBA+EEQQShBQEFYQXBBiEGgQbhB0EHoQgBCGEIwQkhCYEJ4QpBCqELAQthC8EMIQyBDOENQQ2hDgEOYQ7BDyEPgQ/hEE' + + 'EQoREBEWERwRIhEoES4RNBE6EUARRhFMEVIRWBFeEWQRahFwEXYRfBGCEYgRjhGUEZoRoBGmEawRshG4Eb4RxBHKEdAR1hHcEeIR6BHuEfQR+hIAEgYSDBISEhgSHhIkEioSMBI2EjwSQhJIEk4SVBJaEmASZhJsEnISeBJ+EoQSihKQEpYSnBKiEqgSrhK0EroSwBLG' + + 'EswS0hLYEt4S5BLqEvAS9hL8EwITCBMOExQTGhMgEyYTLBMyEzgTPhNEE0oTUBNWE1wTYhNoE24TdBN6E4AThhOME5ITmBOeE6QTqhOwE7YTvBPCE8gTzhPUE9oT4BPmE+wT8hP4E/4UBBQKFBAUFhQcFCIUKBQuFDQUOhRAFEYUTBRSFFgUXhRkFGoUcBR2FHwUghSI' + + 'FI4UlBSaFKAUphSsFLIUuBS+FMQUyhTQFNYU3BTiFOgU7hT0FPoVABUGFQwVEhUYFR4VJBUqFTAVNhU8FUIVSBVOFVQVWhVgFWYVbBVyFXgVfhWEFYoVkBWWFZwVohWoFa4VtBW6FcAVxhXMFdIV2BXeFeQV6hXwFfYV/BYCFggWDhYUFhoWIBYmFiwWMhY4Fj4WRBZK' + + 'FlAWVhZcFmIWaBZuFnQWehaAFoYWjBaSFpgWnhakFqoWsBa2FrwWwhbIFs4W1BbaFuAW5hbsFvIW+Bb+FwQXChcQFxYXHBciFygXLhc0FzoXQBdGF0wXUhdYF14XZBdqF3AXdhd8F4IXiBeOF5QXmhegF6YXrBeyF7gXvhfEF8oX0BfWF9wX4hfoF+4X9Bf6GAAYBhgM' + + 'GBIYGBgeGCQYKhgwGDYYPBhCGEgYThhUGFoYYBhmGGwYchh4GH4YhBiKGJAYlhicGKIYqBiuGLQYuhjAGMYYzBjSGNgY3hjkGOoY8Bj2GPwZAhkIGQ4ZFBkaGSAZJhksGTIZOBk+GUQZShlQGVYZXBliGWgZbhl0GXoZgBmGGYwAAQSwAAAAAQL4AAAAAQN6AAAAAQKe' + + 'AAAAAQRgAAAAAQC+AAAAAQPAAAAAAQRMAAAAAQDIAAAAAQISAAAAAQSIAAAAAQOsAAAAAQVkAAAAAQQ4AAAAAQOYAAAAAQC0AAAAAQKAAAAAAQScAAAAAQMgAAAAAQImAAAAAQM+AAAAAQJYAAAAAQUUAAAAAQRMAAAAAQJYAAAAAQQGAAAAAQOsAAAAAQKoAAAAAQJE' + + 'AAAAAQOYAAAAAQKoAAAAAQEYAAAAAQKU/nAAAQOYAAAAAQDIAAAAAQCC/nAAAQOEAAAAAQDIAAAAAQXIAAAAAQOYAAAAAQKoAAAAAQDI/nAAAQOE/nAAAQDIAAAAAQImAAAAAQF8AAAAAQOYAAAAAQG4AAAAAQRMAAAAAQOEAAAAAQEY/nAAAQLkAAAAAQSwAAAAAQSw' + + 'AAAAAQSwAAAAAQSwAAAAAQSwAAAAAQSwAAAAAQb0AAAAAQMM/nAAAQRgAAAAAQRgAAAAAQRgAAAAAQRgAAAAAQDIAAAAAQDIAAAAAQDIAAAAAQDIAAAAAQKeAAAAAQQ4AAAAAQOYAAAAAQOYAAAAAQOYAAAAAQOYAAAAAQOYAAAAAQOYAAAAAQM+AAAAAQM+AAAAAQM+' + + 'AAAAAQM+AAAAAQJYAAAAAQC0AAAAAQM+AAAAAQOsAAAAAQOsAAAAAQOsAAAAAQOsAAAAAQOsAAAAAQOsAAAAAQVQAAAAAQJE/nAAAQKoAAAAAQKoAAAAAQKoAAAAAQKoAAAAAQDcAAAAAQDcAAAAAQDcAAAAAQDcAAAAAQKoAAAAAQOYAAAAAQKoAAAAAQKoAAAAAQKo' + + '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' + + '/nAAAQQGAAAAAQLkAAAAAQQGAAAAAQM0AAAAAQJ2/soAAQH0/soAAQIm/soAAQF8AAAAAQRMAAAAAQEY/nAAAQOsAAAAAQDcAAAAAQSwAAAAAQOsAAAAAQSwAAAAAQOsAAAAAQSwAAAAAQOsAAAAAQSwAAAAAQOsAAAAAQSwAAAAAQOsAAAAAQSwAAAAAQOsAAAAAQSw' + + 'AAAAAQOsAAAAAQSwAAAAAQOsAAAAAQSwAAAAAQOsAAAAAQSwAAAAAQOsAAAAAQSwAAAAAQOsAAAAAQSwAAAAAQOsAAAAAQRgAAAAAQNSAGQAAQRgAAAAAQKoAAAAAQRgAAAAAQKoAAAAAQRgAAAAAQKoAAAAAQRgAAAAAQKoAAAAAQRgAAAAAQKoAAAAAQRgAAAAAQKo' + + 'AAAAAQRgAAAAAQNcAGQAAQDcAAAAAQDcAAAAAQDc/oQAAQDc/oQAAQLa/oQAAQIw/oQAAQOYAAAAAQKoAAAAAQOYAAAAAQKoAAAAAQOYAAAAAQKoAAAAAQOYAAAAAQKoAAAAAQOYAAAAAQKoAAAAAQLa/oQAAQIw/oQAAQOYAAAAAQKoAAAAAQOYAAAAAQKoAAAAAQOY' + + 'AAAAAQKoAAAAAQOYAAAAAQKoAAAAAQLa/oQAAQIw/oQAAQKo/oQAAQPAAAAAAQM+AAAAAQOYAAAAAQM+AAAAAQOYAAAAAQM+AAAAAQOYAAAAAQM+AAAAAQOYAAAAAQM+AAAAAQOYAAAAAQKo/oQAAQPAAAAAAQJYAAAAAQEY/nAAAQJs/oQAAQEY/nAAAQJYAAAAAQEY' + + '/nAAAQJYAAAAAQEY/nAAAQKfAAAAAQPAAAAAAQOsAAAAAQDIAAAAAQOsAAAAAQDIAAAAAQScAAAAAQOsAAAAAQHMAAAAAQHMAAAAAQMgAAAAAQDcAAAAAgAWACQAPQAAAEQAXQAaAIIAmAA0AJoAuABLALoBegBqAX4BgQErAYYBlgEvAZ8BnwFAAaQBuwFBAcIB2QFZ' + + 'AdwB6wFxAfAB8QGBAfQCcQGDBYwFugIBBe0GiAIwBooG4wLMCDwIPAMmCJ0InQMnCL8IxQMoCNAI0AMvCNMI0wMwCe4J7gMxAAEAAQLqAAEAAAAGAAH/9v/2AAEzzDM+AAIz1gAMAzMMzgzUDNoM4AzmDOwM8gz4DP4NBA0KDRANFg0cDSINKA0uDTQNOg1ADUYNTA1S' + + 'DVgNXg1kDWoNcA12DXwNgg2IDY4NlA2aDaANpg2sDbINuA2+DcQNyg3QDdYN3A3iDegN7g30DfoOAA4GDgwOEg4YDh4OJA4qDjAONg48DkIOSA5ODlQOWg5gDmYObA5yDngOfg6EDooOkA6WDpwOog6oDq4OtA66DsAOxg7MDtIO2A7eDuQO6g7wDvYO/A8CDwgPDg8U' + + 'DxoPIA8mDywPMg84Dz4PRA9KD1APVg9cD2IPaA9uD3QPeg+AD4YPjA+SD5gPng+kD6oPsA+2D7wPwg/ID84P1A/aD+AP5g/sD/IP+A/+EAQQChAQEBYQHBAiECgQLhA0EDoQQBBGEEwQUhBYEF4QZBBqEHAQdhB8EIIQiBCOEJQQmhCgEKYQrBCyELgQvhDEEMoQ0BDW' + + 'ENwQ4hDoEO4Q9BD6EQARBhEMERIRGBEeESQRKhEwETYRPBFCEUgRThFUEVoRYBFmEWwRchF4EX4RhBGKEZARlhGcEaIRqBGuEbQRuhHAEcYRzBHSEdgR3hHkEeoR8BH2EfwSAhIIEg4SFBIaEiASJhIsEjISOBI+EkQSShJQElYSXBJiEmgSbhJ0EnoSgBKGEowSkhKY' + + 'Ep4SpBKqErASthK8EsISyBLOEtQS2hLgEuYS7BLyEvgS/hMEEwoTEBMWExwTIhMoEy4TNBM6E0ATRhNME1ITWBNeE2QTahNwE3YTfBOCE4gTjhOUE5oToBOmE6wTshO4E74TxBPKE9AT1hPcE+IT6BPuE/QT+hQAFAYUDBQSFBgUHhQkFCoUMBQ2FDwUQhRIFE4UVBRa' + + 'FGAUZhRsFHIUeBR+FIQUihSQFJYUnBSiFKgUrhS0FLoUwBTGFMwU0hTYFN4U5BTqFPAU9hT8FQIVCBUOFRQVGhUgFSYVLBUyFTgVPhVEFUoVUBVWFVwVYhVoFW4VdBV6FYAVhhWMFZIVmBWeFaQVqhWwFbYVvBXCFcgVzhXUFdoV4BXmFewV8hX4Ff4WBBYKFhAWFhYc' + + 'FiIWKBYuFjQWOhZAFkYWTBZSFlgWXhZkFmoWcBZ2FnwWghaIFo4WlBaaFqAWphasFrIWuBa+FsQWyhbQFtYW3BbiFugW7hb0FvoXABcGFwwXEhcYFx4XJBcqFzAXNhc8F0IXSBdOF1QXWhdgF2YXbBdyF3gXfheEF4oXkBeWF5wXoheoF64XtBe6F8AXxhfMF9IX2Bfe' + + 'F+QX6hfwF/YX/BgCGAgYDhgUGBoYIBgmGCwYMhg4GD4YRBhKGFAYVhhcGGIYaBhuGHQYehiAGIYYjBiSGJgYnhikGKoYsBi2GLwYwhjIGM4Y1BjaGOAY5hjsGPIY+Bj+GQQZChkQGRYZHBkiGSgZLhk0GToZQBlGGUwZUhlYGV4ZZBlqGXAZdhl8GYIZiBmOGZQZmhmg' + + 'GaYZrBmyGbgZvhnEGcoZ0BnWGdwZ4hnoGe4Z9Bn6GgAaBhoMGhIaGBoeGiQaKhowGjYaPBpCGkgaThpUGloaYBpmGmwachp4Gn4ahBqKGpAalhqcGqIaqBquGrQauhrAGsYazBrSGtga3hrkGuoa8Br2GvwbAhsIGw4bFBsaGyAbJhssGzIbOBs+G0QbShtQG1YbXBti' + + 'G2gbbht0G3obgBuGG4wbkhuYG54bpBuqG7Abthu8G8IbyBvOG9Qb2hvgG+Yb7BvyG/gb/hwEHAocEBwWHBwcIhwoHC4cNBw6HEAcRhxMHFIcWBxeHGQcahxwHHYcfByCHIgcjhyUHJocoBymHKwcshy4HL4cxBzKHNAc1hzcHOIc6BzuHPQc+h0AHQYdDB0SHRgdHh0k' + + 'HSodMB02HTwdQh1IHU4dVB1aHWAdZh1sHXIdeB1+HYQdih2QHZYdnB2iHagdrh20HbodwB3GHcwd0h3YHd4d5B3qHfAd9h38HgIeCB4OHhQeGh4gHiYeLB4yHjgePh5EHkoeUB5WHlweYh5oHm4edB56HoAehh6MHpIemB6eHqQeqh6wHrYevB7CHsgezh7UHtoe4B7m' + + 'Huwe8h74Hv4fBB8KHxAfFh8cHyIfKB8uHzQfOh9AH0YfTB9SH1gfXh9kH2ofcB92H3wfgh+IH44flB+aH6Afph+sH7IfuB++H8Qfyh/QH9Yf3B/iH+gf7h/0H/ogACAGIAwgEiAYIB4gJCAqIDAgNiA8IEIgSCBOIFQgWiBgIGYgbCByIHggfiCEIIogkCCWIJwgoiCo' + + 'IK4gtCC6IMAgxiDMINIg2CDeIOQg6iDwIPYg/CECIQghDiEUIRohICEmISwhMiE4IT4hRCFKIVAhViFcIWIhaCFuIXQheiGAIYYhjCGSIZghniGkIaohsCG2IbwhwiHIIc4h1CHaIeAh5iHsIfIh+CH+IgQiCiIQIhYiHCIiIigiLiI0IjoiQCJGIkwiUiJYIl4iZCJq' + + 'InAidiJ8IoIiiCKOIpQimiKgIqYirCKyIrgiviLEIsoi0CLWItwi4iLoIu4i9CL6IwAjBiMMIxIjGCMeIyQjKiMwIzYjPCNCI0gjTiNUI1ojYCNmI2wjciN4I34jhCOKI5AjliOcI6IjqCOuI7QjuiPAI8YjzCPSI9gj3iPkI+oj8CP2I/wkAiQIJA4kFCQaJCAkJiQs' + + 'JDIkOCQ+JEQkSiRQJFYkXCRiJGgkbiR0JHokgCSGJIwkkiSYJJ4kpCSqJLAktiS8JMIkyCTOJNQk2iTgJOYk7CTyJPgk/iUEJQolECUWJRwlIiUoJS4lNCU6JUAlRiVMJVIlWCVeJWQlaiVwJXYlfCWCJYgljiWUJZoloCWmJawlsiW4Jb4lxCXKJdAl1iXcJeIl6CXu' + + 'JfQl+iYAJgYmDCYSJhgmHiYkJiomMCY2JjwmQiZIJk4mVCZaJmAmZiZsJnImeCZ+JoQmiiaQJpYmnCaiJqgmria0JromwCbGJswm0ibYJt4m5CbqJvAm9ib8JwInCCcOJxQnGicgJyYnLCcyJzgnPidEJ0onUCdWJ1wnYidoJ24ndCd6J4AnhieMJ5InmCeeJ6Qnqiew' + + 'J7YnvCfCJ8gnzifUJ9on4CfmJ+wn8if4J/4oBCgKKBAoFigcKCIoKCguKDQoOihAKEYoTChSKFgoXihkKGoocCh2KHwogiiIKI4olCiaKKAopiisKLIouCi+KMQoyijQKNYo3CjiKOgo7ij0KPopACkGKQwpEikYKR4pJCkqKTApNik8KUIpSClOKVQpWilgKWYpbCly' + + 'KXgpfimEKYopkCmWKZwpoimoKa4ptCm6KcApxinMKdIp2CneKeQp6inwKfYp/CoCKggqDioUKhoqIComKiwqMio4Kj4qRCpKKlAqVipcKmIqaCpuKnQqeiqAKoYqjCqSKpgqniqkKqoqsCq2KrwqwirIKs4q1CraKuAq5irsKvIq+Cr+KwQrCisQKxYrHCsiKygrLis0' + + 'KzorQCtGK0wrUitYK14rZCtqK3Ardit8K4IriCuOK5QrmiugK6YrrCuyK7grvivEK8or0CvWK9wr4ivoK+4r9Cv6LAAsBiwMLBIsGCweLCQsKiwwLDYsPCxCLEgsTixULFosYCxmLGwscix4LH4shCyKLJAsliycLKIsqCyuLLQsuizALMYszCzSLNgs3izkLOos8Cz2' + + 'LPwtAi0ILQ4tFC0aLSAtJi0sLTItOC0+LUQtSi1QLVYtXC1iLWgtbi10LXotgC2GLYwtki2YLZ4tpC2qLbAtti28LcItyC3OLdQt2i3gLeYt7C3yLfgt/i4ELgouEC4WLhwuIi4oLi4uNC46LkAuRi5MLlIuWC5eLmQuai5wLnYufC6CLoguji6ULpouoC6mLqwusi64' + + 'Lr4uxC7KLtAu1i7cLuIu6C7uLvQu+i8ALwYvDC8SLxgvHi8kLyovMC82LzwvQi9IL04vVC9aL2AvZi9sL3IveC9+L4Qvii+QL5YvnC+iL6gvri+0L7ovwC/GL8wv0i/YL94v5C/qL/Av9i/8MAIwCDAOMBQwGjAgMCYwLDAyMDgwPjBEMEowUDBWMFwwYjBoMG4wdDB6' + + 'MIAwhjCMMJIwmDCeMKQwqjCwMLYwvDDCMMgwzjDUMNow4DDmMOww8jD4MP4xBDEKMRAxFjEcMSIxKDEuMTQxOjFAMUYxTDFSMVgxXjFkMWoxcDF2MXwxgjGIMY4xlDGaMaAxpjGsMbIxuDG+McQxyjHQMdYx3DHiMegx7jH0MfoyADIGMgwyEjIYMh4yJDIqMjAyNjI8' + + 'MkIySDJOMlQyWjJgMmYybDJyMngyfjKEMooykDKWMpwyojKoMq4ytDK6MsAyxjLMMtIy2DLeMuQy6jLwMvYy/DMCMwgzDjMUMxozIDMmMywAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXH' + + 'BzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAf/RBzAAAQWYBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAABzAAAQXHBzAAAQAA' + + 'BzAAAQXHBzAAAgAXACQAPQAAAEQAXQAaAIIAmAA0AJoAuABLALoBegBqAX4BgQErAYYBlgEvAZ8BnwFAAaQBuwFBAcIB2QFZAdwB6wFxAfAB8QGBAfQCcQGDBYwFugIBBe0GiAIwBooG4wLMCDwIPAMmCJ0InQMnCLUItQMoCL8IxQMpCNAI0AMwCNMI0wMxCe4J7gMy' + + 'AAIAAQkVCRgAAAAEAAEAEgAAABgAAQAeAAAAJAABAmwEiAAB/0wEiAABAmwEiAAB/0wEiAABM7YzLgACM8AADAMyDMoM0AzWDNwM4gzoDO4M9Az6DQANBg0MDRINGA0eDSQNKg0wDTYNPA1CDUgNTg1UDVoNYA1mDWwNcg14DX4NhA2KDZANlg2cDaINqA2uDbQNug3A' + + 'DcYNzA3SDdgN3g3kDeoN8A32DfwOAg4IDg4OFA4aDiAOJg4sDjIOOA4+DkQOSg5QDlYOXA5iDmgObg50DnoOgA6GDowOkg6YDp4OpA6qDrAOtg68DsIOyA7ODtQO2g7gDuYO7A7yDvgO/g8EDwoPEA8WDxwPIg8oDy4PNA86D0APRg9MD1IPWA9eD2QPag9wD3YPfA+C' + + 'D4gPjg+UD5oPoA+mD6wPsg+4D74PxA/KD9AP1g/cD+IP6A/uD/QP+hAAEAYQDBASEBgQHhAkECoQMBA2EDwQQhBIEE4QVBBaEGAQZhBsEHIQeBB+EIQQihCQEJYQnBCiEKgQrhC0ELoQwBDGEMwQ0hDYEN4Q5BDqEPAQ9hD8EQIRCBEOERQRGhEgESYRLBEyETgRPhFE' + + 'EUoRUBFWEVwRYhFoEW4RdBF6EYARhhGMEZIRmBGeEaQRqhGwEbYRvBHCEcgRzhHUEdoR4BHmEewR8hH4Ef4SBBIKEhASFhIcEiISKBIuEjQSOhJAEkYSTBJSElgSXhJkEmoScBJ2EnwSghKIEo4SlBKaEqASphKsErISuBK+EsQSyhLQEtYS3BLiEugS7hL0EvoTABMG' + + 'EwwTEhMYEx4TJBMqEzATNhM8E0ITSBNOE1QTWhNgE2YTbBNyE3gTfhOEE4oTkBOWE5wTohOoE64TtBO6E8ATxhPME9IT2BPeE+QT6hPwE/YT/BQCFAgUDhQUFBoUIBQmFCwUMhQ4FD4URBRKFFAUVhRcFGIUaBRuFHQUehSAFIYUjBSSFJgUnhSkFKoUsBS2FLwUwhTI' + + 'FM4U1BTaFOAU5hTsFPIU+BT+FQQVChUQFRYVHBUiFSgVLhU0FToVQBVGFUwVUhVYFV4VZBVqFXAVdhV8FYIViBWOFZQVmhWgFaYVrBWyFbgVvhXEFcoV0BXWFdwV4hXoFe4V9BX6FgAWBhYMFhIWGBYeFiQWKhYwFjYWPBZCFkgWThZUFloWYBZmFmwWchZ4Fn4WhBaK' + + 'FpAWlhacFqIWqBauFrQWuhbAFsYWzBbSFtgW3hbkFuoW8Bb2FvwXAhcIFw4XFBcaFyAXJhcsFzIXOBc+F0QXShdQF1YXXBdiF2gXbhd0F3oXgBeGF4wXkheYF54XpBeqF7AXthe8F8IXyBfOF9QX2hfgF+YX7BfyF/gX/hgEGAoYEBgWGBwYIhgoGC4YNBg6GEAYRhhM' + + 'GFIYWBheGGQYahhwGHYYfBiCGIgYjhiUGJoYoBimGKwYshi4GL4YxBjKGNAY1hjcGOIY6BjuGPQY+hkAGQYZDBkSGRgZHhkkGSoZMBk2GTwZQhlIGU4ZVBlaGWAZZhlsGXIZeBl+GYQZihmQGZYZnBmiGagZrhm0GboZwBnGGcwZ0hnYGd4Z5BnqGfAZ9hn8GgIaCBoO' + + 'GhQaGhogGiYaLBoyGjgaPhpEGkoaUBpWGlwaYhpoGm4adBp6GoAahhqMGpIamBqeGqQaqhqwGrYavBrCGsgazhrUGtoa4BrmGuwa8hr4Gv4bBBsKGxAbFhscGyIbKBsuGzQbOhtAG0YbTBtSG1gbXhtkG2obcBt2G3wbghuIG44blBuaG6AbphusG7IbuBu+G8QbyhvQ' + + 'G9Yb3BviG+gb7hv0G/ocABwGHAwcEhwYHB4cJBwqHDAcNhw8HEIcSBxOHFQcWhxgHGYcbBxyHHgcfhyEHIockByWHJwcohyoHK4ctBy6HMAcxhzMHNIc2BzeHOQc6hzwHPYc/B0CHQgdDh0UHRodIB0mHSwdMh04HT4dRB1KHVAdVh1cHWIdaB1uHXQdeh2AHYYdjB2S' + + 'HZgdnh2kHaodsB22Hbwdwh3IHc4d1B3aHeAd5h3sHfId+B3+HgQeCh4QHhYeHB4iHigeLh40HjoeQB5GHkweUh5YHl4eZB5qHnAedh58HoIeiB6OHpQemh6gHqYerB6yHrgevh7EHsoe0B7WHtwe4h7oHu4e9B76HwAfBh8MHxIfGB8eHyQfKh8wHzYfPB9CH0gfTh9U' + + 'H1ofYB9mH2wfch94H34fhB+KH5Aflh+cH6IfqB+uH7Qfuh/AH8YfzB/SH9gf3h/kH+of8B/2H/wgAiAIIA4gFCAaICAgJiAsIDIgOCA+IEQgSiBQIFYgXCBiIGggbiB0IHoggCCGIIwgkiCYIJ4gpCCqILAgtiC8IMIgyCDOINQg2iDgIOYg7CDyIPgg/iEEIQohECEW' + + 'IRwhIiEoIS4hNCE6IUAhRiFMIVIhWCFeIWQhaiFwIXYhfCGCIYghjiGUIZohoCGmIawhsiG4Ib4hxCHKIdAh1iHcIeIh6CHuIfQh+iIAIgYiDCISIhgiHiIkIioiMCI2IjwiQiJIIk4iVCJaImAiZiJsInIieCJ+IoQiiiKQIpYinCKiIqgiriK0IroiwCLGIswi0iLY' + + 'It4i5CLqIvAi9iL8IwIjCCMOIxQjGiMgIyYjLCMyIzgjPiNEI0ojUCNWI1wjYiNoI24jdCN6I4AjhiOMI5IjmCOeI6QjqiOwI7YjvCPCI8gjziPUI9oj4CPmI+wj8iP4I/4kBCQKJBAkFiQcJCIkKCQuJDQkOiRAJEYkTCRSJFgkXiRkJGokcCR2JHwkgiSIJI4klCSa' + + 'JKAkpiSsJLIkuCS+JMQkyiTQJNYk3CTiJOgk7iT0JPolACUGJQwlEiUYJR4lJCUqJTAlNiU8JUIlSCVOJVQlWiVgJWYlbCVyJXglfiWEJYolkCWWJZwloiWoJa4ltCW6JcAlxiXMJdIl2CXeJeQl6iXwJfYl/CYCJggmDiYUJhomICYmJiwmMiY4Jj4mRCZKJlAmViZc' + + 'JmImaCZuJnQmeiaAJoYmjCaSJpgmniakJqomsCa2JrwmwibIJs4m1CbaJuAm5ibsJvIm+Cb+JwQnCicQJxYnHCciJygnLic0JzonQCdGJ0wnUidYJ14nZCdqJ3Andid8J4IniCeOJ5QnmiegJ6YnrCeyJ7gnvifEJ8on0CfWJ9wn4ifoJ+4n9Cf6KAAoBigMKBIoGCge' + + 'KCQoKigwKDYoPChCKEgoTihUKFooYChmKGwocih4KH4ohCiKKJAoliicKKIoqCiuKLQouijAKMYozCjSKNgo3ijkKOoo8Cj2KPwpAikIKQ4pFCkaKSApJiksKTIpOCk+KUQpSilQKVYpXCliKWgpbil0KXopgCmGKYwpkimYKZ4ppCmqKbAptim8KcIpyCnOKdQp2ing' + + 'KeYp7CnyKfgp/ioEKgoqECoWKhwqIiooKi4qNCo6KkAqRipMKlIqWCpeKmQqaipwKnYqfCqCKogqjiqUKpoqoCqmKqwqsiq4Kr4qxCrKKtAq1ircKuIq6CruKvQq+isAKwYrDCsSKxgrHiskKyorMCs2KzwrQitIK04rVCtaK2ArZitsK3IreCt+K4QriiuQK5YrnCui' + + 'K6grriu0K7orwCvGK8wr0ivYK94r5CvqK/Ar9iv8LAIsCCwOLBQsGiwgLCYsLCwyLDgsPixELEosUCxWLFwsYixoLG4sdCx6LIAshiyMLJIsmCyeLKQsqiywLLYsvCzCLMgszizULNos4CzmLOws8iz4LP4tBC0KLRAtFi0cLSItKC0uLTQtOi1ALUYtTC1SLVgtXi1k' + + 'LWotcC12LXwtgi2ILY4tlC2aLaAtpi2sLbItuC2+LcQtyi3QLdYt3C3iLegt7i30LfouAC4GLgwuEi4YLh4uJC4qLjAuNi48LkIuSC5OLlQuWi5gLmYubC5yLngufi6ELooukC6WLpwuoi6oLq4utC66LsAuxi7MLtIu2C7eLuQu6i7wLvYu/C8CLwgvDi8ULxovIC8m' + + 'LywvMi84Lz4vRC9KL1AvVi9cL2IvaC9uL3Qvei+AL4YvjC+SL5gvni+kL6ovsC+2L7wvwi/IL84v1C/aL+Av5i/sL/Iv+C/+MAQwCjAQMBYwHDAiMCgwLjA0MDowQDBGMEwwUjBYMF4wZDBqMHAwdjB8MIIwiDCOMJQwmjCgMKYwrDCyMLgwvjDEMMow0DDWMNww4jDo' + + 'MO4w9DD6MQAxBjEMMRIxGDEeMSQxKjEwMTYxPDFCMUgxTjFUMVoxYDFmMWwxcjF4MX4xhDGKMZAxljGcMaIxqDGuMbQxujHAMcYxzDHSMdgx3jHkMeox8DH2MfwyAjIIMg4yFDIaMiAyJjIsMjIyODI+MkQySjJQMlYyXDJiMmgybjJ0MnoygDKGMowykjKYMp4ypDKq' + + 'MrAytjK8MsIyyDLOMtQy2jLgMuYy7DLyMvgy/jMEMwozEDMWMxwAAQXH/oQAAQXHBgQAAQXH/oQAAQXHBgQAAQXH/oQAAQXHBgQAAQXH/oQAAQXHBgQAAQVW/oQAAQVWBgQAAQTj/oQAAQTjBgQAAQY5/oQAAQY5BgQAAQXH/oQAAQXHBgQAAQI5/oQAAQI5BgQAAQRz' + + '/oQAAQRzBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQaq/oQAAQaqBgQAAQXH/oQAAQXHBgQAAQY5/oQAAQY5BgQAAQVW/oQAAQVWBgQAAQY5/oQAAQY5BgQAAQXH/oQAAQXHBgQAAQVW/oQAAQVWBgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQVW/oQAAQVW' + + 'BgQAAQeN/oQAAQeNBgQAAQVW/oQAAQVWBgQAAQVW/oQAAQVWBgQAAQTj/oQAAQTjBgQAAQRz/6YAAQRzBM4AAQTj/5IAAQTjBgQAAQRz/5wAAQRzBMQAAQTj/5IAAQTjBgQAAQRz/4gAAQRzBLoAAQKq/5IAAQKqBgQAAQTj/oQAAQTjBLoAAQTj/5IAAQTjBgQAAQI5' + + '/5wAAQI5BgQAAQI5/oQAAQI5BgQAAQRz/5IAAQRzBgQAAQI5/5IAAQI5BgQAAQcd/5IAAQcdBMQAAQTj/6YAAQTjBMQAAQTj/6YAAQTjBNgAAQTj/oQAAQTjBM4AAQTj/oQAAQTjBMQAAQMd/5wAAQMdBfAAAQRz/5IAAQRzBMQAAQKq/5IAAQKqBgQAAQTj/4gAAQTj' + + 'BLoAAQRz/5wAAQRzBLAAAQY5/6YAAQY5BLAAAQRz/5wAAQRzBJwAAQRz/oQAAQRzBLoAAQQA/5IAAQQABLoAAQXH/oQAAQXHBgQAAQXH/oQAAQXHBgQAAQXH/oQAAQXHBgQAAQXH/oQAAQXHBgQAAQXH/oQAAQXHBgQAAQXH/oQAAQXHBgQAAQgA/oQAAQgABzAAAQXH' + + '/oQAAQXHBgQAAQVW/oQAAQVWBgQAAQVW/oQAAQVWBgQAAQVW/oQAAQVWBgQAAQVW/oQAAQVWBgQAAQI5/oQAAQI5BgQAAQI5/oQAAQI5BgQAAQI5/oQAAQI5BgQAAQI5/oQAAQI5BgQAAQXH/oQAAQXHBgQAAQXH/oQAAQXHBgQAAQY5/oQAAQY5BgQAAQY5/oQAAQY5' + + 'BgQAAQY5/oQAAQY5BgQAAQY5/oQAAQY5BgQAAQY5/oQAAQY5BgQAAQY5/oQAAQY5BgQAAQXH/oQAAQXHBgQAAQXH/oQAAQXHBgQAAQXH/oQAAQXHBgQAAQXH/oQAAQXHBgQAAQVW/oQAAQVWBgQAAQVW/oQAAQVWBgQAAQTj/oQAAQTjBgQAAQRz/oQAAQRzBgQAAQRz' + + '/oQAAQRzBgQAAQRz/oQAAQRzBgQAAQRz/oQAAQRzBgQAAQRz/oQAAQRzBgQAAQRz/oQAAQRzBgQAAQcd/oQAAQcdBgQAAQRz/oQAAQRzBgQAAQRz/oQAAQRzBgQAAQRz/oQAAQRzBgQAAQRz/oQAAQRzBgQAAQRz/oQAAQRzBgQAAQI5/oQAAQI5BgQAAQI5/oQAAQI5' + + 'BgQAAQI5/oQAAQI5BgQAAQI5/oQAAQI5BgQAAQTj/oQAAQTjBgQAAQTj/oQAAQTjBgQAAQTj/oQAAQTjBgQAAQTj/oQAAQTjBgQAAQTj/oQAAQTjBgQAAQTj/oQAAQTjBgQAAQTj/oQAAQTjBgQAAQTj/oQAAQTjBgQAAQTj/oQAAQTjBgQAAQTj/oQAAQTjBgQAAQTj' + + '/oQAAQTjBgQAAQTj/oQAAQTjBgQAAQRz/oQAAQRzBgQAAQTj/oQAAQTjBgQAAQRz/oQAAQRzBgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRzBgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRzBgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRzBgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRz' + + 'BgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRzBgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRzBgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRzBgQAAQXH/oQAAQXHBgQAAQXA/oQAAQXABgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQVW' + + '/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQY5/oQAAQY5BgQAAQTj/oQAAQTjBgQAAQY5/oQAAQY5BgQAAQTj/oQAAQTjBgQAAQY5/oQAAQY5' + + 'BgQAAQTj/oQAAQTjBgQAAQY5/oQAAQY5BgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQI5/oQAAQI5BgQAAQI5/oQAAQI5BgQAAQI5/oQAAQI5BgQAAQI5/oQAAQI5BgQAAQI5/oQAAQI5BgQAAQI5' + + '/oQAAQI5BgQAAQI5/oQAAQI5BgQAAQI5/oQAAQI5BgQAAQI5/oQAAQI5BgQAAQI5/oQAAQI5BgQAAQZH/oQAAQZHBgQAAQRz/oQAAQRzBgQAAQRz/oQAAQRzBgQAAQI5/oQAAQI5BgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRzBgQAAQRz/oQAAQRzBgQAAQTj/oQAAQTj' + + 'BgQAAQI5/oQAAQI5BgQAAQTj/oQAAQTjBgQAAQI5/oQAAQI5BgQAAQTj/oQAAQTjBgQAAQMV/oQAAQMVBgQAAQTj/oQAAQTjBgQAAQPV/oQAAQPVBgQAAQTj/oQAAQTjBgQAAQI5/oQAAQI5BgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQTj' + + '/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQWr/oQAAQWrBgQAAQXJ/oQAAQXJBgQAAQTj/oQAAQTjBgQAAQY5/oQAAQY5BgQAAQTj/oQAAQTjBgQAAQY5/oQAAQY5BgQAAQTj/oQAAQTjBgQAAQY5/oQAAQY5BgQAAQTj/oQAAQTjBgQAAQgA/oQAAQgA' + + 'BzAAAQeN/oQAAQeNBgQAAQXH/oQAAQXHBgQAAQMd/oQAAQMdBgQAAQXH/oQAAQXHBgQAAQMd/oQAAQMdBgQAAQXH/oQAAQXHBgQAAQMd/oQAAQMdBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQVW/oQAAQVWBgQAAQRz' + + '/oQAAQRzBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQTj/oQAAQTjBgQAAQKq/oQAAQKqBgQAAQTj/oQAAQTjBgQAAQPV/oQAAQPVBgQAAQTj/oQAAQTjBgQAAQKq/oQAAQKqBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTj' + + 'BgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQeN/oQAAQeNBgQAAQY5/oQAAQY5BgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQVW' + + '/oQAAQVWBgQAAQTj/oQAAQTjBgQAAQQA/oQAAQQABgQAAQTj/oQAAQTjBgQAAQQA/oQAAQQABgQAAQTj/oQAAQTjBgQAAQQA/oQAAQQABgQAAQI5/oQAAQI5BgQAAQTj/oQAAQTjBgQAAQax/oQAAQaxBgQAAQXA/oQAAQXABgQAAQTj/oQAAQTjBgQAAQXA/oQAAQXA' + + 'BgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRzBgQAAQXH/oQAAQXHBgQAAQaz/oQAAQazBgQAAQXA/oQAAQXABgQAAQTj/oQAAQTjBgQAAQTa/oQAAQTaBgQAAQVW/oQAAQVWBgQAAQXP/oQAAQXPBgQAAQUD/oQAAQUDBgQAAQTj' + + '/oQAAQTjBgQAAQRz/oQAAQRzBgQAAQY5/oQAAQY5BgQAAQUY/oQAAQUYBgQAAQdy/oQAAQdyBgQAAQI5/oQAAQI5BgQAAQI5/oQAAQI5BgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRzBgQAAQI5/oQAAQI5BgQAAQRz/oQAAQRzBgQAAQfv/oQAAQfvBgQAAQXH/oQAAQXH' + + 'BgQAAQTj/oQAAQTjBgQAAQY5/oQAAQY5BgQAAQbT/oQAAQbTBgQAAQWw/oQAAQWwBgQAAQcY/oQAAQcYBgQAAQXz/oQAAQXzBgQAAQZB/oQAAQZBBgQAAQTj/oQAAQTjBgQAAQVW/oQAAQVWBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQTN/oQAAQTNBgQAAQLh' + + '/oQAAQLhBgQAAQKq/oQAAQKqBgQAAQTj/oQAAQTjBgQAAQKq/oQAAQKqBgQAAQTj/oQAAQTjBgQAAQaj/oQAAQajBgQAAQXL/oQAAQXLBgQAAQZq/oQAAQZqBgQAAQXH/oQAAQXHBgQAAQYp/oQAAQYpBgQAAQRz/oQAAQRzBgQAAQTj/oQAAQTjBgQAAQQA/oQAAQQA' + + 'BgQAAQTj/oQAAQTjBgQAAQTj/oQAAQTjBgQAAQRz/oQAAQRzBgQAAQP6/oQAAQP6BgQAAQSi/oQAAQSiBgQAAQTj/oQAAQTjBgQAAQqq/oQAAQqqBzAAAQnH/oQAAQnHBgQAAQjj/oQAAQjjBgQAAQlW/oQAAQlWBgQAAQcc/oQAAQccBgQAAQRy/oQAAQRyBgQAAQo6' + + '/oQAAQo6BgQAAVAD/oQAAQgABgQAAQcc/oQAAQccBgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRzBgQAAQI5/oQAAQI5BgQAAQI5/oQAAQI5BgQAAQY5/oQAAQY5BgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQRz/oQAAQRzBgQAAQgA/oQAAQgA' + + 'BzAAAQcd/oQAAQcdBgQAAQY5/oQAAQY5BgQAAQTj/oQAAQTjBgQAAQY5/oQAAQY5BgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRzBgQAAQY5/oQAAQY5BgQAAQTj/oQAAQTjBgQAAQY5/oQAAQY5BgQAAQTj/oQAAQTjBgQAAQTj/oQAAQTjBgQAAQQ2' + + '/oQAAQQ2BgQAAQI5/oQAAQI5BgQAAQqq/oQAAQqqBzAAAQnH/oQAAQnHBgQAAQjj/oQAAQjjBgQAAQY5/oQAAQY5BgQAAQTj/oQAAQTjBgQAAQhD/oQAAQhDBgQAAQVS/oQAAQVSBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRz' + + 'BgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRzBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQI5/oQAAQI5BgQAAQI5/oQAAQI5BgQAAQI5/oQAAQI5BgQAAQI5/oQAAQI5BgQAAQY5/oQAAQY5BgQAAQTj/oQAAQTjBgQAAQY5' + + '/oQAAQY5BgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQMd/oQAAQMdBgQAAQXH/oQAAQXHBgQAAQMd/oQAAQMdBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQTj/oQAAQTjBgQAAQKq/oQAAQKqBgQAAQSe/oQAAQSe' + + 'BgQAAQQp/oQAAQQpBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQWf/iAAAQWfBgQAAQaz/oQAAQazBgQAAQUM/oQAAQUMBgQAAQUM/oQAAQUMBgQAAQTj/oQAAQTjBgQAAQQA/oQAAQQABgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRzBgQAAQVW/oQAAQVWBgQAAQRz' + + '/oQAAQRzBgQAAQY5/oQAAQY5BgQAAQTj/oQAAQTjBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQP+/oQAAQP+BgQAAQar/oQAAQarBgQAAQQM/oQAAQQMBgQAAQI5/oQAAQI5BgQAAQeh/oQAAQehBgQAAQeh/oQAAQehBgQAAQXH/oQAAQXHBgQAAQXH/oQAAQXH' + + 'BgQAAQRz/oQAAQRzBgQAAQTj/oQAAQTjBgQAAQTj/oQAAQTjBgQAAQRz/oQAAQRzBgQAAQQA/oQAAQQABgQAAQUp/oQAAQUpBgQAAQPf/oQAAQPfBgQAAQXH/oQAAQXHBgQAAQXH/oQAAQXHBgQAAQVW/oQAAQVWBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQRz' + + '/oQAAQRzBgQAAQI5/oQAAQI5BgQAAQYz/oQAAQYzBgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQMd/oQAAQMdBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQRz/oQAAQRzBgQAAQTj/oQAAQTjBgQAAQTj/oQAAQTjBgQAAQTj/oQAAQTjBgQAAQRz/oQAAQRz' + + 'BgQAAQRz/oQAAQRzBgQAAQTj/oQAAQTjBgQAAQTj/oQAAQTjBgQAAQRz/oQAAQRzBgQAAQRz/oQAAQRzBgQAAQZB/oQAAQZBBgQAAQP6/oQAAQP6BgQAAQP6/oQAAQP6BgQAAQWH/oQAAQWHBgQAAQSK/oQAAQSKBgQAAQKq/oQAAQKqBgQAAQTj/oQAAQTjBgQAAQTj' + + '/oQAAQTjBgQAAQSw/oQAAQSwBgQAAQRz/oQAAQRzBgQAAQTO/oQAAQTOBgQAAQTj/oQAAQTjBgQAAQTj/oQAAQTjBgQAAQTj/oQAAQTjBgQAAQI5/oQAAQI5BgQAAQI5/oQAAQI5BgQAAQM+/oQAAQM+BgQAAQKo/oQAAQKoBgQAAQLZ/oQAAQLZBgQAAQI5/oQAAQI5' + + 'BgQAAQTU/oQAAQTUBgQAAQcd/oQAAQcdBgQAAQcd/oQAAQcdBgQAAQcd/oQAAQcdBgQAAQTj/oQAAQTjBgQAAQTj/oQAAQTjBgQAAQTr/oQAAQTrBgQAAQTj/oQAAQTjBgQAAQar/oQAAQarBgQAAQbC/oQAAQbCBgQAAQX//oQAAQX/BgQAAQMd/oQAAQMdBgQAAQMd' + + '/oQAAQMdBgQAAQMd/iAAAQMdBgQAAQMd/oQAAQMdBgQAAQMd/oQAAQMdBgQAAQMd/oQAAQMdBgQAAQMd/oQAAQMdBgQAAQSr/oQAAQSrBgQAAQSr/oQAAQSrBgQAAQRz/oQAAQRzBgQAAQKq/oQAAQKqBgQAAQKq/oQAAQKqBgQAAQKq/oQAAQKqBgQAAQRR/oQAAQRR' + + 'BgQAAQKq/oQAAQKqBgQAAQKq/oQAAQKqBgQAAQTj/oQAAQTjBgQAAQT4/oQAAQT4BgQAAQSo/oQAAQSoBgQAAQRz/oQAAQRzBgQAAQY5/oQAAQY5BgQAAQRz/oQAAQRzBgQAAQSR/oQAAQSRBgQAAQQA/oQAAQQABgQAAQVw/oQAAQVwBgQAAQQ2/oQAAQQ2BgQAAQQ2' + + '/oQAAQQ2BgQAAQRz/oQAAQRzBgQAAQRz/oQAAQRzBgQAAQRz/oQAAQRzBgQAAQRz/oQAAQRzBgQAAQY5/oQAAQY5BgQAAQTr/oQAAQTrBgQAAQSK/oQAAQSKBgQAAQSw/oQAAQSwBgQAAQTV/oQAAQTVBgQAAQOr/oQAAQOrBgQAAQRz/oQAAQRzBgQAAQOe/oQAAQOe' + + 'BgQAAQTj/oQAAQTjBgQAAQRz/oQAAQRzBgQAAQRz/oQAAQRzBgQAAQg//oQAAQg/BgQAAQeJ/oQAAQeJBgQAAQmv/oQAAQmvBgQAAQaC/oQAAQaCBgQAAQRG/oQAAQRGBgQAAQaY/oQAAQaYBgQAAQb0/oQAAQb0BgQAAQY1/oQAAQY1BgQAAQWK/oQAAQWKBgQAAQRF' + + '/oQAAQRFBgQAAQSC/oQAAQSCBgQAAQXW/oQAAQXWBgQAAQXW/oQAAQXWBgQAAQTj/oQAAQTjBgQAAQTj/oQAAQTjBgQAAQKq/oQAAQKqBgQAAQcd/oQAAQcdBgQAAQTj/oQAAQTjBgQAAQTj/oQAAQTjBgQAAQMd/oQAAQMdBgQAAQMd/oQAAQMdBgQAAQRz/oQAAQRz' + + 'BgQAAQKq/oQAAQKqBgQAAQQA/oQAAQQABgQAAQTj/oQAAQTjBgQAAQLw/oQAAQLwBgQAAQTc/oQAAQTcBgQAAQb7/oQAAQb7BgQAAQI5/oQAAQI5BgQAAQI5/oQAAQI5BgQAAQTj/oQAAQTjBgQAAQSo/oQAAQSoBgQAAQT4/oQAAQT4BgQAAQTj/kgAAQTjBgQAAQTj' + + '/kgAAQTjBgQAAQKq/kgAAQKqBgQAAQYl/kgAAQYlBgQAAQRz/kgAAQRzBgQAAQI5/kgAAQI5BgQAAQcd/kgAAQcdBgQAAQTj/kgAAQTjBgQAAQTj/kgAAQTjBgQAAQMd/oQAAQMdBgQAAQRz/kgAAQRzBgQAAQO6/oQAAQO6BgQAAQRz/kgAAQRzBgQAAQRz/kgAAQRz' + + 'BgQAAQQA/kgAAQQABgQAAQRz/kgAAQRzBgQAAQTj/kgAAQTjBgQAAQTj/kgAAQTjBgQAAQRz/kgAAQRzBgQAAQP6/kgAAQP6BgQAAQP6/oQAAQP6BgQAAQU+/kgAAQU+BgQAAQI5/kgAAQI5BgQAAQRz/oQAAQRzBgQAAQKq/kgAAQKqBgQAAQTj/kgAAQTjBgQAAQQ2' + + '/oQAAQQ2BgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRzBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRzBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTj' + + 'BgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQVW' + + '/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQTj/oQAAQTjBgQAAQKq/oQAAQKqBgQAAQY5/oQAAQY5BgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXH' + + 'BgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQI5/oQAAQI5BgQAAQI5/oQAAQI5BgQAAQI5/oQAAQI5BgQAAQI5/oQAAQI5BgQAAQXH/oQAAQXHBgQAAQRz' + + '/oQAAQRzBgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRzBgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRzBgQAAQTj/oQAAQTjBgQAAQI5/oQAAQI5BgQAAQTj/oQAAQTjBgQAAQI5/oQAAQI5BgQAAQTj/oQAAQTjBgQAAQI5/oQAAQI5BgQAAQTj/oQAAQTjBgQAAQI5/oQAAQI5' + + 'BgQAAQaq/oQAAQaqBgQAAQcd/oQAAQcdBgQAAQaq/oQAAQaqBgQAAQcd/oQAAQcdBgQAAQaq/oQAAQaqBgQAAQcd/oQAAQcdBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQXH' + + '/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQY5/oQAAQY5BgQAAQTj/oQAAQTjBgQAAQYD/oQAAQYDBzAAAQTj/oQAAQTjBgQAAQY5/oQAAQY5BgQAAQTj/oQAAQTjBgQAAQY5/oQAAQY5BgQAAQTj/oQAAQTjBgQAAQVW/oQAAQVWBgQAAQTj/oQAAQTjBgQAAQVW/oQAAQVW' + + 'BgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQMd/oQAAQMdBgQAAQXH/oQAAQXHBgQAAQMd/oQAAQMdBgQAAQXH/oQAAQXHBgQAAQMd/oQAAQMdBgQAAQXH/oQAAQXHBgQAAQMd/oQAAQMdBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQVW/oQAAQVWBgQAAQRz' + + '/oQAAQRzBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQTj/oQAAQTjBgQAAQKq/oQAAQKqBgQAAQTj/oQAAQTjBgQAAQKq/oQAAQKqBgQAAQTj/oQAAQTjBgQAAQKq/oQAAQKq' + + 'BgQAAQTj/oQAAQTjBgQAAQKq/oQAAQKqBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQVW' + + '/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQeN/oQAAQeNBgQAAQY5/oQAAQY5BgQAAQeN/oQAAQeNBgQAAQY5/oQAAQY5BgQAAQeN/oQAAQeNBgQAAQY5/oQAAQY5BgQAAQeN/oQAAQeNBgQAAQY5/oQAAQY5BgQAAQeN/oQAAQeN' + + 'BgQAAQY5/oQAAQY5BgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQTj/oQAAQTjBgQAAQQA/oQAAQQABgQAAQTj/oQAAQTjBgQAAQQA/oQAAQQABgQAAQTj/oQAAQTjBgQAAQQA' + + '/oQAAQQABgQAAQTj/oQAAQTjBgQAAQKq/oQAAQKqBgQAAQY5/oQAAQY5BgQAAQRz/oQAAQRzBgQAAQRz/oQAAQRzBgQAAQI5/oQAAQI5BgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRzBgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRzBgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRz' + + 'BgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRzBgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRzBgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRzBgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRzBgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRzBgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRzBgQAAQXH' + + '/oQAAQXHBgQAAQRz/oQAAQRzBgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRzBgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRzBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQVW/oQAAQVW' + + 'BgQAAQRz/oQAAQRzBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQI5/oQAAQI5BgQAAQI5/oQAAQI5BgQAAQI5/oQAAQI5BgQAAQI5' + + '/oQAAQI5BgQAAQY5/oQAAQY5BgQAAQTj/oQAAQTjBgQAAQY5/oQAAQY5BgQAAQTj/oQAAQTjBgQAAQY5/oQAAQY5BgQAAQTj/oQAAQTjBgQAAQY5/oQAAQY5BgQAAQTj/oQAAQTjBgQAAQY5/oQAAQY5BgQAAQTj/oQAAQTjBgQAAQY5/oQAAQY5BgQAAQTj/oQAAQTj' + + 'BgQAAQY5/oQAAQY5BgQAAQTj/oQAAQTjBgQAAQbT/oQAAQbTBgQAAQWw/oQAAQWwBgQAAQbT/oQAAQbTBgQAAQWw/oQAAQWwBgQAAQbT/oQAAQbTBgQAAQWw/oQAAQWwBgQAAQbT/oQAAQbTBgQAAQWw/oQAAQWwBgQAAQbc/oQAAQbTBgQAAQWw/oQAAQWwBgQAAQXH' + + '/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQXH/oQAAQXHBgQAAQTj/oQAAQTjBgQAAQaj/oQAAQajBgQAAQXL/oQAAQXLBgQAAQaj/oQAAQajBgQAAQXL/oQAAQXLBgQAAQaj/oQAAQajBgQAAQXL/oQAAQXLBgQAAQaj/oQAAQajBgQAAQXL/oQAAQXLBgQAAQaj/oQAAQaj' + + 'BgQAAQXL/oQAAQXLBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQVW/oQAAQVWBgQAAQRz/oQAAQRzBgQAAQQB/oQAAQQBBgQAAQSw/oQAAQSwBgQAAQTj/oQAAQTjBgQAAQI5' + + '/oQAAQI5BgQAAQTj/oQAAQTjBgQAAQVW/oQAAQVWBgQAAQXH/oQAAQXHBgQAAQRz/oQAAQRzBgQAAQKq/oQAAQKqBgQAAQRz/oQAAQRzBgQAAQW5/oQAAQW5BgQAAQI5/oQAAQI5BgQAAgAWACQAPQAAAEQAXQAaAIIAmAA0AJoAuABLALoBegBqAX4BgQErAYYBlgEv' + + 'AZ8BnwFAAaQBuwFBAcIB2QFZAdwB6wFxAfAB8QGBAfQCcQGDBYwFugIBBe0GiAIwBooG4wLMCDwIPAMmCJ0InQMnCL8IxQMoCNAI0AMvCNMI0wMwCe4J7gMxAAIAAQMeAyQAAAAHAAAAHgABACQAAQAqAAAAMAABADYAAQA8AAAAQgABAoAAAAABAlgEnAABAXIEnAAB' + + 'AaT/nAABAlgEnAABAlgEsAABAV7/iAABRZZExgADRdwADALdETARNhE8EUIRSBFOEVQRWhFgEWYRbBFyEXgRfhGEEYoRkBGWEZwRohGoEa4RtBG6EcARxhHMEdIR2BHeEeQR6hHwEfYR/BICEggSDhIUEhoSIBImEiwSMhI4Ej4SRBJKElASVhJcEmISaBJuEnQSehKA' + + 'EoYSjBKSEpgSnhKkEqoSsBK2ErwSwhLIEs4S1BLaEuAS5hLsEvIS+BL+EwQTChMQExYTHBMiEygTLhM0EzoTQBNGE0wTUhNYE14TZBNqE3ATdhN8E4ITiBOOE5QTmhOgE6YTrBOyE7gTvhPEE8oT0BPWE9wT4hPoE+4T9BP6FAAUBhQMFBIUGBQeFCQUKhQwFDYUPBRC' + + 'FEgUThRUFFoUYBRmFGwUchR4FH4UhBSKFJAUlhScFKIUqBSuFLQUuhTAFMYUzBTSFNgU3hTkFOoU8BT2FPwVAhUIFQ4VFBUaFSAVJhUsFTIVOBU+FUQVShVQFVYVXBViFWgVbhV0FXoVgBWGFYwVkhWYFZ4VpBWqFbAVthW8FcIVyBXOFdQV2hXgFeYV7BXyFfgV/hYE' + + 'FgoWEBYWFhwWIhYoFi4WNBY6FkAWRhZMFlIWWBZeFmQWahZwFnYWfBaCFogWjhaUFpoWoBamFqwWsha4Fr4WxBbKFtAW1hbcFuIW6BbuFvQW+hcAFwYXDBcSFxgXHhckFyoXMBc2FzwXQhdIF04XVBdaF2AXZhdsF3IXeBd+F4QXiheQF5YXnBeiF6gXrhe0F7oXwBfG' + + 'F8wX0hfYF94X5BfqF/AX9hf8GAIYCBgOGBQYGhggGCYYLBgyGDgYPhhEGEoYUBhWGFwYYhhoGG4YdBh6GIAYhhiMGJIYmBieGKQYqhiwGLYYvBjCGMgYzhjUGNoY4BjmGOwY8hj4GP4ZBBkKGRAZFhkcGSIZKBkuGTQZOhlAGUYZTBlSGVgZXhlkGWoZcBl2GXwZghmI' + + 'GY4ZlBmaGaAZphmsGbIZuBm+GcQZyhnQGdYZ3BniGegZ7hn0GfoaABoGGgwaEhoYGh4aJBoqGjAaNho8GkIaSBpOGlQaWhpgGmYabBpyGngafhqEGooakBqWGpwaohqoGq4atBq6GsAaxhrMGtIa2BreGuQa6hrwGvYa/BsCGwgbDhsUGxobIBsmGywbMhs4Gz4bRBtK' + + 'G1AbVhtcG2IbaBtuG3QbehuAG4YbjBuSG5gbnhukG6obsBu2G7wbwhvIG84b1BvaG+Ab5hvsG/Ib+Bv+HAQcChwQHBYcHBwiHCgcLhw0HDocQBxGHEwcUhxYHF4cZBxqHHAcdhx8HIIciByOHJQcmhygHKYcrByyHLgcvhzEHMoc0BzWHNwc4hzoHO4c9Bz6HQAdBh0M' + + 'HRIdGB0eHSQdKh0wHTYdPB1CHUgdTh1UHVodYB1mHWwdch14HX4dhB2KHZAdlh2cHaIdqB2uHbQduh3AHcYdzB3SHdgd3h3kHeod8B32HfweAh4IHg4eFB4aHiAeJh4sHjIeOB4+HkQeSh5QHlYeXB5iHmgebh50HnoegB6GHowekh6YHp4epB6qHrAeth68HsIeyB7O' + + 'HtQe2h7gHuYe7B7yHvge/h8EHwofEB8WHxwfIh8oHy4fNB86H0AfRh9MH1IfWB9eH2Qfah9wH3YffB+CH4gfjh+UH5ofoB+mH6wfsh+4H74fxB/KH9Af1h/cH+If6B/uH/Qf+iAAIAYgDCASIBggHiAkICogMCA2IDwgQiBIIE4gVCBaIGAgZiBsIHIgeCB+IIQgiiCQ' + + 'IJYgnCCiIKggriC0ILogwCDGIMwg0iDYIN4g5CDqIPAg9iD8IQIhCCEOIRQhGiEgISYhLCEyITghPiFEIUohUCFWIVwhYiFoIW4hdCF6IYAhhiGMIZIhmCGeIaQhqiGwIbYhvCHCIcghziHUIdoh4CHmIewh8iH4If4iBCIKIhAiFiIcIiIiKCIuIjQiOiJAIkYiTCJS' + + 'IlgiXiJkImoicCJ2InwigiKIIo4ilCKaIqAipiKsIrIiuCK+IsQiyiLQItYi3CLiIugi7iL0IvojACMGIwwjEiMYIx4jJCMqIzAjNiM8I0IjSCNOI1QjWiNgI2YjbCNyI3gjfiOEI4ojkCOWI5wjoiOoI64jtCO6I8AjxiPMI9Ij2CPeI+Qj6iPwI/Yj/CQCJAgkDiQU' + + 'JBokICQmJCwkMiQ4JD4kRCRKJFAkViRcJGIkaCRuJHQkeiSAJIYkjCSSJJgkniSkJKoksCS2JLwkwiTIJM4k1CTaJOAk5iTsJPIk+CT+JQQlCiUQJRYlHCUiJSglLiU0JTolQCVGJUwlUiVYJV4lZCVqJXAldiV8JYIliCWOJZQlmiWgJaYlrCWyJbglviXEJcol0CXW' + + 'Jdwl4iXoJe4l9CX6JgAmBiYMJhImGCYeJiQmKiYwJjYmPCZCJkgmTiZUJlomYCZmJmwmciZ4Jn4mhCaKJpAmliacJqImqCauJrQmuibAJsYmzCbSJtgm3ibkJuom8Cb2JvwnAicIJw4nFCcaJyAnJicsJzInOCc+J0QnSidQJ1YnXCdiJ2gnbid0J3ongCeGJ4wnkieY' + + 'J54npCeqJ7Antie8J8InyCfOJ9Qn2ifgJ+Yn7CfyJ/gn/igEKAooECgWKBwoIigoKC4oNCg6KEAoRihMKFIoWCheKGQoaihwKHYofCiCKIgojiiUKJoooCimKKwosii4KL4oxCjKKNAo1ijcKOIo6CjuKPQo+ikAKQYpDCkSKRgpHikkKSopMCk2KTwpQilIKU4pVCla' + + 'KWApZilsKXIpeCl+KYQpiimQKZYpnCmiKagprim0KbopwCnGKcwp0inYKd4p5CnqKfAp9in8KgIqCCoOKhQqGiogKiYqLCoyKjgqPipEKkoqUCpWKlwqYipoKm4qdCp6KoAqhiqMKpIqmCqeKqQqqiqwKrYqvCrCKsgqzirUKtoq4CrmKuwq8ir4Kv4rBCsKKxArFisc' + + 'KyIrKCsuKzQrOitAK0YrTCtSK1grXitkK2orcCt2K3wrgiuIK44rlCuaK6ArpiusK7IruCu+K8QryivQK9Yr3CviK+gr7iv0K/osACwGLAwsEiwYLB4sJCwqLDAsNiw8LEIsSCxOLFQsWixgLGYsbCxyLHgsfiyELIoskCyWLJwsoiyoLK4stCy6LMAsxizMLNIs2Cze' + + 'LOQs6izwLPYs/C0CLQgtDi0ULRotIC0mLSwtMi04LT4tRC1KLVAtVi1cLWItaC1uLXQtei2ALYYtjC2SLZgtni2kLaotsC22Lbwtwi3ILc4t1C3aLeAt5i3sLfIt+C3+LgQuCi4QLhYuHC4iLiguLi40LjouQC5GLkwuUi5YLl4uZC5qLnAudi58LoIuiC6OLpQumi6g' + + 'LqYurC6yLrguvi7ELsou0C7WLtwu4i7oLu4u9C76LwAvBi8MLxIvGC8eLyQvKi8wLzYvPC9CL0gvTi9UL1ovYC9mL2wvci94L34vhC+KL5Avli+cL6IvqC+uL7Qvui/AL8YvzC/SL9gv3i/kL+ov8C/2L/wwAjAIMA4wFDAaMCAwJjAsMDIwODA+MEQwSjBQMFYwXDBi' + + 'MGgwbjB0MHowgDCGMIwwkjCYMJ4wpDCqMLAwtjC8MMIwyDDOMNQw2jDgMOYw7DDyMPgw/jEEMQoxEDEWMRwxIjEoMS4xNDE6MUAxRjFMMVIxWDFeMWQxajFwMXYxfDGCMYgxjjGUMZoxoDGmMawxsjG4Mb4xxDHKMdAx1jHcMeIx6DHuMfQx+jIAMgYyDDISMhgyHjIk' + + 'MioyMDI2MjwyQjJIMk4yVDJaMmAyZjJsMnIyeDJ+MoQyijKQMpYynDKiMqgyrjK0MroywDLGMswy0jLYMt4y5DLqMvAy9jL8MwIzCDMOMxQzGjMgMyYzLDMyMzgzPjNEM0ozUDNWM1wzYjNoM24zdDN6M4AzhjOMM5IzmDOeM6QzqjOwM7YzvDPCM8gzzjPUM9oz4DPm' + + 'M+wz8jP4M/40BDQKNBA0FjQcNCI0KDQuNDQ0OjRANEY0TDRSNFg0XjRkNGo0cDR2NHw0gjSINI40lDSaNKA0pjSsNLI0uDS+NMQ0yjTQNNY03DTiNOg07jT0NPo1ADUGNQw1EjUYNR41JDUqNTA1NjU8NUI1SDVONVQ1WjVgNWY1bDVyNXg1fjWENYo1kDWWNZw1ojWo' + + 'Na41tDW6NcA1xjXMNdI12DXeNeQ16jXwNfY1/DYCNgg2DjYUNho2IDYmNiw2MjY4Nj42RDZKNlA2VjZcNmI2aDZuNnQ2ejaANoY2jDaSNpg2njakNqo2sDa2Nrw2wjbINs421DbaNuA25jbsNvI2+Db+NwQ3CjcQNxY3HDciNyg3Ljc0Nzo3QDdGN0w3UjdYN143ZDdq' + + 'N3A3djd8N4I3iDeON5Q3mjegN6Y3rDeyN7g3vjfEN8o30DfWN9w34jfoN+439Df6OAA4BjgMOBI4GDgeOCQ4KjgwODY4PDhCOEg4TjhUOFo4YDhmOGw4cjh4OH44hDiKOJA4ljicOKI4qDiuOLQ4ujjAOMY4zDjSONg43jjkOOo48Dj2OPw5AjkIOQ45FDkaOSA5Jjks' + + 'OTI5ODk+OUQ5SjlQOVY5XDliOWg5bjl0OXo5gDmGOYw5kjmYOZ45pDmqObA5tjm8OcI5yDnOOdQ52jngOeY57DnyOfg5/joEOgo6EDoWOhw6IjooOi46NDo6OkA6RjpMOlI6WDpeOmQ6ajpwOnY6fDqCOog6jjqUOpo6oDqmOqw6sjq4Or46xDrKOtA61jrcOuI66Dru' + + 'OvQ6+jsAOwY7DDsSOxg7HjskOyo7MDs2Ozw7QjtIO047VDtaO2A7ZjtsO3I7eDt+O4Q7ijuQO5Y7nDuiO6g7rju0O7o7wDvGO8w70jvYO9475DvqO/A79jv8PAI8CDwOPBQ8GjwgPCY8LDwyPDg8PjxEPEo8UDxWPFw8YjxoPG48dDx6PIA8hjyMPJI8mDyePKQ8qjyw' + + 'PLY8vDzCPMg8zjzUPNo84DzmPOw88jz4PP49BD0KPRA9Fj0cPSI9KD0uPTQ9Oj1APUY9TD1SPVg9Xj1kPWo9cD12PXw9gj2IPY49lD2aPaA9pj2sPbI9uD2+PcQ9yj3QPdY93D3iPeg97j30Pfo+AD4GPgw+Ej4YPh4+JD4qPjA+Nj48PkI+SD5OPlQ+Wj5gPmY+bD5y' + + 'Png+fj6EPoo+kD6WPpw+oj6oPq4+tD66PsA+xj7MPtI+2D7ePuQ+6j7wPvY+/D8CPwg/Dj8UPxo/ID8mPyw/Mj84Pz4/RD9KP1A/Vj9cP2I/aD9uP3Q/ej+AP4Y/jD+SP5g/nj+kP6o/sD+2P7w/wj/IP84/1D/aP+A/5j/sP/I/+D/+QARACkAQQBZAHEAiQChALkA0' + + 'QDpAQEBGQExAUkBYQF5AZEBqQHBAdkB8QIJAiECOQJRAmkCgQKZArECyQLhAvkDEQMpA0EDWQNxA4kDoQO5A9ED6QQBBBkEMQRJBGEEeQSRBKkEwQTZBPEFCQUhBTkFUQVpBYEFmQWxBckF4QX5BhEGKQZBBlkGcQaJBqEGuQbRBukHAQcZBzEHSQdhB3kHkQepB8EH2' + + 'QfxCAkIIQg5CFEIaQiBCJkIsQjJCOEI+QkRCSkJQQlZCXEJiQmhCbkJ0QnpCgEKGQoxCkkKYQp5CpEKqQrBCtkK8QsJCyELOQtRC2kLgQuZC7ELyQvhC/kMEQwpDEEMWQxxDIkMoQy5DNEM6Q0BDRkNMQ1JDWENeQ2RDakNwQ3ZDfEOCQ4hDjkOUQ5pDoEOmQ6xDskO4' + + 'Q75DxEPKQ9BD1kPcQ+JD6EPuQ/RD+kQARAZEDEQSRBhEHkQkRCpEMEQ2RDxEQkRIRE5EVERaRGBEZkRsRHJEeER+RIREikSQRJZEnESiRKhErkS0AAEC2v9+AAEFMgYEAAEC2gYEAAECvP9+AAEFMgYEAAECvAYEAAEDIP9+AAEFMgYEAAEDIAYEAAECvP9+AAEFMgYE' + + 'AAECvAYEAAEC5P9+AAEE2AYEAAECvAYEAAECqP9+AAEEnAYEAAECqAYEAAEDSP9+AAEFeAYEAAEDSAYEAAEC2v9+AAEFMgYEAAEC2gYEAAEBGP9+AAEBuAYEAAEBGAYEAAECHP9+AAED6AYEAAEC0AYEAAECvP9+AAEFMgYEAAECvAYEAAECiv9+AAEETAYEAAECigYE' + + 'AAEDXP9+AAEGLAYEAAEDXAYEAAEC2v9+AAEFMgYEAAEC2gYEAAEDIP9+AAEFMgYEAAEDIAYEAAECqP9+AAEEnAYEAAECqAYEAAECWP9+AAEFlgYEAAEDIAYEAAECqP9+AAEEnAYEAAECqAYEAAECvP9+AAEFMgYEAAECvAYEAAECbP9+AAEE2AYEAAECbAYEAAEC2v9+' + + 'AAEFMgYEAAEC2gYEAAECqP9+AAEEnAYEAAECqAYEAAEDyv9+AAEHbAYEAAEDygYEAAECqP9+AAEEnAYEAAECqAYEAAECqP9+AAEEnAYEAAECqAYEAAECgP9+AAEEdAYEAAECgAYEAAECMP9+AAED6ASwAAECMASwAAECqP9+AAEEnAYEAAECqAYEAAECWP9+AAEFlgYE' + + 'AAEDIAYEAAECRP9+AAEEYAYEAAECRAYEAAECRP9+AAEEYAYEAAECRAYEAAEBVP9+AAECvAYEAAEBzAYsAAECRP3kAAEEYASwAAECRASwAAECgP9+AAEEdAYEAAECgAYEAAEBGP9+AAEBuAYEAAEBGAYEAAEAyP3kAAEBpAYEAAEBGAYsAAECRP9+AAEEYAYEAAECRAYE' + + 'AAEBGP9+AAEBuAYEAAEBGAYEAAEDmP9+AAEGpASwAAEDmASwAAECbP9+AAEE2AYEAAECbAYEAAECdv9+AAEEYASwAAECdgSwAAECqP3kAAEEYASwAAECqASwAAECMP3kAAEEYASwAAECMASwAAEBGP9+AAEBuAYEAAEBGAYEAAECRP9+AAEEYAYEAAECRAYEAAEBpP9+' + + 'AAECbAXIAAEBVAXIAAECbP9+AAEE2AYEAAECbAYEAAECMP9+AAED6ASwAAECMASwAAEDIP9+AAEFMgYEAAEDIAYEAAECMP9+AAED6ASwAAECMASwAAEBzP3kAAEEYASwAAECMASwAAEB9P9+AAEDhASwAAEB9ASwAAEC2v9+AAEFMgYEAAEC2gYEAAEC2v9+AAEFMgYE' + + 'AAEC2gYEAAEC2v9+AAEFMgYEAAEC2gYEAAEC2v9+AAEFMgYEAAEC2gYEAAEC2v9+AAEFMgYEAAEC2gYEAAEC2v9+AAEFMgYEAAEC2gYEAAEEJP9+AAEHgAYEAAEFFAYEAAEDIP3kAAEFMgYEAAEDIAYEAAEC2v9+AAEFMgYEAAEC2gYEAAEC5P9+AAEE2AYEAAECvAYE' + + 'AAEC5P9+AAEE2AYEAAECvAYEAAEC2v9+AAEFMgYEAAEC2gYEAAEBGP9+AAEBuAYEAAEBGAYEAAEBGP9+AAEBuAYEAAEBGAYEAAEBGP9+AAEBuAYEAAEBGAYEAAEBGP9+AAEBuAYEAAEBGAYEAAECvP9+AAEFMgYEAAECvAYEAAEC2v9+AAEFMgYEAAEC2gYEAAEDIP9+' + + 'AAEFMgYEAAEDIAYEAAEDIP9+AAEFMgYEAAEDIAYEAAEDIP9+AAEFMgYEAAEDIAYEAAEDIP9+AAEFMgYEAAEDIAYEAAEDIP9+AAEFMgYEAAEDIAYEAAEDIP9+AAEFMgYEAAEDIAYEAAEC2v9+AAEFMgYEAAEC2gYEAAEC2v9+AAEFMgYEAAEC2gYEAAEC2v9+AAEFMgYE' + + 'AAEC2gYEAAEC2v9+AAEFMgYEAAEC2gYEAAECqP9+AAEEnAYEAAECqAYEAAECiv9+AAEETAYEAAECigYEAAEClP9+AAEEsATsAAECWAYsAAECMP9+AAED6ASwAAECMASwAAECMP9+AAED6ASwAAECMASwAAECMP9+AAED6ASwAAECMASwAAECMP9+AAED6ASwAAECMASw' + + 'AAECMP9+AAED6ASwAAECMASwAAECMP9+AAED6ASwAAECMASwAAEDXP9+AAEGLAYEAAEDXAYEAAECWP3kAAED1ASwAAECWASwAAECRP9+AAEEYAYEAAECRAYEAAECRP9+AAEEYAYEAAECRAYEAAECRP9+AAEEYAYEAAECRAYEAAECRP9+AAEEYAYEAAECRAYEAAEBGP9+' + + 'AAEBuAYEAAEBGAYEAAEBGP9+AAEBuAYEAAEBGAYEAAEBGP9+AAEBuAYEAAEBGAYEAAEBGP9+AAEBuAYEAAEBGAYEAAECbP9+AAEE2AYEAAECbAYEAAECbP9+AAEE2AYEAAECbAYEAAECdv9+AAEEYASwAAECdgSwAAECdv9+AAEEYASwAAECdgSwAAECdv9+AAEEYASw' + + 'AAECdgSwAAECdv9+AAEEYASwAAECdgSwAAECdv9+AAEEYASwAAECdgSwAAECdv9+AAEEYASwAAECdgSwAAECbP9+AAEE2AYEAAECbAYEAAECbP9+AAEE2AYEAAECbAYEAAECbP9+AAEE2AYEAAECbAYEAAECbP9+AAEE2AYEAAECbAYEAAEBkP3kAAEEYATsAAECMAYs' + + 'AAECqP3kAAEEYASwAAECqASwAAEBkP3kAAEEYATsAAECMAYsAAEC2v9+AAEFMgYEAAEC2gYEAAECMP9+AAED6ASwAAECMASwAAEC2v9+AAEFMgYEAAEC2gYEAAECMP9+AAED6ASwAAECMASwAAEC2v3kAAEFMgYEAAEC2gYEAAECMP3kAAEEYASwAAECMASwAAEDIP9+' + + 'AAEFMgYEAAEDIAYEAAECWP9+AAEFlgYEAAEDIAYEAAEDIP9+AAEFMgYEAAEDIAYEAAECWP9+AAEFlgYEAAEDIAYEAAEDIP9+AAEFMgYEAAEDIAYEAAECWP9+AAEFlgYEAAEDIAYEAAEDIP9+AAEFMgYEAAEDIAYEAAECWP9+AAEFlgYEAAEDIAYEAAECvP9+AAEFMgYE' + + 'AAECvAYEAAECMP9+AAED6ASwAAECMASwAAECvP9+AAEFMgYEAAECvAYEAAECMP9+AAED6ASwAAECMASwAAEC2v9+AAEFMgYEAAEC2gYEAAECRP9+AAEEYAYEAAECRAYEAAEC2v9+AAEFMgYEAAEC2gYEAAECRP9+AAEEYAYEAAECRAYEAAEC0P9+AAEE2AYEAAECxgds' + + 'AAECRP9+AAEEYAYEAAECRAYEAAEC0P3kAAEE2AYEAAEC0AYEAAECRP3kAAEEYASwAAECRASwAAEC0P9+AAEE2AYEAAECxgdsAAECRP9+AAEEYAYEAAECRAYEAAEDIP9+AAEFMgYEAAEDIAYEAAECWP3kAAED1ASwAAECWASwAAEDIP9+AAEFMgYEAAEDIAYEAAECWP3k' + + 'AAED1ASwAAECWASwAAEDIP9+AAEFMgYEAAEDIAYEAAECWP3kAAED1ASwAAECWASwAAEDIP3kAAEFMgYEAAEDIAYEAAECWP3kAAED1ASwAAECWASwAAEC2v9+AAEFMgYEAAEC2gYEAAECgP9+AAEEdAYEAAECgAYEAAEC2v9+AAEFMgYEAAEC2gYEAAECgP9+AAEEdAYE' + + 'AAECgAYEAAEBGP9+AAEBuAYEAAEBGAYEAAEBGP9+AAEBuAYEAAEBGAYEAAEBGP9+AAEBuAYEAAEBGAYEAAEBGP9+AAEBuAYEAAEBGAYEAAEBGP9+AAEBuAYEAAEBGAYEAAEBGP9+AAEBuAYEAAEBGAYEAAEBLP3kAAEBuAYEAAEBGAYEAAEBGP3kAAEBuAYEAAEBGAYs' + + 'AAEBGP9+AAEBuAYEAAEBGAYEAAEBGP9+AAEBuAYEAAEBGAYEAAEC2v9+AAEFMgYEAAEC2gYEAAEBzP3kAAEEYASwAAECMASwAAECHP9+AAED6AYEAAEC0AYEAAEAyP3kAAEBpAYEAAEBGAYsAAEC+P3kAAEFMgYEAAECvAYEAAECdv3kAAEEYAYEAAECRAYsAAECRP9+' + + 'AAEEYAYEAAECRAYEAAECiv9+AAEETAYEAAECigYEAAEBGP9+AAEBuAYEAAEBGAYEAAECgP3kAAEETAYEAAECigYEAAEBGP3kAAEBuAYEAAEBGAYsAAECiv9+AAEETAYEAAECigYEAAEBGP9+AAEBuAYEAAEBGAYEAAECiv9+AAEETAYEAAECigYEAAEBGP9+AAEBuAYE' + + 'AAEBGAYEAAECbP9+AAEE2AYEAAECbAYEAAEBGP9+AAEBuAYEAAEBGAYEAAEC2v9+AAEFMgYEAAEC2gYEAAECbP9+AAEE2AYEAAECbAYEAAEDAv3kAAEFMgYEAAEC2gYEAAECgP3kAAEETAYEAAECigYEAAEC2v9+AAEFMgYEAAEC2gYEAAECbP9+AAEE2AYEAAECbAYE' + + 'AAEDPv9+AAEFAATsAAEDPgSwAAEC+P9+AAEFMgYEAAEC+AYEAAECbP3kAAEE2AYEAAECbAYEAAEDIP9+AAEFMgYEAAEDIAYEAAECdv9+AAEEYASwAAECdgSwAAEDIP9+AAEFMgYEAAEDIAYEAAECdv9+AAEEYASwAAECdgSwAAEDIP9+AAEFMgYEAAEDIAYEAAECdv9+' + + 'AAEEYASwAAECdgSwAAEETP9+AAEHlAYEAAEETAYEAAED/P9+AAEHCATsAAED/ASwAAECqP9+AAEEnAYEAAECqAYEAAEBGP9+AAEBuAYEAAEBGAYEAAEC5P3kAAEFMgYEAAECqAYEAAEBGP3kAAEBuAYEAAEBGAYsAAECqP9+AAEEnAYEAAECqAYEAAEBGP9+AAEBuAYE' + + 'AAEBGAYEAAECvP9+AAEFMgYEAAECvAYEAAECRP9+AAEEYAYEAAECRAYEAAECvP9+AAEFMgYEAAECvAYEAAECRP9+AAEEYAYEAAECRAYEAAECvP3kAAEE2AYEAAECvAYEAAECRP3kAAEEYASwAAECRASwAAECvP9+AAEFMgYEAAECvAYEAAECRP9+AAEEYAYEAAECRAYE' + + 'AAECbP3kAAEE2AYEAAECbAYEAAEBpP3kAAECbAXIAAEBVAXIAAECbP9+AAEE2AYEAAECbAYEAAEBpP9+AAECbAXIAAEBVAXIAAECbP9+AAEE2AYEAAECbAYEAAEBpP9+AAECbAXIAAEBVAXIAAEC2v9+AAEFMgYEAAEC2gYEAAECbP9+AAEE2AYEAAECbAYEAAEC2v9+' + + 'AAEFMgYEAAEC2gYEAAECbP9+AAEE2AYEAAECbAYEAAEC2v9+AAEFMgYEAAEC2gYEAAECbP9+AAEE2AYEAAECbAYEAAEC2v9+AAEFMgYEAAEC2gYEAAECbP9+AAEE2AYEAAECbAYEAAEC2v9+AAEFMgYEAAEC2gYEAAECbP9+AAEE2AYEAAECbAYEAAEDDP3kAAEFMgYE' + + 'AAEC2gYEAAECbP3kAAEE2AYEAAECbAYEAAEDyv9+AAEHbAYEAAEDygYEAAEDIP9+AAEFMgYEAAEDIAYEAAECqP9+AAEEnAYEAAECqAYEAAEBzP3kAAEEYASwAAECMASwAAECqP9+AAEEnAYEAAECqAYEAAECgP9+AAEEdAYEAAECgAYEAAEB9P9+AAEDhASwAAEB9ASw' + + 'AAECgP9+AAEEdAYEAAECgAYEAAEB9P9+AAEDhASwAAEB9ASwAAECgP9+AAEEdAYEAAECgAYEAAEB9P9+AAEDhASwAAEB9ASwAAEBGP9+AAEBuAYEAAEBGAYEAAECqP9+AAEEnAYEAAECqAYEAAEDhP9+AAEF8AYEAAEDhAYEAAECqP9+AAEEnAYEAAECqAYEAAECqP9+' + + 'AAEEnAYEAAECqAYEAAECqP9+AAEEnAYEAAECqAYEAAECqP9+AAEEnAYEAAECqAYEAAECvP9+AAEFMgYEAAECvAYEAAEDIP9+AAEFMgYEAAEDIAYEAAECRP9+AAEEYAYEAAECRAYEAAECvP9+AAEFMgYEAAECvAYEAAEDhP9+AAEF8AYEAAEDhAYEAAEDSP9+AAEFeAYE' + + 'AAEDSAYEAAECRP9+AAEEYAYEAAECRAYEAAECdv3kAAEEYAYEAAECRAYsAAECgP9+AAEEdAYEAAECgAYEAAEDIP9+AAEFMgYEAAEDIAYEAAECgP9+AAEEdAYEAAECgAYEAAEBGP3kAAEBuAYEAAEBGAYsAAEBQP3kAAEETAYEAAEDIAYEAAEDPv9+AAEFAATsAAEDPgSw' + + 'AAECgP3kAAEETAYEAAECigYEAAED/P9+AAEHCATsAAED/ASwAAEBGP9+AAEBuAYEAAEBGAYEAAEBGP9+AAEBuAYEAAEBGAYEAAEC0P9+AAEE2AYEAAECxgdsAAECRP9+AAEEYAYEAAECRAYEAAEBGP9+AAEBuAYEAAEBGAYEAAECMP9+AAED6ASwAAECMASwAAED6P9+' + + 'AAEHbAYEAAED6AYEAAEC5P9+AAEE2AYEAAECvAYEAAECbP3kAAEE2AYEAAECbAYEAAEDIP9+AAEFMgYEAAEDIAYEAAEDIP9+AAEFMgYEAAEDIAYEAAECdv9+AAEEYASwAAECdgSwAAEDIP9+AAEFMgYEAAEDIAYEAAECWP9+AAEFlgYEAAEDIAYEAAEDev9+AAEF8AYE' + + 'AAEDXAYEAAECqP3kAAEEYASwAAECqASwAAECqP5wAAEEsAYEAAECqAYEAAECqP9+AAEEnAYEAAECqAYEAAECRP9+AAEEYAYEAAECRAYEAAECqP9+AAEEnAYEAAECqAYEAAECJv3kAAECvAYEAAEBLAYEAAEBfP3kAAECbAXIAAEBVAXIAAECbP9+AAEE2AYEAAECbAYE' + + 'AAEBzP9+AAECvAYEAAEBzAYEAAEDDP3kAAEFMgYEAAEC2gYEAAEC2v9+AAEFMgYEAAEC2gYEAAECHP9+AAED6AYEAAEC0AYEAAEDKv9+AAEGBAYEAAEDKgYEAAEC2v9+AAEFMgYEAAEC2gYEAAECqP9+AAEEnAYEAAECqAYEAAEBzP3kAAEEYASwAAECMASwAAECgP9+' + + 'AAEEdAYEAAECgAYEAAEB9P9+AAEDhASwAAEB9ASwAAECWP3kAAED1ASwAAECWASwAAECqP3kAAEEYASwAAECqASwAAECRP9+AAEEYAYEAAECRAYEAAEB9P9+AAEDhASwAAEB9ASwAAEBGP3kAAEBuAYEAAEBGAYsAAEIKv9+AAEKNgYsAAEIcAdsAAEH0P9+AAEJYATs' + + 'AAEIAgYsAAEG9P9+AAEImATsAAEHCAYsAAEG9P9+AAEImATsAAEHCAYsAAEFn/3kAAEG4ATsAAEGBAYEAAEC2f3kAAEETATsAAEDXAYEAAEH0P9+AAEJYATsAAEIAgYsAAEGhv3kAAEH0ATsAAEG4AYEAAEFlP3kAAEHHATsAAEF+gYEAAEC2v9+AAEFMgYEAAEC2gYE' + + 'AAECHP9+AAED6AYEAAEC0AYEAAEBGP9+AAEBuAYEAAEBGAYEAAEBGP9+AAEBuAYEAAEBGAYEAAEDIP9+AAEFMgYEAAEDIAYEAAECdv9+AAEEYASwAAECdgSwAAEC2v9+AAEFMgYEAAEC2gYEAAECbP9+AAEE2AYEAAECbAYEAAECRP9+AAEEYAYEAAECRAYEAAEEYP9+' + + 'AAEHdgYEAAEFMgcIAAEDev9+AAEF8AYEAAEDXAYEAAEDQv9+AAEFeAYEAAEDIAYEAAECWP3kAAED1ASwAAECWASwAAEDIP9+AAEFMgYEAAEDIAYEAAECWP3kAAED1ASwAAECWASwAAECvP9+AAEFMgYEAAECvAYEAAECWP9+AAEFlgYEAAEDIAYEAAEDov3kAAEFlgYE' + + 'AAEDIAYEAAEC5P3kAAEFMgYEAAECqAYEAAEDov3kAAEFlgYEAAEDIAYEAAEC5P3kAAEFMgYEAAECqAYEAAECWP3kAAED1ASwAAECWASwAAECHP3kAAEEYATsAAECCAYsAAEAyP3kAAEBpAYEAAEBGAYsAAEIPv9+AAEKRgYEAAEIXAYEAAEHxf9+AAEJOQTsAAEHvASw' + + 'AAEG9P9+AAEImATsAAEHCAYsAAEDIP9+AAEFMgYEAAEDIAYEAAECWP3kAAED1ASwAAECWASwAAEC2v9+AAEFMgYEAAEC2gYEAAEBBv3kAAEE2AYEAAECvAYsAAEC2v9+AAEFMgYEAAEC2gYEAAECbP9+AAEE2AYEAAECbAYEAAEC2v9+AAEFMgYEAAEC2gYEAAECMP9+' + + 'AAED6ASwAAECMASwAAEC2v9+AAEFMgYEAAEC2gYEAAECMP9+AAED6ASwAAECMASwAAEC2v9+AAEFMgYEAAEC2gYEAAECRP9+AAEEYAYEAAECRAYEAAEC5P9+AAEE2AYEAAECvAYEAAECMP9+AAED6ASwAAECMASwAAEBGP9+AAEBuAYEAAEBGAYEAAEBGP9+AAEBuAYE' + + 'AAEBGAYEAAEBGP9+AAEBuAYEAAEBGAYEAAEBGP9+AAEBuAYEAAEBGAYEAAEDIP9+AAEFMgYEAAEDIAYEAAECdv9+AAEEYASwAAECdgSwAAEDIP9+AAEFMgYEAAEDIAYEAAECdv9+AAEEYASwAAECdgSwAAECqP9+AAEEnAYEAAECqAYEAAEBGP9+AAEBuAYEAAEBGAYE' + + 'AAECqP9+AAEEnAYEAAECqAYEAAEBGP9+AAEBuAYEAAEBGAYEAAEC2v9+AAEFMgYEAAEC2gYEAAECbP9+AAEE2AYEAAECbAYEAAEC2v9+AAEFMgYEAAEC2gYEAAECbP9+AAEE2AYEAAECbAYEAAECbP3kAAEE2AYEAAECbAYEAAEBpP3kAAECbAXIAAEBVAXIAAECGf3k' + + 'AAED6AYEAAECIgYEAAEBzP3kAAEEYASwAAECMASwAAEC2v9+AAEFMgYEAAEC2gYEAAECbP9+AAEE2AYEAAECbAYEAAECqP3kAAEEYASwAAECqASwAAECdv3kAAEEYAYEAAECRAYsAAEClP9+AAEEsATsAAECWAYsAAECbP9+AAEE2AYEAAECbAYEAAECbP6sAAEEdAYE' + + 'AAECgAYEAAEB4P6sAAEDjgTsAAEB9ASwAAEC2v9+AAEFMgYEAAEC2gYEAAECMP9+AAED6ASwAAECMASwAAEC5P3kAAEFMgYEAAECqAYEAAECRP3kAAEEYASwAAECRASwAAEDIP9+AAEFMgYEAAEDIAYEAAECbP9+AAEE2AYEAAECbAYEAAECqP9+AAEEnAYEAAECqAYE' + + 'AAEBzP3kAAEEYASwAAECMASwAAECRf3kAAECPQYEAAEBGAYsAAECnf3kAAEFEwTsAAECbASwAAEBlf9+AAECyQXIAAEBQAXIAAEAjP3kAAEB9ASwAAEBGASwAAED1P9+AAEG4AYEAAED1AYEAAED1P3kAAEG4ATsAAED1ASwAAEC2v8QAAEFMgYEAAEC2gYEAAEDIP8Q' + + 'AAEFMgYEAAEDIAYEAAECWP3kAAED1ASwAAECWASwAAECiv9+AAEETAYEAAECigYEAAECbP8QAAEFMgYEAAECbAYEAAECRP3kAAEEYASwAAECRASwAAECCP3kAAEDhATsAAEB9ASwAAECbP9+AAEE2AYEAAECbAYEAAEB6v9+AAEDhATsAAEBzASwAAECvP9+AAEFMgYE' + + 'AAECvAYEAAEC2v9+AAEFMgYEAAEC2gYEAAECvP9+AAEFMgYEAAECvAYEAAEC0P8QAAEE7AYEAAECqAYEAAECRP3kAAEEYASwAAECRASwAAEB9P9+AAEDhASwAAEB9ASwAAEAyP3kAAEBpAYEAAEBGAYsAAEC2v5IAAEFMgYEAAEC2gYEAAECA/5IAAEEYATsAAECEgSw' + + 'AAEC7v9+AAEFMgYEAAEC7gYEAAEBGP9+AAEBuAYEAAEBGAYEAAECqP9+AAEEnAYEAAECqAYEAAEBzP3kAAEEYASwAAECMASwAAECRP9+AAEEYAYEAAECRAYEAAECMP9+AAED6ASwAAECMASwAAECqP9+AAEEnAYEAAECqAYEAAECqP9+AAEEnAYEAAECqAYEAAECMP9+' + + 'AAED6ASwAAECMASwAAECWP9+AAEFlgYEAAEDIAYEAAECMP3kAAEEYASwAAECMASwAAECMP9+AAED6ASwAAECMASwAAECRP9+AAEEYAYEAAECRAYEAAECRP9+AAEEYAYEAAECRAYEAAECRP9+AAEEYAYEAAECRAYEAAECCP9+AAED6ATsAAEB9ASwAAECCP9+AAED6ATs' + + 'AAEB9ASwAAECCP9+AAED6ATsAAEB9ASwAAECbP9+AAEE2AYEAAECbAYEAAEBGP3kAAEBuAYEAAEBGAYsAAECWP3kAAED1ASwAAECWASwAAECWP3kAAED1ASwAAECWASwAAECgP9+AAEEdAYEAAECgAYEAAECMP3kAAEEYASwAAECMASwAAECbP9+AAEE2AYEAAECbAYE' + + 'AAECbP3kAAEE2AYEAAECbAYEAAECbP9+AAEE2AYEAAECbAYEAAECbP3kAAEE2AYEAAECbAYEAAEBGP9+AAEBuAYEAAEBGAYEAAEBaP9+AAEBzATsAAEBGASwAAEBpP9+AAECbAXIAAEBVAXIAAEBVP9+AAECvAYEAAEBzAYsAAEBwv9+AAECvAYEAAEBwgYsAAEBfP3k' + + 'AAECbAXIAAEBVAXIAAEC0P3kAAEE2AYEAAEC0AYEAAEDhP9+AAEF8AYEAAEDhAYEAAEDhP3kAAEGpATsAAEDhASwAAEDhP3kAAEGpATsAAEDhASwAAECbP3kAAEE2AYEAAECbAYEAAECbP3kAAEE2AYEAAECbAYEAAECbP9+AAEE2AYEAAECbAYEAAECdv9+AAEEYASw' + + 'AAECdgSwAAEDhP9+AAEF8AYEAAEDhAYEAAEDXP9+AAEGLAYEAAEDXAYEAAEDDP3kAAEFMgYEAAEC2gYEAAEBaP9+AAEBzATsAAEBGASwAAEBaP9+AAEBzATsAAEBGASwAAEBrv3kAAECngTsAAEB9ASwAAEBGP3kAAEBuAYEAAEBGAYsAAEBrv3kAAECngTsAAEB9ASw' + + 'AAEBGP9+AAEBuAYEAAEBGAYEAAEB9P3kAAECvATsAAEBaASwAAECWP9+AAEFlgYEAAEDIAYEAAECbP9+AAEE2AYEAAECbAYEAAECRP3kAAEEYASwAAECRASwAAEAoP3kAAEDNAYEAAECCAYsAAEAoP3kAAEDNAYEAAECCAYsAAEB9P3kAAECvATsAAEBaASwAAEBkP3k' + + 'AAEEYATsAAECMAYsAAEBR/9+AAECbAXIAAEBQAYsAAEBif3kAAECWAXIAAEBaAXIAAECbP9+AAEE2AYEAAECbAYEAAECbP9+AAEE2AYEAAECbAYEAAECMP9+AAED6ASwAAECMASwAAECMP9+AAED6ASwAAECMASwAAEDIP9+AAEFMgYEAAEDIAYEAAECMP9+AAED6ASw' + + 'AAECMASwAAECRP9+AAEEYAYEAAECRAYEAAEB9P3kAAECvATsAAEBaASwAAECWP7UAAEE4gTsAAEB9ASwAAECHP3kAAEEYATsAAECCAYsAAECHP3kAAEEYATsAAECCAYsAAECCP9+AAED6ATsAAEB9ASwAAECRP9+AAEEYAYEAAECRAYEAAECMP9+AAED6ASwAAECMASw' + + 'AAECMP3kAAEEYASwAAECMASwAAEDIP9+AAEFMgYEAAEDIAYEAAECWP9+AAEFlgYEAAEDIAYEAAECMP9+AAED6ASwAAECMASwAAECbP9+AAEE2AYEAAECbAYEAAECbP9+AAEE2AYEAAECbAYEAAEBkP3kAAEEYATsAAECMAYsAAEB9P3kAAECvATsAAEBaASwAAEB9P9+' + + 'AAEDhASwAAEB9ASwAAECEv3kAAEFMgYEAAECbAYEAAECHP9+AAED6AYEAAEC0AYEAAECWP9+AAEFlgYEAAEDIAYEAAEGQP9+AAEH0ATsAAEGQASwAAEFeP3kAAEHJgTsAAEF+gSwAAEGQP7UAAEImATsAAEGQASwAAEDov9+AAEFyATsAAEDmASwAAECMP3kAAEEYASw' + + 'AAECMASwAAEEsP9+AAEGVATsAAEEHQSwAAEETP3kAAEGXgTsAAEEagSwAAEDhP9+AAEF8AYEAAEDhAYEAAEDXP9+AAEGLAYEAAEDXAYEAAECMP9+AAED6ASwAAECMASwAAECMP9+AAED6ASwAAECMASwAAEDDP3kAAEFMgYEAAEC2gYEAAEDDP3kAAEFMgYEAAEC2gYE' + + 'AAECqP9+AAEEnAYEAAECqAYEAAECMP9+AAED6ASwAAECMASwAAEBVP9+AAECvAYEAAEBzAYsAAEDmP9+AAEGpASwAAEDmASwAAECbP9+AAEE2AYEAAECbAYEAAECqP3kAAEEYASwAAECqASwAAEBLP9+AAEDIATsAAEBrgYsAAEBLP9+AAEDIATsAAEBrgYsAAECRP9+' + + 'AAEEYAYEAAECRAYEAAEBpP9+AAECbAXIAAEBVAXIAAEB9P9+AAEDhASwAAEB9ASwAAECqP3kAAEEYASwAAECqASwAAEBaP9+AAEBzATsAAEBGASwAAECbP3kAAEE2AYEAAECbAYEAAEEsP9+AAEGVATsAAEEHQSwAAEBGP9+AAEBuAYEAAEBGAYEAAEBGP9+AAEBuAYE' + + 'AAEBGAYEAAECqP3kAAEEYASwAAECqASwAAECbP9+AAEE2AYEAAECbAYEAAECbP9+AAEE2AYEAAECbAYEAAECWP3kAAED1ASwAAECWASwAAECMP3kAAEEYASwAAECMASwAAEBDv3kAAECvAYEAAEBzAYEAAECWP3kAAED1ASwAAECWASwAAECRP3kAAEEYASwAAECRASw' + + 'AAEBGP3kAAEBuAYEAAEBGAYsAAEDhP3kAAEGpATsAAEDhASwAAECbP3kAAEE2AYEAAECbAYEAAECqP3kAAEEYASwAAECqASwAAEBBP3kAAEC+ATsAAEBzASwAAECRP3kAAEEYASwAAECRASwAAEA5v3kAAEDIAYEAAECCAYEAAECMP3kAAEEYASwAAECMASwAAECMP3k' + + 'AAEEYASwAAECMASwAAEB9P3kAAECvATsAAEBaASwAAECMP3kAAEEYASwAAECMASwAAECMP3kAAEEYASwAAECMASwAAECMP3kAAEEYASwAAECMASwAAECWP3kAAED1ASwAAECWASwAAEB4P3kAAED6ATsAAEB4ASwAAECCP3kAAEDhATsAAEB9ASwAAECWP3kAAED1ASw' + + 'AAECWASwAAEBGP3kAAEBuAYEAAEBGAYsAAECRP3kAAEEYASwAAECRASwAAEBBP3kAAEC+ATsAAEBzASwAAECbP3kAAEE2AYEAAECbAYEAAECMP3kAAEEYASwAAECMASwAAEC2v3kAAEFMgYEAAEC2gYEAAECRP3kAAEEYASwAAECRASwAAECvP9+AAEFMgYEAAECvAYE' + + 'AAECqP9+AAEEnAYEAAECqAYEAAECvP5IAAEFMgYEAAECvAYEAAECqP5IAAEFMgYEAAECqAYEAAECvP5IAAEFMgYEAAECvAYEAAECqP5IAAEFMgYEAAECqAYEAAECvP9+AAEFMgYEAAECvAYEAAECMP9+AAED6ASwAAECMASwAAECqP5IAAEFMgYEAAECqAYEAAECWP5I' + + 'AAEEYAYEAAECMAYsAAEC5P5IAAEFMgYEAAECvAYEAAECWP5IAAEEYAYEAAECMAYsAAEClP3kAAEFMgYEAAECvAYEAAECbP3kAAEE2AYEAAECbAYEAAEC0P3kAAEE2AYEAAEC0AYEAAECdv3kAAEEYAYEAAECRAYsAAEC5P3kAAEFMgYEAAECqAYEAAECWP3kAAED1ASw' + + 'AAECWASwAAEC0P3kAAEE2AYEAAEC0AYEAAECRP3kAAEEYASwAAECRASwAAECqP9+AAEEnAYEAAECqAYEAAEBVP9+AAECvAYEAAEBzAYsAAEDKv9+AAEGBAYEAAEDKgYEAAECbP3kAAEE2AYEAAECbAYEAAEC2v9+AAEFMgYEAAEC2gYEAAECgP9+AAEEdAYEAAECgAYE' + + 'AAEC2v5IAAEFMgYEAAEC2gYEAAECgP5IAAEEYAYEAAECgAYsAAEC2v9+AAEFMgYEAAEC2gYEAAECgP9+AAEEdAYEAAECgAYEAAEC2v3kAAEFMgYEAAEC2gYEAAECgP3kAAEETAYEAAECigYEAAEC+P3kAAEFMgYEAAECvAYEAAECgP4gAAEEYAYEAAECgAYsAAEBGP3k' + + 'AAEBuAYEAAEBGAYsAAEBGP3kAAEBuAYEAAEBGAYsAAECvP9+AAEFMgYEAAECvAYEAAECRP9+AAEEYAYEAAECRAYEAAEC5P5IAAEFMgYEAAECvAYEAAECWP5IAAEEYAYEAAECMAYsAAEC0P5IAAEFMgYEAAECvAYEAAECbP5IAAEEYATsAAECbASwAAECqP5IAAEFMgYE' + + 'AAECqAYEAAEBGP5IAAEBuAYEAAEBGAYEAAECqP5IAAEFMgYEAAECqAYEAAEBLP5IAAECqAYEAAEBGAcwAAECqP5IAAEFMgYEAAECqAYEAAEBLP5IAAECqAYEAAEBGAcwAAECqP5IAAEFMgYEAAECqAYEAAEBLP5IAAECqAYEAAEBGAcwAAEDXP9+AAEGLAYEAAEDXAYE' + + 'AAEDmP9+AAEGpASwAAEDmASwAAEDXP9+AAEGLAYEAAEDXAYEAAEDmP9+AAEGpASwAAEDmASwAAEDXP5IAAEGLAYEAAEDUgYEAAEDmP5IAAEGpATsAAEDmASwAAEC2v9+AAEFMgYEAAEC2gYEAAECbP9+AAEE2AYEAAECbAYEAAEC2v5IAAEFMgYEAAEC2gYEAAECbP5I' + + 'AAEEYATsAAECbASwAAEC2v5IAAEFMgYEAAEC2gYEAAECbP5IAAEEYATsAAECbASwAAEC2v5IAAEFMgYEAAEC2gYEAAECdv5IAAEEYATsAAECdgSwAAECqP9+AAEEnAYEAAECqAYEAAECqP3kAAEEYASwAAECqASwAAECqP9+AAEEnAYEAAECqAYEAAECqP3kAAEEYASw' + + 'AAECqASwAAECqP9+AAEEnAYEAAECqAYEAAEBLP9+AAEDIATsAAEBrgYsAAEC2v5IAAEFMgYEAAEC2gYEAAEBuP5IAAEDIATsAAEBzASwAAEC7v5IAAEFMgYEAAECxgYEAAEBkP5IAAEDIATsAAEBzASwAAECvP9+AAEFMgYEAAECvAYEAAECRP9+AAEEYAYEAAECRAYE' + + 'AAECvP5IAAEFMgYEAAECvAYEAAECRP5IAAEDwATsAAECRASwAAECvP9+AAEFMgYEAAECvAYEAAECWP9+AAEFlgYEAAEDIAYEAAECvP9+AAEFMgYEAAECvAYEAAECWP9+AAEFlgYEAAEDIAYEAAECvP5IAAEFMgYEAAECvAYEAAECRP5IAAEDwATsAAECRASwAAECbP9+' + + 'AAEE2AYEAAECbAYEAAEBpP9+AAECbAXIAAEBVAXIAAECbP5IAAEEYATsAAECbASwAAEBpP5IAAECbATsAAEBVAXIAAECbP5IAAEEYATsAAECbASwAAEBXv5IAAECbATsAAEBVAXIAAECbP5IAAEEYATsAAECbASwAAEBkP5IAAEDIATsAAEBzASwAAEC2v3kAAEFMgYE' + + 'AAEC2gYEAAECbP3kAAEE2AYEAAECbAYEAAEC2v3kAAEFMgYEAAEC2gYEAAECbP3kAAEE2AYEAAECbAYEAAEC2v5IAAEFMgYEAAEC2gYEAAECbP5IAAEEYATsAAECbASwAAECqP9+AAEEnAYEAAECqAYEAAECMP9+AAED6ASwAAECMASwAAECqP5IAAEFMgYEAAECqAYE' + + 'AAECMP5IAAED6ATsAAECMASwAAEDwP9+AAEHigYEAAEDtgdsAAEDIP9+AAEFMgYEAAEDIAYEAAEDwP9+AAEHigYEAAEDtgdsAAEDIP9+AAEFMgYEAAEDIAYEAAEDwP9+AAEHigYEAAEDtgdsAAEDIP9+AAEFMgYEAAEDIAYEAAEDyv9+AAEHbAYEAAEDygYEAAEDIP9+' + + 'AAEFMgYEAAEDIAYEAAED1P5IAAEHigYEAAED1AYEAAEDIP5IAAEFlgYEAAEDIAYEAAECqP9+AAEEnAYEAAECqAYEAAECMP9+AAED6ASwAAECMASwAAECqP9+AAEEnAYEAAECqAYEAAECMP9+AAED6ASwAAECMASwAAECqP9+AAEEnAYEAAECqAYEAAEBzP3kAAEEYASw' + + 'AAECMASwAAECgP9+AAEEdAYEAAECgAYEAAEB9P9+AAEDhASwAAEB9ASwAAECgP5IAAEEYAYEAAECgAYsAAEB9P5IAAEDmATsAAEB9ASwAAECbP5IAAEEYATsAAECbASwAAEB9P5IAAEDmATsAAEB9ASwAAECbP5IAAEEYATsAAECbASwAAEBpP9+AAECbAXIAAEBVAXI' + + 'AAEDIP9+AAEFMgYEAAEDIAYEAAECRP3kAAEEYASwAAECRASwAAECMP9+AAED6ASwAAECMASwAAEBGP9+AAEBuAYEAAEBGAYEAAEC2v5IAAEFMgYEAAEC2gYEAAECMP5IAAED6ATsAAECMASwAAEC2v9+AAEFMgYEAAEC2gYEAAECHP9+AAED6AYEAAEC0AYEAAEC2v5I' + + 'AAEFMgYEAAEC2gYEAAECRP5IAAEDwATsAAECRASwAAEC2v9+AAEFMgYEAAEC2gYEAAECRP9+AAEEYAYEAAECRAYEAAEC2v9+AAEFMgYEAAEC2gYEAAECRP9+AAEEYAYEAAECRAYEAAEBGP9+AAEBuAYEAAEBGAYEAAEBGP9+AAEBuAYEAAEBGAYEAAEBGP5IAAEBuAYE' + + 'AAEBGAYEAAEBGP5IAAEBuAYEAAEBGAYEAAEDIP5IAAEFlgYEAAEDIAYEAAECdv5IAAEEYATsAAECdgSwAAEDIP9+AAEFMgYEAAEDIAYEAAECdv9+AAEEYASwAAECdgSwAAEC2v5IAAEFMgYEAAEC2gYEAAECbP5IAAEEYATsAAECbASwAAEC2v9+AAEFMgYEAAEC2gYE' + + 'AAECbP9+AAEE2AYEAAECbAYEAAECqP9+AAEEnAYEAAECqAYEAAECHP3kAAEEYATsAAECCAYsAAECqP5IAAEFMgYEAAECqAYEAAEDwP5IAAEEYATsAAECMASwAAECqP9+AAEEnAYEAAECqAYEAAECbP3kAAEE2AYEAAECbAYEAAECqP9+AAEEnAYEAAECqAYEAAECbP3k' + + 'AAEE2AYEAAECbAYEAAEB9P9+AAEDhASwAAEB9ASwAAECWP9+AAEFlgYEAAEDIAYEAAECiv9+AAEETAYEAAECigYEAAEBGP9+AAEBuAYEAAEBGAYEAAECiv9+AAEETAYEAAECigYEAAECqP9+AAEEnAYEAAECqAYEAAEDFv3kAAEFMgYEAAECqAYEAAECEv3kAAEFMgYE' + + 'AAECbAYEAAEBpP3kAAECbAXIAAEBVAXIAAECMP9+AAED6ASwAAECMASwAAEC0P9+AAEE2AYEAAECxgdsAAEBGP9+AAEBuAYEAAEBGAYEAAIAIgAkAD0AAABEAF0AGgCCAJgANACaALgASwC6AXoAagF+AX8BKwGBAYEBLQGGAZYBLgGfAZ8BPwGkAbsBQAHCAdkBWAHc' + + 'AesBcAHwAfEBgAH0AnEBggWMBboCAAXtBfQCLwX3BgACNwYFBggCQQYLBhoCRQYdBjgCVQZBBkgCcQZLBmQCeQZpBogCkwaKBo0CswaiBqcCtwayBrkCvQbOBtECxQbcBuMCyQg8CDwC0QidCJ0C0gi/CMUC0wjQCNAC2gjTCNMC2wnuCe4C3AACAAsCwgLcAAAC3gLi' + + 'ABsC5QLoACAC6wL1ACQC+wMBAC8DBAMQADYDEgMZAEMDGwMdAEsDJQMxAE4ENAQ3AFsF4AXsAF8AbAACAbIAAgG4AAIBvgACAcQAAgHKAAIB0AACAdYAAgHcAAIB4gACAegAAgHuAAIB9AACAfoAAgIAAAICBgACAgwAAgISAAICGAACAh4AAgIkAAICKgABAjAAAAI2' + + 'AAACPAAAAkIAAAJIAAICTgAAAlQAAAJaAAACYAAAAmYAAAJsAAACcgAAAngAAAJ+AAAChAAAAooAAAKQAAAClgAAApwAAAKiAAACqAAAAq4AAAK0AAACugAAAsAAAALGAAACzAAAAtIAAALYAAAC3gACAuQAAgLqAAIC8AACAvYAAgL8AAIDAgAAAwgAAgMOAAADFAAA' + + 'AxoAAAMgAAIDJgACAywAAgMyAAADOAAAAz4AAgNEAAIDSgACA1AAAANWAAADXAAAA2IAAANoAAIDbgAAA3QAAAN6AAIDgAACA4YAAgOMAAIDkgACA5gAAgOeAAIDpAACA6oAAgOwAAIDtgACA7wAAgPCAAIDyAACA84AAgPUAAID2gACA+AAAgPmAAID7AACA/IAAAP4' + + 'AAID/gACBAQAAgQKAAIEEAACBBYAAgQcAAIEIgAABCgAAgQuAAAENAAB/vwGGAAB/u0GGAABAAAEnAAB/bwGGAABAAAFFAABAAAGGAABAAAEsAABAAAE4gABAAAE4gAB/t4FwgABAAAEiAAB/7AEsAABAAAEnAABAAAEYAABAAAEYAABAGQEnAABAAAEnAABAAAEnAAB' + + 'AAADNAABAAADNAABAAADNAABAAADNAABAAD/iAABAAD/iAABAAD/iAABAAD/iAABAAAEsAABABT/zgABAAD/sAABAAD/sAABAAD/sAABAAD/nAABAAD/fgABAAD/fgABAAD/zgABAAD/pgABAAD/xAABAAD/2AABAAD/iAABAAD/nAABAAD/nAABAAD/iAABAAD/iAAB' + + 'AAD/nAABAAD/dAABAAD/dAABAAD/TAAB/+z/zgABAAD/2AABAAD/2AABAAD/iAABAAAEdAABAAAEdAABAAAGBAABAAAEsAABAAADhAABAAAEnAABAAD/iAABAAAEsAABAAD/iAABAAD/xAABAAD/zgABAAAEiAABAAAE7AABAAAEnAABAAD/nAABAAD/xAABAAAEfgAB' + + 'AAAEfgABAAAEzgABAAAAAAABAAAAAAABAAAAAAABAB4AAAABAAAEfgABAAD/xAABAAD/7AABAAAEfgABAAAB4AABAAAB4AABAAAB4AABAAAB4AABAAAB4AABAAAB4AABAAAB4AABAAAB4AABAAAB4AAB/5wB4AABAAAB4AABAAAB4AABAAAB4AABAAAETAABAAAEsAAB' + + 'AAAEOAABAAAEOAABAAAEnAABAAAEnAABAAD/sAABAAAE2AABAAAEnAABAAAEnAABAAAEnAABAAAEnAABAAAEzgABAAAEzgAB/+L/zgABAAAEfgABAB4AAAAAAAAAAQAAAADgA/9jAAAAAMhJaCYAAAAA3XspKw==' + } +]; diff --git a/remix/app/api/utils/meta/socialMeta.ts b/remix/app/api/utils/meta/socialMeta.ts index d1dbce5e5a..997c99f5da 100644 --- a/remix/app/api/utils/meta/socialMeta.ts +++ b/remix/app/api/utils/meta/socialMeta.ts @@ -2,19 +2,17 @@ // // The client app is a static Vite shell served by the Nitro page catch-all // (server/routes/[...].ts), so link unfurlers — which never run JS — only see -// whatever the server sends. This module resolves the request path to -// a set of meta tags (post permalinks and profiles get page-specific tags, -// everything else keeps the site defaults) and swaps them into the shell's -// `tt-social-meta` marker block. +// whatever the server sends. This module resolves each public URL to +// page-specific tags plus a server-rendered 1200×630 PNG card, then swaps +// them into the shell's `tt-social-meta` marker block. // -// Fail closed: post tags are built from the same anonymous-viewer `getThing` -// path the public API uses, so a private or missing post yields exactly the -// generic site block (and the API's own 404 status) — rich meta never leaks -// anything an anonymous GET /api/v1/things?id= would not already return. +// Fail closed: data-backed cards are built from the same anonymous-viewer +// `getThing` path the public API uses, so private or missing data yields the +// generic site block — rich meta never leaks anything an anonymous request +// could already read. import { getRequestOrigin } from '../health/statusTarget'; -import { attachmentContentPath } from '~/utils/attachmentContentUrl'; -import { absoluteThirdPartyProfileMediaUrl } from '~/utils/profileMediaUrl'; +import { resolveSocialPreview, socialPreviewCardUrl } from './socialPreview'; export type SocialMetaTag = { attr: 'property' | 'name'; key: string; content: string }; @@ -27,39 +25,11 @@ export const GENERIC_SITE_DESCRIPTION = 'Thingtime is where everything is a thing — share posts, run polls, and build a home for the things you care about.'; const SITE_NAME = 'Thingtime'; -const BRAND_IMAGE_PATH = '/android-icon-192x192.png'; -const TITLE_MAX = 70; -const DESCRIPTION_MAX = 200; - -// Meta content is a single attribute value: strip control characters and -// collapse author-entered newlines/runs of whitespace into single spaces. -const cleanText = (value: unknown): string => - typeof value === 'string' ? value.replace(/[\p{Cc}\u2028\u2029]+/gu, ' ').replace(/\s+/g, ' ').trim() : ''; - -// Truncate by code points (mirrors things.ts canonicalTag): a UTF-16 slice -// could bisect a surrogate pair at the cap and emit U+FFFD in the served bytes. -const truncate = (value: string, max: number): string => { - const codePoints = Array.from(value); - return codePoints.length <= max ? value : `${codePoints.slice(0, max - 1).join('').trimEnd()}…`; -}; // Single choke point: every user-authored value passes through here when the // tag list is rendered to HTML, so nothing unescaped can enter the head. export const escapeHtml = (value: string): string => - value - .replace(/&/g, '&') - .replace(//g, '>') - .replace(/"/g, '"') - .replace(/'/g, '''); - -// Managed attachment paths become absolute against the request origin; -// already-absolute http(s) links pass through; data:/control-char/credential -// spellings are dropped (crawlers cannot fetch a data: og:image anyway). -const absoluteMediaUrl = (origin: string, value: string | null | undefined): string | null => { - const resolved = absoluteThirdPartyProfileMediaUrl(value ?? null, origin); - return resolved && !resolved.startsWith('data:') ? resolved : null; -}; + value.replace(/&/g, '&').replace(//g, '>').replace(/"/g, '"').replace(/'/g, '''); const property = (key: string, content: string): SocialMetaTag => ({ attr: 'property', key, content }); const named = (key: string, content: string): SocialMetaTag => ({ attr: 'name', key, content }); @@ -69,11 +39,11 @@ type PageMeta = { description: string; type: 'website' | 'article' | 'profile'; image: string | null; - // summary_large_image only when the page carries real content imagery + // all routes use a real 1200×630 PNG social card largeImage: boolean; }; -const buildTags = (origin: string, path: string, page: Partial = {}): SocialMetaTag[] => { +export const buildSocialMetaTags = (origin: string, path: string, page: Partial = {}): SocialMetaTag[] => { const meta: PageMeta = { title: SITE_NAME, description: GENERIC_SITE_DESCRIPTION, @@ -82,7 +52,7 @@ const buildTags = (origin: string, path: string, page: Partial = {}): largeImage: false, ...page }; - const image = meta.image || `${origin}${BRAND_IMAGE_PATH}`; + const image = meta.image || socialPreviewCardUrl(origin, path); return [ named('description', meta.description), property('og:site_name', SITE_NAME), @@ -91,95 +61,17 @@ const buildTags = (origin: string, path: string, page: Partial = {}): property('og:description', meta.description), property('og:url', `${origin}${path}`), property('og:image', image), + property('og:image:secure_url', image), + property('og:image:type', 'image/png'), + property('og:image:width', '1200'), + property('og:image:height', '630'), named('twitter:card', meta.largeImage ? 'summary_large_image' : 'summary'), named('twitter:title', meta.title), - named('twitter:description', meta.description) + named('twitter:description', meta.description), + named('twitter:image', image) ]; }; -const pollOptionLabels = (thing: Record | null): string[] => { - const options: unknown = thing?.options; - if (!Array.isArray(options)) return []; - return options - .map((option: unknown) => - typeof option === 'string' ? cleanText(option) : cleanText((option as { text?: unknown } | null)?.text) - ) - .filter(Boolean); -}; - -const postMeta = async (origin: string, path: string, id: string): Promise => { - // lazy: things.ts is the heaviest util in the tree — page shells that are - // not post permalinks must never pay its import cost - const { ACL_ALL, ACL_INHERIT } = await import('../../../schemas/registry'); - const { getThing, viewerOf } = await import('../things/things'); - - const result = await getThing(viewerOf(null), id); - // missing and private are the same failure here (findViewableThingAs), so - // the generic-meta response never distinguishes them. Status stays 200: h3 - // treats a 404 Response from this middleware position as "unhandled" and - // falls through to nitro's SPA renderer (the raw source index.html), so a - // 404 could never actually be delivered — and the pre-social-meta - // production behavior for these URLs was a 200 static shell anyway. - if (result.ok === false) return { tags: buildTags(origin, path) }; - - const post = result.post; - // belt-and-braces on top of the anonymous viewer walk: rich meta is for - // world-readable posts only. tt:all is directly world-readable; tt:inherit - // (every comment) counts too because the anonymous getThing success above - // already proved the inherited audience includes anonymous. - if (!post || !Array.isArray(post.acl) || !(post.acl.includes(ACL_ALL) || post.acl.includes(ACL_INHERIT))) { - return { tags: buildTags(origin, path) }; - } - - const author = post.author; - const authorLabel = cleanText(author?.displayName) || (author?.username ? `@${cleanText(author.username)}` : 'Someone'); - const question = cleanText(post.thing?.question); - const text = question || cleanText(post.text); - const options = question ? pollOptionLabels(post.thing) : []; - - const firstImageAttachment = post.attachments.find((attachment) => attachment.mediaKind === 'image'); - const postImage = firstImageAttachment - ? absoluteMediaUrl(origin, attachmentContentPath(firstImageAttachment.id)) - : absoluteMediaUrl(origin, post.images.find((imageUrl) => typeof imageUrl === 'string' && imageUrl.trim())); - const image = postImage || absoluteMediaUrl(origin, author?.avatarUrl); - - const description = question - ? truncate(['Poll:', text, options.length ? `· ${options.join(' / ')}` : ''].filter(Boolean).join(' '), DESCRIPTION_MAX) - : truncate(text, DESCRIPTION_MAX) || `A post by ${authorLabel} on ${SITE_NAME}.`; - - return { - tags: buildTags(origin, path, { - title: text ? `${authorLabel}: ${truncate(text, TITLE_MAX)}` : `${authorLabel} on ${SITE_NAME}`, - description, - type: 'article', - image, - largeImage: Boolean(postImage) - }) - }; -}; - -const profileMeta = async (origin: string, path: string, username: string): Promise => { - const { findUserByUsername, toPublicProfile } = await import('../auth/users'); - - const user = await findUserByUsername(username); - // unknown profile: generic block, 200 (see the post-permalink status note) - if (!user) return { tags: buildTags(origin, path) }; - - // public projection only — never email/verification/storage fields - const profile = toPublicProfile(user); - const displayName = cleanText(profile.displayName) || cleanText(profile.username); - const handle = cleanText(profile.username); - - return { - tags: buildTags(origin, path, { - title: `${displayName} (@${handle}) on ${SITE_NAME}`, - description: truncate(cleanText(profile.bio), DESCRIPTION_MAX) || `@${handle} is on ${SITE_NAME}.`, - type: 'profile', - image: absoluteMediaUrl(origin, profile.avatarUrl) - }) - }; -}; - // Path → meta. Any data-plane failure degrades to the generic site block: the // shell must always serve, meta is best-effort garnish on top of it. export const resolveSocialMeta = async (request: Request): Promise => { @@ -192,16 +84,21 @@ export const resolveSocialMeta = async (request: Request): Promise = } try { - const postMatch = path.match(/^\/post\/([^/]+)\/?$/); - if (postMatch) return await postMeta(origin, path, decodeURIComponent(postMatch[1])); - - const profileMatch = path.match(/^\/profile\/([^/]+)\/?$/); - if (profileMatch) return await profileMeta(origin, path, decodeURIComponent(profileMatch[1])); + const preview = await resolveSocialPreview(origin, path); + return { + tags: buildSocialMetaTags(origin, path, { + title: preview.title, + description: preview.description, + type: preview.article ? 'article' : preview.kind === 'profile' ? 'profile' : 'website', + image: socialPreviewCardUrl(origin, path, preview.revision), + largeImage: true + }) + }; } catch { // fall through to the generic block } - return { tags: buildTags(origin, path) }; + return { tags: buildSocialMetaTags(origin, path) }; }; export const renderSocialMetaHtml = (tags: SocialMetaTag[]): string => { diff --git a/remix/app/api/utils/meta/socialPreview.test.ts b/remix/app/api/utils/meta/socialPreview.test.ts new file mode 100644 index 0000000000..81ecf071a8 --- /dev/null +++ b/remix/app/api/utils/meta/socialPreview.test.ts @@ -0,0 +1,154 @@ +import assert from 'node:assert/strict'; +import test from 'node:test'; + +import { buildSocialMetaTags } from './socialMeta'; +import { + normaliseSocialMediaKind, + normaliseSocialPreviewPath, + socialMediaVariant, + socialPreviewCardUrl, + socialPreviewFromPublicPost, + staticSocialPreview +} from './socialPreview'; + +test('social preview paths never become a redirect or an arbitrary route', () => { + assert.equal(normaliseSocialPreviewPath('/post/hello?source=chat'), '/post/hello'); + assert.equal(normaliseSocialPreviewPath('//elsewhere.example/post'), '/'); + assert.equal(normaliseSocialPreviewPath('/post\\evil'), '/'); + assert.equal(normaliseSocialPreviewPath(null), '/'); +}); + +test('social-card URLs carry only a normalized local path and a safe revision', () => { + assert.equal( + socialPreviewCardUrl('https://thingtime.example', '/post/hello?source=chat', '2026-09-04T12:00:00.000Z'), + 'https://thingtime.example/social-card?path=%2Fpost%2Fhello&v=2026-09-04T12%3A00%3A00.000Z' + ); +}); + +test('static public routes get route-specific social context', () => { + const feed = staticSocialPreview('/feed'); + const docs = staticSocialPreview('/docs/api'); + const component = staticSocialPreview('/components/colourful-button'); + const profile = staticSocialPreview('/profile'); + assert.equal(feed.kind, 'feed'); + assert.match(feed.description, /Posts, photos, polls/i); + assert.equal(docs.kind, 'docs'); + assert.match(docs.title, /docs/i); + assert.match(component.title, /Colourful Button/); + assert.equal(profile.variant, 'profile'); +}); + +test('a named catalogue page bounds its tags like every data-backed preview', () => { + // The leaf is a raw URL segment, so it is as long as the caller makes it. + const long = staticSocialPreview(`/docs/${'a'.repeat(600)}`); + assert.ok(Array.from(long.title).length <= 70, `title was ${Array.from(long.title).length} code points`); + assert.ok(Array.from(long.description).length <= 200, `description was ${Array.from(long.description).length} code points`); + assert.ok(long.title.endsWith('…')); + // Ordinary names are still printed whole. + assert.equal(staticSocialPreview('/components/colourful-button').title, 'Thingtime component: Colourful Button'); +}); + +test('Open Graph tags declare a full PNG card for social renderers', () => { + const tags = buildSocialMetaTags('https://thingtime.example', '/feed', { + title: 'Thingtime feed', + description: 'Fresh things', + image: 'https://thingtime.example/social-card?path=%2Ffeed', + largeImage: true + }); + const values = new Map(tags.map((tag) => [tag.key, tag.content])); + assert.equal(values.get('og:image:type'), 'image/png'); + assert.equal(values.get('og:image:width'), '1200'); + assert.equal(values.get('og:image:height'), '630'); + assert.equal(values.get('twitter:card'), 'summary_large_image'); + assert.equal(values.get('twitter:image'), values.get('og:image')); +}); + +test('standalone media URLs get a specific image, video, audio, or file card', () => { + for (const [input, expectedKind, expectedVariant] of [ + ['image', 'image', 'media-image'], + ['video', 'video', 'media-video'], + ['audio', 'audio', 'media-audio'], + ['document', 'file', 'media-file'] + ] as const) { + assert.equal(normaliseSocialMediaKind(input), expectedKind); + assert.equal(socialMediaVariant(input), expectedVariant); + } +}); + +test('every canonical post family and thread shape gets a distinct social variant', () => { + const author = { displayName: 'Nikk', username: 'lopu' }; + const attachment = (mediaKind: string, id = mediaKind) => ({ id, mediaKind, title: `${mediaKind} attachment` }); + const cases: Array<[string, Record, string]> = [ + ['text', { type: 'text', text: 'A little text thought' }, 'text-post'], + ['one-photo image', { type: 'image', text: 'One photo', attachments: [attachment('image')] }, 'image-post'], + [ + 'gallery', + { + type: 'image', + text: 'Four photos', + attachments: [attachment('image', 'one'), attachment('image', 'two'), attachment('image', 'three'), attachment('image', 'four')] + }, + 'gallery' + ], + ['marketplace', { type: 'marketplace', listing: { title: 'Rainbow bike', price: 400, currency: 'AUD', condition: 'used' } }, 'listing'], + [ + 'thingtime', + { + type: 'thingtime', + text: 'Bring snacks', + thing: { kind: 'event', title: 'Sunday picnic', description: 'A tiny park get-together', location: 'Edinburgh Gardens' } + }, + 'thingtime' + ], + ['poll', { type: 'thingtime', thing: { kind: 'poll', question: 'Where should we go?', options: ['Park', 'Beach', 'Gallery'] } }, 'poll'], + ['video attachment', { type: 'text', text: 'Watch this', attachments: [attachment('video')] }, 'media-video'], + ['audio attachment', { type: 'text', text: 'Listen', attachments: [attachment('audio')] }, 'media-audio'], + ['file attachment', { type: 'text', text: 'Read this', attachments: [attachment('file')] }, 'media-file'] + ]; + + for (const [name, fields, expectedVariant] of cases) { + const preview = socialPreviewFromPublicPost('/post/example', { author, thingtime: ['post'], attachments: [], images: [], tags: [], ...fields }); + assert.equal(preview.variant, expectedVariant, name); + assert.equal(preview.path, '/post/example', name); + } + + const shared = socialPreviewFromPublicPost('/post/share', { + author, + thingtime: ['post', 'share'], + isShare: true, + shareOf: { + author: { displayName: 'Jade' }, + type: 'thingtime', + thing: { kind: 'poll', question: 'Share this?' }, + attachments: [], + images: [], + tags: [] + }, + attachments: [], + images: [], + tags: [] + }); + assert.equal(shared.kind, 'share'); + assert.equal(shared.variant, 'share'); + assert.match(shared.eyebrow, /SHARED POLL/); + + const comment = socialPreviewFromPublicPost('/post/comment', { + author, + thingtime: ['post', 'comment'], + type: 'text', + text: 'I agree!', + attachments: [], + images: [], + tags: [] + }); + assert.equal(comment.kind, 'comment'); + assert.equal(comment.variant, 'comment'); + const reply = socialPreviewFromPublicPost( + '/post/reply', + { author, thingtime: ['post', 'comment'], type: 'text', text: 'Me too!', attachments: [], images: [], tags: [] }, + { parent: { thingtime: ['post', 'comment'], author: { displayName: 'Jade' } } } + ); + assert.equal(reply.kind, 'reply'); + assert.equal(reply.variant, 'reply'); + assert.ok(reply.badges.includes('To Jade')); +}); diff --git a/remix/app/api/utils/meta/socialPreview.ts b/remix/app/api/utils/meta/socialPreview.ts new file mode 100644 index 0000000000..e359cb4064 --- /dev/null +++ b/remix/app/api/utils/meta/socialPreview.ts @@ -0,0 +1,680 @@ +// Shared, crawler-safe preview model for Thingtime URLs. The same anonymous +// projection powers both the Open Graph text tags and the image-card renderer, +// so a social preview cannot reveal anything the public page does not reveal. + +export type SocialPreviewKind = + | 'home' + | 'feed' + | 'explore' + | 'docs' + | 'collection' + | 'text-post' + | 'image-post' + | 'gallery' + | 'poll' + | 'listing' + | 'thingtime' + | 'share' + | 'comment' + | 'reply' + | 'media' + | 'webpage' + | 'profile' + | 'thing'; + +// `kind` is the semantic surface; `variant` selects a recognisably different +// card composition. They deliberately stay separate: a shared photo set is a +// share semantically, while its card still has a photo collage, and a comment +// with a video remains a comment with a video treatment rather than a generic +// post. This keeps every shareable Thingtime shape distinguishable at a glance. +export type SocialPreviewVariant = + | 'app' + | 'feed' + | 'explore' + | 'docs' + | 'collection' + | 'text-post' + | 'image-post' + | 'gallery' + | 'poll' + | 'listing' + | 'thingtime' + | 'share' + | 'comment' + | 'reply' + | 'media-image' + | 'media-video' + | 'media-audio' + | 'media-file' + | 'webpage' + | 'profile' + | 'thing'; + +export type SocialPreviewImage = { + attachmentId: string; + label: string; +}; + +export type SocialPreview = { + kind: SocialPreviewKind; + variant: SocialPreviewVariant; + path: string; + title: string; + description: string; + eyebrow: string; + article: boolean; + author?: string; + initial?: string; + badges: string[]; + options: string[]; + images: SocialPreviewImage[]; + imageCount: number; + revision?: string; +}; + +export const SOCIAL_PREVIEW_WIDTH = 1200; +export const SOCIAL_PREVIEW_HEIGHT = 630; + +const SITE_NAME = 'Thingtime'; +const DESCRIPTION_MAX = 200; +const TITLE_MAX = 70; + +const staticVariantFor = (kind: SocialPreviewKind): SocialPreviewVariant => { + switch (kind) { + case 'home': + return 'app'; + case 'feed': + case 'explore': + case 'docs': + case 'collection': + case 'profile': + return kind; + default: + return 'app'; + } +}; + +export const cleanSocialText = (value: unknown): string => + typeof value === 'string' + ? value + .replace(/[\p{Cc}\u2028\u2029]+/gu, ' ') + .replace(/\s+/g, ' ') + .trim() + : ''; + +export const truncateSocialText = (value: string, max: number): string => { + const codePoints = Array.from(value); + return codePoints.length <= max + ? value + : `${codePoints + .slice(0, max - 1) + .join('') + .trimEnd()}…`; +}; + +const cleanList = (values: unknown, limit: number): string[] => + Array.isArray(values) ? values.map(cleanSocialText).filter(Boolean).slice(0, limit) : []; + +const initialOf = (value: string): string => Array.from(value.trim())[0]?.toUpperCase() || 'T'; + +export const normaliseSocialPreviewPath = (value: unknown): string => { + if (typeof value !== 'string' || !value.startsWith('/') || value.startsWith('//') || value.includes('\\') || value.length > 2048) { + return '/'; + } + const path = value.split('?')[0]?.split('#')[0] || '/'; + return path.startsWith('/') && !path.startsWith('//') ? path : '/'; +}; + +export const socialPreviewCardUrl = (origin: string, path: string, revision?: string): string => { + const query = new URLSearchParams({ path: normaliseSocialPreviewPath(path) }); + if (revision) query.set('v', truncateSocialText(revision, 80)); + return `${origin}/social-card?${query.toString()}`; +}; + +export const staticSocialPreview = (pathInput: string): SocialPreview => { + const path = normaliseSocialPreviewPath(pathInput); + const segments = path.split('/').filter(Boolean); + const segment = segments[0] || ''; + const label = (value: string): string => value.replace(/[-_]+/g, ' ').replace(/\b\w/g, (letter) => letter.toUpperCase()); + const detail = (() => { + switch (segment) { + case 'feed': + return { + kind: 'feed' as const, + title: 'Your Thingtime feed', + description: 'Posts, photos, polls, finds and little moments from your people.', + eyebrow: 'THINGTIME · FEED', + badges: ['Fresh things', 'People you follow'] + }; + case 'profile': + return { + kind: 'profile' as const, + title: 'Your Thingtime profile', + description: 'Your posts, photos, polls and the things you want people to find.', + eyebrow: 'THINGTIME · PROFILE', + badges: ['Your people', 'Your things'] + }; + case 'explore': + return { + kind: 'explore' as const, + title: 'Explore Thingtime', + description: 'Discover conversations, photos, polls and useful things worth keeping.', + eyebrow: 'THINGTIME · EXPLORE', + badges: ['Trending now', 'Made by people'] + }; + case 'docs': + return { + kind: 'docs' as const, + title: 'Thingtime docs', + description: 'The product, API and design system behind a world where everything is a thing.', + eyebrow: 'THINGTIME · DOCS', + badges: ['Build with Thingtime', 'API + SDK'] + }; + case 'design-system': + return { + kind: 'docs' as const, + title: 'Thingtime design system', + description: 'The colourful, flexible building blocks behind the Thingtime experience.', + eyebrow: 'THINGTIME · DESIGN SYSTEM', + badges: ['Components', 'Themes'] + }; + case 'schemas': + return { + kind: 'collection' as const, + title: 'Thingtime schemas', + description: 'Browse the building blocks that make every kind of thing understandable.', + eyebrow: 'THINGTIME · SCHEMAS', + badges: ['Open building blocks', 'Make it yours'] + }; + case 'themes': + return { + kind: 'collection' as const, + title: 'Thingtime themes', + description: 'A colourful collection of ways to make Thingtime feel like yours.', + eyebrow: 'THINGTIME · THEMES', + badges: ['Colour your space', 'Made to share'] + }; + case 'components': + return { + kind: 'collection' as const, + title: 'Thingtime components', + description: 'Reusable interface pieces, ready to explore and make your own.', + eyebrow: 'THINGTIME · COMPONENTS', + badges: ['Composable', 'Shareable'] + }; + case 'actions': + return { + kind: 'collection' as const, + title: 'Thingtime actions', + description: 'Small, clear actions that turn your things into useful little workflows.', + eyebrow: 'THINGTIME · ACTIONS', + badges: ['Do more', 'Keep context'] + }; + case 'search': + return { + kind: 'collection' as const, + title: 'Search Thingtime', + description: 'Find the people, posts and things that matter to you.', + eyebrow: 'THINGTIME · SEARCH', + badges: ['People', 'Posts', 'Things'] + }; + case 'things': + return { + kind: 'collection' as const, + title: 'Your Things', + description: 'A place for the files, notes, ideas and tiny details you want to keep close.', + eyebrow: 'THINGTIME · THINGS', + badges: ['Everything is a thing', 'Made for keeping'] + }; + default: + return { + kind: 'home' as const, + title: 'Thingtime', + description: 'Everything is a thing — share posts, run polls and build a home for the things you care about.', + eyebrow: 'THINGTIME · EVERYDAY MAGIC', + badges: ['Posts', 'Photos', 'Polls'] + }; + } + })(); + // Named catalogue and documentation pages deserve a useful title too, even + // though they have no user-authored database record to resolve. That makes + // a copied /components/button or /docs/api/things URL distinguishable in a + // chat thread at a glance. + const leaf = segments.at(-1) || ''; + if (segments.length > 1 && ['docs', 'schemas', 'themes', 'components', 'actions'].includes(segment)) { + const category = segment === 'docs' ? 'docs' : segment.slice(0, -1); + // Bounded like every data-backed preview: the leaf is a raw URL segment, + // so an unbounded one would put a path-length og:title/og:description in + // the head (the card itself wraps and clamps by measured width anyway). + return { + ...detail, + variant: staticVariantFor(detail.kind), + path, + title: truncateSocialText(`Thingtime ${category}: ${label(leaf)}`, TITLE_MAX), + description: truncateSocialText(`${detail.description} Open ${label(leaf)} on Thingtime.`, DESCRIPTION_MAX), + article: false, + options: [], + images: [], + imageCount: 0 + }; + } + return { ...detail, variant: staticVariantFor(detail.kind), path, article: false, options: [], images: [], imageCount: 0 }; +}; + +const postImages = (post: any): SocialPreviewImage[] => + (Array.isArray(post?.attachments) ? post.attachments : []) + .filter((attachment: any) => attachment?.mediaKind === 'image' && typeof attachment?.id === 'string' && !attachment?.url && !attachment?.pending) + .slice(0, 4) + .map((attachment: any) => ({ + attachmentId: attachment.id, + label: cleanSocialText(attachment.title) || cleanSocialText(attachment.filenamePreview) || cleanSocialText(attachment.name) || 'Photo' + })); + +const pollOptions = (post: any): string[] => { + const raw = post?.thing?.options; + if (!Array.isArray(raw)) return []; + return raw + .map((option) => (typeof option === 'string' ? cleanSocialText(option) : cleanSocialText(option?.text))) + .filter(Boolean) + .slice(0, 3); +}; + +const formatPrice = (listing: any): string => { + const price = typeof listing?.price === 'number' && Number.isFinite(listing.price) ? listing.price : null; + const currency = cleanSocialText(listing?.currency); + if (price === null) return ''; + try { + return new Intl.NumberFormat('en', { style: 'currency', currency: currency || 'USD', maximumFractionDigits: 2 }).format(price); + } catch { + return `${currency || '$'}${price.toLocaleString('en')}`; + } +}; + +const webpageCopy = (blocks: unknown, result: string[] = []): string[] => { + if (!Array.isArray(blocks) || result.length >= 12) return result; + for (const block of blocks) { + if (!block || typeof block !== 'object') continue; + const item = block as Record; + const text = cleanSocialText(item.text); + if (text) result.push(text); + // Rich text is rendered through the page renderer's sanitising allowlist. + // The card is plainer still: it keeps only readable text, never markup. + const html = cleanSocialText(typeof item.html === 'string' ? item.html.replace(/<[^>]*>/g, ' ') : ''); + if (html) result.push(html); + const alt = cleanSocialText(item.alt); + if (alt) result.push(alt); + webpageCopy(item.children, result); + if (result.length >= 12) break; + } + return result; +}; + +const webpageBlockCount = (blocks: unknown): number => { + if (!Array.isArray(blocks)) return 0; + return blocks.reduce((count, block) => { + if (!block || typeof block !== 'object') return count; + return count + 1 + webpageBlockCount((block as Record).children); + }, 0); +}; + +type StructuredThingPreview = { + kind: string; + title: string; + description: string; + badges: string[]; +}; + +// A Thingtime post can carry an intentionally open, structured `thing`. +// Preserve the useful human context in a bounded, plain-text form rather than +// serialising JSON into a card. The selected fields cover the common shapes +// (events, tasks, notes, places and little data things) without making a +// crawler card a second detail view. +const structuredThingPreview = (value: unknown): StructuredThingPreview => { + const thing = value && typeof value === 'object' && !Array.isArray(value) ? (value as Record) : {}; + const kind = cleanSocialText(thing.kind) || 'Thing'; + const title = cleanSocialText(thing.title) || cleanSocialText(thing.name) || cleanSocialText(thing.headline); + const description = cleanSocialText(thing.description) || cleanSocialText(thing.summary) || cleanSocialText(thing.note); + const fields: Array<[string, unknown]> = [ + ['Status', thing.status], + ['Category', thing.category], + ['Location', thing.location], + ['When', thing.date || thing.startsAt || thing.startDate], + ['Priority', thing.priority] + ]; + const badges = [kind, ...fields.map(([, field]) => cleanSocialText(field)).filter(Boolean)].slice(0, 3); + return { kind, title, description, badges }; +}; + +const postMediaVariant = (post: any): SocialPreviewVariant | null => { + const kinds = new Set( + (Array.isArray(post?.attachments) ? post.attachments : []) + .map((attachment: any) => cleanSocialText(attachment?.mediaKind).toLowerCase()) + .filter(Boolean) + ); + if (kinds.has('video')) return 'media-video'; + if (kinds.has('audio')) return 'media-audio'; + if (kinds.has('file') || kinds.size > 0) return 'media-file'; + return null; +}; + +const humanPostKind = (kind: SocialPreviewKind, thingKind?: string): string => { + switch (kind) { + case 'text-post': + return 'TEXT POST'; + case 'image-post': + return 'PHOTO POST'; + case 'gallery': + return 'PHOTO SET'; + case 'poll': + return 'POLL'; + case 'listing': + return 'MARKETPLACE'; + case 'thingtime': + return thingKind ? `THING · ${truncateSocialText(thingKind, 26).toUpperCase()}` : 'THING'; + case 'share': + return 'SHARE'; + case 'comment': + return 'COMMENT'; + case 'reply': + return 'REPLY'; + default: + return kind.replace(/-/g, ' ').toUpperCase(); + } +}; + +export const normaliseSocialMediaKind = (value: unknown): 'image' | 'video' | 'audio' | 'file' => { + const kind = cleanSocialText(value).toLowerCase(); + return kind === 'image' || kind === 'video' || kind === 'audio' ? kind : 'file'; +}; + +export const socialMediaVariant = (value: unknown): Extract => { + switch (normaliseSocialMediaKind(value)) { + case 'image': + return 'media-image'; + case 'video': + return 'media-video'; + case 'audio': + return 'media-audio'; + default: + return 'media-file'; + } +}; + +const webpagePreview = async (path: string, id: string): Promise => { + const fallback = staticSocialPreview(path); + const { resolveWebpage } = await import('../webpages/webpages'); + const { viewerOf } = await import('../things/things'); + const result = await resolveWebpage(viewerOf(null), { id }); + if (!result.ok || !result.page) return fallback; + const page: any = result.page; + const crystal = page.crystal || {}; + const name = cleanSocialText(crystal.name) || 'A page'; + const pageText = webpageCopy(crystal.blocks).join(' '); + const description = cleanSocialText(crystal.description) || pageText || 'A published page made with Thingtime.'; + const author = cleanSocialText(page.author?.displayName) || cleanSocialText(page.author?.username); + const blockCount = webpageBlockCount(crystal.blocks); + return { + kind: 'webpage', + variant: 'webpage', + path, + title: `${truncateSocialText(name, TITLE_MAX)} on ${SITE_NAME}`, + description: truncateSocialText(description, DESCRIPTION_MAX), + eyebrow: 'THINGTIME · PAGE', + article: true, + author: author || undefined, + initial: author ? initialOf(author.replace(/^@/, '')) : undefined, + badges: ['Published page', blockCount ? `${blockCount} content block${blockCount === 1 ? '' : 's'}` : 'Made with Thingtime'], + options: [], + images: [], + imageCount: 0, + revision: cleanSocialText(page.updatedAt) || cleanSocialText(page.createdAt) + }; +}; + +export const socialPreviewFromPublicPost = (path: string, post: any, context: { parent?: any; revision?: string } = {}): SocialPreview => { + const authorName = + cleanSocialText(post?.author?.displayName) || (cleanSocialText(post?.author?.username) ? `@${cleanSocialText(post.author.username)}` : 'Someone'); + const original = post?.isShare && post?.shareOf ? post.shareOf : null; + const source = original || post || {}; + const sourceAuthor = + cleanSocialText(source.author?.displayName) || (cleanSocialText(source.author?.username) ? `@${cleanSocialText(source.author.username)}` : ''); + const isComment = Array.isArray(post?.thingtime) && post.thingtime.includes('comment'); + const isReply = isComment && Array.isArray(context.parent?.thingtime) && context.parent.thingtime.includes('comment'); + const parentAuthor = + cleanSocialText(context.parent?.author?.displayName) || + (cleanSocialText(context.parent?.author?.username) ? `@${cleanSocialText(context.parent.author.username)}` : ''); + const structured = structuredThingPreview(source.thing); + const question = cleanSocialText(source.thing?.question); + const listing = source.listing; + const options = question ? pollOptions(source) : []; + const images = postImages(source); + const attachmentCount = Array.isArray(source.attachments) ? source.attachments.length : 0; + const attachmentImageCount = Array.isArray(source.attachments) + ? source.attachments.filter((attachment: any) => attachment?.mediaKind === 'image').length + : 0; + const legacyImageCount = Array.isArray(source.images) ? source.images.filter((image: unknown) => typeof image === 'string' && image).length : 0; + // Render the first four safe stored images, while keeping the true photo + // count in the card's badge (a six-photo post is still a six-photo post). + // Legacy image URLs contribute their count, but never become a server-side + // fetch — their tiles intentionally use the branded fallback treatment. + const imageCount = Math.max(attachmentImageCount, legacyImageCount); + const sourceType = cleanSocialText(source.type).toLowerCase(); + const mediaVariant = postMediaVariant(source); + const contentKind: SocialPreviewKind = listing + ? 'listing' + : question + ? 'poll' + : sourceType === 'thingtime' + ? 'thingtime' + : imageCount > 1 + ? 'gallery' + : sourceType === 'image' || imageCount === 1 + ? 'image-post' + : 'text-post'; + const kind: SocialPreviewKind = original ? 'share' : isReply ? 'reply' : isComment ? 'comment' : contentKind; + const variant: SocialPreviewVariant = original + ? 'share' + : isReply + ? 'reply' + : isComment + ? 'comment' + : contentKind === 'text-post' && mediaVariant + ? mediaVariant + : contentKind; + const listingBits = listing + ? [ + formatPrice(listing), + cleanSocialText(listing.category), + cleanSocialText(listing.condition), + cleanSocialText(listing.location), + listing.sold ? 'Sold' : '' + ].filter(Boolean) + : []; + const plainText = cleanSocialText(source.text); + const listingTitle = cleanSocialText(listing?.title); + const summary = + listingTitle || + question || + structured.title || + plainText || + structured.description || + (attachmentCount ? `${attachmentCount} shared attachment${attachmentCount === 1 ? '' : 's'}` : 'A post on Thingtime'); + const kindLabel = humanPostKind(contentKind, structured.kind); + const badges = Array.from( + new Set( + [ + ...(original ? [`Shared ${kindLabel.toLowerCase()}`, ...(sourceAuthor ? [`From ${sourceAuthor}`] : [])] : []), + ...(isReply ? ['Reply', ...(parentAuthor ? [`To ${parentAuthor}`] : [])] : isComment ? ['Comment'] : []), + ...(listingBits.length ? listingBits : []), + ...(contentKind === 'thingtime' ? structured.badges : []), + ...(mediaVariant && contentKind === 'text-post' ? [humanPostKind(mediaVariant as SocialPreviewKind)] : []), + ...cleanList(source.tags, 3).map((tag) => `#${tag.replace(/^#/, '')}`), + ...(imageCount > 1 ? [`${imageCount} photos`] : imageCount === 1 ? ['Photo'] : []) + ].filter(Boolean) + ) + ).slice(0, 4); + const description = question + ? truncateSocialText(['Poll:', question, options.length ? `· ${options.join(' / ')}` : ''].filter(Boolean).join(' '), DESCRIPTION_MAX) + : listing + ? truncateSocialText( + [formatPrice(listing), cleanSocialText(listing.condition), cleanSocialText(listing.location), plainText].filter(Boolean).join(' · ') || + summary, + DESCRIPTION_MAX + ) + : contentKind === 'thingtime' + ? truncateSocialText( + [structured.description, plainText].filter(Boolean).join(' · ') || `A ${structured.kind.toLowerCase()} on ${SITE_NAME}.`, + DESCRIPTION_MAX + ) + : truncateSocialText(summary, DESCRIPTION_MAX) || `A post by ${authorName} on ${SITE_NAME}.`; + const titleLead = original ? `${authorName} shared` : isReply ? `${authorName} replied` : isComment ? `${authorName} commented` : authorName; + return { + kind, + variant, + path, + title: `${titleLead}: ${truncateSocialText(summary, TITLE_MAX)}`, + description, + eyebrow: `THINGTIME · ${kind === 'share' ? `SHARED ${kindLabel}` : humanPostKind(kind, structured.kind)}`, + article: true, + author: authorName, + initial: initialOf(authorName.replace(/^@/, '')), + badges, + options, + images, + imageCount, + revision: context.revision + }; +}; + +// The post-shaped projection of an already-resolved getThing result. Split out +// so /thing/:id can reuse the walk it has already paid for: getThing is not a +// cheap read — toPublicPosts batch-embeds comments/reactions/views, and for a +// comment or a media attachment it also walks the parent chain (uncapped depth, +// one round trip per level). Returns null when the target is not a +// world-readable post, which every caller renders as the generic card. +const publicPostPreview = async (path: string, result: any): Promise => { + const post: any = result.post; + if (!post) return null; + // belt-and-braces on top of the anonymous viewer walk: rich meta is for + // world-readable posts only. tt:all is directly world-readable; tt:inherit + // (every comment) counts too because the anonymous getThing success above + // already proved the inherited audience includes anonymous. + const { ACL_ALL, ACL_INHERIT } = await import('../../../schemas/registry'); + if (!Array.isArray(post.acl) || !(post.acl.includes(ACL_ALL) || post.acl.includes(ACL_INHERIT))) return null; + return socialPreviewFromPublicPost(path, post, { + parent: result.parent, + revision: cleanSocialText(result.thing?.updatedAt) || cleanSocialText(result.thing?.createdAt) + }); +}; + +const postPreview = async (path: string, id: string): Promise => { + const fallback = staticSocialPreview(path); + const { getThing, viewerOf } = await import('../things/things'); + const result = await getThing(viewerOf(null), id); + if (result.ok === false) return fallback; + return (await publicPostPreview(path, result)) || fallback; +}; + +const profilePreview = async (path: string, username: string): Promise => { + const fallback = staticSocialPreview(path); + const { findUserByUsername, toPublicProfile } = await import('../auth/users'); + const user = await findUserByUsername(username); + if (!user) return fallback; + const profile: any = toPublicProfile(user); + const displayName = cleanSocialText(profile.displayName) || cleanSocialText(profile.username); + const handle = cleanSocialText(profile.username); + return { + kind: 'profile', + variant: 'profile', + path, + title: `${displayName} (@${handle}) on ${SITE_NAME}`, + description: truncateSocialText(cleanSocialText(profile.bio), DESCRIPTION_MAX) || `@${handle} is on ${SITE_NAME}.`, + eyebrow: 'THINGTIME · PROFILE', + article: false, + author: displayName, + initial: initialOf(displayName), + badges: handle ? [`@${handle}`, 'On Thingtime'] : ['On Thingtime'], + options: [], + images: [], + imageCount: 0, + revision: cleanSocialText(profile.updatedAt) + }; +}; + +const mediaPreview = async (path: string, id: string): Promise => { + const fallback = staticSocialPreview(path); + const { getThing, viewerOf } = await import('../things/things'); + const result = await getThing(viewerOf(null), id); + if (result.ok === false || !(result as any).thing?.thingtime?.includes?.('attachment')) return fallback; + const thing: any = (result as any).thing; + const media = thing.crystal || {}; + const label = cleanSocialText(media.title) || cleanSocialText(media.filenamePreview) || cleanSocialText(media.name) || 'Shared media'; + const mediaKind = normaliseSocialMediaKind(media.mediaKind); + const variant = socialMediaVariant(mediaKind); + return { + kind: 'media', + variant, + path, + title: `${label} on ${SITE_NAME}`, + description: + truncateSocialText(cleanSocialText(media.description), DESCRIPTION_MAX) || + `${mediaKind[0]?.toUpperCase() || 'M'}${mediaKind.slice(1)} shared on Thingtime.`, + eyebrow: `THINGTIME · ${mediaKind.toUpperCase()}`, + article: true, + badges: [mediaKind, cleanSocialText(media.contentType), typeof media.size === 'number' ? `${Math.max(0, Math.round(media.size / 1024))} KB` : ''] + .filter(Boolean) + .slice(0, 3), + options: [], + images: mediaKind === 'image' && !media.url ? [{ attachmentId: thing.id, label }] : [], + imageCount: mediaKind === 'image' ? 1 : 0, + revision: cleanSocialText(thing.updatedAt) || cleanSocialText(thing.createdAt) + }; +}; + +const thingPreview = async (path: string, id: string): Promise => { + const fallback = staticSocialPreview(path); + const { getThing, viewerOf } = await import('../things/things'); + const result = await getThing(viewerOf(null), id); + if (result.ok === false) return fallback; + // A /thing/:id that resolves to a post/comment/attachment gets the richer + // post card — from THIS result, never a second getThing for the same id. + if (result.post) return (await publicPostPreview(path, result)) || fallback; + const thing: any = result.thing; + const crystal = thing?.crystal || {}; + const kind = cleanList(thing?.thingtime, 3).join(' · ') || 'Thing'; + const title = cleanSocialText(crystal.title) || cleanSocialText(crystal.name) || kind; + const description = cleanSocialText(crystal.description) || cleanSocialText(crystal.text) || `A ${kind.toLowerCase()} on ${SITE_NAME}.`; + return { + kind: 'thing', + variant: 'thing', + path, + title: `${truncateSocialText(title, TITLE_MAX)} on ${SITE_NAME}`, + description: truncateSocialText(description, DESCRIPTION_MAX), + eyebrow: `THINGTIME · ${kind.toUpperCase()}`, + article: false, + badges: cleanList(thing?.tags, 3).map((tag) => `#${tag.replace(/^#/, '')}`), + options: [], + images: [], + imageCount: 0, + revision: cleanSocialText(thing?.updatedAt) || cleanSocialText(thing?.createdAt) + }; +}; + +export const resolveSocialPreview = async (origin: string, pathInput: string): Promise => { + const path = normaliseSocialPreviewPath(pathInput); + try { + const postMatch = path.match(/^\/post\/([^/]+)\/?$/); + if (postMatch) return await postPreview(path, decodeURIComponent(postMatch[1])); + const profileMatch = path.match(/^\/profile\/([^/]+)\/?$/); + if (profileMatch) return await profilePreview(path, decodeURIComponent(profileMatch[1])); + const mediaMatch = path.match(/^\/media\/([^/]+)\/?$/); + if (mediaMatch) return await mediaPreview(path, decodeURIComponent(mediaMatch[1])); + const webpageMatch = path.match(/^\/p\/([^/]+)\/?$/); + if (webpageMatch) return await webpagePreview(path, decodeURIComponent(webpageMatch[1])); + const thingMatch = path.match(/^\/thing\/([^/]+)\/?$/); + if (thingMatch) return await thingPreview(path, decodeURIComponent(thingMatch[1])); + } catch { + // A malformed or unavailable public target receives the safe generic card. + } + return staticSocialPreview(path); +}; diff --git a/remix/package.json b/remix/package.json index 3779d0b878..09af265ca1 100644 --- a/remix/package.json +++ b/remix/package.json @@ -19,7 +19,7 @@ "lint:files": "node scripts/ensure-dependencies.js --tool=eslint && eslint", "test": "npm run test:unit && npm run test:api", "test:api": "tsx scripts/run-api-tests.mts", - "test:unit": "npm run test:acl && npm run test:account-hints && npm run test:action-packs && npm run test:actions && npm run test:admin-integrations && npm run test:ai-model-routing && npm run test:ai-models && npm run test:api-capabilities && npm run test:attachments && npm run test:birthday-scope && npm run test:auth-origin && npm run test:auth-introspection && npm run test:autosave && npm run test:branding && npm run test:chatgpt && npm run test:commander && npm run test:ci-control && npm run test:client-errors && npm run test:collections && npm run test:components && npm run test:dependencies && npm run test:desktop-oauth && npm run test:deployments && npm run test:devices && npm run test:editorjs && npm run test:embed && npm run test:embed-bundle && npm run test:feed && npm run test:hooks && npm run test:feed-contract && npm run test:editable-target && npm run test:graphify-cas && npm run test:lopu && npm run test:lopu-streaming && npm run test:lopu-chat-streaming && npm run test:lopu-ui && npm run test:partial-json && npm run test:mcp-demo && npm run test:messenger && npm run test:inline-tokens && npm run test:migrations && npm run test:moderation && npm run test:nav && npm run test:notifications && npm run test:pat-scopes && npm run test:peers && npm run test:preview-build && npm run test:quota && npm run test:rate-limit && npm run test:root-data && npm run test:schemas && npm run test:sensitive-reveal && npm run test:settings && npm run test:storage && npm run test:storage-recovery && npm run test:subspaces && npm run test:temporary-user && npm run test:theme && npm run test:things && npm run test:webpages && npm run test:typecheck-ratchet && npm run test:vercel-status && npm run test:vercel-config && npm run test:vercel-root && npm run test:passkeys", + "test:unit": "npm run test:acl && npm run test:account-hints && npm run test:action-packs && npm run test:actions && npm run test:admin-integrations && npm run test:ai-model-routing && npm run test:ai-models && npm run test:api-capabilities && npm run test:attachments && npm run test:birthday-scope && npm run test:auth-origin && npm run test:auth-introspection && npm run test:autosave && npm run test:branding && npm run test:chatgpt && npm run test:commander && npm run test:ci-control && npm run test:client-errors && npm run test:collections && npm run test:components && npm run test:dependencies && npm run test:desktop-oauth && npm run test:deployments && npm run test:devices && npm run test:editorjs && npm run test:embed && npm run test:embed-bundle && npm run test:feed && npm run test:hooks && npm run test:feed-contract && npm run test:editable-target && npm run test:graphify-cas && npm run test:lopu && npm run test:lopu-streaming && npm run test:lopu-chat-streaming && npm run test:lopu-ui && npm run test:partial-json && npm run test:mcp-demo && npm run test:messenger && npm run test:inline-tokens && npm run test:migrations && npm run test:moderation && npm run test:nav && npm run test:notifications && npm run test:pat-scopes && npm run test:peers && npm run test:preview-build && npm run test:quota && npm run test:rate-limit && npm run test:root-data && npm run test:schemas && npm run test:sensitive-reveal && npm run test:social-previews && npm run test:settings && npm run test:storage && npm run test:storage-recovery && npm run test:subspaces && npm run test:temporary-user && npm run test:theme && npm run test:things && npm run test:webpages && npm run test:typecheck-ratchet && npm run test:vercel-status && npm run test:vercel-config && npm run test:vercel-root && npm run test:passkeys", "test:api-capabilities": "node --import tsx --test app/docs/apiCapabilities.test.ts app/tests/api/healthResponse.test.ts", "test:peers": "node --import tsx --test app/api/utils/peers/*.test.ts app/components/Peers/*.test.ts app/routes/api/v1/admin/peers/_peers.test.ts app/routes/api/v1/peers/sync/_sync.test.ts", "typecheck": "tsc --noEmit", @@ -84,6 +84,7 @@ "test:quota": "node --import tsx --test app/api/utils/things/quotaCore.test.ts", "test:rate-limit": "node --import tsx --test app/api/utils/rateLimit/*.test.ts app/api/utils/subscriptions/tierCatalog.test.ts && node --experimental-test-module-mocks --import tsx --test app/api/utils/networkProbeAccess.test.mts app/api/utils/subscriptions/tierCatalogStore.test.mts", "test:root-data": "node --import tsx --test app/root-data.server.test.ts server/utils/apiFallback.test.ts", + "test:social-previews": "node --import tsx --test app/api/utils/meta/socialPreview.test.ts app/api/utils/meta/socialCard.test.ts", "test:schemas": "node --import tsx --test app/schemas/*.test.ts app/components/Schemas/schemaBrowseTypes.test.ts", "test:settings": "node --import tsx --test app/api/utils/settings/*.test.ts", "test:storage": "node --import tsx --test app/api/utils/storage/*.test.ts app/api/utils/subscriptions/subscriptionIdentity.test.ts", @@ -135,6 +136,7 @@ "@fortawesome/free-solid-svg-icons": "^6.4.0", "@fortawesome/react-fontawesome": "^0.2.0", "@monaco-editor/react": "^4.6.0", + "@resvg/resvg-js": "^2.6.2", "@simplewebauthn/browser": "^13.3.0", "@simplewebauthn/server": "^13.3.2", "@vercel/analytics": "^2.0.1", diff --git a/remix/pnpm-lock.yaml b/remix/pnpm-lock.yaml index e4306bf4c7..5e1b8dd934 100644 --- a/remix/pnpm-lock.yaml +++ b/remix/pnpm-lock.yaml @@ -92,6 +92,9 @@ importers: '@monaco-editor/react': specifier: ^4.6.0 version: 4.7.0(monaco-editor@0.55.1)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@resvg/resvg-js': + specifier: ^2.6.2 + version: 2.6.2 '@simplewebauthn/browser': specifier: ^13.3.0 version: 13.3.0 @@ -1444,6 +1447,82 @@ packages: typescript: optional: true + '@resvg/resvg-js-android-arm-eabi@2.6.2': + resolution: {integrity: sha512-FrJibrAk6v29eabIPgcTUMPXiEz8ssrAk7TXxsiZzww9UTQ1Z5KAbFJs+Z0Ez+VZTYgnE5IQJqBcoSiMebtPHA==} + engines: {node: '>= 10'} + cpu: [arm] + os: [android] + + '@resvg/resvg-js-android-arm64@2.6.2': + resolution: {integrity: sha512-VcOKezEhm2VqzXpcIJoITuvUS/fcjIw5NA/w3tjzWyzmvoCdd+QXIqy3FBGulWdClvp4g+IfUemigrkLThSjAQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [android] + + '@resvg/resvg-js-darwin-arm64@2.6.2': + resolution: {integrity: sha512-nmok2LnAd6nLUKI16aEB9ydMC6Lidiiq2m1nEBDR1LaaP7FGs4AJ90qDraxX+CWlVuRlvNjyYJTNv8qFjtL9+A==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + + '@resvg/resvg-js-darwin-x64@2.6.2': + resolution: {integrity: sha512-GInyZLjgWDfsVT6+SHxQVRwNzV0AuA1uqGsOAW+0th56J7Nh6bHHKXHBWzUrihxMetcFDmQMAX1tZ1fZDYSRsw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + + '@resvg/resvg-js-linux-arm-gnueabihf@2.6.2': + resolution: {integrity: sha512-YIV3u/R9zJbpqTTNwTZM5/ocWetDKGsro0SWp70eGEM9eV2MerWyBRZnQIgzU3YBnSBQ1RcxRZvY/UxwESfZIw==} + engines: {node: '>= 10'} + cpu: [arm] + os: [linux] + + '@resvg/resvg-js-linux-arm64-gnu@2.6.2': + resolution: {integrity: sha512-zc2BlJSim7YR4FZDQ8OUoJg5holYzdiYMeobb9pJuGDidGL9KZUv7SbiD4E8oZogtYY42UZEap7dqkkYuA91pg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@resvg/resvg-js-linux-arm64-musl@2.6.2': + resolution: {integrity: sha512-3h3dLPWNgSsD4lQBJPb4f+kvdOSJHa5PjTYVsWHxLUzH4IFTJUAnmuWpw4KqyQ3NA5QCyhw4TWgxk3jRkQxEKg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@resvg/resvg-js-linux-x64-gnu@2.6.2': + resolution: {integrity: sha512-IVUe+ckIerA7xMZ50duAZzwf1U7khQe2E0QpUxu5MBJNao5RqC0zwV/Zm965vw6D3gGFUl7j4m+oJjubBVoftw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@resvg/resvg-js-linux-x64-musl@2.6.2': + resolution: {integrity: sha512-UOf83vqTzoYQO9SZ0fPl2ZIFtNIz/Rr/y+7X8XRX1ZnBYsQ/tTb+cj9TE+KHOdmlTFBxhYzVkP2lRByCzqi4jQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@resvg/resvg-js-win32-arm64-msvc@2.6.2': + resolution: {integrity: sha512-7C/RSgCa+7vqZ7qAbItfiaAWhyRSoD4l4BQAbVDqRRsRgY+S+hgS3in0Rxr7IorKUpGE69X48q6/nOAuTJQxeQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + + '@resvg/resvg-js-win32-ia32-msvc@2.6.2': + resolution: {integrity: sha512-har4aPAlvjnLcil40AC77YDIk6loMawuJwFINEM7n0pZviwMkMvjb2W5ZirsNOZY4aDbo5tLx0wNMREp5Brk+w==} + engines: {node: '>= 10'} + cpu: [ia32] + os: [win32] + + '@resvg/resvg-js-win32-x64-msvc@2.6.2': + resolution: {integrity: sha512-ZXtYhtUr5SSaBrUDq7DiyjOFJqBVL/dOBN7N/qmi/pO0IgiWW/f/ue3nbvu9joWE5aAKDoIzy/CxsY0suwGosQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + + '@resvg/resvg-js@2.6.2': + resolution: {integrity: sha512-xBaJish5OeGmniDj9cW5PRa/PtmuVU3ziqrbr5xJj901ZDN4TosrVaNZpEiLZAxdfnhAe7uQ7QFWfjPe9d9K2Q==} + engines: {node: '>= 10'} + '@rolldown/binding-android-arm64@1.1.5': resolution: {integrity: sha512-lZg8fqIv2v7FF237bwMgzGZEJvGL79/s5knJ/i6FmsGF4XXlzccZ4jb+TrFIxtSSxFtIpdsgrPZeMk1I9AFcyQ==} engines: {node: ^20.19.0 || >=22.12.0} @@ -7483,6 +7562,57 @@ snapshots: - jest - supports-color + '@resvg/resvg-js-android-arm-eabi@2.6.2': + optional: true + + '@resvg/resvg-js-android-arm64@2.6.2': + optional: true + + '@resvg/resvg-js-darwin-arm64@2.6.2': + optional: true + + '@resvg/resvg-js-darwin-x64@2.6.2': + optional: true + + '@resvg/resvg-js-linux-arm-gnueabihf@2.6.2': + optional: true + + '@resvg/resvg-js-linux-arm64-gnu@2.6.2': + optional: true + + '@resvg/resvg-js-linux-arm64-musl@2.6.2': + optional: true + + '@resvg/resvg-js-linux-x64-gnu@2.6.2': + optional: true + + '@resvg/resvg-js-linux-x64-musl@2.6.2': + optional: true + + '@resvg/resvg-js-win32-arm64-msvc@2.6.2': + optional: true + + '@resvg/resvg-js-win32-ia32-msvc@2.6.2': + optional: true + + '@resvg/resvg-js-win32-x64-msvc@2.6.2': + optional: true + + '@resvg/resvg-js@2.6.2': + optionalDependencies: + '@resvg/resvg-js-android-arm-eabi': 2.6.2 + '@resvg/resvg-js-android-arm64': 2.6.2 + '@resvg/resvg-js-darwin-arm64': 2.6.2 + '@resvg/resvg-js-darwin-x64': 2.6.2 + '@resvg/resvg-js-linux-arm-gnueabihf': 2.6.2 + '@resvg/resvg-js-linux-arm64-gnu': 2.6.2 + '@resvg/resvg-js-linux-arm64-musl': 2.6.2 + '@resvg/resvg-js-linux-x64-gnu': 2.6.2 + '@resvg/resvg-js-linux-x64-musl': 2.6.2 + '@resvg/resvg-js-win32-arm64-msvc': 2.6.2 + '@resvg/resvg-js-win32-ia32-msvc': 2.6.2 + '@resvg/resvg-js-win32-x64-msvc': 2.6.2 + '@rolldown/binding-android-arm64@1.1.5': optional: true diff --git a/remix/scripts/generate-social-card-font.mjs b/remix/scripts/generate-social-card-font.mjs new file mode 100644 index 0000000000..940b37af38 --- /dev/null +++ b/remix/scripts/generate-social-card-font.mjs @@ -0,0 +1,66 @@ +#!/usr/bin/env node + +// Regenerates app/api/utils/meta/socialCardFontData.ts from Liberation Sans. +// +// The social card is rasterised by resvg-js, which in 2.6 can only load a font +// from a filesystem PATH — there is no fontBuffers option — and the deployed +// Vercel Node runtime has no fonts installed. Embedding the face in the bundle +// is the only form that cannot be lost by Nitro bundling or Vercel dependency +// tracing, and it means the unit tests exercise the same bytes production does. +// +// Pass the directory holding LiberationSans-{Regular,Bold}.ttf, or rely on the +// usual Debian/Ubuntu location (the `fonts-liberation` package). +// +// node scripts/generate-social-card-font.mjs [fontDir] + +import { readFileSync, writeFileSync } from 'node:fs'; +import { join } from 'node:path'; + +const fontDir = process.argv[2] || '/usr/share/fonts/truetype/liberation'; +const faces = ['LiberationSans-Regular.ttf', 'LiberationSans-Bold.ttf']; +const target = 'app/api/utils/meta/socialCardFontData.ts'; + +const chunk = (value, size) => { + const parts = []; + for (let index = 0; index < value.length; index += size) parts.push(value.slice(index, index + size)); + return parts; +}; + +const entries = faces + .map((file) => { + const base64 = readFileSync(join(fontDir, file)).toString('base64'); + const lines = chunk(base64, 200) + .map((line) => `\t\t\t'${line}'`) + .join(' +\n'); + return `\t{\n\t\tfile: '${file}',\n\t\tbase64:\n${lines}\n\t}`; + }) + .join(',\n'); + +const source = `// GENERATED FILE — do not hand-edit. +// +// Liberation Sans, embedded as base64 so the social-card renderer always has +// a face to draw with. Regenerate with scripts/generate-social-card-font.mjs. +// +// Why the bytes live in a JS module rather than beside it on disk: resvg-js +// 2.6 can only load fonts from a filesystem PATH (there is no fontBuffers +// option), and the deployed Vercel Node runtime ships no fonts at all — so +// \`font-family="Arial, sans-serif"\` resolved to nothing and every card came +// out with its artwork drawn and not one glyph on it. A sibling .ttf would +// have to survive Nitro bundling AND Vercel dependency tracing to be there at +// runtime; bytes inside the bundle simply cannot go missing, and the unit +// tests then exercise the exact code path production uses. +// +// Liberation Sans is metric-compatible with Arial, which is what the card was +// designed and measured against (see socialTextWidth). +// +// SIL Open Font License 1.1 — see ./LICENSE-Liberation.txt. + +export const SOCIAL_CARD_FONT_FAMILY = 'Liberation Sans'; + +export const SOCIAL_CARD_FONTS: ReadonlyArray<{ file: string; base64: string }> = [ +${entries} +]; +`; + +writeFileSync(target, source); +console.log(`[fonts] wrote ${target} from ${fontDir} (${faces.join(', ')}).`); diff --git a/remix/scripts/patch-vercel-output.mjs b/remix/scripts/patch-vercel-output.mjs index 23b0197bc7..2229bd2580 100644 --- a/remix/scripts/patch-vercel-output.mjs +++ b/remix/scripts/patch-vercel-output.mjs @@ -17,9 +17,26 @@ const wellKnownDiscoveryRoute = { dest: '/__server' }; const appShellHeaders = { - 'Cache-Control': 'private, no-store, max-age=0, must-revalidate', - Pragma: 'no-cache', - Expires: '0' + 'Cache-Control': 'private, no-store, max-age=0, must-revalidate', + Pragma: 'no-cache', + Expires: '0' +}; +const socialCardHeaders = { + 'Cache-Control': 'public, max-age=300, s-maxage=3600, stale-while-revalidate=86400', + 'X-Content-Type-Options': 'nosniff' +}; +const socialMetaRoute = { + // Public, shareable screens get server-injected Open Graph tags. Keep + // account/admin/auth routes on the ordinary static shell: a card must never + // become an oracle for a private screen. + src: '^/(?:feed|explore|design-system|post/[^/]+|profile(?:/[^/]+)?|media/[^/]+|thing/[^/]+|p/[^/]+|docs(?:/[^/]+){0,3}|schemas(?:/[^/]+)?|themes(?:/[^/]+)?|components(?:/[^/]+){0,2}|actions(?:/[^/]+)?|search|things(?:/[^/]+)?)/?$', + headers: appShellHeaders, + dest: serverFallbackRoute?.dest || '/index.html' +}; +const socialCardRoute = { + src: '^/social-card$', + headers: socialCardHeaders, + dest: serverFallbackRoute?.dest || '/index.html' }; config.routes = [ @@ -64,7 +81,9 @@ config.routes = [ }, continue: true }, - { src: '^/$', headers: appShellHeaders, dest: '/index.html' }, + // The homepage and every public permalink need server-generated metadata; + // the browser still receives the identical Vite shell from the handler. + { src: '^/$', headers: appShellHeaders, dest: serverFallbackRoute?.dest || '/index.html' }, { src: '^/index\\.html$', headers: appShellHeaders, dest: '/index.html' }, // Content-hashed build output can be cached forever. Vite gives every file // under /assets/ an 8-char content hash, so a changed file is a changed URL @@ -95,15 +114,10 @@ config.routes = [ filesystemRoute ?? { handle: 'filesystem' }, apiRootDataRoute ?? { src: '/api/root-data', dest: '/api/root-data' }, apiCatchAllRoute ?? { src: '/api/(?:.*)', dest: '/api/[...]' }, - // Social permalinks go through the Nitro shell handler (server/routes/[...].ts) - // so crawlers receive per-post/per-profile Open Graph tags; every other page - // keeps the plain static shell below. - ...(serverFallbackRoute - ? [ - { src: '^/post/[^/]+/?$', headers: appShellHeaders, dest: serverFallbackRoute.dest }, - { src: '^/profile/[^/]+/?$', headers: appShellHeaders, dest: serverFallbackRoute.dest } - ] - : []), + // Rich 1200×630 cards are rendered only by the safe social controller. The + // companion public route list sends every shareable URL variant through the + // same handler, where its tags are built from anonymous projections. + ...(serverFallbackRoute ? [socialCardRoute, socialMetaRoute] : []), { src: '/(?:.*)', headers: appShellHeaders, dest: '/index.html' } ]; diff --git a/remix/scripts/verify-vercel-output.mjs b/remix/scripts/verify-vercel-output.mjs index 4ee928b001..e817b565e4 100644 --- a/remix/scripts/verify-vercel-output.mjs +++ b/remix/scripts/verify-vercel-output.mjs @@ -15,6 +15,7 @@ const embedBridge = readFileSync('.vercel/output/static/embed/bridge.html', 'utf const embedDemo = readFileSync('.vercel/output/static/embed/demo.html', 'utf8'); const config = readJson('.vercel/output/config.json'); const serverFunctionDir = '.vercel/output/functions/__server.func'; +const tracedServerPackage = readJson(join(serverFunctionDir, 'package.json')); const filesBelow = (dir) => readdirSync(dir, { withFileTypes: true }).flatMap((entry) => { @@ -42,6 +43,16 @@ if (unresolvedEmojiLookup && !existsSync(tracedEmojiAsset)) { ); } +// @resvg/resvg-js chooses an OS/architecture-specific N-API package at +// runtime. Nitro may leave that package external, which is fine only when the +// Vercel trace declares the platform package beside the renderer itself. +const tracedResvgNativePackage = Object.keys(tracedServerPackage.dependencies || {}).find((dependency) => + dependency.startsWith('@resvg/resvg-js-') +); +if (!tracedServerPackage.dependencies?.['@resvg/resvg-js'] || !tracedResvgNativePackage) { + throw new Error('Vercel server output does not trace the native @resvg/resvg-js renderer required by social cards.'); +} + const getDirectiveSources = (policy, name) => { const directive = policy .split(';') @@ -137,21 +148,21 @@ if (!hasFilesystemRoute) { const routes = config.routes ?? []; const filesystemIndex = routes.findIndex((route) => route.handle === 'filesystem'); const apiIndex = routes.findIndex((route) => route.src === '/api/(?:.*)'); -const rootIndex = routes.findIndex((route) => route.src === '^/$' && route.dest === '/index.html'); +const rootIndex = routes.findIndex((route) => route.src === '^/$'); const directIndex = routes.findIndex((route) => route.src === '^/index\\.html$' && route.dest === '/index.html'); const spaIndex = routes.findIndex((route) => route.src === '/(?:.*)' && route.dest === '/index.html'); -// the social-permalink and well-known discovery routes share the /__server dest, -// so the final Nitro fallback is the one that is neither of those rewrites -const isPermalinkSrc = (src) => typeof src === 'string' && /^\^\/(?:post|profile)\//.test(src); -const postPermalinkIndex = routes.findIndex((route) => route.src === '^/post/[^/]+/?$' && route.dest === '/__server'); -const profilePermalinkIndex = routes.findIndex((route) => route.src === '^/profile/[^/]+/?$' && route.dest === '/__server'); const wellKnownDiscoveryIndex = routes.findIndex( (route) => route.src === '^/\\.well-known/(?:apple-app-site-association(?:-docs)?|oauth-protected-resource|oauth-authorization-server|thingtime-chatgpt-capabilities\\.json|thingtime-capabilities\\.json)$' && route.dest === '/__server' ); +const socialCardIndex = routes.findIndex((route) => route.src === '^/social-card$' && route.dest === '/__server'); +const socialMetaIndex = routes.findIndex( + (route) => route.dest === '/__server' && typeof route.src === 'string' && route.src.includes('post/[^/]+') && route.src.includes('media/[^/]+') +); +const socialRouteIndexes = new Set([rootIndex, socialCardIndex, socialMetaIndex]); const serverFallbackIndex = routes.findIndex( - (route, index) => route.dest === '/__server' && index !== wellKnownDiscoveryIndex && !isPermalinkSrc(route.src) + (route, index) => route.dest === '/__server' && index !== wellKnownDiscoveryIndex && !socialRouteIndexes.has(index) ); if (spaIndex === -1) { @@ -159,7 +170,7 @@ if (spaIndex === -1) { } if (rootIndex === -1) { - throw new Error('Vercel output config does not route / to /index.html.'); + throw new Error('Vercel output config does not route /.'); } if (directIndex === -1) { @@ -206,27 +217,30 @@ if (serverFallbackIndex !== -1 && serverFallbackIndex < spaIndex) { throw new Error('Vercel output checks the Nitro server fallback before the SPA shell.'); } -// Social permalinks must reach the Nitro shell handler (crawler-visible Open -// Graph tags — server/routes/[...].ts) instead of the meta-less static shell. +// Every shareable page and its PNG card must arrive at the Nitro social +// controller after static/API handling but before the generic SPA shell. if (serverFallbackIndex !== -1) { + if (routes[rootIndex]?.dest !== '/__server' || socialMetaIndex === -1 || socialCardIndex === -1) { + throw new Error('Vercel output does not route the public social surfaces to the Nitro social controller.'); + } for (const [name, index] of [ - ['post permalink', postPermalinkIndex], - ['profile permalink', profilePermalinkIndex] + ['public social route', socialMetaIndex], + ['social card', socialCardIndex] ]) { - if (index === -1) { - throw new Error(`Vercel output config does not route the ${name} pages to the Nitro social-meta handler.`); - } - if (index > spaIndex) { - throw new Error(`Vercel output checks the SPA fallback before the ${name} social-meta route.`); - } - if (index < apiIndex || index < filesystemIndex) { - throw new Error(`Vercel output routes ${name} pages to the Nitro social-meta handler before filesystem/API routes.`); - } - const headers = routes[index]?.headers; - if (headers?.['Cache-Control'] !== expectedAppShellCacheControl) { - throw new Error(`Vercel output ${name} route does not disable browser caching for the HTML shell.`); + if (index > spaIndex || index < apiIndex || index < filesystemIndex) { + throw new Error(`Vercel output orders the ${name} route outside the static/API and SPA boundaries.`); } } + if (routes[socialMetaIndex]?.headers?.['Cache-Control'] !== expectedAppShellCacheControl) { + throw new Error('Vercel output does not disable browser caching for public social HTML.'); + } + const cardHeaders = routes[socialCardIndex]?.headers; + if ( + cardHeaders?.['Cache-Control'] !== 'public, max-age=300, s-maxage=3600, stale-while-revalidate=86400' || + cardHeaders?.['X-Content-Type-Options'] !== 'nosniff' + ) { + throw new Error('Vercel output does not preserve safe caching headers for social-card PNGs.'); + } } const authorizeHeadersIndex = routes.findIndex( diff --git a/remix/server/routes/[...].ts b/remix/server/routes/[...].ts index fad8fd5f6f..1743afe331 100644 --- a/remix/server/routes/[...].ts +++ b/remix/server/routes/[...].ts @@ -2,6 +2,7 @@ import { defineHandler } from 'nitro/h3'; import { useStorage } from 'nitro/storage'; import { injectSocialMeta, renderSocialMetaHtml, resolveSocialMeta } from '../../app/api/utils/meta/socialMeta'; +import { normaliseSocialPreviewPath, resolveSocialPreview, staticSocialPreview } from '../../app/api/utils/meta/socialPreview'; import { getRequestMongoEndpoint, runWithMongoEndpoint } from '../../app/api/utils/mongodb/endpoint'; // The SPA shell for every non-API, non-static path. Nitro compiles this route @@ -10,43 +11,99 @@ import { getRequestMongoEndpoint, runWithMongoEndpoint } from '../../app/api/uti // through to the raw source template. So this handler always answers 200 with // the built shell; per-page social meta carries the page identity instead. export default defineHandler(async (event) => { - // assets:shell is the explicit server/assets mount (nitro.config.ts); - // assets:server and assets:client stay as fallbacks for older built layouts - // where nitro's default mount still resolved to one of those instead. - const html = - (await useStorage('assets:shell').getItem('index.html')) ?? - (await useStorage('assets:server').getItem('index.html')) ?? - (await useStorage('assets:client').getItem('index.html')); + const requestUrl = new URL(event.req.url); + // The one public image endpoint intentionally shares the same controller as + // page meta. It only accepts a normalized local path, re-runs the anonymous + // projection, and then draws a PNG — there is no arbitrary remote-image + // proxy hidden behind a social-card URL. + if (requestUrl.pathname === '/social-card') { + const method = event.req.method.toUpperCase(); + if (!['GET', 'HEAD'].includes(method)) { + return new Response('Method not allowed', { status: 405, headers: { Allow: 'GET, HEAD' } }); + } + const cardHeaders = { + 'Content-Type': 'image/png', + 'Cache-Control': 'public, max-age=300, s-maxage=3600, stale-while-revalidate=86400', + 'X-Content-Type-Options': 'nosniff' + }; + // A HEAD carries no body, and none of these headers depend on which card + // would be drawn — so resolving one is work nothing can consume. Worth + // skipping rather than tidying: this endpoint is public and + // unauthenticated, `?v=` is part of the CDN key but is never read back + // here, and a content path costs a full anonymous `getThing` projection + // (uncapped parent walk on a comment or attachment). HEAD therefore bought + // that projection with no PNG to make the miss worth caching. + if (method === 'HEAD') return new Response(null, { headers: cardHeaders }); + const path = normaliseSocialPreviewPath(requestUrl.searchParams.get('path')); + // lazy, for the same reason socialPreview.ts lazy-imports things/users/ + // webpages/attachments: socialCard.ts pulls in the @resvg native binding and + // ~1.1 MB of embedded font source, measuring ~40ms and ~7 MiB of heap at + // module load against ~3ms/~0.5 MiB for the meta path. Only this endpoint + // ever draws a card, so the HTML shell — every public page, now including + // `/` — must not pay that on a cold start. A static import made it + // unconditional for the whole route module. + const { renderSocialCardPng } = await import('../../app/api/utils/meta/socialCard'); + try { + // Deliberately NOT runWithMongoEndpoint. This response is shared-cacheable + // (s-maxage below) and shared caches key on the URL alone, so honouring an + // unauthenticated `x-tt-mongo-url` header or `tt_mongo` cookie here would + // let any caller render a card from a data plane they control and have it + // stored under the public card URL that every later visitor and unfurler + // receives. Crawlers never carry either credential, so the home plane is + // the only plane this endpoint could usefully serve anyway. Resolving and + // drawing both stay on it, which also keeps the attachment loader's + // home-object guard (utils/attachments/attachments.ts) meaningful. + // The HTML shell below still honours the override: it is private/no-store + // and has to agree with the SPA's own follow-up API reads. + const preview = await resolveSocialPreview(requestUrl.origin, path); + const png = await renderSocialCardPng(preview); + return new Response(png.buffer.slice(png.byteOffset, png.byteOffset + png.byteLength) as ArrayBuffer, { headers: cardHeaders }); + } catch (error) { + console.error('[social-card] rendering a safe fallback card:', error); + const png = await renderSocialCardPng(staticSocialPreview(path)); + // Deliberately not the shared s-maxage: a card drawn from a failure must + // not sit in the CDN for an hour after the cause is fixed. + return new Response(png.buffer.slice(png.byteOffset, png.byteOffset + png.byteLength) as ArrayBuffer, { + headers: { ...cardHeaders, 'Cache-Control': 'public, max-age=300' } + }); + } + } - if (!html) { - return new Response('Client app has not been built yet.', { status: 503 }); - } + // assets:shell is the explicit server/assets mount (nitro.config.ts); + // assets:server and assets:client stay as fallbacks for older built layouts + // where nitro's default mount still resolved to one of those instead. + const html = + (await useStorage('assets:shell').getItem('index.html')) ?? + (await useStorage('assets:server').getItem('index.html')) ?? + (await useStorage('assets:client').getItem('index.html')); - // The shell is static, so link unfurlers (no JS) would otherwise see zero - // page identity. Swap the head's tt-social-meta block per-request: /post/:id - // and /profile/:username get page-specific Open Graph / Twitter tags built - // from public data only (private/missing pages get the generic site block), - // every other path gets the site defaults with absolute request-derived - // URLs. Meta is best-effort: a data-plane hiccup must never take down page - // serving. - let body = html; - try { - // same endpoint context as the API catch-all, so shell meta and the SPA's - // own follow-up API reads resolve against the same data plane - const mongoEndpoint = await getRequestMongoEndpoint(event.req); - const social = await runWithMongoEndpoint(mongoEndpoint, () => resolveSocialMeta(event.req)); - body = injectSocialMeta(html, renderSocialMetaHtml(social.tags)); - } catch (error) { - // serve the untouched shell — but audibly, never silently - console.error('[social-meta] falling back to the generic shell:', error); - } + if (!html) { + return new Response('Client app has not been built yet.', { status: 503 }); + } - return new Response(body, { - headers: { - 'Content-Type': 'text/html; charset=utf-8', - // marks shells served by this handler (vs the static /index.html copy) so - // the Vercel permalink routing stays curl-verifiable in production - 'X-TT-Shell': 'social-meta' - } - }); + // The shell is static, so link unfurlers (no JS) would otherwise see zero + // page identity. Swap the head's tt-social-meta block per request: every + // shareable route gets a variant-specific Open Graph / Twitter card built + // from public data only (private/missing data gets the generic card). Meta + // is best-effort: a data-plane hiccup must never take down page serving. + let body = html; + try { + // same endpoint context as the API catch-all, so shell meta and the SPA's + // own follow-up API reads resolve against the same data plane + const mongoEndpoint = await getRequestMongoEndpoint(event.req); + const social = await runWithMongoEndpoint(mongoEndpoint, () => resolveSocialMeta(event.req)); + body = injectSocialMeta(html, renderSocialMetaHtml(social.tags)); + } catch (error) { + // serve the untouched shell — but audibly, never silently + console.error('[social-meta] falling back to the generic shell:', error); + } + + return new Response(body, { + headers: { + 'Content-Type': 'text/html; charset=utf-8', + // marks shells served by this handler (vs the static /index.html copy) so + // the Vercel permalink routing stays curl-verifiable in production + 'X-TT-Shell': 'social-meta' + } + }); });