diff --git a/.changeset/optimize-dependencies.md b/.changeset/optimize-dependencies.md new file mode 100644 index 0000000..b43b89a --- /dev/null +++ b/.changeset/optimize-dependencies.md @@ -0,0 +1,15 @@ +--- +"leadtype": patch +--- + +Shrink published install closure by swapping out heavier deps: + +- `gray-matter` → `vfile-matter` + `yaml` (drops `js-yaml`, `kind-of`, `section-matter`, `strip-bom-string` from the closure). +- `jiti` moved from `dependencies` to optional `peerDependencies` — only required when authoring `docs.config.ts`; `.js`/`.mjs`/`.cjs` configs load via native `import()`. +- `decode-named-character-reference` dropped — entity decode inside `` titles now uses a small inline map. +- `mdast-util-to-markdown` dropped in `prompt.remark` — serialization now goes through the existing `remark()` processor. +- `mdast-util-compact` dropped in `steps.remark` — small in-tree adjacent-text/blockquote merge inlined. +- `unist-builder` dropped — `u(...)` calls replaced with mdast object literals. +- `unist-util-is` dropped — 7 `is(node, "type")` call sites switched to `node.type === "type"`. + +Behavior change: YAML frontmatter timestamps now round-trip through the `yaml` package's timestamp tag. Date-only scalars like `2026-04-19` emit as `2026-04-19` (compact) instead of `2026-04-19T00:00:00.000Z`. Datetime scalars without sub-second precision emit as `2026-04-19T12:00:00` instead of `2026-04-19T12:00:00.000Z`. The values remain `Date` instances in JS, so consuming code is unaffected. diff --git a/.vscode/settings.json b/.vscode/settings.json index 406f71b..4d00146 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,5 @@ { - "editor.defaultFormatter": "esbenp.prettier-vscode", + "editor.defaultFormatter": "biomejs.biome", "editor.formatOnPaste": true, "editor.formatOnSave": true, "emmet.showExpandedAbbreviation": "never", diff --git a/apps/example/src/generated/agent-readability.json b/apps/example/src/generated/agent-readability.json index cb26ead..2652084 100644 --- a/apps/example/src/generated/agent-readability.json +++ b/apps/example/src/generated/agent-readability.json @@ -1,6 +1,6 @@ { "version": 1, - "generatedAt": "2026-05-11T17:26:32.280Z", + "generatedAt": "2026-05-11T23:20:44.255Z", "baseUrl": "https://leadtype.dev", "product": { "name": "Leadtype", @@ -18,7 +18,7 @@ "groups": [ "get-started" ], - "lastModified": "2026-05-11T16:24:34.000Z" + "lastModified": "2026-05-11T17:53:02.000Z" }, { "title": "Components", @@ -31,7 +31,7 @@ "groups": [ "authoring" ], - "lastModified": "2026-05-11T16:24:34.000Z" + "lastModified": "2026-05-11T17:53:02.000Z" }, { "title": "Frontmatter", @@ -44,7 +44,7 @@ "groups": [ "authoring" ], - "lastModified": "2026-05-11T16:24:34.000Z" + "lastModified": "2026-05-11T17:53:02.000Z" }, { "title": "Add search", @@ -57,7 +57,7 @@ "groups": [ "docs-site" ], - "lastModified": "2026-05-11T16:24:34.000Z" + "lastModified": "2026-05-11T17:53:02.000Z" }, { "title": "Connect a docs site", @@ -70,7 +70,7 @@ "groups": [ "docs-site" ], - "lastModified": "2026-05-11T16:24:34.000Z" + "lastModified": "2026-05-11T17:53:02.000Z" }, { "title": "Optimize docs for agents", @@ -83,7 +83,7 @@ "groups": [ "docs-site" ], - "lastModified": "2026-05-11T16:24:34.000Z" + "lastModified": "2026-05-11T17:53:02.000Z" }, { "title": "Render MDX and TOC", @@ -96,7 +96,7 @@ "groups": [ "docs-site" ], - "lastModified": "2026-05-11T16:24:34.000Z" + "lastModified": "2026-05-11T17:53:02.000Z" }, { "title": "Validate in CI", @@ -109,7 +109,7 @@ "groups": [ "docs-site" ], - "lastModified": "2026-05-11T16:24:34.000Z" + "lastModified": "2026-05-11T17:53:02.000Z" }, { "title": "How it works", @@ -122,7 +122,7 @@ "groups": [ "get-started" ], - "lastModified": "2026-05-11T16:24:34.000Z" + "lastModified": "2026-05-11T17:53:02.000Z" }, { "title": "Methodology", @@ -135,7 +135,7 @@ "groups": [ "get-started" ], - "lastModified": "2026-05-11T16:24:34.000Z" + "lastModified": "2026-05-11T17:53:02.000Z" }, { "title": "Bundle docs into a package", @@ -148,7 +148,7 @@ "groups": [ "package-docs" ], - "lastModified": "2026-05-11T17:26:32.216Z" + "lastModified": "2026-05-11T17:53:02.000Z" }, { "title": "Quickstart", @@ -161,7 +161,7 @@ "groups": [ "get-started" ], - "lastModified": "2026-05-11T16:24:34.000Z" + "lastModified": "2026-05-11T17:53:02.000Z" }, { "title": "CLI", @@ -174,7 +174,7 @@ "groups": [ "reference" ], - "lastModified": "2026-05-11T16:24:34.000Z" + "lastModified": "2026-05-11T17:53:02.000Z" }, { "title": "Convert", @@ -200,7 +200,7 @@ "groups": [ "reference" ], - "lastModified": "2026-05-11T01:01:43.000Z" + "lastModified": "2026-05-11T17:53:02.000Z" }, { "title": "Lint rules", @@ -226,7 +226,7 @@ "groups": [ "reference" ], - "lastModified": "2026-05-11T16:24:34.000Z" + "lastModified": "2026-05-11T17:53:02.000Z" }, { "title": "Remark plugins", diff --git a/apps/example/src/generated/docs-search-content.json b/apps/example/src/generated/docs-search-content.json index dd639bf..75d5ec8 100644 --- a/apps/example/src/generated/docs-search-content.json +++ b/apps/example/src/generated/docs-search-content.json @@ -1 +1 @@ -{"version":2,"generatedAt":"2026-05-11T17:26:32.345Z","chunks":["Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nLeadtype does not ship UI components. Your docs app owns runtime rendering, styling, and accessibility — it only has to honor a small naming contract so the remark pipeline can flatten each component into markdown for agents, search, and llms-full.txt .","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nWhy flatten at all?\n\nInteractive MDX components like Body content goes here. ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nCards\n\nA grid of short, linked entry points. Flattens to a bullet list of links. Convert Remark Search\n\n```tsx ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nSteps\n\nNumbered walkthroughs. Flattens to an ordered list with bold step titles. 1. Author docs in MDX Use the components in this list as authoring affordances. 2. Run the conversion leadtype generate writes flattened markdown to public/docs/ . 3. Serve both formats HTML for humans, .md for agents — same URL, content negotiated by the Accept header.\n\n```tsx Use the components in this list. `leadtype generate` writes flattened markdown. ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nTabs\n\nGroup equivalent content. Flattens to bold headings followed by content so agents do not need a JSX-aware renderer to read every variant. tanstack-start Use a Vite middleware dev/preview and a Nitro middleware prod to negotiate the Accept header. next-js Wire content negotiation in middleware.ts and serve .md from a route handler. vite A configureServer middleware is enough for static deployments where .md files live in public/ .\n\n```tsx ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nCommandTabs\n\nPackage-manager-aware install or run commands. Flattens to a markdown table with one row per manager. Use mode=\"install\" when command is a package name, mode=\"run\" when command is a CLI name, and mode=\"create\" for starter commands. Use the commands prop for exact per-manager overrides. Package manager Command -- -- npm npm install leadtype pnpm pnpm add leadtype yarn yarn add leadtype bun bun add leadtype Package manager Command -- -- npm npx leadtype lint pnpm pnpm dlx leadtype lint yarn yarn dlx leadtype lint bun bunx leadtype lint\n\n```tsx ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nPrompt\n\nDisplays an agent-ready prompt with a copy action. Flattening preserves the prompt body as a fenced prompt block so copied instructions also survive in .md , root llms-full.txt , and bundled AGENTS.md output. Copy prompt for your coding agent Use this after generating artifacts.\n\n```tsx Inspect `public/docs/agent-readability.json`, then wire markdown responses before the HTML docs route. ``` ```prompt Inspect `public/docs/agent-readability.json`, then wire markdown responses before the HTML docs route. ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nAudience\n\nSplits browser-only and agent-only guidance without forking the page. Human content renders in the docs UI and is omitted from markdown output; agent content is hidden in the browser and included in generated markdown. This sentence appears only in generated markdown for agents.\n\n```tsx Click the robot icon in the header. Read generated markdown before editing runtime routes. ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nFileTree\n\nShows project structure in guides and release instructions. Flattening emits a fenced text tree so agents can read the same hierarchy without JSX.\n\n```tsx ``` ```text public/ ├── llms.txt └── docs/ └── index.md ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nAccordion\n\nCollapsible details for secondary content. Flattening ignores open/closed state and emits every item — accordions are not a place to hide content from agents. When should I use accordions? Use them for supporting details, troubleshooting notes, and optional reference material. Closed content is still flattened by the remark pipeline. Are accordions a good place to hide content from LLMs? No. Conversion ignores the open/closed state and emits everything inside.\n\n```tsx Use them for supporting details and optional reference material. ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nTopicSwitcher\n\nNavigation across equivalent docs topics — frameworks, SDKs, runtimes, deployment targets, product areas. Reader-facing only; it does not automatically read LLM topic config. Framework React — React integration Vue — Vue integration Svelte — Svelte integration\n\n```tsx ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nTypeTable and ExtractedTypeTable\n\nTypeTable is for explicit prop or type rows you already know. ExtractedTypeTable reads a TypeScript file at conversion time and extracts the table from a named type — keep its path stable. Property Type Description Default Required -- -- -- -- -- title string Heading rendered above the callout body. - ✅ Required variant CalloutVariant Visual treatment for the callout. info Optional deprecated \\ \\ boolean\\ \\ deprecated Marks the row as deprecated. false Optional\n\n```tsx ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nExample\n\nData-driven preview and source examples. The host component receives code as data; add file loaders or dynamic imports outside leadtype when an example needs app-specific behavior.\n\n```tsx The host app owns styling and runtime components while leadtype owns conversion. ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nMermaid\n\nDiagrams authored as plain text. Renders client-side as interactive SVG. Flattening preserves the source as a fenced mermaid block so other tools can render the diagram from the markdown copy.\n\n```tsx |remark| Markdown Markdown -->|llms.txt| Agents`} /> ``` ```mermaid `graph LR MDX -->|remark| Markdown Markdown -->|search index| API Markdown -->|llms.txt| Agents` ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nGuidelines\n\nKeep runtime components in your docs app. Leadtype stays out of UI. Keep component names stable. Renaming resolver page1 --> resolver page2 --> resolver page3 --> resolver resolver --> nav resolver --> llms resolver --> agents` ```","Frontmatter\n\nRequired fields, group semantics, and how authored MDX becomes a navigation tree.\n\nFrontmatter\n\nHow groups become a nav tree\n\nNested groups\n\nDeclare children in the config to build deeper trees A page sets group remote-source and lands in that nested slot. Only leaf groups no children directly contain pages; non-leaf groups are headings only.\n\n```ts { slug: \"docs-site\", title: \"Build a Docs Site\", children: [ { slug: \"remote-source\", title: \"Remote source\" }, { slug: \"connect-docs-site\", title: \"Connect a docs site\" }, ], } ```","Frontmatter\n\nRequired fields, group semantics, and how authored MDX becomes a navigation tree.\n\nFrontmatter\n\nOptional fields\n\nThe default lint schema also accepts Property Type Description Default Required -- -- -- -- -- icon string Icon name resolved by your sidebar component. - Optional deprecated boolean Marks the page as deprecated in nav and search. - Optional deprecatedReason string Short message paired with deprecated. - Optional experimental boolean Marks the page as experimental. - Optional canary boolean Hides from stable channels. - Optional new boolean Highlights the page as recently added. - Optional draft boolean Excludes from generation entirely. - Optional tags string\\ Free-form tags for search facets. - Optional availableIn Array\\<\\ framework, url?, title? Cross-framework availability map for TopicSwitcher pages. - Optional full boolean Layout hint for docs UIs that support full-width pages. - Optional lastModified and lastAuthor are filled in automatically when you pass --enrich-git to the CLI. Don't author them by hand.","Frontmatter\n\nRequired fields, group semantics, and how authored MDX becomes a navigation tree.\n\nFrontmatter\n\nLint rules\n\nleadtype lint enforces the schema, so violations surface in CI before they reach a build. The relevant rules schema — a required field is missing or has the wrong type. unknown-field — a top-level field isn't in the schema warn by default; --error-unknown to fail . parse-error — frontmatter or meta.json doesn't parse. invalid-link — a /docs/... link points to a route that doesn't exist. unresolved-placeholder — a doc URL still contains an unresolved framework placeholder. cross-framework-link — a framework-scoped page links to another framework's docs. See Lint rules for the full reference and how to extend the schema.","Frontmatter\n\nRequired fields, group semantics, and how authored MDX becomes a navigation tree.\n\nFrontmatter\n\nWhat this gives you\n\nOnce frontmatter is consistent, the rest of the pipeline works without per-page configuration. The same group value drives The sidebar position The llms.txt section Search metadata and AGENTS.md grouping The search filtering UI if you build one Cross-framework link checks in lint One field, one source of truth.","Add search\n\nGenerate a static docs search index, query it at runtime, and optionally stream source-grounded answers.\n\nAdd search\n\nLeadtype search is static by default. Build time produces two JSON files; runtime code imports or fetches those files and queries them without a database.","Add search\n\nGenerate a static docs search index, query it at runtime, and optionally stream source-grounded answers.\n\nAdd search\n\nGenerate the files\n\nleadtype generate writes search files in site mode If you run the pipeline from scripts, call the search generator after conversion This writes The index contains compact ranking data. The content store contains the text used for excerpts and answer context.\n\n```bash npx leadtype generate --src . --out public --base-url https://example.com ``` ```ts import { generateDocsSearchFiles } from \"leadtype/search/node\"; await generateDocsSearchFiles({ outDir: \"public\", baseUrl: \"https://example.com\", }); ``` ```txt public/docs/search-index.json public/docs/search-content.json ```","Add search\n\nGenerate a static docs search index, query it at runtime, and optionally stream source-grounded answers.\n\nAdd search\n\nQuery at runtime\n\nResults include page URLs, heading paths, hash URLs, and snippets. Render them in your own search UI.\n\n```ts import { searchDocs, type DocsSearchContentStore, type DocsSearchIndex, } from \"leadtype/search\"; import contentJson from \"../public/docs/search-content.json\"; import indexJson from \"../public/docs/search-index.json\"; const index = indexJson as DocsSearchIndex; const content = contentJson as DocsSearchContentStore; const results = searchDocs(index, \"run lint\", { content }); ```","Add search\n\nGenerate a static docs search index, query it at runtime, and optionally stream source-grounded answers.\n\nAdd search\n\nAdd vocabulary aliases\n\nSearch starts with lexical matching, stemming, prefix matches, typo-tolerant fallbacks, and a small built-in synonym map. Add product-specific synonyms only when users search with words your docs do not use\n\n```ts const results = searchDocs(index, \"starter\", { content, synonyms: { starter: [\"quickstart\", \"getting started\"], }, }); ```","Add search\n\nGenerate a static docs search index, query it at runtime, and optionally stream source-grounded answers.\n\nAdd search\n\nOptional AI answers\n\nUse source-grounded answers only after basic search works. Leadtype retrieves chunks from the static index, builds a constrained prompt, and leaves model choice to the provider entry point you import Display sources next to the streamed response. Do not ask the model to answer from memory; the answer context is built from retrieved docs chunks.\n\n```ts import { streamDocsAnswer } from \"leadtype/search/vercel\"; const { response, sources } = streamDocsAnswer({ index, content, query: \"How do I run docs lint in CI?\", model: \"openai/gpt-5.5\", productName: \"My Library\", }); ```","Add search\n\nGenerate a static docs search index, query it at runtime, and optionally stream source-grounded answers.\n\nAdd search\n\nGuard the endpoint\n\nFor API routes that accept user queries, use the request helpers from leadtype/search validateDocsQuery to trim and cap query text. readJsonWithLimit to reject oversized JSON bodies. getClientIdentifier to read common proxy IP headers. createMemoryRateLimiter for demos. Production apps should adapt the rate limiter interface to a shared store such as Redis, Vercel KV, Cloudflare KV, or Durable Objects.","Add search\n\nGenerate a static docs search index, query it at runtime, and optionally stream source-grounded answers.\n\nAdd search\n\nVerify\n\npublic/docs/search-index.json and public/docs/search-content.json exist and are non-empty. Searching for an exact API name returns the expected reference page. Searching for a guide phrase returns a result with a section hash. AI answers cite sources from the returned sources metadata.","Connect a docs site\n\nBuild a shared docs app from source docs that live with the code they document.\n\nConnect a docs site\n\nUse this path when you run a docs app that renders docs from one or more source repos. This is the main Leadtype docs-site model content stays next to the code it documents, while the docs app clones or checks out that content during build and serves the generated artifacts. Your framework still owns routes, HTML, styling, and deployment. Leadtype owns the source-to-artifact pipeline.","Connect a docs site\n\nBuild a shared docs app from source docs that live with the code they document.\n\nConnect a docs site\n\nThe flow\n\n```mermaid `flowchart LR repo[\"source repo / docs/*.mdx\"] clone[\"checkout or clone / .docs-src/c15t\"] lint[\"leadtype lint\"] generate[\"leadtype generate\"] public[\"public/ / llms.txt · llms-full.txt / docs/*.md / search · agent metadata\"] app[\"docs app / routing + HTML\"] repo --> clone --> lint --> generate --> public --> app` ```","Connect a docs site\n\nBuild a shared docs app from source docs that live with the code they document.\n\nConnect a docs site\n\nFetch the source repo\n\nIn CI, check out the docs source before the docs app build. For a public repo, a shallow clone is enough For private repos, use your CI platform's checkout action or a read-only deploy key. The important part is that Leadtype receives a normal filesystem path whose root contains docs/ .\n\n```bash rm -rf .docs-src/c15t git clone --depth 1 https://github.com/c15t/c15t .docs-src/c15t ```","Connect a docs site\n\nBuild a shared docs app from source docs that live with the code they document.\n\nConnect a docs site\n\nLint before generate\n\nRun lint against the fetched docs before writing generated output Lint fails with file and line context for frontmatter, internal links, placeholders, and schema issues. That is easier to debug than a later app build using stale or partial artifacts.\n\n```bash npx leadtype lint .docs-src/c15t/docs \\ --format github \\ --error-unknown \\ --max-warnings 0 ```","Connect a docs site\n\nBuild a shared docs app from source docs that live with the code they document.\n\nConnect a docs site\n\nGenerate hosted artifacts\n\nPoint --src at the fetched repository root and --out at the docs app public directory That command writes public/llms.txt and public/llms-full.txt public/docs/ .md public/docs/search-index.json and public/docs/search-content.json public/docs/sitemap.xml , sitemap.md , robots.txt , and agent-readability.json Use --json in CI so automation can record resolved groups, output files, filters, and search index stats.\n\n```bash npx leadtype generate \\ --src .docs-src/c15t \\ --out public \\ --base-url https://docs.example.com \\ --json ```","Connect a docs site\n\nBuild a shared docs app from source docs that live with the code they document.\n\nConnect a docs site\n\nWire it into the app build\n\nMake the source checkout, lint, and generation steps run before the framework build If the docs source and docs app live in the same repo, skip docs fetch and point --src at .\n\n```json { \"scripts\": { \"docs:fetch\": \"rm -rf .docs-src/c15t && git clone --depth 1 https://github.com/c15t/c15t .docs-src/c15t\", \"docs:lint\": \"leadtype lint .docs-src/c15t/docs --format github --error-unknown --max-warnings 0\", \"docs:generate\": \"leadtype generate --src .docs-src/c15t --out public --base-url https://docs.example.com --json\", \"build\": \"npm run docs:fetch && npm run docs:lint && npm run docs:generate && vite build\" } } ``` ```bash npx leadtype lint docs --error-unknown npx leadtype generate --src . --out public --base-url https://docs.example.com ```","Connect a docs site\n\nBuild a shared docs app from source docs that live with the code they document.\n\nConnect a docs site\n\nConfigure product and groups\n\nThe source repo should own docs/docs.config.ts so its groups and product metadata version with the docs. leadtype generate loads this file automatically from the docs folder Pages declare group in frontmatter. The config declares titles, order, and descriptions. Together they drive navigation, llms.txt , search metadata, and package AGENTS.md sections. If no config exists, the CLI infers groups from frontmatter, but inferred groups have no descriptions or custom order. See Frontmatter.\n\n```ts import { defineDocsConfig } from \"leadtype\"; export default defineDocsConfig({ product: { name: \"c15t\", summary: \"Consent infrastructure for modern web apps.\", bullets: [\"Framework integrations.\", \"Consent primitives.\", \"Audit-friendly docs.\"], bestStartingPoints: [{ urlPath: \"/docs\" }, { urlPath: \"/docs/quickstart\" }], }, groups: [ { slug: \"get-started\", title: \"Get Started\" }, { slug: \"guides\", title: \"Guides\" }, { slug: \"reference\", title: \"Reference\" }, ], }); ```","Connect a docs site\n\nBuild a shared docs app from source docs that live with the code they document.\n\nConnect a docs site\n\nUse scripts for custom pipelines\n\nThe CLI is the happy path. Use the library APIs directly when you need custom plugin order, filters, or generated JSON paths. Keep conversion first because LLM files, search, and Agent Readability artifacts read the generated markdown. Write navigation to a generated JSON file if your sidebar should use the same group tree as llms.txt . Write agentReadability.manifest if your runtime needs to merge docs pages with marketing, blog, changelog, or product routes.\n\n```ts import { convertAllMdx } from \"leadtype/convert\"; import { generateAgentReadabilityArtifacts, generateLLMFullContextFiles, generateLlmsTxt, resolveDocsNavigation, } from \"leadtype/llm\"; import { defaultRemarkPlugins, remarkInclude } from \"leadtype/remark\"; import { generateDocsSearchFiles } from \"leadtype/search/node\"; import docsConfig from \"../.docs-src/c15t/docs/docs.config\"; const sourceRoot = \".docs-src/c15t\"; await convertAllMdx({ srcDir: `${sourceRoot}/docs`, outDir: \"public/docs\", remarkPlugins: [remarkInclude, ...defaultRemarkPlugins], enrichFrontmatterFromGit: true, }); await generateLlmsTxt({ srcDir: sourceRoot, outDir: \"public\", baseUrl: \"https://docs.example.com\", product: docsConfig.product, groups: docsConfig.groups, }); await generateLLMFullContextFiles({ outDir: \"public\", baseUrl: \"https://docs.example.com\", product: { name: docsConfig.product.name }, groups: docsConfig.groups, }); await generateDocsSearchFiles({ outDir: \"public\", baseUrl: \"https://docs.example.com\", }); const agentReadability = await generateAgentReadabilityArtifacts({ outDir: \"public\", baseUrl: \"https://docs.example.com\", product: docsConfig.product, groups: docsConfig.groups, }); const","Connect a docs site\n\nBuild a shared docs app from source docs that live with the code they document.\n\nConnect a docs site\n\nUse scripts for custom pipelines\n\nait generateAgentReadabilityArtifacts({ outDir: \"public\", baseUrl: \"https://docs.example.com\", product: docsConfig.product, groups: docsConfig.groups, }); const navigation = await resolveDocsNavigation({ srcDir: sourceRoot, baseUrl: \"https://docs.example.com\", groups: docsConfig.groups, }); ```","Connect a docs site\n\nBuild a shared docs app from source docs that live with the code they document.\n\nConnect a docs site\n\nWire the app runtime\n\nAfter generation, choose the runtime pieces your site needs Render source MDX as HTML with your own components Render MDX and TOC. Return markdown for agent requests and serve discovery files Optimize docs for agents. Add local search and optional source-grounded answers Add search.","Connect a docs site\n\nBuild a shared docs app from source docs that live with the code they document.\n\nConnect a docs site\n\nVerify\n\nAfter a clean build, inspect these files public/docs/index.md — converted markdown for the source repo home page. public/llms.txt — hosted routing index with page-level markdown links. public/llms-full.txt — all generated markdown docs in one fallback file. public/docs/search-index.json and public/docs/search-content.json — non-empty search files. public/docs/agent-readability.json — manifest for markdown responses, JSON-LD, sitemap, and robots helpers. Then start your app and check at least one browser HTML page and one markdown response path.","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\nUse this guide when you already have a docs site and want agents to find, fetch, attribute, and cite the same content humans read in the browser. Leadtype handles the generated files. Your app wires those files into routing and HTML. The default output shape is based on the repo's agent evals. See Evals for the benchmark summary and the open question around larger-corpus llms-full.txt scaling.","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\nWhat good looks like\n\nAn agent-readable docs site has four layers 1. Discovery files /llms.txt , /sitemap.xml , /sitemap.md , and /robots.txt tell agents what exists and where to start. 2. Markdown retrieval Each docs page has a markdown mirror at /docs/page.md , and agent requests to /docs/page can receive markdown instead of HTML. 3. Structured HTML metadata Human HTML pages include JSON-LD, canonical links, and markdown alternate links so agents can extract page identity without guessing from the DOM. 4. Attribution metadata Markdown responses include canonical url and last updated frontmatter so copied content keeps its source and freshness.","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\n1. Generate the artifacts\n\nRun the site-mode pipeline before your app build This writes the docs-scoped files under public/docs/ and the top-level public/llms.txt The generated agent-readability.json manifest is the bridge between build-time content and runtime requests. It contains page URLs, markdown mirror paths, titles, descriptions, group navigation, and freshness dates.\n\n```bash npx leadtype generate \\ --src . \\ --out public \\ --base-url https://leadtype.dev \\ --name \"My product\" \\ --summary \"One sentence about the product.\" ``` ```txt public/ ├── llms.txt ├── llms-full.txt └── docs/ ├── index.md ├── quickstart.md ├── llms.txt ├── sitemap.xml ├── sitemap.md ├── robots.txt └── agent-readability.json ```","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\n2. Add one middleware\n\nPut the agent-readable routes before your HTML docs route. This Node/Bun example handles root discovery files, docs-scoped discovery files, direct .md URLs, and Accept text/markdown requests in one place If you also have marketing, blog, changelog, or product pages, pass them through the optional pages field — the regenerator merges them into the rebased output The other generated artifacts — /llms.txt , /docs/llms.txt , /llms-full.txt , /docs/agent-readability.json — use root-relative links and serve fine as static files straight from public/ . Keep the docs-scoped versions too /docs/sitemap.xml etc. . Audits and agents may request both /sitemap.xml and /docs/sitemap.xml , especially when the audited URL is /docs .\n\n```ts import { readFile } from \"node:fs/promises\"; import { join } from \"node:path\"; import manifestJson from \"../public/docs/agent-readability.json\" with { type: \"json\", }; import { createAgentMarkdownResponse, createRobotsTxtResponse, createSitemapMarkdownResponse, createSitemapXmlResponse, type AgentReadabilityManifest, type MarkdownMirrorTarget, } from \"leadtype/llm/readability\"; const manifest = { ...manifestJson, version: 1, } as AgentReadabilityManifest; async function readMarkdownFile( target: MarkdownMirrorTarget ): Promise { try { return await readFile(join(process.cwd(), \"public\", target.filePath), \"utf8\"); } catch (error) { if ( typeof error === \"object\" && error !== null && \"code\" in error && (error.code === \"ENOENT\" || error.code === \"ENOTDIR\") ) { return null; } throw error; } } export async function handleDocsRequest( request: Request ): Promise { if (request.method !== \"GET\" && request.method !== \"HEAD\") { return null; } const url = new URL(request.url); const requestOrigin = url.origin; switch (url.pathname) { case \"/sitemap.xml\": case \"/docs/sitemap.xml\": return createSitemapXmlResponse({ manifest, requestOrigin }); case","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\n2. Add one middleware\n\nstOrigin = url.origin; switch (url.pathname) { case \"/sitemap.xml\": case \"/docs/sitemap.xml\": return createSitemapXmlResponse({ manifest, requestOrigin }); case \"/sitemap.md\": case \"/docs/sitemap.md\": return createSitemapMarkdownResponse({ manifest, requestOrigin }); case \"/robots.txt\": return createRobotsTxtResponse({ manifest, requestOrigin }); case \"/docs/robots.txt\": return createRobotsTxtResponse({ manifest, requestOrigin, sitemapUrlPath: \"/docs/sitemap.xml\", }); default: return createAgentMarkdownResponse({ urlPath: url.pathname, method: request.method, headers: Object.fromEntries(request.headers), manifest, readMarkdownFile, requestOrigin, }); } } ``` ```ts return createSitemapXmlResponse({ manifest, requestOrigin, pages: [...manifest.pages, ...marketingPages, ...blogPages], }); ```","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\n3. Add JSON-LD to docs pages\n\nUse the manifest entry for the current page and render Schema.org JSON-LD into the HTML head Use renderJsonLd page, manifest if your framework has a typed metadata API. Use renderJsonLdScript page, manifest if your framework expects an HTML string. Also add canonical and markdown alternate links The JSON-LD gives agents the page title, description, canonical URL, last modified date, and breadcrumbs without scraping your rendered layout.\n\n```ts import agentManifest from \"../public/docs/agent-readability.json\"; import { renderJsonLd, renderJsonLdScript } from \"leadtype/llm/readability\"; const page = agentManifest.pages.find( (entry) => entry.urlPath === \"/docs/quickstart\" ); if (page) { const jsonLd = renderJsonLd(page, agentManifest); const script = renderJsonLdScript(page, agentManifest); } ``` ```html ```","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\n4. Return markdown to agents\n\nThe middleware above uses createAgentMarkdownResponse . It returns a Web Response or null when the path is not an agent-oriented markdown request and handles Accept text/markdown and Accept text/plain content negotiation q-values respected . Known AI user-agent headers GPTBot, ClaudeBot, Bingbot, AmazonBot, MetaExternalAgent, PerplexityBot, MistralBot, AppleBot, ByteSpider, YouBot, … . Direct .md URLs such as /docs/quickstart.md . canonical url and last updated frontmatter aliases injected automatically. 200 markdown responses for missing docs pages, so agents do not discard the body. Content-Type text/markdown; charset=utf-8 , Vary Accept , User-Agent , Link <… ; rel=\"canonical\" , Cache-Control public, max-age=300, must-revalidate . readMarkdownFile may be sync or async. In Node/Bun, read from disk. In Cloudflare, fetch from KV/R2 or an asset binding. In Vercel Edge, fetch from the deployment's static asset URL. Put that logic wherever your framework can intercept docs requests before its HTML route Framework/runtime Where it usually goes -- -- TanStack Start / nitro server/middleware/agent-readability.ts h3 .","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\n4. Return markdown to agents\n\nn intercept docs requests before its HTML route Framework/runtime Where it usually goes -- -- TanStack Start / nitro server/middleware/agent-readability.ts h3 . One middleware handles both the markdown response and the sitemap/robots regenerators — runs in dev, preview, and prod. See apps/example/server/middleware/agent-readability.ts for the canonical reference. Nuxt server/middleware/agent-readability.ts h3 — same shape as the TanStack Start example. Next.js middleware.ts Edge or a catch-all route handler before the docs page. Astro An endpoint at pages/docs/ ...slug .md.ts or astro middleware . Cloudflare Workers/Pages Worker fetch handler with KV/R2 asset binding for the markdown reader. Express/Hono/Fastify Middleware before the docs HTML route. Tip if you keep static sitemap.xml / sitemap.md / robots.txt files in your build output, your framework's static handler may serve them before your middleware can rebase URLs to the live origin. Either delete the static copies after the build so the middleware always runs or make sure your middleware is registered ahead of static-asset serving.","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\n4. Return markdown to agents\n\norigin. Either delete the static copies after the build so the middleware always runs or make sure your middleware is registered ahead of static-asset serving. Do not rewrite llms.txt , sitemap.xml , sitemap.md , robots.txt , llms-full.txt , or agent-readability.json to page markdown. The helper leaves those artifact paths alone.","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\n4. Return markdown to agents\n\nWhy the sitemap and robots responses are regenerated, not static\n\nsitemap.xml 's ; function textFromChildren(children: unknown): string { if (typeof children === \"string\" || typeof children === \"number\") { return String(children); } if (Array.isArray(children)) { return children.map(textFromChildren).join(\"\"); } if (isValidElement(children)) { const elementProps = children.props as { children?: unknown }; return textFromChildren(elementProps.children); } return \"\"; } function createHeading(level: 1 | 2 | 3 | 4 | 5 | 6) { return ({ children, id, ...props }: HeadingProps) => { const Component = `h${level}` as const; const headingId = id ?? slugifyDocsHeading(textFromChildren(children)); return ( {children} ); }; } ```","Render MDX and TOC\n\nSet up runtime MDX components, stable heading IDs, and a table of contents from the generated navigation manifest.\n\nRender MDX and TOC\n\nGenerate navigation with TOC data\n\nresolveDocsNavigation includes toc on every page. The default range is h2 to h3 . Write the navigation object to a generated JSON file and import it from your sidebar.\n\n```ts import { resolveDocsNavigation } from \"leadtype/llm\"; import docsConfig from \"../docs/docs.config\"; const navigation = await resolveDocsNavigation({ srcDir: \".\", baseUrl: \"https://example.com\", groups: docsConfig.groups, toc: { minLevel: 2, maxLevel: 4 }, }); ```","Render MDX and TOC\n\nSet up runtime MDX components, stable heading IDs, and a table of contents from the generated navigation manifest.\n\nRender MDX and TOC\n\nRender the sidebar\n\nLook up the current page in the manifest and pass currentPage.toc to your sidebar component. The example app includes a complete React implementation with scroll-spy, hash sync, active highlighting, and sticky positioning apps/example/src/components/table-of-contents.tsx","Render MDX and TOC\n\nSet up runtime MDX components, stable heading IDs, and a table of contents from the generated navigation manifest.\n\nRender MDX and TOC\n\nTroubleshooting\n\nTOC links do not scroll anywhere. Your heading IDs do not match the extracted slugs. Use slugifyDocsHeading in the rendered heading components. A page TOC is empty. All headings are outside the configured minLevel and maxLevel range. Defaults exclude h1 and headings deeper than h3 . Sidebar order differs from llms.txt. The app is not using the same docs.config.ts groups as the generation step.","Validate in CI\n\nRun leadtype lint in CI so frontmatter, navigation, and link issues fail PRs before publish.\n\nValidate in CI\n\nleadtype lint reads source MDX, runs the schema and link checks, and exits non-zero on errors. Wire it into CI so docs PRs fail fast on the same rules that would otherwise blow up leadtype generate later in the pipeline.","Validate in CI\n\nRun leadtype lint in CI so frontmatter, navigation, and link issues fail PRs before publish.\n\nValidate in CI\n\nWhat it catches\n\nMissing or wrong-typed frontmatter fields schema rule . Top-level frontmatter fields not in the schema unknown-field . Frontmatter or meta.json that doesn't parse parse-error . Internal /docs/... links pointing at routes that don't exist invalid-link . Unresolved framework placeholders left in URLs unresolved-placeholder . Cross-framework links from a framework-scoped page to a different framework's docs cross-framework-link . See Lint reference for the full rule list and how to extend the schema.","Validate in CI\n\nRun leadtype lint in CI so frontmatter, navigation, and link issues fail PRs before publish.\n\nValidate in CI\n\nGitHub Actions\n\nUse --format github so violations render as inline annotations on the PR --error-unknown upgrades unknown-field warnings to errors — strict mode. --max-warnings 0 makes any remaining warning fail the job.\n\n```yaml name: Lint docs on: pull_request: paths: - \"docs/**\" - \"**/*.mdx\" jobs: lint: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: oven-sh/setup-bun@v2 - run: bun install - run: npx leadtype lint docs --format github --error-unknown --max-warnings 0 ```","Validate in CI\n\nRun leadtype lint in CI so frontmatter, navigation, and link issues fail PRs before publish.\n\nValidate in CI\n\nOther CI providers\n\nUse --format json for any CI that doesn't speak the GitHub annotations format The JSON output includes per-file violations and summary counts. Pipe it into your provider's reporter, post a PR comment, or upload as an artifact.\n\n```bash npx leadtype lint docs --format json --error-unknown > lint-report.json ```","Validate in CI\n\nRun leadtype lint in CI so frontmatter, navigation, and link issues fail PRs before publish.\n\nValidate in CI\n\nLocal pre-push hook\n\nCatch issues before they reach CI by running lint in a husky pre-push hook Keep it under a second by limiting the scan to changed files when you have many pages. The CLI accepts repeated --ignore globs to skip stale or generated paths.\n\n```bash #!/usr/bin/env sh npx leadtype lint docs --max-warnings 0 ```","Validate in CI\n\nRun leadtype lint in CI so frontmatter, navigation, and link issues fail PRs before publish.\n\nValidate in CI\n\nRun before generate\n\nWhen leadtype lint and leadtype generate both run in the same job, lint first Generate fails noisily on unknown groups or broken includes. Lint fails specifically on content schema problems with file/line context — much easier to debug.\n\n```bash npx leadtype lint docs --error-unknown npx leadtype generate --src . --out public --json ```","Validate in CI\n\nRun leadtype lint in CI so frontmatter, navigation, and link issues fail PRs before publish.\n\nValidate in CI\n\nWhat to fix first\n\nWhen CI fails on a lot of violations, fix them in this order 1. parse-error — frontmatter is broken; nothing else can validate. 2. schema — missing or wrong-typed required fields. 3. unresolved-placeholder — content bug, not a config bug. 4. invalid-link and cross-framework-link — usually a stale link after a docs move. 5. unknown-field — last; either delete the field or extend the schema.","How it works\n\nThe mental model: one MDX source, a remark pipeline, two output modes, three audiences.\n\nHow it works\n\nLeadtype takes one input — a folder of MDX — and produces every shape your docs need to take. This page names every piece so the rest of the docs make sense.","How it works\n\nThe mental model: one MDX source, a remark pipeline, two output modes, three audiences.\n\nHow it works\n\nThe pipeline\n\nThe remark stack is what turns interactive MDX components into agent-readable markdown. JSX gets flattened — a fm fm --> remark fm --> groups remark --> md md --> site_idx md --> search groups --> site_idx groups --> agents_md groups --> nav` ```","How it works\n\nThe mental model: one MDX source, a remark pipeline, two output modes, three audiences.\n\nHow it works\n\nTwo output modes\n\nleadtype generate has two modes that read the same source and emit different shapes Property Type Description Default Required -- -- -- -- -- Site mode default leadtype generate --out public Writes llms.txt, llms-full.txt, docs/search-index.json, docs/sitemap.xml, docs/sitemap.md, docs/robots.txt, docs/agent-readability.json, and docs/\\ .md to a public/ directory your docs website serves. This is what you wire into a Vite, Next.js, Astro, or TanStack Start build. - Optional Bundle mode leadtype generate --bundle --out packages/foo Writes AGENTS.md at the package root and docs/\\ .md beneath it, both with relative paths. Skips llms.txt, llms-full.txt, search, sitemap, robots, and Agent Readability files — those are website-only. Designed for npm tarballs that ship docs alongside the published code. - Optional","How it works\n\nThe mental model: one MDX source, a remark pipeline, two output modes, three audiences.\n\nHow it works\n\nThe artifacts\n\nProperty Type Description Default Required -- -- -- -- -- Markdown .md docs/\\ human site_out -- \"absolute URLs\" --> http_agent site_out -- \"search-index.json\" --> search_ui bundle_out -- \"version-matched AGENTS.md\" --> offline_agent` ```","How it works\n\nThe mental model: one MDX source, a remark pipeline, two output modes, three audiences.\n\nHow it works\n\nVocabulary\n\nA few terms you will see throughout the docs. Property Type Description Default Required -- -- -- -- -- flatten verb Convert an interactive MDX component into a portable markdown equivalent. A \\ site_run src --> bundle_run site_run --> site_out bundle_run --> bundle_out site_out --> humans site_out --> http_agents site_out --> search bundle_out --> offline_agents` ```","Leadtype\n\nOne MDX source. Hosted docs artifacts, package-bundled AGENTS.md, and search output from the same pipeline.\n\nLeadtype\n\nChoose your path\n\nPick the job that matches what you are building. Each path starts with the minimum setup, then links to the lower-level API reference only when you need it. Connect a docs site Add search Ship docs in your package","Leadtype\n\nOne MDX source. Hosted docs artifacts, package-bundled AGENTS.md, and search output from the same pipeline.\n\nLeadtype\n\nWhat you get\n\n1. Write once Author MDX with familiar components — Callout , Tabs , Steps , Mermaid , TypeTable , and others. Add group in frontmatter to place pages in the navigation tree. 2. Run \\ leadtype generate\\ For a website converts MDX to markdown, builds llms.txt plus root llms-full.txt , generates a search index, writes Agent Readability discovery files, and resolves navigation. With --bundle emits AGENTS.md plus per-topic .md files with relative links that still work after npm install. 3. Serve all of it Humans get HTML from your app. HTTP agents get markdown via content negotiation or /llms.txt . Package consumers can point their root AGENTS.md or README at node modules/ cli cli --> bundle bundle --> publish publish --> install install --> consume` ```","Bundle docs into a package\n\nShip agent-readable docs inside an npm tarball — AGENTS.md at the package root plus per-topic .md files.\n\nBundle docs into a package\n\nWhy AGENTS.md, not llms.txt?\n\nllms.txt is a website convention — a file at /llms.txt with absolute URLs that an agent fetches over HTTP. Inside an npm tarball it's the wrong shape every link points at a hosted URL the agent may not be able to reach, and no major coding agent looks for node modules/ 0) { for (const { urlPath, slug } of navigation.unknown) { process.stderr.write(`error: ${urlPath} declares unknown group \"${slug}\".\\n`); } process.exit(1); } await generateAgentsMd({ srcDir: REPO_ROOT, outDir: PACKAGE_ROOT, product: docsConfig.product, groups: docsConfig.groups, }); ```","Bundle docs into a package\n\nShip agent-readable docs inside an npm tarball — AGENTS.md at the package root plus per-topic .md files.\n\nBundle docs into a package\n\nVerify before publishing\n\nnpm pack --dry-run should list AGENTS.md docs/ / .md If AGENTS.md is missing, check files in package.json . If .md files are missing, check the --include / --exclude filters.\n\n```bash npx leadtype generate --bundle --src . --out packages/my-package cd packages/my-package && npm pack --dry-run ```","Bundle docs into a package\n\nShip agent-readable docs inside an npm tarball — AGENTS.md at the package root plus per-topic .md files.\n\nBundle docs into a package\n\nTell consuming projects to use the bundle\n\nAGENTS.md inside your tarball is available at node modules/ When working with the `` library, read the bundled docs in `node_modules//AGENTS.md` first — they're version-matched to the installed package and stay accurate as the library updates. ```","Bundle docs into a package\n\nShip agent-readable docs inside an npm tarball — AGENTS.md at the package root plus per-topic .md files.\n\nBundle docs into a package\n\nWhen to use this\n\nUse this when agents should understand the package from the installed dependency itself — coding agents that don't have web access, IDE assistants, CLI tools, or air-gapped environments. Don't use this if your only goal is a public docs website. For that, see Connect a docs site. You can use both — they read the same source MDX, just emit different shapes.","Bundle docs into a package\n\nShip agent-readable docs inside an npm tarball — AGENTS.md at the package root plus per-topic .md files.\n\nBundle docs into a package\n\nWhat's next\n\nCLI reference LLM files Lint in CI","Quickstart\n\nInstall leadtype, run the hosted-docs pipeline once, and inspect the generated artifacts.\n\nQuickstart\n\nFive minutes from a folder of MDX to generated docs artifacts.","Quickstart\n\nInstall leadtype, run the hosted-docs pipeline once, and inspect the generated artifacts.\n\nQuickstart\n\nInstall\n\nPackage manager Command -- -- npm npm install leadtype pnpm pnpm add leadtype yarn yarn add leadtype bun bun add leadtype leadtype ships a CLI plus focused library entry points. Start with the CLI; use the APIs only when your build needs custom plugin order, filtering, or output paths.","Quickstart\n\nInstall leadtype, run the hosted-docs pipeline once, and inspect the generated artifacts.\n\nQuickstart\n\nAuthor one page\n\nCreate docs/index.mdx in your repo Every page needs a title . Add group when the page should appear in generated navigation and llms.txt sections. See Frontmatter for the full content contract.\n\n```mdx --- title: \"My library\" description: \"What it does in one sentence.\" group: get-started --- # My library Welcome. ```","Quickstart\n\nInstall leadtype, run the hosted-docs pipeline once, and inspect the generated artifacts.\n\nQuickstart\n\nGenerate hosted docs output\n\nThat command reads docs/ .mdx , converts it to markdown, resolves groups, builds search JSON, and writes hosted agent artifacts. Open public/docs/index.md first. It shows what your MDX becomes after the remark component flattening pipeline runs. Then open public/llms.txt to see the hosted routing file that HTTP agents start from. 💡 Tip Working reference apps/example/ in the leadtype repo is the production docs site for these docs. It runs the same pipeline you just ran, on TanStack Start, with markdown content negotiation, sitemap regeneration, and JSON-LD wired up. Clone it when you want a copy-pastable end-to-end setup.\n\n```bash npx leadtype generate \\ --src . \\ --out public \\ --base-url https://example.com ``` ```text public/ ├── llms.txt ├── llms-full.txt └── docs/ ├── index.md ├── llms.txt ├── sitemap.xml ├── sitemap.md ├── robots.txt ├── agent-readability.json ├── search-index.json └── search-content.json ```","Quickstart\n\nInstall leadtype, run the hosted-docs pipeline once, and inspect the generated artifacts.\n\nQuickstart\n\nChoose the next setup step\n\nGoal Next page -- -- Wire the generator into an app build Connect a docs site Render HTML pages and an \"On this page\" sidebar Render MDX and TOC Serve markdown, sitemaps, robots, and JSON-LD for agents Optimize docs for agents Query the generated static search index Add search Publish AGENTS.md inside an npm package Bundle docs into a package Connect a docs site Render MDX and TOC Make the site agent-readable Bundle docs into a package","CLI\n\nleadtype generate and leadtype lint — flags, exit codes, and JSON output.\n\nCLI\n\nTwo commands generate runs the full pipeline, lint validates content. Run leadtype help [options] ```","CLI\n\nleadtype generate and leadtype lint — flags, exit codes, and JSON output.\n\nCLI\n\ngenerate\n\nConvert MDX, then either produce website artifacts default or a package bundle --bundle . Flag Default Description -- -- -- --src ; summary: { filesScanned: number; errors: number; warnings: number; }; }; ```","Lint rules\n\nSchema, link, and navigation checks. CLI and library API.\n\nLint rules\n\nDefault schemas\n\nDocs frontmatter\n\nField Required Type -- -- -- title Yes non-empty string description No string icon No string deprecated No boolean deprecatedReason No string experimental No boolean canary No boolean new No boolean draft No boolean tags No string array group No string or string array availableIn No array of framework, url?, title? full No boolean lastModified and lastAuthor are produced by the converter when --enrich-git is set. Don't author them.","Lint rules\n\nSchema, link, and navigation checks. CLI and library API.\n\nLint rules\n\nDefault schemas\n\nChangelog frontmatter\n\nField Required Type -- -- -- title Yes non-empty string version Yes SemVer string date Yes ISO-8601 or parseable date description No string icon No string type No release , improvement , retired , or deprecation tags No string array canary No boolean authors No string or string array draft No boolean","Lint rules\n\nSchema, link, and navigation checks. CLI and library API.\n\nLint rules\n\nDefault schemas\n\nmeta.json\n\nField Required Type -- -- -- pages Yes string array title No non-empty string root No boolean icon No string defaultOpen No boolean nav.sidebar No section or combined nav.label No string nav.mode No string","Lint rules\n\nSchema, link, and navigation checks. CLI and library API.\n\nLint rules\n\nCustom schemas\n\nPass a Valibot schema to extend or replace the defaults Once you provide a custom schema, unknown-field warnings apply to that schema. Add --error-unknown in CI to keep your contract strict.\n\n```ts import * as v from \"valibot\"; import { lintDocs } from \"leadtype/lint\"; const customFrontmatter = v.object({ title: v.pipe(v.string(), v.minLength(1)), audience: v.picklist([\"beginner\", \"advanced\"]), }); await lintDocs({ srcDir: \"docs\", schemas: { frontmatter: customFrontmatter }, }); ```","Lint rules\n\nSchema, link, and navigation checks. CLI and library API.\n\nLint rules\n\nPractical guidance\n\nRun lint before leadtype generate so content errors fail fast. Use --format github in GitHub Actions and --format json in any other CI. Treat unresolved-placeholder as a content bug first — usually a missing entry in availableIn or a stale URL template. After a docs move, lint and run meta.json updates together; they drift at the same time. For wiring lint into pipelines, see Validate in CI.","LLM files\n\nGenerate llms.txt for hosted websites and AGENTS.md for npm-bundled offline reading.\n\nLLM files\n\nThe leadtype/llm entry point produces four flavors of agent-facing output, all derived from the same docs source generateLlmsTxt — for hosted websites. Emits the /llms.txt convention with root-relative markdown mirror links. generateLLMFullContextFiles — root /llms-full.txt fallback containing all generated markdown docs. Pairs with generateLlmsTxt . generateAgentReadabilityArtifacts — docs-scoped sitemap.xml , sitemap.md , robots.txt , and JSON manifest data that a host app can merge into site-level files. generateAgentsMd — for npm-bundled docs. Emits an AGENTS.md index with relative ./docs/ A library that does one thing well. - Helper that handles the boring parts. - Type-safe by default. - Works in any runtime. ## Best Starting Points - [Documentation](/docs/index.md) - [Quickstart](/docs/quickstart.md) ## Get Started Five-minute happy path and the mental model. - [Quickstart](/docs/quickstart.md): Install and run the pipeline. - [How it works](/docs/how-it-works.md): The mental model. ## Reference CLI flags and conversion APIs. - [CLI](/docs/reference/cli.md): Every flag. ```","LLM files\n\nGenerate llms.txt for hosted websites and AGENTS.md for npm-bundled offline reading.\n\nLLM files\n\nTypical sequence\n\ngenerateLLMFullContextFiles and generateAgentReadabilityArtifacts read from A library that does one thing well. These docs ship inside the package so coding agents can read them offline. Open the topic file you need from the list below — paths are relative to this file. ## Get Started - [Quickstart](./docs/quickstart.md): Install and run the pipeline. - [How it works](./docs/how-it-works.md): The mental model. ## Reference - [CLI](./docs/reference/cli.md): Every flag. ```","LLM files\n\nGenerate llms.txt for hosted websites and AGENTS.md for npm-bundled offline reading.\n\nLLM files\n\nresolveDocsNavigation\n\nSame group-resolution logic the LLM files use, but returns the navigation manifest as a plain object — useful for driving a sidebar UI Write the result to src/generated/docs-nav.json and import it from your sidebar component Now your sidebar can import a static manifest with the same group tree the LLM files use.\n\n```ts const navigation = await resolveDocsNavigation({ srcDir: \".\", baseUrl: \"https://leadtype.dev\", groups: docsConfig.groups, }); if (navigation.unknown.length > 0) { for (const { urlPath, slug } of navigation.unknown) { process.stderr.write(`error: ${urlPath} declares unknown group \"${slug}\".\\n`); } process.exit(1); } ``` ```ts import { mkdir, writeFile } from \"node:fs/promises\"; await mkdir(\"src/generated\", { recursive: true }); await writeFile( \"src/generated/docs-nav.json\", `${JSON.stringify(navigation, null, 2)}\\n` ); ```","LLM files\n\nGenerate llms.txt for hosted websites and AGENTS.md for npm-bundled offline reading.\n\nLLM files\n\nTables of contents\n\nFor the heading slug contract and renderer wiring, see Render MDX and TOC. This section covers the build-time APIs only. resolveDocsNavigation includes a toc array on every page by default. The default range is h2 – h3 , which keeps page-level h1 titles out of sidebars. If you only need TOC data and not the full group tree, call resolveDocsTableOfContents For custom pipelines, extractDocsTableOfContents accepts a markdown or MDX string plus page URL metadata and returns plain JSON. It ignores frontmatter and fenced code blocks, and it uses the same slugifyDocsHeading helper that rendered headings must use to keep id attributes in sync.\n\n```ts const navigation = await resolveDocsNavigation({ srcDir: \".\", baseUrl: \"https://leadtype.dev\", groups: docsConfig.groups, toc: { minLevel: 2, maxLevel: 4 }, }); ``` ```ts const pages = await resolveDocsTableOfContents({ srcDir: \".\", baseUrl: \"https://leadtype.dev\", }); ```","LLM files\n\nGenerate llms.txt for hosted websites and AGENTS.md for npm-bundled offline reading.\n\nLLM files\n\nGroup design\n\nThe groups you pass to these APIs come from docs.config.ts . Two principles Use groups for routing, not sharding. Groups organize llms.txt , navigation, search metadata, and AGENTS.md . The root llms-full.txt remains the broad fallback. Write group descriptions for routing, not flavor text. Agents read those descriptions to decide which pages to load. \"How to install and run\" beats \"Welcome to our guides!\"","LLM files\n\nGenerate llms.txt for hosted websites and AGENTS.md for npm-bundled offline reading.\n\nLLM files\n\nBase URL precedence\n\nPass baseUrl explicitly, or use environment variables for layered fallback The package-specific LEADTYPE AGENT BASE URL lets each package override an org-wide default. BASE URL covers most CI/deployment platforms, and a final hardcoded fallback keeps local builds working without env setup.\n\n```ts const baseUrl = process.env.LEADTYPE_AGENT_BASE_URL || process.env.BASE_URL || process.env.PORTLESS_URL || \"https://leadtype.dev\"; ```","Remark plugins\n\nThe default plugin stack that flattens MDX components into markdown.\n\nRemark plugins\n\nThe remark stack is what turns interactive MDX into agent-readable markdown. Imports get stripped first, placeholders get resolved, then each named component is flattened into a markdown equivalent. Order matters.\n\n```ts import { defaultRemarkPlugins, remarkInclude, remarkTypeTableToMarkdown, } from \"leadtype/remark\"; ```","Remark plugins\n\nThe default plugin stack that flattens MDX components into markdown.\n\nRemark plugins\n\nThe default stack\n\ndefaultRemarkPlugins runs the stack in this order 1. remarkRemoveImports — strip MDX import and export statements. 2. remarkRemoveJsxComments — strip / ... / JSX comments. 3. remarkResolveDocPlaceholders — replace framework and similar placeholders in URLs. 4. remarkAudienceToMarkdown — include ri --> rj --> rd --> rau --> rs --> rc --> rcd --> rdt --> rm --> rct --> rst --> rt --> rtt --> ra --> rts --> rft --> rp --> re --> out` ```","Remark plugins\n\nThe default plugin stack that flattens MDX components into markdown.\n\nRemark plugins\n\nThe default stack\n\n p !== remarkTypeTableToMarkdown), [remarkTypeTableToMarkdown, { basePath: process.cwd() }], ]; ``` ```mdx ```","Remark plugins\n\nThe default plugin stack that flattens MDX components into markdown.\n\nRemark plugins\n\nPlugin selection rules\n\nUse defaultRemarkPlugins for any agent-facing or LLM output. Add remarkInclude when docs are composed from shared fragments. Use individual plugins only when you intentionally want to omit a flattener e.g. you don't use /docs/search-index.json /docs/search-content.json ```","Search\n\nStatic search index, runtime helpers, and source-grounded answer streaming.\n\nSearch\n\nRuntime search\n\nThe runtime is edge-safe — no Node APIs, works on Vercel, Cloudflare, and anywhere else Results include heading paths, hash URLs, and snippets ready for a search UI. Search is still local and dependency-free, but it is not exact-token only. Query terms expand through lightweight stemming, prefix matches, typo-tolerant fallbacks, and a small built-in synonym map. Exact matches keep the highest weight so API names and config keys stay precise. Pass synonyms when your docs use product-specific vocabulary\n\n```ts import { searchDocs, type DocsSearchIndex, type DocsSearchContentStore, } from \"leadtype/search\"; import indexJson from \"../public/docs/search-index.json\"; import contentJson from \"../public/docs/search-content.json\"; const results = searchDocs( indexJson as DocsSearchIndex, \"tabs install\", { content: contentJson as DocsSearchContentStore } ); ``` ```ts const results = searchDocs(index, \"starter\", { content, synonyms: { starter: [\"quickstart\", \"getting started\"], }, }); ```","Search\n\nStatic search index, runtime helpers, and source-grounded answer streaming.\n\nSearch\n\nReading docs at runtime\n\nThe same index doubles as a virtual filesystem. Three readers, picked by what you have Use readDocsContentFile when you need the entire page for context links . Use readDocsContentChunk when a search result already named the right heading.\n\n```ts import { listDocsContentFiles, readDocsContentFile, readDocsContentChunk, } from \"leadtype/search\"; const allFiles = listDocsContentFiles(index); const wholePage = readDocsContentFile(index, \"guides/quickstart\", content); const oneChunk = readDocsContentChunk(index, \"chunk-0\", content); ```","Search\n\nStatic search index, runtime helpers, and source-grounded answer streaming.\n\nSearch\n\nSource-grounded answers\n\ncreateAnswerContext turns a query plus retrieved chunks into a system and prompt you pass to any model The system message instructs the model to answer only from the retrieved context, cite sources with 1 -style references, and say so when the context is insufficient.\n\n```ts import { createAnswerContext } from \"leadtype/search\"; const context = createAnswerContext(index, \"how do I run lint?\", { content, productName: \"My Library\", }); // → { system, prompt, sources } ```","Search\n\nStatic search index, runtime helpers, and source-grounded answer streaming.\n\nSearch\n\nStreaming via provider entry points\n\nThree thin wrappers around createAnswerContext that stream a Response and surface sources separately. Use one matching your runtime response is a plain text Response. sources is metadata for citation links — display it separately, don't embed it in the streamed answer. For TanStack, pass an explicit adapter . For Cloudflare, build one with createCloudflareDocsAdapter provider, model, options binding env.AI.gateway \"docs\" .\n\n```ts import { streamDocsAnswer } from \"leadtype/search/vercel\"; // Vercel AI SDK / AI Gateway import { streamDocsAnswer } from \"leadtype/search/tanstack\"; // TanStack AI import { streamDocsAnswer } from \"leadtype/search/cloudflare\"; // Cloudflare AI Gateway / Workers AI ``` ```ts const { response, sources } = streamDocsAnswer({ index, content, query, model: \"openai/gpt-5.5\", productName: \"My Library\", }); ```","Search\n\nStatic search index, runtime helpers, and source-grounded answer streaming.\n\nSearch\n\nBash tool adapters\n\nWhen you want an agent to explore docs with shell commands instead of receiving pre-selected chunks The adapter exposes a read-only virtual /docs filesystem with ls , cat , find , grep , and rg . Network commands, code execution, and writes are disabled. Use createDocsBashTool for Vercel AI SDK tool sets and createDocsBashTools for TanStack-compatible tools over the same filesystem.\n\n```ts import { createDocsBashTool, createDocsBashTools } from \"leadtype/search/bash\"; const { tools, instructions } = await createDocsBashTool(index, content); ```","Search\n\nStatic search index, runtime helpers, and source-grounded answer streaming.\n\nSearch\n\nAbuse guards\n\nReusable utilities for the request path Helper Purpose -- -- validateDocsQuery Trim and cap query text. readJsonWithLimit Reject oversized JSON bodies before parse. getClientIdentifier Read common proxy IP headers. createMemoryRateLimiter Implements RateLimiter for demos. The in-memory limiter is fine for demos. Production apps should adapt the RateLimiter interface to a shared store — Redis, Vercel KV, Cloudflare KV, or Durable Objects.","Search\n\nStatic search index, runtime helpers, and source-grounded answer streaming.\n\nSearch\n\nWhen to add embeddings\n\nStart with the local index. It is static, cheap, edge-safe, and fast for exact API names, config keys, error messages, and paths. Add embeddings only when Users search with vocabulary that doesn't match the docs e.g. \"make it faster\" matching a \"performance optimization\" page . Your docs grow past tens of thousands of chunks and the cold-start memory hit becomes noticeable. Even then, keep the lexical index for exact matches and layer embeddings on top — they're complementary, not replacements."]} +{"version":2,"generatedAt":"2026-05-11T23:20:44.313Z","chunks":["Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nLeadtype does not ship UI components. Your docs app owns runtime rendering, styling, and accessibility — it only has to honor a small naming contract so the remark pipeline can flatten each component into markdown for agents, search, and llms-full.txt .","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nWhy flatten at all?\n\nInteractive MDX components like Body content goes here. ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nCards\n\nA grid of short, linked entry points. Flattens to a bullet list of links. Convert Remark Search\n\n```tsx ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nSteps\n\nNumbered walkthroughs. Flattens to an ordered list with bold step titles. 1. Author docs in MDX Use the components in this list as authoring affordances. 2. Run the conversion leadtype generate writes flattened markdown to public/docs/ . 3. Serve both formats HTML for humans, .md for agents — same URL, content negotiated by the Accept header.\n\n```tsx Use the components in this list. `leadtype generate` writes flattened markdown. ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nTabs\n\nGroup equivalent content. Flattens to bold headings followed by content so agents do not need a JSX-aware renderer to read every variant. tanstack-start Use a Vite middleware dev/preview and a Nitro middleware prod to negotiate the Accept header. next-js Wire content negotiation in middleware.ts and serve .md from a route handler. vite A configureServer middleware is enough for static deployments where .md files live in public/ .\n\n```tsx ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nCommandTabs\n\nPackage-manager-aware install or run commands. Flattens to a markdown table with one row per manager. Use mode=\"install\" when command is a package name, mode=\"run\" when command is a CLI name, and mode=\"create\" for starter commands. Use the commands prop for exact per-manager overrides. Package manager Command -- -- npm npm install leadtype pnpm pnpm add leadtype yarn yarn add leadtype bun bun add leadtype Package manager Command -- -- npm npx leadtype lint pnpm pnpm dlx leadtype lint yarn yarn dlx leadtype lint bun bunx leadtype lint\n\n```tsx ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nPrompt\n\nDisplays an agent-ready prompt with a copy action. Flattening preserves the prompt body as a fenced prompt block so copied instructions also survive in .md , root llms-full.txt , and bundled AGENTS.md output. Copy prompt for your coding agent Use this after generating artifacts.\n\n```tsx Inspect `public/docs/agent-readability.json`, then wire markdown responses before the HTML docs route. ``` ```prompt Inspect `public/docs/agent-readability.json`, then wire markdown responses before the HTML docs route. ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nAudience\n\nSplits browser-only and agent-only guidance without forking the page. Human content renders in the docs UI and is omitted from markdown output; agent content is hidden in the browser and included in generated markdown. This sentence appears only in generated markdown for agents.\n\n```tsx Click the robot icon in the header. Read generated markdown before editing runtime routes. ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nFileTree\n\nShows project structure in guides and release instructions. Flattening emits a fenced text tree so agents can read the same hierarchy without JSX.\n\n```tsx ``` ```text public/ ├── llms.txt └── docs/ └── index.md ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nAccordion\n\nCollapsible details for secondary content. Flattening ignores open/closed state and emits every item — accordions are not a place to hide content from agents. When should I use accordions? Use them for supporting details, troubleshooting notes, and optional reference material. Closed content is still flattened by the remark pipeline. Are accordions a good place to hide content from LLMs? No. Conversion ignores the open/closed state and emits everything inside.\n\n```tsx Use them for supporting details and optional reference material. ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nTopicSwitcher\n\nNavigation across equivalent docs topics — frameworks, SDKs, runtimes, deployment targets, product areas. Reader-facing only; it does not automatically read LLM topic config. Framework React — React integration Vue — Vue integration Svelte — Svelte integration\n\n```tsx ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nTypeTable and ExtractedTypeTable\n\nTypeTable is for explicit prop or type rows you already know. ExtractedTypeTable reads a TypeScript file at conversion time and extracts the table from a named type — keep its path stable. Property Type Description Default Required -- -- -- -- -- title string Heading rendered above the callout body. - ✅ Required variant CalloutVariant Visual treatment for the callout. info Optional deprecated \\ \\ boolean\\ \\ deprecated Marks the row as deprecated. false Optional\n\n```tsx ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nExample\n\nData-driven preview and source examples. The host component receives code as data; add file loaders or dynamic imports outside leadtype when an example needs app-specific behavior.\n\n```tsx The host app owns styling and runtime components while leadtype owns conversion. ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nMermaid\n\nDiagrams authored as plain text. Renders client-side as interactive SVG. Flattening preserves the source as a fenced mermaid block so other tools can render the diagram from the markdown copy.\n\n```tsx |remark| Markdown Markdown -->|llms.txt| Agents`} /> ``` ```mermaid `graph LR MDX -->|remark| Markdown Markdown -->|search index| API Markdown -->|llms.txt| Agents` ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nGuidelines\n\nKeep runtime components in your docs app. Leadtype stays out of UI. Keep component names stable. Renaming resolver page1 --> resolver page2 --> resolver page3 --> resolver resolver --> nav resolver --> llms resolver --> agents` ```","Frontmatter\n\nRequired fields, group semantics, and how authored MDX becomes a navigation tree.\n\nFrontmatter\n\nHow groups become a nav tree\n\nNested groups\n\nDeclare children in the config to build deeper trees A page sets group remote-source and lands in that nested slot. Only leaf groups no children directly contain pages; non-leaf groups are headings only.\n\n```ts { slug: \"docs-site\", title: \"Build a Docs Site\", children: [ { slug: \"remote-source\", title: \"Remote source\" }, { slug: \"connect-docs-site\", title: \"Connect a docs site\" }, ], } ```","Frontmatter\n\nRequired fields, group semantics, and how authored MDX becomes a navigation tree.\n\nFrontmatter\n\nOptional fields\n\nThe default lint schema also accepts Property Type Description Default Required -- -- -- -- -- icon string Icon name resolved by your sidebar component. - Optional deprecated boolean Marks the page as deprecated in nav and search. - Optional deprecatedReason string Short message paired with deprecated. - Optional experimental boolean Marks the page as experimental. - Optional canary boolean Hides from stable channels. - Optional new boolean Highlights the page as recently added. - Optional draft boolean Excludes from generation entirely. - Optional tags string\\ Free-form tags for search facets. - Optional availableIn Array\\<\\ framework, url?, title? Cross-framework availability map for TopicSwitcher pages. - Optional full boolean Layout hint for docs UIs that support full-width pages. - Optional lastModified and lastAuthor are filled in automatically when you pass --enrich-git to the CLI. Don't author them by hand.","Frontmatter\n\nRequired fields, group semantics, and how authored MDX becomes a navigation tree.\n\nFrontmatter\n\nLint rules\n\nleadtype lint enforces the schema, so violations surface in CI before they reach a build. The relevant rules schema — a required field is missing or has the wrong type. unknown-field — a top-level field isn't in the schema warn by default; --error-unknown to fail . parse-error — frontmatter or meta.json doesn't parse. invalid-link — a /docs/... link points to a route that doesn't exist. unresolved-placeholder — a doc URL still contains an unresolved framework placeholder. cross-framework-link — a framework-scoped page links to another framework's docs. See Lint rules for the full reference and how to extend the schema.","Frontmatter\n\nRequired fields, group semantics, and how authored MDX becomes a navigation tree.\n\nFrontmatter\n\nWhat this gives you\n\nOnce frontmatter is consistent, the rest of the pipeline works without per-page configuration. The same group value drives The sidebar position The llms.txt section Search metadata and AGENTS.md grouping The search filtering UI if you build one Cross-framework link checks in lint One field, one source of truth.","Add search\n\nGenerate a static docs search index, query it at runtime, and optionally stream source-grounded answers.\n\nAdd search\n\nLeadtype search is static by default. Build time produces two JSON files; runtime code imports or fetches those files and queries them without a database.","Add search\n\nGenerate a static docs search index, query it at runtime, and optionally stream source-grounded answers.\n\nAdd search\n\nGenerate the files\n\nleadtype generate writes search files in site mode If you run the pipeline from scripts, call the search generator after conversion This writes The index contains compact ranking data. The content store contains the text used for excerpts and answer context.\n\n```bash npx leadtype generate --src . --out public --base-url https://example.com ``` ```ts import { generateDocsSearchFiles } from \"leadtype/search/node\"; await generateDocsSearchFiles({ outDir: \"public\", baseUrl: \"https://example.com\", }); ``` ```txt public/docs/search-index.json public/docs/search-content.json ```","Add search\n\nGenerate a static docs search index, query it at runtime, and optionally stream source-grounded answers.\n\nAdd search\n\nQuery at runtime\n\nResults include page URLs, heading paths, hash URLs, and snippets. Render them in your own search UI.\n\n```ts import { searchDocs, type DocsSearchContentStore, type DocsSearchIndex, } from \"leadtype/search\"; import contentJson from \"../public/docs/search-content.json\"; import indexJson from \"../public/docs/search-index.json\"; const index = indexJson as DocsSearchIndex; const content = contentJson as DocsSearchContentStore; const results = searchDocs(index, \"run lint\", { content }); ```","Add search\n\nGenerate a static docs search index, query it at runtime, and optionally stream source-grounded answers.\n\nAdd search\n\nAdd vocabulary aliases\n\nSearch starts with lexical matching, stemming, prefix matches, typo-tolerant fallbacks, and a small built-in synonym map. Add product-specific synonyms only when users search with words your docs do not use\n\n```ts const results = searchDocs(index, \"starter\", { content, synonyms: { starter: [\"quickstart\", \"getting started\"], }, }); ```","Add search\n\nGenerate a static docs search index, query it at runtime, and optionally stream source-grounded answers.\n\nAdd search\n\nOptional AI answers\n\nUse source-grounded answers only after basic search works. Leadtype retrieves chunks from the static index, builds a constrained prompt, and leaves model choice to the provider entry point you import Display sources next to the streamed response. Do not ask the model to answer from memory; the answer context is built from retrieved docs chunks.\n\n```ts import { streamDocsAnswer } from \"leadtype/search/vercel\"; const { response, sources } = streamDocsAnswer({ index, content, query: \"How do I run docs lint in CI?\", model: \"openai/gpt-5.5\", productName: \"My Library\", }); ```","Add search\n\nGenerate a static docs search index, query it at runtime, and optionally stream source-grounded answers.\n\nAdd search\n\nGuard the endpoint\n\nFor API routes that accept user queries, use the request helpers from leadtype/search validateDocsQuery to trim and cap query text. readJsonWithLimit to reject oversized JSON bodies. getClientIdentifier to read common proxy IP headers. createMemoryRateLimiter for demos. Production apps should adapt the rate limiter interface to a shared store such as Redis, Vercel KV, Cloudflare KV, or Durable Objects.","Add search\n\nGenerate a static docs search index, query it at runtime, and optionally stream source-grounded answers.\n\nAdd search\n\nVerify\n\npublic/docs/search-index.json and public/docs/search-content.json exist and are non-empty. Searching for an exact API name returns the expected reference page. Searching for a guide phrase returns a result with a section hash. AI answers cite sources from the returned sources metadata.","Connect a docs site\n\nBuild a shared docs app from source docs that live with the code they document.\n\nConnect a docs site\n\nUse this path when you run a docs app that renders docs from one or more source repos. This is the main Leadtype docs-site model content stays next to the code it documents, while the docs app clones or checks out that content during build and serves the generated artifacts. Your framework still owns routes, HTML, styling, and deployment. Leadtype owns the source-to-artifact pipeline.","Connect a docs site\n\nBuild a shared docs app from source docs that live with the code they document.\n\nConnect a docs site\n\nThe flow\n\n```mermaid `flowchart LR repo[\"source repo / docs/*.mdx\"] clone[\"checkout or clone / .docs-src/c15t\"] lint[\"leadtype lint\"] generate[\"leadtype generate\"] public[\"public/ / llms.txt · llms-full.txt / docs/*.md / search · agent metadata\"] app[\"docs app / routing + HTML\"] repo --> clone --> lint --> generate --> public --> app` ```","Connect a docs site\n\nBuild a shared docs app from source docs that live with the code they document.\n\nConnect a docs site\n\nFetch the source repo\n\nIn CI, check out the docs source before the docs app build. For a public repo, a shallow clone is enough For private repos, use your CI platform's checkout action or a read-only deploy key. The important part is that Leadtype receives a normal filesystem path whose root contains docs/ .\n\n```bash rm -rf .docs-src/c15t git clone --depth 1 https://github.com/c15t/c15t .docs-src/c15t ```","Connect a docs site\n\nBuild a shared docs app from source docs that live with the code they document.\n\nConnect a docs site\n\nLint before generate\n\nRun lint against the fetched docs before writing generated output Lint fails with file and line context for frontmatter, internal links, placeholders, and schema issues. That is easier to debug than a later app build using stale or partial artifacts.\n\n```bash npx leadtype lint .docs-src/c15t/docs \\ --format github \\ --error-unknown \\ --max-warnings 0 ```","Connect a docs site\n\nBuild a shared docs app from source docs that live with the code they document.\n\nConnect a docs site\n\nGenerate hosted artifacts\n\nPoint --src at the fetched repository root and --out at the docs app public directory That command writes public/llms.txt and public/llms-full.txt public/docs/ .md public/docs/search-index.json and public/docs/search-content.json public/docs/sitemap.xml , sitemap.md , robots.txt , and agent-readability.json Use --json in CI so automation can record resolved groups, output files, filters, and search index stats.\n\n```bash npx leadtype generate \\ --src .docs-src/c15t \\ --out public \\ --base-url https://docs.example.com \\ --json ```","Connect a docs site\n\nBuild a shared docs app from source docs that live with the code they document.\n\nConnect a docs site\n\nWire it into the app build\n\nMake the source checkout, lint, and generation steps run before the framework build If the docs source and docs app live in the same repo, skip docs fetch and point --src at .\n\n```json { \"scripts\": { \"docs:fetch\": \"rm -rf .docs-src/c15t && git clone --depth 1 https://github.com/c15t/c15t .docs-src/c15t\", \"docs:lint\": \"leadtype lint .docs-src/c15t/docs --format github --error-unknown --max-warnings 0\", \"docs:generate\": \"leadtype generate --src .docs-src/c15t --out public --base-url https://docs.example.com --json\", \"build\": \"npm run docs:fetch && npm run docs:lint && npm run docs:generate && vite build\" } } ``` ```bash npx leadtype lint docs --error-unknown npx leadtype generate --src . --out public --base-url https://docs.example.com ```","Connect a docs site\n\nBuild a shared docs app from source docs that live with the code they document.\n\nConnect a docs site\n\nConfigure product and groups\n\nThe source repo should own docs/docs.config.ts so its groups and product metadata version with the docs. leadtype generate loads this file automatically from the docs folder Pages declare group in frontmatter. The config declares titles, order, and descriptions. Together they drive navigation, llms.txt , search metadata, and package AGENTS.md sections. If no config exists, the CLI infers groups from frontmatter, but inferred groups have no descriptions or custom order. See Frontmatter.\n\n```ts import { defineDocsConfig } from \"leadtype\"; export default defineDocsConfig({ product: { name: \"c15t\", summary: \"Consent infrastructure for modern web apps.\", bullets: [\"Framework integrations.\", \"Consent primitives.\", \"Audit-friendly docs.\"], bestStartingPoints: [{ urlPath: \"/docs\" }, { urlPath: \"/docs/quickstart\" }], }, groups: [ { slug: \"get-started\", title: \"Get Started\" }, { slug: \"guides\", title: \"Guides\" }, { slug: \"reference\", title: \"Reference\" }, ], }); ```","Connect a docs site\n\nBuild a shared docs app from source docs that live with the code they document.\n\nConnect a docs site\n\nUse scripts for custom pipelines\n\nThe CLI is the happy path. Use the library APIs directly when you need custom plugin order, filters, or generated JSON paths. Keep conversion first because LLM files, search, and Agent Readability artifacts read the generated markdown. Write navigation to a generated JSON file if your sidebar should use the same group tree as llms.txt . Write agentReadability.manifest if your runtime needs to merge docs pages with marketing, blog, changelog, or product routes.\n\n```ts import { convertAllMdx } from \"leadtype/convert\"; import { generateAgentReadabilityArtifacts, generateLLMFullContextFiles, generateLlmsTxt, resolveDocsNavigation, } from \"leadtype/llm\"; import { defaultRemarkPlugins, remarkInclude } from \"leadtype/remark\"; import { generateDocsSearchFiles } from \"leadtype/search/node\"; import docsConfig from \"../.docs-src/c15t/docs/docs.config\"; const sourceRoot = \".docs-src/c15t\"; await convertAllMdx({ srcDir: `${sourceRoot}/docs`, outDir: \"public/docs\", remarkPlugins: [remarkInclude, ...defaultRemarkPlugins], enrichFrontmatterFromGit: true, }); await generateLlmsTxt({ srcDir: sourceRoot, outDir: \"public\", baseUrl: \"https://docs.example.com\", product: docsConfig.product, groups: docsConfig.groups, }); await generateLLMFullContextFiles({ outDir: \"public\", baseUrl: \"https://docs.example.com\", product: { name: docsConfig.product.name }, groups: docsConfig.groups, }); await generateDocsSearchFiles({ outDir: \"public\", baseUrl: \"https://docs.example.com\", }); const agentReadability = await generateAgentReadabilityArtifacts({ outDir: \"public\", baseUrl: \"https://docs.example.com\", product: docsConfig.product, groups: docsConfig.groups, }); const","Connect a docs site\n\nBuild a shared docs app from source docs that live with the code they document.\n\nConnect a docs site\n\nUse scripts for custom pipelines\n\nait generateAgentReadabilityArtifacts({ outDir: \"public\", baseUrl: \"https://docs.example.com\", product: docsConfig.product, groups: docsConfig.groups, }); const navigation = await resolveDocsNavigation({ srcDir: sourceRoot, baseUrl: \"https://docs.example.com\", groups: docsConfig.groups, }); ```","Connect a docs site\n\nBuild a shared docs app from source docs that live with the code they document.\n\nConnect a docs site\n\nWire the app runtime\n\nAfter generation, choose the runtime pieces your site needs Render source MDX as HTML with your own components Render MDX and TOC. Return markdown for agent requests and serve discovery files Optimize docs for agents. Add local search and optional source-grounded answers Add search.","Connect a docs site\n\nBuild a shared docs app from source docs that live with the code they document.\n\nConnect a docs site\n\nVerify\n\nAfter a clean build, inspect these files public/docs/index.md — converted markdown for the source repo home page. public/llms.txt — hosted routing index with page-level markdown links. public/llms-full.txt — all generated markdown docs in one fallback file. public/docs/search-index.json and public/docs/search-content.json — non-empty search files. public/docs/agent-readability.json — manifest for markdown responses, JSON-LD, sitemap, and robots helpers. Then start your app and check at least one browser HTML page and one markdown response path.","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\nUse this guide when you already have a docs site and want agents to find, fetch, attribute, and cite the same content humans read in the browser. Leadtype handles the generated files. Your app wires those files into routing and HTML. The default output shape is based on the repo's agent evals. See Evals for the benchmark summary and the open question around larger-corpus llms-full.txt scaling.","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\nWhat good looks like\n\nAn agent-readable docs site has four layers 1. Discovery files /llms.txt , /sitemap.xml , /sitemap.md , and /robots.txt tell agents what exists and where to start. 2. Markdown retrieval Each docs page has a markdown mirror at /docs/page.md , and agent requests to /docs/page can receive markdown instead of HTML. 3. Structured HTML metadata Human HTML pages include JSON-LD, canonical links, and markdown alternate links so agents can extract page identity without guessing from the DOM. 4. Attribution metadata Markdown responses include canonical url and last updated frontmatter so copied content keeps its source and freshness.","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\n1. Generate the artifacts\n\nRun the site-mode pipeline before your app build This writes the docs-scoped files under public/docs/ and the top-level public/llms.txt The generated agent-readability.json manifest is the bridge between build-time content and runtime requests. It contains page URLs, markdown mirror paths, titles, descriptions, group navigation, and freshness dates.\n\n```bash npx leadtype generate \\ --src . \\ --out public \\ --base-url https://leadtype.dev \\ --name \"My product\" \\ --summary \"One sentence about the product.\" ``` ```txt public/ ├── llms.txt ├── llms-full.txt └── docs/ ├── index.md ├── quickstart.md ├── llms.txt ├── sitemap.xml ├── sitemap.md ├── robots.txt └── agent-readability.json ```","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\n2. Add one middleware\n\nPut the agent-readable routes before your HTML docs route. This Node/Bun example handles root discovery files, docs-scoped discovery files, direct .md URLs, and Accept text/markdown requests in one place If you also have marketing, blog, changelog, or product pages, pass them through the optional pages field — the regenerator merges them into the rebased output The other generated artifacts — /llms.txt , /docs/llms.txt , /llms-full.txt , /docs/agent-readability.json — use root-relative links and serve fine as static files straight from public/ . Keep the docs-scoped versions too /docs/sitemap.xml etc. . Audits and agents may request both /sitemap.xml and /docs/sitemap.xml , especially when the audited URL is /docs .\n\n```ts import { readFile } from \"node:fs/promises\"; import { join } from \"node:path\"; import manifestJson from \"../public/docs/agent-readability.json\" with { type: \"json\", }; import { createAgentMarkdownResponse, createRobotsTxtResponse, createSitemapMarkdownResponse, createSitemapXmlResponse, type AgentReadabilityManifest, type MarkdownMirrorTarget, } from \"leadtype/llm/readability\"; const manifest = { ...manifestJson, version: 1, } as AgentReadabilityManifest; async function readMarkdownFile( target: MarkdownMirrorTarget ): Promise { try { return await readFile(join(process.cwd(), \"public\", target.filePath), \"utf8\"); } catch (error) { if ( typeof error === \"object\" && error !== null && \"code\" in error && (error.code === \"ENOENT\" || error.code === \"ENOTDIR\") ) { return null; } throw error; } } export async function handleDocsRequest( request: Request ): Promise { if (request.method !== \"GET\" && request.method !== \"HEAD\") { return null; } const url = new URL(request.url); const requestOrigin = url.origin; switch (url.pathname) { case \"/sitemap.xml\": case \"/docs/sitemap.xml\": return createSitemapXmlResponse({ manifest, requestOrigin }); case","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\n2. Add one middleware\n\nstOrigin = url.origin; switch (url.pathname) { case \"/sitemap.xml\": case \"/docs/sitemap.xml\": return createSitemapXmlResponse({ manifest, requestOrigin }); case \"/sitemap.md\": case \"/docs/sitemap.md\": return createSitemapMarkdownResponse({ manifest, requestOrigin }); case \"/robots.txt\": return createRobotsTxtResponse({ manifest, requestOrigin }); case \"/docs/robots.txt\": return createRobotsTxtResponse({ manifest, requestOrigin, sitemapUrlPath: \"/docs/sitemap.xml\", }); default: return createAgentMarkdownResponse({ urlPath: url.pathname, method: request.method, headers: Object.fromEntries(request.headers), manifest, readMarkdownFile, requestOrigin, }); } } ``` ```ts return createSitemapXmlResponse({ manifest, requestOrigin, pages: [...manifest.pages, ...marketingPages, ...blogPages], }); ```","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\n3. Add JSON-LD to docs pages\n\nUse the manifest entry for the current page and render Schema.org JSON-LD into the HTML head Use renderJsonLd page, manifest if your framework has a typed metadata API. Use renderJsonLdScript page, manifest if your framework expects an HTML string. Also add canonical and markdown alternate links The JSON-LD gives agents the page title, description, canonical URL, last modified date, and breadcrumbs without scraping your rendered layout.\n\n```ts import agentManifest from \"../public/docs/agent-readability.json\"; import { renderJsonLd, renderJsonLdScript } from \"leadtype/llm/readability\"; const page = agentManifest.pages.find( (entry) => entry.urlPath === \"/docs/quickstart\" ); if (page) { const jsonLd = renderJsonLd(page, agentManifest); const script = renderJsonLdScript(page, agentManifest); } ``` ```html ```","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\n4. Return markdown to agents\n\nThe middleware above uses createAgentMarkdownResponse . It returns a Web Response or null when the path is not an agent-oriented markdown request and handles Accept text/markdown and Accept text/plain content negotiation q-values respected . Known AI user-agent headers GPTBot, ClaudeBot, Bingbot, AmazonBot, MetaExternalAgent, PerplexityBot, MistralBot, AppleBot, ByteSpider, YouBot, … . Direct .md URLs such as /docs/quickstart.md . canonical url and last updated frontmatter aliases injected automatically. 200 markdown responses for missing docs pages, so agents do not discard the body. Content-Type text/markdown; charset=utf-8 , Vary Accept , User-Agent , Link <… ; rel=\"canonical\" , Cache-Control public, max-age=300, must-revalidate . readMarkdownFile may be sync or async. In Node/Bun, read from disk. In Cloudflare, fetch from KV/R2 or an asset binding. In Vercel Edge, fetch from the deployment's static asset URL. Put that logic wherever your framework can intercept docs requests before its HTML route Framework/runtime Where it usually goes -- -- TanStack Start / nitro server/middleware/agent-readability.ts h3 .","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\n4. Return markdown to agents\n\nn intercept docs requests before its HTML route Framework/runtime Where it usually goes -- -- TanStack Start / nitro server/middleware/agent-readability.ts h3 . One middleware handles both the markdown response and the sitemap/robots regenerators — runs in dev, preview, and prod. See apps/example/server/middleware/agent-readability.ts for the canonical reference. Nuxt server/middleware/agent-readability.ts h3 — same shape as the TanStack Start example. Next.js middleware.ts Edge or a catch-all route handler before the docs page. Astro An endpoint at pages/docs/ ...slug .md.ts or astro middleware . Cloudflare Workers/Pages Worker fetch handler with KV/R2 asset binding for the markdown reader. Express/Hono/Fastify Middleware before the docs HTML route. Tip if you keep static sitemap.xml / sitemap.md / robots.txt files in your build output, your framework's static handler may serve them before your middleware can rebase URLs to the live origin. Either delete the static copies after the build so the middleware always runs or make sure your middleware is registered ahead of static-asset serving.","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\n4. Return markdown to agents\n\norigin. Either delete the static copies after the build so the middleware always runs or make sure your middleware is registered ahead of static-asset serving. Do not rewrite llms.txt , sitemap.xml , sitemap.md , robots.txt , llms-full.txt , or agent-readability.json to page markdown. The helper leaves those artifact paths alone.","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\n4. Return markdown to agents\n\nWhy the sitemap and robots responses are regenerated, not static\n\nsitemap.xml 's ; function textFromChildren(children: unknown): string { if (typeof children === \"string\" || typeof children === \"number\") { return String(children); } if (Array.isArray(children)) { return children.map(textFromChildren).join(\"\"); } if (isValidElement(children)) { const elementProps = children.props as { children?: unknown }; return textFromChildren(elementProps.children); } return \"\"; } function createHeading(level: 1 | 2 | 3 | 4 | 5 | 6) { return ({ children, id, ...props }: HeadingProps) => { const Component = `h${level}` as const; const headingId = id ?? slugifyDocsHeading(textFromChildren(children)); return ( {children} ); }; } ```","Render MDX and TOC\n\nSet up runtime MDX components, stable heading IDs, and a table of contents from the generated navigation manifest.\n\nRender MDX and TOC\n\nGenerate navigation with TOC data\n\nresolveDocsNavigation includes toc on every page. The default range is h2 to h3 . Write the navigation object to a generated JSON file and import it from your sidebar.\n\n```ts import { resolveDocsNavigation } from \"leadtype/llm\"; import docsConfig from \"../docs/docs.config\"; const navigation = await resolveDocsNavigation({ srcDir: \".\", baseUrl: \"https://example.com\", groups: docsConfig.groups, toc: { minLevel: 2, maxLevel: 4 }, }); ```","Render MDX and TOC\n\nSet up runtime MDX components, stable heading IDs, and a table of contents from the generated navigation manifest.\n\nRender MDX and TOC\n\nRender the sidebar\n\nLook up the current page in the manifest and pass currentPage.toc to your sidebar component. The example app includes a complete React implementation with scroll-spy, hash sync, active highlighting, and sticky positioning apps/example/src/components/table-of-contents.tsx","Render MDX and TOC\n\nSet up runtime MDX components, stable heading IDs, and a table of contents from the generated navigation manifest.\n\nRender MDX and TOC\n\nTroubleshooting\n\nTOC links do not scroll anywhere. Your heading IDs do not match the extracted slugs. Use slugifyDocsHeading in the rendered heading components. A page TOC is empty. All headings are outside the configured minLevel and maxLevel range. Defaults exclude h1 and headings deeper than h3 . Sidebar order differs from llms.txt. The app is not using the same docs.config.ts groups as the generation step.","Validate in CI\n\nRun leadtype lint in CI so frontmatter, navigation, and link issues fail PRs before publish.\n\nValidate in CI\n\nleadtype lint reads source MDX, runs the schema and link checks, and exits non-zero on errors. Wire it into CI so docs PRs fail fast on the same rules that would otherwise blow up leadtype generate later in the pipeline.","Validate in CI\n\nRun leadtype lint in CI so frontmatter, navigation, and link issues fail PRs before publish.\n\nValidate in CI\n\nWhat it catches\n\nMissing or wrong-typed frontmatter fields schema rule . Top-level frontmatter fields not in the schema unknown-field . Frontmatter or meta.json that doesn't parse parse-error . Internal /docs/... links pointing at routes that don't exist invalid-link . Unresolved framework placeholders left in URLs unresolved-placeholder . Cross-framework links from a framework-scoped page to a different framework's docs cross-framework-link . See Lint reference for the full rule list and how to extend the schema.","Validate in CI\n\nRun leadtype lint in CI so frontmatter, navigation, and link issues fail PRs before publish.\n\nValidate in CI\n\nGitHub Actions\n\nUse --format github so violations render as inline annotations on the PR --error-unknown upgrades unknown-field warnings to errors — strict mode. --max-warnings 0 makes any remaining warning fail the job.\n\n```yaml name: Lint docs on: pull_request: paths: - \"docs/**\" - \"**/*.mdx\" jobs: lint: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: oven-sh/setup-bun@v2 - run: bun install - run: npx leadtype lint docs --format github --error-unknown --max-warnings 0 ```","Validate in CI\n\nRun leadtype lint in CI so frontmatter, navigation, and link issues fail PRs before publish.\n\nValidate in CI\n\nOther CI providers\n\nUse --format json for any CI that doesn't speak the GitHub annotations format The JSON output includes per-file violations and summary counts. Pipe it into your provider's reporter, post a PR comment, or upload as an artifact.\n\n```bash npx leadtype lint docs --format json --error-unknown > lint-report.json ```","Validate in CI\n\nRun leadtype lint in CI so frontmatter, navigation, and link issues fail PRs before publish.\n\nValidate in CI\n\nLocal pre-push hook\n\nCatch issues before they reach CI by running lint in a husky pre-push hook Keep it under a second by limiting the scan to changed files when you have many pages. The CLI accepts repeated --ignore globs to skip stale or generated paths.\n\n```bash #!/usr/bin/env sh npx leadtype lint docs --max-warnings 0 ```","Validate in CI\n\nRun leadtype lint in CI so frontmatter, navigation, and link issues fail PRs before publish.\n\nValidate in CI\n\nRun before generate\n\nWhen leadtype lint and leadtype generate both run in the same job, lint first Generate fails noisily on unknown groups or broken includes. Lint fails specifically on content schema problems with file/line context — much easier to debug.\n\n```bash npx leadtype lint docs --error-unknown npx leadtype generate --src . --out public --json ```","Validate in CI\n\nRun leadtype lint in CI so frontmatter, navigation, and link issues fail PRs before publish.\n\nValidate in CI\n\nWhat to fix first\n\nWhen CI fails on a lot of violations, fix them in this order 1. parse-error — frontmatter is broken; nothing else can validate. 2. schema — missing or wrong-typed required fields. 3. unresolved-placeholder — content bug, not a config bug. 4. invalid-link and cross-framework-link — usually a stale link after a docs move. 5. unknown-field — last; either delete the field or extend the schema.","How it works\n\nThe mental model: one MDX source, a remark pipeline, two output modes, three audiences.\n\nHow it works\n\nLeadtype takes one input — a folder of MDX — and produces every shape your docs need to take. This page names every piece so the rest of the docs make sense.","How it works\n\nThe mental model: one MDX source, a remark pipeline, two output modes, three audiences.\n\nHow it works\n\nThe pipeline\n\nThe remark stack is what turns interactive MDX components into agent-readable markdown. JSX gets flattened — a fm fm --> remark fm --> groups remark --> md md --> site_idx md --> search groups --> site_idx groups --> agents_md groups --> nav` ```","How it works\n\nThe mental model: one MDX source, a remark pipeline, two output modes, three audiences.\n\nHow it works\n\nTwo output modes\n\nleadtype generate has two modes that read the same source and emit different shapes Property Type Description Default Required -- -- -- -- -- Site mode default leadtype generate --out public Writes llms.txt, llms-full.txt, docs/search-index.json, docs/sitemap.xml, docs/sitemap.md, docs/robots.txt, docs/agent-readability.json, and docs/\\ .md to a public/ directory your docs website serves. This is what you wire into a Vite, Next.js, Astro, or TanStack Start build. - Optional Bundle mode leadtype generate --bundle --out packages/foo Writes AGENTS.md at the package root and docs/\\ .md beneath it, both with relative paths. Skips llms.txt, llms-full.txt, search, sitemap, robots, and Agent Readability files — those are website-only. Designed for npm tarballs that ship docs alongside the published code. - Optional","How it works\n\nThe mental model: one MDX source, a remark pipeline, two output modes, three audiences.\n\nHow it works\n\nThe artifacts\n\nProperty Type Description Default Required -- -- -- -- -- Markdown .md docs/\\ human site_out -- \"absolute URLs\" --> http_agent site_out -- \"search-index.json\" --> search_ui bundle_out -- \"version-matched AGENTS.md\" --> offline_agent` ```","How it works\n\nThe mental model: one MDX source, a remark pipeline, two output modes, three audiences.\n\nHow it works\n\nVocabulary\n\nA few terms you will see throughout the docs. Property Type Description Default Required -- -- -- -- -- flatten verb Convert an interactive MDX component into a portable markdown equivalent. A \\ site_run src --> bundle_run site_run --> site_out bundle_run --> bundle_out site_out --> humans site_out --> http_agents site_out --> search bundle_out --> offline_agents` ```","Leadtype\n\nOne MDX source. Hosted docs artifacts, package-bundled AGENTS.md, and search output from the same pipeline.\n\nLeadtype\n\nChoose your path\n\nPick the job that matches what you are building. Each path starts with the minimum setup, then links to the lower-level API reference only when you need it. Connect a docs site Add search Ship docs in your package","Leadtype\n\nOne MDX source. Hosted docs artifacts, package-bundled AGENTS.md, and search output from the same pipeline.\n\nLeadtype\n\nWhat you get\n\n1. Write once Author MDX with familiar components — Callout , Tabs , Steps , Mermaid , TypeTable , and others. Add group in frontmatter to place pages in the navigation tree. 2. Run \\ leadtype generate\\ For a website converts MDX to markdown, builds llms.txt plus root llms-full.txt , generates a search index, writes Agent Readability discovery files, and resolves navigation. With --bundle emits AGENTS.md plus per-topic .md files with relative links that still work after npm install. 3. Serve all of it Humans get HTML from your app. HTTP agents get markdown via content negotiation or /llms.txt . Package consumers can point their root AGENTS.md or README at node modules/ cli cli --> bundle bundle --> publish publish --> install install --> consume` ```","Bundle docs into a package\n\nShip agent-readable docs inside an npm tarball — AGENTS.md at the package root plus per-topic .md files.\n\nBundle docs into a package\n\nWhy AGENTS.md, not llms.txt?\n\nllms.txt is a website convention — a file at /llms.txt with absolute URLs that an agent fetches over HTTP. Inside an npm tarball it's the wrong shape every link points at a hosted URL the agent may not be able to reach, and no major coding agent looks for node modules/ 0) { for (const { urlPath, slug } of navigation.unknown) { process.stderr.write(`error: ${urlPath} declares unknown group \"${slug}\".\\n`); } process.exit(1); } await generateAgentsMd({ srcDir: REPO_ROOT, outDir: PACKAGE_ROOT, product: docsConfig.product, groups: docsConfig.groups, }); ```","Bundle docs into a package\n\nShip agent-readable docs inside an npm tarball — AGENTS.md at the package root plus per-topic .md files.\n\nBundle docs into a package\n\nVerify before publishing\n\nnpm pack --dry-run should list AGENTS.md docs/ / .md If AGENTS.md is missing, check files in package.json . If .md files are missing, check the --include / --exclude filters.\n\n```bash npx leadtype generate --bundle --src . --out packages/my-package cd packages/my-package && npm pack --dry-run ```","Bundle docs into a package\n\nShip agent-readable docs inside an npm tarball — AGENTS.md at the package root plus per-topic .md files.\n\nBundle docs into a package\n\nTell consuming projects to use the bundle\n\nAGENTS.md inside your tarball is available at node modules/ When working with the `` library, read the bundled docs in `node_modules//AGENTS.md` first — they're version-matched to the installed package and stay accurate as the library updates. ```","Bundle docs into a package\n\nShip agent-readable docs inside an npm tarball — AGENTS.md at the package root plus per-topic .md files.\n\nBundle docs into a package\n\nWhen to use this\n\nUse this when agents should understand the package from the installed dependency itself — coding agents that don't have web access, IDE assistants, CLI tools, or air-gapped environments. Don't use this if your only goal is a public docs website. For that, see Connect a docs site. You can use both — they read the same source MDX, just emit different shapes.","Bundle docs into a package\n\nShip agent-readable docs inside an npm tarball — AGENTS.md at the package root plus per-topic .md files.\n\nBundle docs into a package\n\nWhat's next\n\nCLI reference LLM files Lint in CI","Quickstart\n\nInstall leadtype, run the hosted-docs pipeline once, and inspect the generated artifacts.\n\nQuickstart\n\nFive minutes from a folder of MDX to generated docs artifacts.","Quickstart\n\nInstall leadtype, run the hosted-docs pipeline once, and inspect the generated artifacts.\n\nQuickstart\n\nInstall\n\nPackage manager Command -- -- npm npm install leadtype pnpm pnpm add leadtype yarn yarn add leadtype bun bun add leadtype leadtype ships a CLI plus focused library entry points. Start with the CLI; use the APIs only when your build needs custom plugin order, filtering, or output paths.","Quickstart\n\nInstall leadtype, run the hosted-docs pipeline once, and inspect the generated artifacts.\n\nQuickstart\n\nAuthor one page\n\nCreate docs/index.mdx in your repo Every page needs a title . Add group when the page should appear in generated navigation and llms.txt sections. See Frontmatter for the full content contract.\n\n```mdx --- title: \"My library\" description: \"What it does in one sentence.\" group: get-started --- # My library Welcome. ```","Quickstart\n\nInstall leadtype, run the hosted-docs pipeline once, and inspect the generated artifacts.\n\nQuickstart\n\nGenerate hosted docs output\n\nThat command reads docs/ .mdx , converts it to markdown, resolves groups, builds search JSON, and writes hosted agent artifacts. Open public/docs/index.md first. It shows what your MDX becomes after the remark component flattening pipeline runs. Then open public/llms.txt to see the hosted routing file that HTTP agents start from. 💡 Tip Working reference apps/example/ in the leadtype repo is the production docs site for these docs. It runs the same pipeline you just ran, on TanStack Start, with markdown content negotiation, sitemap regeneration, and JSON-LD wired up. Clone it when you want a copy-pastable end-to-end setup.\n\n```bash npx leadtype generate \\ --src . \\ --out public \\ --base-url https://example.com ``` ```text public/ ├── llms.txt ├── llms-full.txt └── docs/ ├── index.md ├── llms.txt ├── sitemap.xml ├── sitemap.md ├── robots.txt ├── agent-readability.json ├── search-index.json └── search-content.json ```","Quickstart\n\nInstall leadtype, run the hosted-docs pipeline once, and inspect the generated artifacts.\n\nQuickstart\n\nChoose the next setup step\n\nGoal Next page -- -- Wire the generator into an app build Connect a docs site Render HTML pages and an \"On this page\" sidebar Render MDX and TOC Serve markdown, sitemaps, robots, and JSON-LD for agents Optimize docs for agents Query the generated static search index Add search Publish AGENTS.md inside an npm package Bundle docs into a package Connect a docs site Render MDX and TOC Make the site agent-readable Bundle docs into a package","CLI\n\nleadtype generate and leadtype lint — flags, exit codes, and JSON output.\n\nCLI\n\nTwo commands generate runs the full pipeline, lint validates content. Run leadtype help [options] ```","CLI\n\nleadtype generate and leadtype lint — flags, exit codes, and JSON output.\n\nCLI\n\ngenerate\n\nConvert MDX, then either produce website artifacts default or a package bundle --bundle . Flag Default Description -- -- -- --src ; summary: { filesScanned: number; errors: number; warnings: number; }; }; ```","Lint rules\n\nSchema, link, and navigation checks. CLI and library API.\n\nLint rules\n\nDefault schemas\n\nDocs frontmatter\n\nField Required Type -- -- -- title Yes non-empty string description No string icon No string deprecated No boolean deprecatedReason No string experimental No boolean canary No boolean new No boolean draft No boolean tags No string array group No string or string array availableIn No array of framework, url?, title? full No boolean lastModified and lastAuthor are produced by the converter when --enrich-git is set. Don't author them.","Lint rules\n\nSchema, link, and navigation checks. CLI and library API.\n\nLint rules\n\nDefault schemas\n\nChangelog frontmatter\n\nField Required Type -- -- -- title Yes non-empty string version Yes SemVer string date Yes ISO-8601 or parseable date description No string icon No string type No release , improvement , retired , or deprecation tags No string array canary No boolean authors No string or string array draft No boolean","Lint rules\n\nSchema, link, and navigation checks. CLI and library API.\n\nLint rules\n\nDefault schemas\n\nmeta.json\n\nField Required Type -- -- -- pages Yes string array title No non-empty string root No boolean icon No string defaultOpen No boolean nav.sidebar No section or combined nav.label No string nav.mode No string","Lint rules\n\nSchema, link, and navigation checks. CLI and library API.\n\nLint rules\n\nCustom schemas\n\nPass a Valibot schema to extend or replace the defaults Once you provide a custom schema, unknown-field warnings apply to that schema. Add --error-unknown in CI to keep your contract strict.\n\n```ts import * as v from \"valibot\"; import { lintDocs } from \"leadtype/lint\"; const customFrontmatter = v.object({ title: v.pipe(v.string(), v.minLength(1)), audience: v.picklist([\"beginner\", \"advanced\"]), }); await lintDocs({ srcDir: \"docs\", schemas: { frontmatter: customFrontmatter }, }); ```","Lint rules\n\nSchema, link, and navigation checks. CLI and library API.\n\nLint rules\n\nPractical guidance\n\nRun lint before leadtype generate so content errors fail fast. Use --format github in GitHub Actions and --format json in any other CI. Treat unresolved-placeholder as a content bug first — usually a missing entry in availableIn or a stale URL template. After a docs move, lint and run meta.json updates together; they drift at the same time. For wiring lint into pipelines, see Validate in CI.","LLM files\n\nGenerate llms.txt for hosted websites and AGENTS.md for npm-bundled offline reading.\n\nLLM files\n\nThe leadtype/llm entry point produces four flavors of agent-facing output, all derived from the same docs source generateLlmsTxt — for hosted websites. Emits the /llms.txt convention with root-relative markdown mirror links. generateLLMFullContextFiles — root /llms-full.txt fallback containing all generated markdown docs. Pairs with generateLlmsTxt . generateAgentReadabilityArtifacts — docs-scoped sitemap.xml , sitemap.md , robots.txt , and JSON manifest data that a host app can merge into site-level files. generateAgentsMd — for npm-bundled docs. Emits an AGENTS.md index with relative ./docs/ A library that does one thing well. - Helper that handles the boring parts. - Type-safe by default. - Works in any runtime. ## Best Starting Points - [Documentation](/docs/index.md) - [Quickstart](/docs/quickstart.md) ## Get Started Five-minute happy path and the mental model. - [Quickstart](/docs/quickstart.md): Install and run the pipeline. - [How it works](/docs/how-it-works.md): The mental model. ## Reference CLI flags and conversion APIs. - [CLI](/docs/reference/cli.md): Every flag. ```","LLM files\n\nGenerate llms.txt for hosted websites and AGENTS.md for npm-bundled offline reading.\n\nLLM files\n\nTypical sequence\n\ngenerateLLMFullContextFiles and generateAgentReadabilityArtifacts read from A library that does one thing well. These docs ship inside the package so coding agents can read them offline. Open the topic file you need from the list below — paths are relative to this file. ## Get Started - [Quickstart](./docs/quickstart.md): Install and run the pipeline. - [How it works](./docs/how-it-works.md): The mental model. ## Reference - [CLI](./docs/reference/cli.md): Every flag. ```","LLM files\n\nGenerate llms.txt for hosted websites and AGENTS.md for npm-bundled offline reading.\n\nLLM files\n\nresolveDocsNavigation\n\nSame group-resolution logic the LLM files use, but returns the navigation manifest as a plain object — useful for driving a sidebar UI Write the result to src/generated/docs-nav.json and import it from your sidebar component Now your sidebar can import a static manifest with the same group tree the LLM files use.\n\n```ts const navigation = await resolveDocsNavigation({ srcDir: \".\", baseUrl: \"https://leadtype.dev\", groups: docsConfig.groups, }); if (navigation.unknown.length > 0) { for (const { urlPath, slug } of navigation.unknown) { process.stderr.write(`error: ${urlPath} declares unknown group \"${slug}\".\\n`); } process.exit(1); } ``` ```ts import { mkdir, writeFile } from \"node:fs/promises\"; await mkdir(\"src/generated\", { recursive: true }); await writeFile( \"src/generated/docs-nav.json\", `${JSON.stringify(navigation, null, 2)}\\n` ); ```","LLM files\n\nGenerate llms.txt for hosted websites and AGENTS.md for npm-bundled offline reading.\n\nLLM files\n\nTables of contents\n\nFor the heading slug contract and renderer wiring, see Render MDX and TOC. This section covers the build-time APIs only. resolveDocsNavigation includes a toc array on every page by default. The default range is h2 – h3 , which keeps page-level h1 titles out of sidebars. If you only need TOC data and not the full group tree, call resolveDocsTableOfContents For custom pipelines, extractDocsTableOfContents accepts a markdown or MDX string plus page URL metadata and returns plain JSON. It ignores frontmatter and fenced code blocks, and it uses the same slugifyDocsHeading helper that rendered headings must use to keep id attributes in sync.\n\n```ts const navigation = await resolveDocsNavigation({ srcDir: \".\", baseUrl: \"https://leadtype.dev\", groups: docsConfig.groups, toc: { minLevel: 2, maxLevel: 4 }, }); ``` ```ts const pages = await resolveDocsTableOfContents({ srcDir: \".\", baseUrl: \"https://leadtype.dev\", }); ```","LLM files\n\nGenerate llms.txt for hosted websites and AGENTS.md for npm-bundled offline reading.\n\nLLM files\n\nGroup design\n\nThe groups you pass to these APIs come from docs.config.ts . Two principles Use groups for routing, not sharding. Groups organize llms.txt , navigation, search metadata, and AGENTS.md . The root llms-full.txt remains the broad fallback. Write group descriptions for routing, not flavor text. Agents read those descriptions to decide which pages to load. \"How to install and run\" beats \"Welcome to our guides!\"","LLM files\n\nGenerate llms.txt for hosted websites and AGENTS.md for npm-bundled offline reading.\n\nLLM files\n\nBase URL precedence\n\nPass baseUrl explicitly, or use environment variables for layered fallback The package-specific LEADTYPE AGENT BASE URL lets each package override an org-wide default. BASE URL covers most CI/deployment platforms, and a final hardcoded fallback keeps local builds working without env setup.\n\n```ts const baseUrl = process.env.LEADTYPE_AGENT_BASE_URL || process.env.BASE_URL || process.env.PORTLESS_URL || \"https://leadtype.dev\"; ```","Remark plugins\n\nThe default plugin stack that flattens MDX components into markdown.\n\nRemark plugins\n\nThe remark stack is what turns interactive MDX into agent-readable markdown. Imports get stripped first, placeholders get resolved, then each named component is flattened into a markdown equivalent. Order matters.\n\n```ts import { defaultRemarkPlugins, remarkInclude, remarkTypeTableToMarkdown, } from \"leadtype/remark\"; ```","Remark plugins\n\nThe default plugin stack that flattens MDX components into markdown.\n\nRemark plugins\n\nThe default stack\n\ndefaultRemarkPlugins runs the stack in this order 1. remarkRemoveImports — strip MDX import and export statements. 2. remarkRemoveJsxComments — strip / ... / JSX comments. 3. remarkResolveDocPlaceholders — replace framework and similar placeholders in URLs. 4. remarkAudienceToMarkdown — include ri --> rj --> rd --> rau --> rs --> rc --> rcd --> rdt --> rm --> rct --> rst --> rt --> rtt --> ra --> rts --> rft --> rp --> re --> out` ```","Remark plugins\n\nThe default plugin stack that flattens MDX components into markdown.\n\nRemark plugins\n\nThe default stack\n\n p !== remarkTypeTableToMarkdown), [remarkTypeTableToMarkdown, { basePath: process.cwd() }], ]; ``` ```mdx ```","Remark plugins\n\nThe default plugin stack that flattens MDX components into markdown.\n\nRemark plugins\n\nPlugin selection rules\n\nUse defaultRemarkPlugins for any agent-facing or LLM output. Add remarkInclude when docs are composed from shared fragments. Use individual plugins only when you intentionally want to omit a flattener e.g. you don't use /docs/search-index.json /docs/search-content.json ```","Search\n\nStatic search index, runtime helpers, and source-grounded answer streaming.\n\nSearch\n\nRuntime search\n\nThe runtime is edge-safe — no Node APIs, works on Vercel, Cloudflare, and anywhere else Results include heading paths, hash URLs, and snippets ready for a search UI. Search is still local and dependency-free, but it is not exact-token only. Query terms expand through lightweight stemming, prefix matches, typo-tolerant fallbacks, and a small built-in synonym map. Exact matches keep the highest weight so API names and config keys stay precise. Pass synonyms when your docs use product-specific vocabulary\n\n```ts import { searchDocs, type DocsSearchIndex, type DocsSearchContentStore, } from \"leadtype/search\"; import indexJson from \"../public/docs/search-index.json\"; import contentJson from \"../public/docs/search-content.json\"; const results = searchDocs( indexJson as DocsSearchIndex, \"tabs install\", { content: contentJson as DocsSearchContentStore } ); ``` ```ts const results = searchDocs(index, \"starter\", { content, synonyms: { starter: [\"quickstart\", \"getting started\"], }, }); ```","Search\n\nStatic search index, runtime helpers, and source-grounded answer streaming.\n\nSearch\n\nReading docs at runtime\n\nThe same index doubles as a virtual filesystem. Three readers, picked by what you have Use readDocsContentFile when you need the entire page for context links . Use readDocsContentChunk when a search result already named the right heading.\n\n```ts import { listDocsContentFiles, readDocsContentFile, readDocsContentChunk, } from \"leadtype/search\"; const allFiles = listDocsContentFiles(index); const wholePage = readDocsContentFile(index, \"guides/quickstart\", content); const oneChunk = readDocsContentChunk(index, \"chunk-0\", content); ```","Search\n\nStatic search index, runtime helpers, and source-grounded answer streaming.\n\nSearch\n\nSource-grounded answers\n\ncreateAnswerContext turns a query plus retrieved chunks into a system and prompt you pass to any model The system message instructs the model to answer only from the retrieved context, cite sources with 1 -style references, and say so when the context is insufficient.\n\n```ts import { createAnswerContext } from \"leadtype/search\"; const context = createAnswerContext(index, \"how do I run lint?\", { content, productName: \"My Library\", }); // → { system, prompt, sources } ```","Search\n\nStatic search index, runtime helpers, and source-grounded answer streaming.\n\nSearch\n\nStreaming via provider entry points\n\nThree thin wrappers around createAnswerContext that stream a Response and surface sources separately. Use one matching your runtime response is a plain text Response. sources is metadata for citation links — display it separately, don't embed it in the streamed answer. For TanStack, pass an explicit adapter . For Cloudflare, build one with createCloudflareDocsAdapter provider, model, options binding env.AI.gateway \"docs\" .\n\n```ts import { streamDocsAnswer } from \"leadtype/search/vercel\"; // Vercel AI SDK / AI Gateway import { streamDocsAnswer } from \"leadtype/search/tanstack\"; // TanStack AI import { streamDocsAnswer } from \"leadtype/search/cloudflare\"; // Cloudflare AI Gateway / Workers AI ``` ```ts const { response, sources } = streamDocsAnswer({ index, content, query, model: \"openai/gpt-5.5\", productName: \"My Library\", }); ```","Search\n\nStatic search index, runtime helpers, and source-grounded answer streaming.\n\nSearch\n\nBash tool adapters\n\nWhen you want an agent to explore docs with shell commands instead of receiving pre-selected chunks The adapter exposes a read-only virtual /docs filesystem with ls , cat , find , grep , and rg . Network commands, code execution, and writes are disabled. Use createDocsBashTool for Vercel AI SDK tool sets and createDocsBashTools for TanStack-compatible tools over the same filesystem.\n\n```ts import { createDocsBashTool, createDocsBashTools } from \"leadtype/search/bash\"; const { tools, instructions } = await createDocsBashTool(index, content); ```","Search\n\nStatic search index, runtime helpers, and source-grounded answer streaming.\n\nSearch\n\nAbuse guards\n\nReusable utilities for the request path Helper Purpose -- -- validateDocsQuery Trim and cap query text. readJsonWithLimit Reject oversized JSON bodies before parse. getClientIdentifier Read common proxy IP headers. createMemoryRateLimiter Implements RateLimiter for demos. The in-memory limiter is fine for demos. Production apps should adapt the RateLimiter interface to a shared store — Redis, Vercel KV, Cloudflare KV, or Durable Objects.","Search\n\nStatic search index, runtime helpers, and source-grounded answer streaming.\n\nSearch\n\nWhen to add embeddings\n\nStart with the local index. It is static, cheap, edge-safe, and fast for exact API names, config keys, error messages, and paths. Add embeddings only when Users search with vocabulary that doesn't match the docs e.g. \"make it faster\" matching a \"performance optimization\" page . Your docs grow past tens of thousands of chunks and the cold-start memory hit becomes noticeable. Even then, keep the lexical index for exact matches and layer embeddings on top — they're complementary, not replacements."]} diff --git a/apps/example/src/generated/docs-search-index.json b/apps/example/src/generated/docs-search-index.json index 5e165fa..8737009 100644 --- a/apps/example/src/generated/docs-search-index.json +++ b/apps/example/src/generated/docs-search-index.json @@ -1 +1 @@ -{"version":2,"generatedAt":"2026-05-11T17:26:32.345Z","documents":[["authoring/components","Components","MDX components the pipeline knows how to flatten into agent-readable markdown.","/docs/authoring/components","https://leadtype.dev/docs/authoring/components","authoring/components"],["authoring/frontmatter","Frontmatter","Required fields, group semantics, and how authored MDX becomes a navigation tree.","/docs/authoring/frontmatter","https://leadtype.dev/docs/authoring/frontmatter","authoring/frontmatter"],["build/add-search","Add search","Generate a static docs search index, query it at runtime, and optionally stream source-grounded answers.","/docs/build/add-search","https://leadtype.dev/docs/build/add-search","build/add-search"],["build/connect-docs-site","Connect a docs site","Build a shared docs app from source docs that live with the code they document.","/docs/build/connect-docs-site","https://leadtype.dev/docs/build/connect-docs-site","build/connect-docs-site"],["build/optimize-docs-for-agents","Optimize docs for agents","Set up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.","/docs/build/optimize-docs-for-agents","https://leadtype.dev/docs/build/optimize-docs-for-agents","build/optimize-docs-for-agents"],["build/render-mdx-and-toc","Render MDX and TOC","Set up runtime MDX components, stable heading IDs, and a table of contents from the generated navigation manifest.","/docs/build/render-mdx-and-toc","https://leadtype.dev/docs/build/render-mdx-and-toc","build/render-mdx-and-toc"],["build/validate-in-ci","Validate in CI","Run leadtype lint in CI so frontmatter, navigation, and link issues fail PRs before publish.","/docs/build/validate-in-ci","https://leadtype.dev/docs/build/validate-in-ci","build/validate-in-ci"],["how-it-works","How it works","The mental model: one MDX source, a remark pipeline, two output modes, three audiences.","/docs/how-it-works","https://leadtype.dev/docs/how-it-works","how-it-works"],["index","Leadtype","One MDX source. Hosted docs artifacts, package-bundled AGENTS.md, and search output from the same pipeline.","/docs","https://leadtype.dev/docs","index"],["methodology","Methodology","How leadtype differs from Fumadocs, Starlight, and Mintlify.","/docs/methodology","https://leadtype.dev/docs/methodology","methodology"],["package-docs/bundle","Bundle docs into a package","Ship agent-readable docs inside an npm tarball — AGENTS.md at the package root plus per-topic .md files.","/docs/package-docs/bundle","https://leadtype.dev/docs/package-docs/bundle","package-docs/bundle"],["quickstart","Quickstart","Install leadtype, run the hosted-docs pipeline once, and inspect the generated artifacts.","/docs/quickstart","https://leadtype.dev/docs/quickstart","quickstart"],["reference/cli","CLI","leadtype generate and leadtype lint — flags, exit codes, and JSON output.","/docs/reference/cli","https://leadtype.dev/docs/reference/cli","reference/cli"],["reference/convert","Convert","MDX-to-markdown conversion APIs from leadtype/convert.","/docs/reference/convert","https://leadtype.dev/docs/reference/convert","reference/convert"],["reference/evals","Evals","How Leadtype benchmarks AGENTS.md, llms.txt, and llms-full.txt output before changing defaults.","/docs/reference/evals","https://leadtype.dev/docs/reference/evals","reference/evals"],["reference/lint","Lint rules","Schema, link, and navigation checks. CLI and library API.","/docs/reference/lint","https://leadtype.dev/docs/reference/lint","reference/lint"],["reference/llm","LLM files","Generate llms.txt for hosted websites and AGENTS.md for npm-bundled offline reading.","/docs/reference/llm","https://leadtype.dev/docs/reference/llm","reference/llm"],["reference/remark","Remark plugins","The default plugin stack that flattens MDX components into markdown.","/docs/reference/remark","https://leadtype.dev/docs/reference/remark","reference/remark"],["reference/search","Search","Static search index, runtime helpers, and source-grounded answer streaming.","/docs/reference/search","https://leadtype.dev/docs/reference/search","reference/search"]],"chunks":[["chunk-0",0,"components",["Components"],44,0],["chunk-1",0,"why-flatten-at-all",["Components","Why flatten at all?"],82,1],["chunk-2",0,"the-naming-contract",["Components","The naming contract"],88,2],["chunk-3",0,"component-reference",["Components","Component reference"],21,3],["chunk-4",0,"callout",["Components","Component reference","Callout"],74,4],["chunk-5",0,"cards",["Components","Component reference","Cards"],43,5],["chunk-6",0,"steps",["Components","Component reference","Steps"],74,6],["chunk-7",0,"tabs",["Components","Component reference","Tabs"],89,7],["chunk-8",0,"commandtabs",["Components","Component reference","CommandTabs"],111,8],["chunk-9",0,"prompt",["Components","Component reference","Prompt"],93,9],["chunk-10",0,"audience",["Components","Component reference","Audience"],65,10],["chunk-11",0,"filetree",["Components","Component reference","FileTree"],56,11],["chunk-12",0,"accordion",["Components","Component reference","Accordion"],77,12],["chunk-13",0,"topicswitcher",["Components","Component reference","TopicSwitcher"],69,13],["chunk-14",0,"typetable-and-extractedtypetable",["Components","Component reference","TypeTable and ExtractedTypeTable"],86,14],["chunk-15",0,"example",["Components","Component reference","Example"],76,15],["chunk-16",0,"mermaid",["Components","Component reference","Mermaid"],62,16],["chunk-17",0,"guidelines",["Components","Guidelines"],55,17],["chunk-18",1,"frontmatter",["Frontmatter"],26,18],["chunk-19",1,"minimum",["Frontmatter","Minimum"],85,19],["chunk-20",1,"how-groups-become-a-nav-tree",["Frontmatter","How groups become a nav tree"],162,20],["chunk-21",1,"nested-groups",["Frontmatter","How groups become a nav tree","Nested groups"],68,21],["chunk-22",1,"optional-fields",["Frontmatter","Optional fields"],117,22],["chunk-23",1,"lint-rules",["Frontmatter","Lint rules"],88,23],["chunk-24",1,"what-this-gives-you",["Frontmatter","What this gives you"],55,24],["chunk-25",2,"add-search",["Add search"],36,25],["chunk-26",2,"generate-the-files",["Add search","Generate the files"],87,26],["chunk-27",2,"query-at-runtime",["Add search","Query at runtime"],71,27],["chunk-28",2,"add-vocabulary-aliases",["Add search","Add vocabulary aliases"],57,28],["chunk-29",2,"optional-ai-answers",["Add search","Optional AI answers"],84,29],["chunk-30",2,"guard-the-endpoint",["Add search","Guard the endpoint"],63,30],["chunk-31",2,"verify",["Add search","Verify"],52,31],["chunk-32",3,"connect-a-docs-site",["Connect a docs site"],67,32],["chunk-33",3,"the-flow",["Connect a docs site","The flow"],61,33],["chunk-34",3,"fetch-the-source-repo",["Connect a docs site","Fetch the source repo"],74,34],["chunk-35",3,"lint-before-generate",["Connect a docs site","Lint before generate"],65,35],["chunk-36",3,"generate-hosted-artifacts",["Connect a docs site","Generate hosted artifacts"],94,36],["chunk-37",3,"wire-it-into-the-app-build",["Connect a docs site","Wire it into the app build"],129,37],["chunk-38",3,"configure-product-and-groups",["Connect a docs site","Configure product and groups"],127,38],["chunk-39",3,"use-scripts-for-custom-pipelines",["Connect a docs site","Use scripts for custom pipelines"],186,39],["chunk-40",3,"use-scripts-for-custom-pipelines",["Connect a docs site","Use scripts for custom pipelines"],49,40],["chunk-41",3,"wire-the-app-runtime",["Connect a docs site","Wire the app runtime"],57,41],["chunk-42",3,"verify",["Connect a docs site","Verify"],96,42],["chunk-43",4,"optimize-docs-for-agents",["Optimize docs for agents"],73,43],["chunk-44",4,"what-good-looks-like",["Optimize docs for agents","What good looks like"],105,44],["chunk-45",4,"1-generate-the-artifacts",["Optimize docs for agents","1. Generate the artifacts"],113,45],["chunk-46",4,"2-add-one-middleware",["Optimize docs for agents","2. Add one middleware"],242,46],["chunk-47",4,"2-add-one-middleware",["Optimize docs for agents","2. Add one middleware"],100,47],["chunk-48",4,"3-add-json-ld-to-docs-pages",["Optimize docs for agents","3. Add JSON-LD to docs pages"],142,48],["chunk-49",4,"4-return-markdown-to-agents",["Optimize docs for agents","4. Return markdown to agents"],161,49],["chunk-50",4,"4-return-markdown-to-agents",["Optimize docs for agents","4. Return markdown to agents"],170,50],["chunk-51",4,"4-return-markdown-to-agents",["Optimize docs for agents","4. Return markdown to agents"],71,51],["chunk-52",4,"why-the-sitemap-and-robots-responses-are-regenerated-not-static",["Optimize docs for agents","4. Return markdown to agents","Why the sitemap and robots responses are regenerated, not static"],112,52],["chunk-53",4,"cache-control-and-cdn",["Optimize docs for agents","4. Return markdown to agents","Cache-Control and CDN"],88,53],["chunk-54",4,"5-verify-locally",["Optimize docs for agents","5. Verify locally"],193,54],["chunk-55",4,"minimal-checklist",["Optimize docs for agents","Minimal checklist"],100,55],["chunk-56",5,"render-mdx-and-toc",["Render MDX and TOC"],47,56],["chunk-57",5,"register-mdx-components",["Render MDX and TOC","Register MDX components"],63,57],["chunk-58",5,"use-the-same-heading-slugs",["Render MDX and TOC","Use the same heading slugs"],132,58],["chunk-59",5,"generate-navigation-with-toc-data",["Render MDX and TOC","Generate navigation with TOC data"],66,59],["chunk-60",5,"render-the-sidebar",["Render MDX and TOC","Render the sidebar"],53,60],["chunk-61",5,"troubleshooting",["Render MDX and TOC","Troubleshooting"],70,61],["chunk-62",6,"validate-in-ci",["Validate in CI"],49,62],["chunk-63",6,"what-it-catches",["Validate in CI","What it catches"],78,63],["chunk-64",6,"github-actions",["Validate in CI","GitHub Actions"],83,64],["chunk-65",6,"other-ci-providers",["Validate in CI","Other CI providers"],60,65],["chunk-66",6,"local-pre-push-hook",["Validate in CI","Local pre-push hook"],64,66],["chunk-67",6,"run-before-generate",["Validate in CI","Run before generate"],63,67],["chunk-68",6,"what-to-fix-first",["Validate in CI","What to fix first"],66,68],["chunk-69",7,"how-it-works",["How it works"],37,69],["chunk-70",7,"the-pipeline",["How it works","The pipeline"],141,70],["chunk-71",7,"two-output-modes",["How it works","Two output modes"],128,71],["chunk-72",7,"the-artifacts",["How it works","The artifacts"],166,72],["chunk-73",7,"the-artifacts",["How it works","The artifacts"],110,73],["chunk-74",7,"the-three-audiences",["How it works","The three audiences"],182,74],["chunk-75",7,"vocabulary",["How it works","Vocabulary"],153,75],["chunk-76",7,"what-runs-when",["How it works","What runs when"],123,76],["chunk-77",7,"where-to-next",["How it works","Where to next"],20,77],["chunk-78",8,"leadtype",["Leadtype"],177,78],["chunk-79",8,"choose-your-path",["Leadtype","Choose your path"],48,79],["chunk-80",8,"what-you-get",["Leadtype","What you get"],113,80],["chunk-81",8,"next",["Leadtype","Next"],46,81],["chunk-82",9,"methodology",["Methodology"],30,82],["chunk-83",9,"the-short-version",["Methodology","The short version"],131,83],["chunk-84",9,"what-leadtype-owns",["Methodology","What leadtype owns"],53,84],["chunk-85",9,"what-leadtype-does-not-own",["Methodology","What leadtype does not own"],31,85],["chunk-86",9,"when-the-combination-shines",["Methodology","When the combination shines"],86,86],["chunk-87",10,"bundle-docs-into-a-package",["Bundle docs into a package"],79,87],["chunk-88",10,"the-flow",["Bundle docs into a package","The flow"],84,88],["chunk-89",10,"why-agents-md-not-llms-txt",["Bundle docs into a package","Why AGENTS.md, not llms.txt?"],136,89],["chunk-90",10,"generate-into-the-package",["Bundle docs into a package","Generate into the package"],108,90],["chunk-91",10,"filter-to-package-specific-docs",["Bundle docs into a package","Filter to package-specific docs"],78,91],["chunk-92",10,"include-in-the-published-tarball",["Bundle docs into a package","Include in the published tarball"],156,92],["chunk-93",10,"include-in-the-published-tarball",["Bundle docs into a package","Include in the published tarball"],89,93],["chunk-94",10,"verify-before-publishing",["Bundle docs into a package","Verify before publishing"],71,94],["chunk-95",10,"tell-consuming-projects-to-use-the-bundle",["Bundle docs into a package","Tell consuming projects to use the bundle"],109,95],["chunk-96",10,"when-to-use-this",["Bundle docs into a package","When to use this"],72,96],["chunk-97",10,"what-s-next",["Bundle docs into a package","What's next"],31,97],["chunk-98",11,"quickstart",["Quickstart"],19,98],["chunk-99",11,"install",["Quickstart","Install"],53,99],["chunk-100",11,"author-one-page",["Quickstart","Author one page"],54,100],["chunk-101",11,"generate-hosted-docs-output",["Quickstart","Generate hosted docs output"],137,101],["chunk-102",11,"choose-the-next-setup-step",["Quickstart","Choose the next setup step"],77,102],["chunk-103",12,"cli",["CLI"],30,103],["chunk-104",12,"generate",["CLI","generate"],177,104],["chunk-105",12,"generate",["CLI","generate"],79,105],["chunk-106",12,"config-loading",["CLI","generate","Config loading"],135,106],["chunk-107",12,"bundle-mode",["CLI","generate","Bundle mode"],75,107],["chunk-108",12,"json-output-shape",["CLI","generate","JSON output shape"],172,108],["chunk-109",12,"custom-script-config",["CLI","generate","Custom script config"],68,109],["chunk-110",12,"lint",["CLI","lint"],145,110],["chunk-111",12,"help",["CLI","help"],25,111],["chunk-112",12,"library-entry-points",["CLI","Library entry points"],81,112],["chunk-113",13,"convert",["Convert"],47,113],["chunk-114",13,"convertallmdx",["Convert","convertAllMdx"],67,114],["chunk-115",13,"convertmdxtomarkdown",["Convert","convertMdxToMarkdown"],54,115],["chunk-116",13,"writemdxfileasmarkdown",["Convert","writeMdxFileAsMarkdown"],28,116],["chunk-117",13,"behavior-notes",["Convert","Behavior notes"],50,117],["chunk-118",13,"pairing-with-remark-plugins",["Convert","Pairing with remark plugins"],54,118],["chunk-119",14,"evals",["Evals"],46,119],["chunk-120",14,"what-we-benchmark",["Evals","What we benchmark"],176,120],["chunk-121",14,"what-we-benchmark",["Evals","What we benchmark"],120,121],["chunk-122",14,"what-we-learned",["Evals","What we learned"],132,122],["chunk-123",14,"current-default",["Evals","Current default"],72,123],["chunk-124",14,"open-question",["Evals","Open question"],55,124],["chunk-125",14,"run-the-evals",["Evals","Run the evals"],37,125],["chunk-126",15,"lint-rules",["Lint rules"],46,126],["chunk-127",15,"rules",["Lint rules","Rules"],15,127],["chunk-128",15,"frontmatter-rules",["Lint rules","Rules","Frontmatter rules"],58,128],["chunk-129",15,"content-link-rules",["Lint rules","Rules","Content / link rules"],68,129],["chunk-130",15,"library-api",["Lint rules","Library API"],90,130],["chunk-131",15,"result-shape",["Lint rules","Library API","Result shape"],67,131],["chunk-132",15,"docs-frontmatter",["Lint rules","Default schemas","Docs frontmatter"],75,132],["chunk-133",15,"changelog-frontmatter",["Lint rules","Default schemas","Changelog frontmatter"],60,133],["chunk-134",15,"meta-json",["Lint rules","Default schemas","meta.json"],49,134],["chunk-135",15,"custom-schemas",["Lint rules","Custom schemas"],63,135],["chunk-136",15,"practical-guidance",["Lint rules","Practical guidance"],65,136],["chunk-137",16,"llm-files",["LLM files"],128,137],["chunk-138",16,"what-gets-generated",["LLM files","What gets generated"],154,138],["chunk-139",16,"productinfo",["LLM files","ProductInfo"],129,139],["chunk-140",16,"example-llms-txt",["LLM files","Example llms.txt"],82,140],["chunk-141",16,"typical-sequence",["LLM files","Typical sequence"],105,141],["chunk-142",16,"generateagentreadabilityartifacts",["LLM files","generateAgentReadabilityArtifacts"],132,142],["chunk-143",16,"agent-readability-helpers",["LLM files","Agent readability helpers"],72,143],["chunk-144",16,"createagentmarkdownresponse",["LLM files","Agent readability helpers","createAgentMarkdownResponse"],180,144],["chunk-145",16,"createsitemapxmlresponse-createsitemapmarkdownresponse-createrobotstxtresponse",["LLM files","Agent readability helpers","createSitemapXmlResponse / createSitemapMarkdownResponse / createRobotsTxtResponse"],96,145],["chunk-146",16,"createdocshead",["LLM files","Agent readability helpers","createDocsHead"],148,146],["chunk-147",16,"lower-level-helpers",["LLM files","Agent readability helpers","Lower-level helpers"],144,147],["chunk-148",16,"lower-level-helpers",["LLM files","Agent readability helpers","Lower-level helpers"],58,148],["chunk-149",16,"cache-control-and-cdn",["LLM files","Agent readability helpers","Cache-Control and CDN"],73,149],["chunk-150",16,"manifest-version",["LLM files","Agent readability helpers","Manifest version"],47,150],["chunk-151",16,"generateagentsmd",["LLM files","generateAgentsMd"],138,151],["chunk-152",16,"example-output",["LLM files","generateAgentsMd","Example output"],86,152],["chunk-153",16,"resolvedocsnavigation",["LLM files","resolveDocsNavigation"],111,153],["chunk-154",16,"tables-of-contents",["LLM files","Tables of contents"],121,154],["chunk-155",16,"group-design",["LLM files","Group design"],69,155],["chunk-156",16,"base-url-precedence",["LLM files","Base URL precedence"],75,156],["chunk-157",17,"remark-plugins",["Remark plugins"],46,157],["chunk-158",17,"the-default-stack",["Remark plugins","The default stack"],182,158],["chunk-159",17,"the-default-stack",["Remark plugins","The default stack"],39,159],["chunk-160",17,"why-order-matters",["Remark plugins","Why order matters"],81,160],["chunk-161",17,"remarkinclude",["Remark plugins","Optional plugins","remarkInclude"],40,161],["chunk-162",17,"remarktypetabletomarkdown-with-basepath",["Remark plugins","Optional plugins","remarkTypeTableToMarkdown with basePath"],99,162],["chunk-163",17,"plugin-selection-rules",["Remark plugins","Plugin selection rules"],63,163],["chunk-164",18,"search",["Search"],41,164],["chunk-165",18,"vocabulary",["Search","Vocabulary"],79,165],["chunk-166",18,"build-time-indexing",["Search","Build-time indexing"],66,166],["chunk-167",18,"runtime-search",["Search","Runtime search"],123,167],["chunk-168",18,"reading-docs-at-runtime",["Search","Reading docs at runtime"],62,168],["chunk-169",18,"source-grounded-answers",["Search","Source-grounded answers"],62,169],["chunk-170",18,"streaming-via-provider-entry-points",["Search","Streaming via provider entry points"],103,170],["chunk-171",18,"bash-tool-adapters",["Search","Bash tool adapters"],71,171],["chunk-172",18,"abuse-guards",["Search","Abuse guards"],60,172],["chunk-173",18,"when-to-add-embeddings",["Search","When to add embeddings"],73,173]],"terms":{"10":[[158,0,0,1,0]],"11":[[158,0,0,1,0]],"12":[[158,0,0,1,0]],"13":[[158,0,0,1,0]],"14":[[158,0,0,1,0]],"15":[[158,0,0,1,0]],"16":[[158,0,0,1,0],[159,0,0,1,0]],"17":[[158,0,0,1,0],[159,0,0,1,0]],"18":[[158,0,0,1,0],[159,0,0,1,0]],"35":[[75,0,0,1,0],[165,0,0,1,0]],"200":[[49,0,0,1,0],[144,0,0,1,0],[147,0,0,1,0]],"300":[[49,0,0,1,0],[53,0,0,1,0],[144,0,0,1,0],[149,0,0,1,0]],"5173":[[54,0,0,0,8]],"8601":[[133,0,0,1,0]],"components":[[0,1,1,2,0],[1,1,1,2,0],[2,1,1,2,0],[3,1,1,1,0],[4,1,1,1,0],[5,1,1,1,0],[6,1,1,2,1],[7,1,1,1,0],[8,1,1,1,0],[9,1,1,1,0],[10,1,1,1,0],[11,1,1,1,0],[12,1,1,1,0],[13,1,1,1,0],[14,1,1,1,0],[15,1,1,1,4],[16,1,1,1,0],[17,1,1,3,0],[41,0,0,1,0],[56,0,0,2,0],[57,0,1,2,2],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,2,0],[61,0,0,2,0],[70,0,0,2,1],[80,0,0,1,0],[85,0,0,1,0],[120,0,0,1,0],[157,0,0,1,0],[158,0,0,1,0],[159,0,0,1,0],[160,0,0,1,0],[161,0,0,1,0],[162,0,0,1,0],[163,0,0,1,0]],"mdx":[[0,0,0,1,0],[1,0,0,2,0],[2,0,0,2,0],[3,0,0,2,0],[4,0,0,1,0],[5,0,0,1,1],[6,0,0,2,1],[7,0,0,1,0],[8,0,0,1,0],[9,0,0,1,0],[10,0,0,1,0],[11,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[14,0,0,1,0],[15,0,0,1,3],[16,0,0,1,2],[17,0,0,1,0],[18,0,0,2,0],[19,0,0,1,1],[20,0,0,1,0],[21,0,0,1,0],[22,0,0,1,0],[23,0,0,1,0],[24,0,0,1,0],[33,0,0,0,1],[41,0,0,2,0],[56,1,1,2,0],[57,1,2,2,1],[58,1,1,1,0],[59,1,1,1,0],[60,1,1,1,0],[61,1,1,1,0],[62,0,0,1,0],[64,0,0,0,1],[69,0,0,2,0],[70,0,0,2,1],[71,0,0,1,0],[72,0,0,2,0],[73,0,0,1,0],[74,0,0,2,1],[75,0,0,2,0],[76,0,0,2,0],[77,0,0,1,0],[78,0,0,2,1],[79,0,0,1,0],[80,0,0,3,0],[81,0,0,1,0],[84,0,0,1,0],[85,0,0,1,0],[88,0,0,0,1],[96,0,0,1,0],[98,0,0,1,0],[100,0,0,1,1],[101,0,0,2,0],[102,0,0,2,0],[104,0,0,1,0],[113,0,0,2,0],[114,0,0,2,0],[115,0,0,1,1],[116,0,0,1,1],[117,0,0,2,0],[118,0,0,1,0],[126,0,0,1,0],[129,0,0,1,0],[130,0,0,1,0],[154,0,0,2,0],[157,0,0,2,0],[158,0,0,2,1],[159,0,0,1,0],[160,0,0,1,0],[161,0,0,1,0],[162,0,0,2,1],[163,0,0,1,0],[166,0,0,1,0]],"pipeline":[[0,0,0,2,0],[1,0,0,1,0],[2,0,0,2,0],[3,0,0,1,0],[4,0,0,2,0],[5,0,0,1,0],[6,0,0,1,0],[7,0,0,1,0],[8,0,0,1,0],[9,0,0,1,0],[10,0,0,1,0],[11,0,0,1,0],[12,0,0,2,0],[13,0,0,1,0],[14,0,0,1,0],[15,0,0,1,0],[16,0,0,1,0],[17,0,0,1,0],[24,0,0,1,0],[26,0,0,1,0],[32,0,0,1,0],[45,0,0,1,0],[62,0,0,1,0],[69,0,0,1,0],[70,0,1,1,0],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,0,1,0],[75,0,0,1,0],[76,0,0,1,0],[77,0,0,1,0],[78,0,0,2,0],[79,0,0,1,0],[80,0,0,1,0],[81,0,0,2,0],[82,0,0,1,0],[84,0,0,1,0],[86,0,0,1,0],[98,0,0,1,0],[99,0,0,1,0],[100,0,0,1,0],[101,0,0,3,0],[102,0,0,1,0],[103,0,0,1,0],[104,0,0,1,0],[115,0,0,1,0],[140,0,0,0,1],[152,0,0,0,1]],"knows":[[0,0,0,1,0],[1,0,0,1,0],[2,0,0,1,0],[3,0,0,1,0],[4,0,0,1,0],[5,0,0,1,0],[6,0,0,1,0],[7,0,0,1,0],[8,0,0,1,0],[9,0,0,1,0],[10,0,0,1,0],[11,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[14,0,0,1,0],[15,0,0,1,0],[16,0,0,1,0],[17,0,0,1,0],[57,0,0,1,0]],"flatten":[[0,0,0,2,0],[1,0,1,1,0],[2,0,0,1,0],[3,0,0,1,0],[4,0,0,3,0],[5,0,0,1,0],[6,0,0,1,0],[7,0,0,1,0],[8,0,0,1,0],[9,0,0,1,0],[10,0,0,1,0],[11,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[14,0,0,1,0],[15,0,0,1,0],[16,0,0,1,0],[17,0,0,1,0],[57,0,0,1,0],[70,0,0,0,1],[75,0,0,1,0],[158,0,0,2,0]],"into":[[0,0,0,2,0],[1,0,0,2,0],[2,0,0,1,0],[3,0,0,1,0],[4,0,0,3,0],[5,0,0,1,1],[6,0,0,1,0],[7,0,0,1,0],[8,0,0,1,0],[9,0,0,1,0],[10,0,0,1,0],[11,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[14,0,0,1,0],[15,0,0,1,0],[16,0,0,1,0],[17,0,0,1,0],[19,0,0,0,1],[37,0,1,0,0],[43,0,0,1,0],[46,0,0,1,0],[48,0,0,1,0],[62,0,0,1,0],[65,0,0,1,0],[70,0,0,1,0],[71,0,0,1,0],[75,0,0,1,0],[87,1,1,0,0],[88,1,1,0,0],[89,1,1,0,0],[90,1,2,0,0],[91,1,1,0,0],[92,1,1,0,0],[93,1,1,0,0],[94,1,1,0,0],[95,1,1,0,0],[96,1,1,0,0],[97,1,1,0,0],[102,0,0,3,0],[104,0,0,2,0],[107,0,0,1,0],[113,0,0,1,0],[117,0,0,1,0],[118,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0],[136,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[143,0,0,1,0],[145,0,0,0,1],[152,0,0,1,0],[157,0,0,3,0],[158,0,0,1,0],[159,0,0,1,0],[160,0,0,2,0],[161,0,0,1,0],[162,0,0,1,0],[163,0,0,1,0],[169,0,0,1,0]],"agent":[[0,0,0,1,0],[1,0,0,2,0],[2,0,0,1,0],[3,0,0,1,0],[4,0,0,1,0],[5,0,0,1,1],[6,0,0,1,0],[7,0,0,1,0],[8,0,0,1,0],[9,0,0,3,3],[10,0,0,3,1],[11,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[14,0,0,1,0],[15,0,0,1,0],[16,0,0,1,0],[17,0,0,2,0],[33,0,0,0,1],[36,0,0,1,0],[39,0,0,1,0],[41,0,0,1,0],[42,0,0,1,0],[43,0,0,2,0],[44,0,0,3,0],[45,0,0,2,1],[46,0,0,3,1],[47,0,0,1,0],[48,0,0,1,1],[49,0,0,5,0],[50,0,0,4,0],[51,0,0,2,0],[52,0,0,1,0],[53,0,0,3,0],[54,0,0,3,2],[55,0,0,3,0],[70,0,0,1,0],[71,0,0,2,0],[73,0,0,2,0],[74,0,0,1,4],[75,0,0,1,0],[76,0,0,2,0],[78,0,0,2,1],[80,0,0,1,0],[86,0,0,2,0],[87,0,0,1,0],[88,0,0,1,0],[89,0,0,4,0],[90,0,0,1,0],[91,0,0,1,0],[92,0,0,1,0],[93,0,0,1,0],[94,0,0,1,0],[95,0,0,1,0],[96,0,0,1,0],[97,0,0,1,0],[101,0,0,1,1],[102,0,0,1,0],[104,0,0,1,0],[106,0,0,1,0],[107,0,0,1,0],[108,0,0,0,1],[112,0,0,1,0],[117,0,0,1,0],[119,0,0,2,0],[137,0,0,1,0],[138,0,0,1,0],[142,0,0,1,0],[143,0,1,0,0],[144,0,1,5,0],[145,0,1,0,0],[146,0,1,0,1],[147,0,1,2,0],[148,0,1,1,0],[149,0,1,2,0],[150,0,1,1,0],[151,0,0,1,0],[156,0,0,1,1],[157,0,0,1,0],[158,0,0,1,0],[163,0,0,1,0],[171,0,0,1,0]],"readable":[[0,0,0,1,0],[1,0,0,1,0],[2,0,0,1,0],[3,0,0,1,0],[4,0,0,1,0],[5,0,0,1,0],[6,0,0,1,0],[7,0,0,1,0],[8,0,0,1,0],[9,0,0,1,0],[10,0,0,1,0],[11,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[14,0,0,1,0],[15,0,0,1,0],[16,0,0,1,0],[17,0,0,1,0],[43,0,0,1,0],[44,0,0,2,0],[45,0,0,1,0],[46,0,0,2,0],[47,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[70,0,0,1,0],[72,0,0,1,0],[87,0,0,1,0],[88,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[91,0,0,1,0],[92,0,0,1,0],[93,0,0,1,0],[94,0,0,1,0],[95,0,0,1,0],[96,0,0,1,0],[97,0,0,1,0],[102,0,0,1,0],[157,0,0,1,0]],"markdown":[[0,0,0,2,0],[1,0,0,3,0],[2,0,0,1,0],[3,0,0,1,0],[4,0,0,1,0],[5,0,0,1,1],[6,0,0,2,1],[7,0,0,1,0],[8,0,0,2,0],[9,0,0,1,2],[10,0,0,4,1],[11,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[14,0,0,1,0],[15,0,0,1,0],[16,0,0,2,5],[17,0,0,2,0],[19,0,0,1,0],[39,0,0,1,0],[41,0,0,1,0],[42,0,0,5,0],[43,0,0,1,0],[44,0,0,6,0],[45,0,0,2,0],[46,0,0,2,0],[47,0,0,1,0],[48,0,0,2,1],[49,0,1,5,0],[50,0,1,3,0],[51,0,1,2,0],[52,0,1,1,0],[53,0,1,2,0],[54,0,0,5,1],[55,0,0,6,0],[56,0,0,1,0],[57,0,0,1,0],[70,0,0,3,0],[72,0,0,3,0],[74,0,0,1,1],[75,0,0,3,0],[76,0,0,1,0],[78,0,0,1,1],[80,0,0,2,0],[82,0,0,1,0],[83,0,0,1,0],[84,0,0,2,0],[86,0,0,1,0],[87,0,0,1,0],[101,0,0,2,0],[102,0,0,1,0],[112,0,0,1,0],[113,0,0,2,0],[114,0,0,1,0],[115,0,0,2,1],[116,0,0,1,0],[117,0,0,2,0],[118,0,0,1,0],[120,0,0,3,0],[121,0,0,2,0],[123,0,0,1,0],[137,0,0,2,0],[138,0,0,4,0],[142,0,0,1,0],[144,0,0,4,0],[146,0,0,0,1],[147,0,0,5,0],[148,0,0,1,0],[149,0,0,1,0],[154,0,0,1,0],[157,0,0,3,0],[158,0,0,3,1],[159,0,0,1,0],[160,0,0,1,0],[161,0,0,1,0],[162,0,0,2,0],[163,0,0,1,0],[166,0,0,1,0]],"leadtype":[[0,0,0,1,0],[6,0,0,1,1],[8,0,0,8,4],[15,0,0,1,1],[17,0,0,1,0],[18,0,0,1,0],[19,0,0,0,1],[20,0,0,1,0],[23,0,0,1,0],[25,0,0,1,0],[26,0,0,1,2],[27,0,0,0,1],[29,0,0,1,1],[30,0,0,1,0],[32,0,0,2,0],[33,0,0,0,2],[34,0,0,1,0],[35,0,0,0,1],[36,0,0,0,1],[37,0,0,0,4],[38,0,0,1,1],[39,0,0,0,4],[43,0,0,1,0],[45,0,0,0,2],[46,0,0,0,1],[48,0,0,0,3],[56,0,0,2,0],[57,0,0,2,0],[58,0,0,0,1],[59,0,0,0,1],[62,0,0,3,0],[63,0,0,1,0],[64,0,0,1,1],[65,0,0,1,1],[66,0,0,1,1],[67,0,0,3,2],[68,0,0,1,0],[69,0,0,1,0],[71,0,0,3,0],[76,0,0,1,0],[78,1,1,2,2],[79,1,1,0,0],[80,1,1,1,0],[81,1,1,1,0],[82,0,0,2,0],[83,0,0,3,0],[84,0,1,1,0],[85,0,1,1,0],[86,0,0,4,0],[87,0,0,1,0],[88,0,0,0,1],[89,0,0,1,0],[90,0,0,0,1],[91,0,0,0,1],[92,0,0,0,4],[94,0,0,0,1],[98,0,0,1,0],[99,0,0,6,0],[100,0,0,1,0],[101,0,0,2,1],[102,0,0,1,0],[103,0,0,3,1],[104,0,0,2,1],[105,0,0,2,0],[106,0,0,3,1],[107,0,0,2,1],[108,0,0,2,0],[109,0,0,2,2],[110,0,0,2,1],[111,0,0,2,3],[112,0,0,8,0],[113,0,0,3,1],[114,0,0,1,1],[115,0,0,1,0],[116,0,0,1,0],[117,0,0,1,0],[118,0,0,1,1],[119,0,0,2,0],[120,0,0,3,0],[121,0,0,1,0],[122,0,0,1,0],[123,0,0,2,0],[124,0,0,1,0],[125,0,0,1,0],[126,0,0,1,1],[130,0,0,0,1],[135,0,0,0,1],[136,0,0,1,0],[137,0,0,3,1],[141,0,0,0,6],[142,0,0,1,3],[143,0,0,0,1],[146,0,0,0,5],[150,0,0,1,0],[151,0,0,0,1],[153,0,0,0,1],[154,0,0,0,2],[156,0,0,1,2],[157,0,0,0,1],[162,0,0,0,1],[164,0,0,1,0],[166,0,0,0,2],[167,0,0,0,1],[168,0,0,0,1],[169,0,0,0,1],[170,0,0,0,3],[171,0,0,0,1]],"does":[[0,0,0,1,0],[13,0,0,1,0],[56,0,0,1,0],[85,0,1,0,0],[100,0,0,0,1],[106,0,0,0,1],[122,0,0,1,0],[140,0,0,0,1],[141,0,0,0,1],[152,0,0,0,1]],"not":[[0,0,0,1,0],[7,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[20,0,0,1,0],[28,0,0,1,0],[29,0,0,1,0],[49,0,0,2,0],[51,0,0,1,0],[52,0,1,0,0],[56,0,0,1,0],[61,0,0,3,0],[63,0,0,1,0],[68,0,0,1,0],[72,0,0,1,0],[76,0,0,1,0],[78,0,0,1,0],[82,0,0,1,0],[83,0,0,1,0],[85,0,1,0,0],[89,0,1,1,0],[106,0,0,1,0],[109,0,0,1,0],[119,0,0,1,0],[122,0,0,2,0],[123,0,0,2,0],[128,0,0,1,0],[138,0,0,1,0],[144,0,0,2,0],[146,0,0,1,0],[154,0,0,1,0],[155,0,0,2,0],[160,0,0,1,0],[165,0,0,1,0],[167,0,0,1,0],[173,0,0,1,0]],"ship":[[0,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[78,0,0,1,0],[79,0,0,1,0],[83,0,0,1,0],[87,0,0,1,0],[88,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[91,0,0,1,0],[92,0,0,1,1],[93,0,0,1,1],[94,0,0,1,0],[95,0,0,1,0],[96,0,0,1,0],[97,0,0,1,0],[107,0,0,1,0],[120,0,0,1,0],[151,0,0,1,0],[152,0,0,0,1]],"ui":[[0,0,0,1,0],[10,0,0,1,0],[17,0,0,1,0],[24,0,0,1,0],[27,0,0,1,0],[56,0,0,1,0],[74,0,0,0,3],[78,0,0,1,1],[83,0,0,1,0],[85,0,0,1,0],[86,0,0,1,0],[153,0,0,1,0],[167,0,0,1,0]],"your":[[0,0,0,1,0],[2,0,0,3,0],[9,0,0,1,1],[17,0,0,1,0],[22,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[32,0,0,1,0],[34,0,0,1,0],[39,0,0,2,0],[41,0,0,2,0],[42,0,0,1,0],[43,0,0,1,0],[45,0,0,1,0],[46,0,0,1,0],[48,0,0,3,0],[49,0,0,1,0],[50,0,0,4,0],[51,0,0,1,0],[53,0,0,2,0],[54,0,0,2,0],[56,0,0,2,0],[57,0,0,1,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,1,0],[61,0,0,1,0],[65,0,0,1,0],[69,0,0,1,0],[71,0,0,1,0],[73,0,0,2,0],[74,0,0,4,0],[75,0,0,1,0],[78,0,0,2,1],[79,0,1,1,0],[80,0,0,2,0],[85,0,0,1,0],[86,0,0,1,0],[87,0,0,2,0],[88,0,0,0,1],[89,0,0,1,0],[92,0,0,1,0],[95,0,0,3,2],[96,0,0,1,0],[99,0,0,1,0],[100,0,0,1,0],[101,0,0,1,0],[118,0,0,1,0],[135,0,0,1,0],[143,0,0,1,0],[144,0,0,1,0],[153,0,0,2,0],[162,0,0,1,0],[164,0,0,1,0],[167,0,0,1,0],[170,0,0,1,0],[173,0,0,1,0]],"docs":[[0,0,0,1,0],[2,0,0,1,0],[5,0,0,0,1],[6,0,0,2,1],[9,0,0,0,4],[10,0,0,1,0],[11,0,0,0,2],[13,0,0,1,2],[15,0,0,0,1],[17,0,0,1,0],[19,0,0,1,3],[20,0,0,4,4],[21,0,0,0,4],[22,0,0,1,0],[23,0,0,2,0],[25,0,0,1,0],[26,0,0,1,2],[27,0,0,1,2],[28,0,0,2,0],[29,0,0,2,1],[30,0,0,1,0],[31,0,0,3,0],[32,1,1,6,0],[33,1,1,2,4],[34,1,1,5,2],[35,1,1,3,2],[36,1,1,7,2],[37,1,1,5,14],[38,1,1,6,3],[39,1,1,3,10],[40,1,1,2,2],[41,1,1,3,0],[42,1,1,7,0],[43,1,1,2,0],[44,1,1,5,0],[45,1,1,3,1],[46,1,1,9,2],[47,1,1,1,4],[48,1,2,1,4],[49,1,1,4,0],[50,1,1,5,0],[51,1,1,1,0],[52,1,1,2,0],[53,1,1,1,0],[54,1,1,6,5],[55,1,1,8,0],[56,0,0,1,0],[57,0,0,0,1],[59,0,0,0,2],[61,0,0,1,0],[62,0,0,1,0],[63,0,0,2,0],[64,0,0,0,3],[65,0,0,0,1],[66,0,0,0,1],[67,0,0,0,1],[68,0,0,1,0],[69,0,0,2,0],[70,0,0,0,2],[71,0,0,9,0],[72,0,0,4,0],[73,0,0,6,0],[74,0,0,4,0],[75,0,0,2,0],[76,0,0,4,0],[78,0,0,4,3],[79,0,0,3,0],[80,0,0,2,0],[81,0,0,1,0],[82,0,0,3,0],[83,0,0,5,0],[85,0,0,1,0],[86,0,0,3,0],[87,1,1,3,0],[88,1,1,1,4],[89,1,1,2,0],[90,1,1,2,2],[91,1,2,2,0],[92,1,1,3,7],[93,1,1,1,2],[94,1,1,2,0],[95,1,1,4,1],[96,1,1,3,0],[97,1,1,1,0],[98,0,0,2,0],[99,0,0,1,0],[100,0,0,2,0],[101,0,1,5,1],[102,0,0,6,0],[104,0,0,12,0],[105,0,0,3,0],[106,0,0,8,0],[107,0,0,3,0],[108,0,0,1,8],[109,0,0,1,2],[110,0,0,1,0],[112,0,0,1,0],[114,0,0,1,2],[115,0,0,0,1],[116,0,0,0,2],[118,0,0,1,0],[119,0,0,1,0],[120,0,0,10,0],[121,0,0,4,0],[122,0,0,1,0],[123,0,0,1,1],[124,0,0,1,0],[125,0,0,1,0],[129,0,0,3,0],[130,0,0,1,1],[132,0,1,0,0],[135,0,0,0,1],[136,0,0,1,0],[137,0,0,5,0],[138,0,0,10,0],[139,0,0,2,0],[140,0,0,0,5],[141,0,0,1,2],[142,0,0,5,0],[144,0,0,1,0],[145,0,0,0,4],[146,0,0,1,4],[147,0,0,5,0],[151,0,0,5,0],[152,0,0,1,4],[153,0,0,1,1],[155,0,0,1,0],[161,0,0,1,0],[163,0,0,1,0],[164,0,0,1,0],[166,0,0,1,2],[167,0,0,1,2],[168,0,1,0,0],[170,0,0,1,0],[171,0,0,2,0],[173,0,0,2,0]],"app":[[0,0,0,1,0],[2,0,0,2,0],[15,0,0,1,1],[17,0,0,1,0],[19,0,0,0,1],[32,0,0,3,0],[33,0,0,1,3],[34,0,0,2,0],[35,0,0,2,0],[36,0,0,2,0],[37,0,1,2,0],[38,0,0,1,0],[39,0,0,1,0],[40,0,0,1,0],[41,0,1,1,0],[42,0,0,2,0],[43,0,0,1,0],[45,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[60,0,0,1,0],[61,0,0,1,0],[80,0,0,1,0],[85,0,0,1,0],[86,0,0,1,0],[102,0,0,1,0],[108,0,0,1,0],[137,0,0,1,0]],"owns":[[0,0,0,1,0],[15,0,0,0,2],[32,0,0,2,0],[56,0,0,1,0],[84,0,1,0,0],[91,0,0,1,0]],"runtime":[[0,0,0,1,0],[2,0,0,1,0],[10,0,0,0,1],[15,0,0,0,2],[17,0,0,1,0],[25,0,0,2,0],[26,0,0,1,0],[27,0,1,1,0],[28,0,0,1,0],[29,0,0,1,0],[30,0,0,1,0],[31,0,0,1,0],[39,0,0,1,0],[41,0,1,1,0],[45,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[56,0,0,2,0],[57,0,0,1,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,1,0],[61,0,0,1,0],[105,0,0,1,0],[140,0,0,0,1],[143,0,0,2,0],[164,0,0,2,0],[165,0,0,1,0],[166,0,0,1,0],[167,0,1,2,0],[168,0,1,1,0],[169,0,0,1,0],[170,0,0,2,0],[171,0,0,1,0],[172,0,0,1,0],[173,0,0,1,0]],"rendering":[[0,0,0,1,0],[117,0,0,1,0],[162,0,0,1,0]],"styling":[[0,0,0,1,0],[4,0,0,2,0],[15,0,0,0,1],[32,0,0,1,0],[85,0,0,1,0]],"accessibility":[[0,0,0,1,0],[56,0,0,1,0]],"only":[[0,0,0,1,0],[10,0,0,3,0],[13,0,0,1,0],[17,0,0,1,0],[21,0,0,2,0],[28,0,0,1,0],[29,0,0,1,0],[34,0,0,1,0],[70,0,0,0,3],[71,0,0,1,0],[72,0,0,3,0],[73,0,0,1,0],[75,0,0,1,0],[76,0,0,1,0],[79,0,0,1,0],[91,0,0,1,0],[96,0,0,1,0],[99,0,0,1,0],[104,0,0,1,0],[107,0,0,1,0],[108,0,0,2,0],[120,0,0,1,0],[121,0,0,2,0],[122,0,0,1,0],[144,0,0,1,0],[154,0,0,2,0],[163,0,0,1,0],[167,0,0,1,0],[169,0,0,1,0],[171,0,0,1,0],[173,0,0,1,0]],"has":[[0,0,0,1,0],[23,0,0,1,0],[44,0,0,2,0],[48,0,0,1,0],[71,0,0,1,0],[75,0,0,1,0],[139,0,0,1,0]],"honor":[[0,0,0,1,0]],"small":[[0,0,0,1,0],[20,0,0,1,0],[28,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[123,0,0,1,0],[124,0,0,1,0],[166,0,0,1,0],[167,0,0,1,0]],"naming":[[0,0,0,1,0],[2,0,1,0,0],[57,0,0,1,0]],"contract":[[0,0,0,1,0],[2,0,1,1,0],[17,0,0,1,0],[57,0,0,1,0],[70,0,0,1,0],[77,0,0,1,0],[100,0,0,1,0],[135,0,0,1,0],[154,0,0,1,0]],"so":[[0,0,0,1,0],[1,0,0,1,0],[4,0,0,1,0],[7,0,0,1,0],[9,0,0,1,0],[11,0,0,1,0],[16,0,0,1,0],[20,0,0,1,0],[23,0,0,1,0],[36,0,0,1,0],[38,0,0,1,0],[44,0,0,2,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,3,0],[62,0,0,2,0],[63,0,0,1,0],[64,0,0,2,0],[65,0,0,1,0],[66,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[69,0,0,1,0],[72,0,0,3,0],[73,0,0,2,0],[84,0,0,1,0],[90,0,0,1,0],[92,0,0,0,1],[93,0,0,0,1],[95,0,0,1,0],[108,0,0,1,0],[117,0,0,1,0],[118,0,0,1,0],[124,0,0,1,0],[129,0,0,1,0],[136,0,0,1,0],[137,0,0,1,0],[141,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0],[149,0,0,1,0],[150,0,0,1,0],[152,0,0,0,1],[160,0,0,1,0],[161,0,0,1,0],[165,0,0,2,0],[167,0,0,1,0],[169,0,0,1,0]],"remark":[[0,0,0,1,0],[2,0,0,2,0],[4,0,0,1,0],[5,0,0,1,0],[12,0,0,1,0],[16,0,0,0,2],[17,0,0,1,0],[39,0,0,0,1],[57,0,0,2,0],[69,0,0,1,0],[70,0,0,3,4],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,0,1,0],[75,0,0,1,0],[76,0,0,2,0],[77,0,0,1,0],[84,0,0,1,0],[92,0,0,0,1],[101,0,0,1,0],[112,0,0,1,0],[113,0,0,1,0],[114,0,0,0,1],[118,0,1,1,1],[129,0,0,1,0],[141,0,0,0,1],[157,1,1,1,1],[158,1,1,0,0],[159,1,1,0,0],[160,1,1,0,0],[161,1,1,0,0],[162,1,1,0,1],[163,1,1,0,0]],"each":[[0,0,0,1,0],[1,0,0,1,0],[3,0,0,1,0],[20,0,0,2,0],[44,0,0,1,0],[52,0,0,1,0],[72,0,0,1,0],[74,0,0,1,0],[76,0,0,2,0],[79,0,0,1,0],[86,0,0,1,0],[91,0,0,1,0],[110,0,0,1,0],[120,0,0,1,0],[121,0,0,3,0],[139,0,0,1,0],[156,0,0,1,0],[157,0,0,1,0],[160,0,0,1,0],[165,0,0,1,0]],"component":[[0,0,0,1,0],[1,0,0,1,0],[3,0,1,0,0],[4,0,1,0,0],[5,0,1,0,0],[6,0,1,0,0],[7,0,1,0,0],[8,0,1,0,0],[9,0,1,0,0],[10,0,1,0,0],[11,0,1,0,0],[12,0,1,0,0],[13,0,1,0,0],[14,0,1,0,0],[15,0,1,1,0],[16,0,1,0,0],[17,0,0,1,0],[22,0,0,1,0],[57,0,0,2,0],[58,0,0,0,3],[60,0,0,1,0],[70,0,0,1,0],[73,0,0,1,0],[75,0,0,1,0],[85,0,0,2,0],[101,0,0,1,0],[118,0,0,1,0],[153,0,0,1,0],[157,0,0,1,0],[160,0,0,3,0]],"agents":[[0,0,0,1,0],[1,0,0,1,0],[4,0,0,1,0],[6,0,0,1,0],[7,0,0,1,0],[9,0,0,1,0],[10,0,0,1,0],[11,0,0,1,0],[12,0,0,1,0],[16,0,0,0,2],[20,0,0,1,3],[24,0,0,1,0],[38,0,0,1,0],[41,0,0,1,0],[43,1,1,1,0],[44,1,1,2,0],[45,1,1,0,0],[46,1,1,1,0],[47,1,1,0,0],[48,1,1,1,0],[49,1,2,1,0],[50,1,2,0,0],[51,1,2,0,0],[52,1,2,0,0],[53,1,2,1,0],[54,1,1,1,0],[55,1,1,2,0],[70,0,0,0,3],[71,0,0,1,0],[72,0,0,5,0],[73,0,0,1,0],[74,0,0,5,3],[75,0,0,1,0],[76,0,0,1,0],[78,0,0,2,8],[79,0,0,1,0],[80,0,0,5,0],[81,0,0,1,0],[83,0,0,1,0],[84,0,0,1,0],[86,0,0,1,0],[87,0,0,4,0],[88,0,0,1,2],[89,0,1,7,0],[90,0,0,4,1],[91,0,0,1,0],[92,0,0,2,2],[93,0,0,1,0],[94,0,0,3,0],[95,0,0,6,1],[96,0,0,3,0],[97,0,0,1,0],[101,0,0,1,0],[102,0,0,3,0],[104,0,0,4,0],[107,0,0,1,0],[119,0,0,1,0],[120,0,0,5,0],[121,0,0,1,0],[122,0,0,2,0],[123,0,0,3,0],[124,0,0,1,0],[125,0,0,1,0],[137,0,0,2,0],[138,0,0,2,0],[139,0,0,2,0],[140,0,0,1,0],[141,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0],[147,0,0,5,0],[148,0,0,2,0],[149,0,0,2,0],[150,0,0,1,0],[151,0,0,5,0],[152,0,0,1,1],[153,0,0,1,0],[154,0,0,1,0],[155,0,0,3,0],[156,0,0,1,0]],"search":[[0,0,0,1,0],[1,0,0,1,0],[5,0,0,1,0],[16,0,0,0,1],[20,0,0,1,0],[22,0,0,2,0],[24,0,0,2,0],[25,1,1,2,0],[26,1,1,3,3],[27,1,1,2,3],[28,1,1,3,0],[29,1,1,2,1],[30,1,1,2,0],[31,1,1,3,0],[33,0,0,0,1],[36,0,0,3,0],[38,0,0,1,0],[39,0,0,1,1],[41,0,0,2,0],[42,0,0,3,0],[70,0,0,0,4],[71,0,0,2,0],[72,0,0,3,0],[74,0,0,0,4],[75,0,0,2,0],[76,0,0,2,0],[78,0,0,3,3],[79,0,0,2,0],[80,0,0,2,0],[81,0,0,1,0],[82,0,0,1,0],[83,0,0,4,0],[84,0,0,1,0],[86,0,0,2,0],[90,0,0,1,0],[95,0,0,1,0],[101,0,0,1,2],[102,0,0,2,0],[104,0,0,2,0],[107,0,0,2,0],[108,0,0,1,3],[112,0,0,1,0],[120,0,0,1,0],[123,0,0,1,0],[138,0,0,1,0],[144,0,0,1,0],[148,0,0,1,0],[155,0,0,1,0],[164,1,1,2,0],[165,1,1,5,0],[166,1,1,2,3],[167,1,2,3,3],[168,1,1,2,1],[169,1,1,1,1],[170,1,1,1,3],[171,1,1,1,1],[172,1,1,1,0],[173,1,1,2,0]],"llms":[[0,0,0,1,0],[9,0,0,1,0],[11,0,0,0,2],[12,0,0,1,0],[16,0,0,0,2],[19,0,0,3,0],[20,0,0,1,3],[24,0,0,1,0],[33,0,0,0,2],[36,0,0,2,0],[38,0,0,1,0],[39,0,0,1,0],[42,0,0,2,0],[43,0,0,2,0],[44,0,0,2,0],[45,0,0,2,3],[46,0,0,4,0],[47,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,3,0],[52,0,0,4,0],[53,0,0,1,0],[54,0,0,3,1],[55,0,0,3,0],[61,0,0,1,0],[70,0,0,0,2],[71,0,0,4,0],[72,0,0,6,0],[73,0,0,1,0],[74,0,0,2,1],[75,0,0,1,0],[76,0,0,4,0],[78,0,0,2,3],[80,0,0,3,0],[82,0,0,1,0],[83,0,0,5,0],[84,0,0,2,0],[86,0,0,2,0],[89,0,1,4,0],[90,0,0,2,0],[100,0,0,1,0],[101,0,0,1,3],[104,0,0,4,0],[107,0,0,2,0],[108,0,0,0,3],[119,0,0,2,0],[120,0,0,8,0],[121,0,0,13,0],[122,0,0,7,0],[123,0,0,5,2],[124,0,0,3,0],[125,0,0,2,1],[137,0,0,3,0],[138,0,0,5,0],[139,0,0,3,0],[140,0,1,1,0],[141,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0],[144,0,0,3,0],[145,0,0,1,0],[146,0,0,1,0],[147,0,0,1,0],[148,0,0,3,0],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,1,0],[152,0,0,1,0],[153,0,0,1,0],[154,0,0,1,0],[155,0,0,3,0],[156,0,0,1,0],[162,0,0,1,0]],"full":[[0,0,0,1,0],[9,0,0,1,0],[19,0,0,1,0],[22,0,0,2,0],[23,0,0,1,0],[33,0,0,0,1],[36,0,0,1,0],[42,0,0,1,0],[43,0,0,1,0],[45,0,0,0,1],[46,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[55,0,0,1,0],[63,0,0,1,0],[70,0,0,0,1],[71,0,0,2,0],[72,0,0,3,0],[76,0,0,2,0],[78,0,0,1,1],[80,0,0,1,0],[83,0,0,1,0],[84,0,0,1,0],[86,0,0,1,0],[90,0,0,1,0],[92,0,0,1,0],[100,0,0,1,0],[101,0,0,0,1],[103,0,0,1,0],[104,0,0,2,0],[107,0,0,1,0],[108,0,0,0,1],[110,0,0,1,0],[118,0,0,1,0],[119,0,0,1,0],[120,0,0,6,0],[121,0,0,10,0],[122,0,0,5,0],[123,0,0,3,1],[124,0,0,2,0],[125,0,0,1,0],[132,0,0,1,0],[137,0,0,1,0],[138,0,0,2,0],[144,0,0,1,0],[148,0,0,1,0],[152,0,0,1,0],[154,0,0,1,0],[155,0,0,1,0],[162,0,0,1,0]],"txt":[[0,0,0,1,0],[9,0,0,1,0],[11,0,0,0,2],[16,0,0,0,2],[19,0,0,3,0],[20,0,0,1,1],[24,0,0,1,0],[26,0,0,0,1],[33,0,0,0,2],[36,0,0,3,0],[38,0,0,1,0],[39,0,0,1,0],[42,0,0,2,0],[43,0,0,3,0],[44,0,0,4,0],[45,0,0,3,5],[46,0,0,5,0],[47,0,0,2,2],[48,0,0,2,0],[49,0,0,2,0],[50,0,0,3,0],[51,0,0,5,0],[52,0,0,6,0],[53,0,0,2,0],[54,0,0,4,1],[55,0,0,6,0],[61,0,0,1,0],[70,0,0,0,2],[71,0,0,5,0],[72,0,0,6,0],[73,0,0,2,0],[74,0,0,2,1],[75,0,0,1,0],[76,0,0,4,0],[78,0,0,2,3],[80,0,0,3,0],[82,0,0,1,0],[83,0,0,5,0],[84,0,0,2,0],[86,0,0,2,0],[89,0,1,4,0],[90,0,0,2,0],[100,0,0,1,0],[101,0,0,1,4],[104,0,0,5,0],[107,0,0,2,0],[108,0,0,1,4],[119,0,0,2,0],[120,0,0,8,0],[121,0,0,13,0],[122,0,0,7,0],[123,0,0,5,3],[124,0,0,3,0],[125,0,0,2,0],[137,0,0,4,0],[138,0,0,6,0],[139,0,0,3,0],[140,0,1,1,1],[141,0,0,1,0],[142,0,0,2,1],[143,0,0,1,0],[144,0,0,4,0],[145,0,0,1,0],[146,0,0,1,0],[147,0,0,1,0],[148,0,0,3,0],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,1,0],[152,0,0,1,0],[153,0,0,1,0],[154,0,0,1,0],[155,0,0,3,0],[156,0,0,1,0],[162,0,0,1,0]],"why":[[1,0,1,0,0],[52,0,1,0,0],[89,0,1,0,0],[160,0,1,0,0]],"all":[[1,0,1,0,0],[42,0,0,1,0],[50,0,0,1,0],[52,0,0,1,0],[61,0,0,1,0],[72,0,0,1,0],[80,0,0,1,0],[122,0,0,1,0],[123,0,0,1,0],[137,0,0,2,0],[138,0,0,1,0]],"interactive":[[1,0,0,1,0],[16,0,0,1,0],[70,0,0,1,0],[75,0,0,1,0],[157,0,0,1,0]],"like":[[1,0,0,1,0],[4,0,0,1,0],[44,0,1,0,0],[89,0,0,1,0],[90,0,0,1,0],[104,0,0,1,0],[151,0,0,1,0]],"tabs":[[1,0,0,2,0],[2,0,0,1,0],[7,0,1,0,2],[70,0,0,1,0],[75,0,0,1,0],[80,0,0,1,0],[158,0,0,1,0],[167,0,0,0,1]],"callout":[[1,0,0,2,0],[2,0,0,1,0],[4,0,1,0,2],[14,0,0,2,0],[15,0,0,0,2],[17,0,0,1,0],[70,0,0,1,0],[75,0,0,1,0],[80,0,0,1,0],[158,0,0,1,0]],"render":[[1,0,0,2,0],[2,0,0,1,0],[3,0,0,1,0],[15,0,0,0,1],[16,0,0,1,0],[27,0,0,1,0],[41,0,0,2,0],[48,0,0,1,0],[56,1,1,1,0],[57,1,1,0,0],[58,1,1,0,0],[59,1,1,0,0],[60,1,2,0,0],[61,1,1,0,0],[64,0,0,1,0],[74,0,0,0,1],[76,0,0,1,0],[102,0,0,3,0],[115,0,0,1,0],[147,0,0,1,0],[154,0,0,1,0]],"fine":[[1,0,0,1,0],[46,0,0,1,0],[172,0,0,1,0]],"browser":[[1,0,0,1,0],[10,0,0,2,0],[42,0,0,1,0],[43,0,0,1,0],[74,0,0,0,1],[78,0,0,0,1]],"but":[[1,0,0,1,0],[4,0,0,2,0],[19,0,0,2,0],[20,0,0,1,0],[38,0,0,1,0],[86,0,0,1,0],[122,0,0,4,0],[138,0,0,1,0],[151,0,0,1,0],[153,0,0,1,0],[167,0,0,1,0]],"do":[[1,0,0,1,0],[4,0,0,1,0],[7,0,0,1,0],[20,0,0,1,0],[28,0,0,1,0],[29,0,0,1,1],[49,0,0,1,0],[51,0,0,1,0],[61,0,0,2,0],[109,0,0,1,0],[169,0,0,0,1]],"nothing":[[1,0,0,1,0],[68,0,0,1,0]],"reading":[[1,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0],[141,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,1,0],[152,0,0,1,0],[153,0,0,1,0],[154,0,0,1,0],[155,0,0,1,0],[156,0,0,1,0],[168,0,1,0,0]],"raw":[[1,0,0,1,0]],"text":[[1,0,0,1,0],[11,0,0,1,1],[16,0,0,1,0],[19,0,0,1,0],[26,0,0,1,0],[30,0,0,1,0],[46,0,0,1,0],[48,0,0,0,1],[49,0,0,3,0],[54,0,0,1,1],[74,0,0,1,1],[75,0,0,1,0],[78,0,0,0,1],[90,0,0,0,1],[101,0,0,0,1],[104,0,0,1,0],[105,0,0,2,0],[144,0,0,1,0],[146,0,0,0,1],[155,0,0,1,0],[158,0,0,1,0],[159,0,0,1,0],[165,0,0,1,0],[170,0,0,1,0],[172,0,0,1,0]],"flattening":[[1,0,0,1,0],[2,0,0,1,0],[9,0,0,1,0],[11,0,0,1,0],[12,0,0,1,0],[16,0,0,1,0],[17,0,0,1,0],[101,0,0,1,0],[118,0,0,1,0],[129,0,0,1,0]],"converts":[[1,0,0,1,0],[80,0,0,1,0],[101,0,0,1,0]],"portable":[[1,0,0,1,0],[75,0,0,1,0],[83,0,0,1,0],[86,0,0,1,0]],"equivalent":[[1,0,0,1,0],[7,0,0,1,0],[13,0,0,1,0],[75,0,0,1,0],[110,0,0,1,0],[157,0,0,1,0]],"conversion":[[1,0,0,1,0],[6,0,0,1,1],[12,0,0,1,0],[14,0,0,1,0],[15,0,0,0,1],[19,0,0,1,0],[26,0,0,1,0],[39,0,0,1,0],[78,0,0,1,0],[84,0,0,1,0],[86,0,0,1,0],[105,0,0,1,0],[113,0,0,1,0],[114,0,0,1,0],[115,0,0,1,0],[116,0,0,1,0],[117,0,0,2,0],[118,0,0,1,0],[140,0,0,0,1],[141,0,0,1,0],[162,0,0,2,0],[166,0,0,1,0]],"time":[[1,0,0,1,0],[14,0,0,1,0],[25,0,0,1,0],[45,0,0,1,0],[76,0,0,1,0],[87,0,0,1,0],[136,0,0,1,0],[145,0,0,1,0],[154,0,0,1,0],[162,0,0,2,0],[164,0,0,1,0],[166,0,1,0,0]],"becomes":[[1,0,0,4,0],[18,0,0,1,0],[19,0,0,2,0],[20,0,0,1,0],[21,0,0,1,0],[22,0,0,1,0],[23,0,0,1,0],[24,0,0,1,0],[70,0,0,3,0],[101,0,0,1,0],[173,0,0,1,0]],"blockquote":[[1,0,0,1,0],[4,0,0,1,0],[70,0,0,1,0],[75,0,0,1,0],[139,0,0,1,0],[158,0,0,1,0]],"stack":[[1,0,0,1,0],[57,0,0,1,0],[70,0,0,2,1],[75,0,0,1,0],[76,0,0,1,0],[84,0,0,1,0],[113,0,0,1,0],[118,0,0,2,0],[129,0,0,1,0],[157,0,0,2,0],[158,0,1,2,0],[159,0,1,1,0],[160,0,0,1,0],[161,0,0,2,0],[162,0,0,1,0],[163,0,0,1,0]],"bold":[[1,0,0,1,0],[6,0,0,1,0],[7,0,0,1,0],[70,0,0,1,0],[75,0,0,1,0],[158,0,0,1,0]],"headings":[[1,0,0,1,0],[7,0,0,1,0],[20,0,0,1,0],[21,0,0,1,0],[58,0,0,2,0],[61,0,0,2,0],[70,0,0,1,0],[72,0,0,1,0],[75,0,0,3,0],[138,0,0,1,0],[154,0,0,1,0],[165,0,0,1,0]],"one":[[1,0,0,1,0],[8,0,0,1,0],[19,0,0,1,0],[20,0,0,1,0],[24,0,0,3,0],[32,0,0,1,0],[42,0,0,3,0],[45,0,0,0,1],[46,0,1,1,0],[47,0,1,0,0],[50,0,0,1,0],[54,0,0,1,0],[69,0,0,2,0],[70,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,0,2,0],[75,0,0,1,0],[76,0,0,2,0],[77,0,0,1,0],[78,0,0,2,0],[79,0,0,1,0],[80,0,0,1,0],[81,0,0,1,0],[84,0,0,1,0],[86,0,0,2,0],[91,0,0,1,0],[100,0,1,0,1],[106,0,0,0,1],[107,0,0,1,0],[115,0,0,1,0],[116,0,0,1,0],[121,0,0,2,0],[138,0,0,1,0],[140,0,0,0,1],[141,0,0,0,1],[152,0,0,0,1],[160,0,0,2,0],[162,0,0,1,0],[170,0,0,2,0]],"per":[[1,0,0,1,0],[8,0,0,2,0],[24,0,0,1,0],[52,0,0,2,0],[65,0,0,1,0],[80,0,0,1,0],[87,0,0,2,0],[88,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[91,0,0,1,0],[92,0,0,1,0],[93,0,0,1,0],[94,0,0,1,0],[95,0,0,1,0],[96,0,0,1,0],[97,0,0,1,0],[107,0,0,1,0],[113,0,0,1,0],[123,0,0,1,0],[138,0,0,1,0],[158,0,0,1,0],[162,0,0,1,0]],"tab":[[1,0,0,1,0],[2,0,0,1,0],[7,0,0,0,6],[158,0,0,1,0]],"typetable":[[1,0,0,1,0],[2,0,0,1,0],[14,0,1,1,1],[70,0,0,1,0],[80,0,0,1,0],[158,0,0,1,0],[163,0,0,1,0]],"table":[[1,0,0,1,0],[8,0,0,1,0],[14,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[58,0,0,2,0],[59,0,0,1,0],[60,0,0,2,0],[61,0,0,1,0],[70,0,0,1,0],[158,0,0,2,0],[162,0,0,1,0]],"mermaid":[[1,0,0,2,0],[2,0,0,1,0],[16,0,1,1,2],[20,0,0,0,1],[33,0,0,0,1],[70,0,0,0,1],[74,0,0,0,1],[78,0,0,0,1],[80,0,0,1,0],[88,0,0,0,1],[117,0,0,1,0],[158,0,0,2,1]],"fenced":[[1,0,0,1,0],[9,0,0,1,0],[11,0,0,1,0],[16,0,0,1,0],[154,0,0,1,0],[158,0,0,3,0],[159,0,0,3,0]],"block":[[1,0,0,1,0],[9,0,0,1,0],[16,0,0,1,0],[18,0,0,1,0],[158,0,0,2,0],[159,0,0,2,0]],"diagram":[[1,0,0,1,0],[16,0,0,1,0],[81,0,0,1,0]],"source":[[1,0,0,1,0],[15,0,0,1,1],[16,0,0,1,0],[20,0,0,1,0],[21,0,0,1,2],[24,0,0,1,0],[25,0,0,1,0],[26,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[29,0,0,2,0],[30,0,0,1,0],[31,0,0,1,0],[32,0,0,3,0],[33,0,0,1,1],[34,0,1,2,0],[35,0,0,1,0],[36,0,0,1,0],[37,0,0,3,0],[38,0,0,2,0],[39,0,0,1,0],[40,0,0,1,0],[41,0,0,3,0],[42,0,0,2,0],[44,0,0,1,0],[62,0,0,1,0],[69,0,0,1,0],[70,0,0,1,0],[71,0,0,2,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,0,1,0],[75,0,0,1,0],[76,0,0,1,0],[77,0,0,1,0],[78,0,0,1,1],[79,0,0,1,0],[80,0,0,1,0],[81,0,0,1,0],[84,0,0,1,0],[96,0,0,1,0],[110,0,0,1,0],[117,0,0,1,0],[118,0,0,1,0],[126,0,0,1,0],[137,0,0,1,0],[151,0,0,1,0],[161,0,0,1,0],[164,0,0,2,0],[165,0,0,1,0],[166,0,0,1,0],[167,0,0,1,0],[168,0,0,1,0],[169,0,1,1,0],[170,0,0,1,0],[171,0,0,1,0],[172,0,0,1,0],[173,0,0,1,0]],"survives":[[1,0,0,1,0]],"other":[[1,0,0,1,0],[16,0,0,1,0],[46,0,0,1,0],[52,0,0,1,0],[65,0,1,0,0],[70,0,0,1,0],[74,0,0,1,0],[128,0,0,1,0],[136,0,0,1,0]],"tooling":[[1,0,0,1,0],[87,0,0,1,0]],"this":[[1,0,0,1,0],[2,0,0,1,0],[4,0,0,1,0],[6,0,0,1,1],[9,0,0,1,1],[10,0,0,1,0],[24,0,1,0,0],[26,0,0,1,0],[32,0,0,2,0],[38,0,0,1,0],[43,0,0,1,0],[45,0,0,1,0],[46,0,0,1,0],[56,0,0,1,0],[68,0,0,1,0],[69,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[87,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[95,0,0,2,0],[96,0,1,2,0],[102,0,0,1,0],[107,0,0,1,0],[115,0,0,1,0],[126,0,0,1,0],[139,0,0,1,0],[152,0,0,0,1],[154,0,0,1,0],[158,0,0,1,0],[161,0,0,1,0]],"means":[[1,0,0,1,0],[122,0,0,1,0],[144,0,0,1,0]],"same":[[1,0,0,1,0],[2,0,0,1,0],[6,0,0,1,0],[11,0,0,1,0],[20,0,0,1,0],[24,0,0,1,0],[37,0,0,1,0],[39,0,0,1,0],[43,0,0,1,0],[50,0,0,1,0],[58,0,1,0,0],[61,0,0,1,0],[62,0,0,1,0],[67,0,0,1,0],[71,0,0,1,0],[75,0,0,2,0],[78,0,0,1,0],[79,0,0,1,0],[80,0,0,1,0],[81,0,0,1,0],[95,0,0,1,0],[96,0,0,1,0],[101,0,0,1,0],[110,0,0,1,0],[120,0,0,1,0],[129,0,0,1,0],[136,0,0,1,0],[137,0,0,1,0],[139,0,0,1,0],[151,0,0,3,0],[153,0,0,2,0],[154,0,0,1,0],[168,0,0,1,0],[171,0,0,1,0]],"content":[[1,0,0,1,0],[4,0,0,1,1],[6,0,0,1,0],[7,0,0,3,0],[10,0,0,2,0],[12,0,0,4,0],[26,0,0,1,1],[27,0,0,0,3],[28,0,0,0,1],[29,0,0,0,1],[31,0,0,1,0],[32,0,0,2,0],[36,0,0,1,0],[42,0,0,1,0],[43,0,0,1,0],[44,0,0,1,0],[45,0,0,1,0],[49,0,0,2,0],[54,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[70,0,0,0,1],[72,0,0,3,0],[73,0,0,1,0],[74,0,0,1,0],[75,0,0,2,0],[76,0,0,1,0],[80,0,0,1,0],[83,0,0,2,0],[86,0,0,2,0],[89,0,0,1,0],[100,0,0,1,0],[101,0,0,1,1],[103,0,0,1,0],[107,0,0,1,0],[108,0,0,0,1],[110,0,0,1,0],[120,0,0,1,0],[129,0,1,0,0],[131,0,0,0,1],[136,0,0,2,0],[144,0,0,2,0],[146,0,0,0,3],[147,0,0,1,0],[161,0,0,1,0],[165,0,0,4,0],[166,0,0,1,1],[167,0,0,0,3],[168,0,0,0,2],[169,0,0,0,1],[170,0,0,0,1],[171,0,0,0,1]],"reaches":[[1,0,0,1,0]],"three":[[1,0,0,1,0],[18,0,0,1,0],[69,0,0,1,0],[70,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,1,1,0],[75,0,0,1,0],[76,0,0,1,0],[77,0,0,1,0],[168,0,0,1,0],[170,0,0,1,0]],"audiences":[[1,0,0,1,0],[69,0,0,1,0],[70,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,1,1,0],[75,0,0,1,0],[76,0,0,1,0],[77,0,0,1,0]],"humans":[[1,0,0,1,0],[6,0,0,1,0],[43,0,0,1,0],[74,0,0,1,1],[78,0,0,0,3],[80,0,0,1,0],[87,0,0,1,0]],"without":[[1,0,0,1,0],[10,0,0,1,0],[11,0,0,1,0],[19,0,0,1,0],[24,0,0,1,0],[25,0,0,1,0],[44,0,0,1,0],[48,0,0,1,0],[52,0,0,1,0],[87,0,0,1,0],[115,0,0,1,0],[117,0,0,1,0],[122,0,0,1,0],[142,0,0,1,0],[156,0,0,1,0],[164,0,0,1,0],[165,0,0,1,0]],"you":[[1,0,0,1,0],[2,0,0,1,0],[14,0,0,1,0],[17,0,0,1,0],[20,0,0,2,0],[22,0,0,1,0],[24,0,1,1,0],[26,0,0,1,0],[29,0,0,1,0],[32,0,0,1,0],[39,0,0,1,0],[43,0,0,1,0],[46,0,0,1,0],[50,0,0,1,0],[52,0,0,1,0],[66,0,0,1,0],[71,0,0,1,0],[74,0,0,1,0],[75,0,0,1,0],[78,0,0,1,0],[79,0,0,2,0],[80,0,1,0,0],[83,0,0,3,0],[86,0,0,3,0],[87,0,0,1,0],[92,0,0,1,0],[96,0,0,1,0],[101,0,0,2,0],[110,0,0,1,0],[112,0,0,1,0],[113,0,0,1,0],[115,0,0,1,0],[135,0,0,1,0],[137,0,0,1,0],[143,0,0,1,0],[149,0,0,2,0],[152,0,0,0,1],[154,0,0,1,0],[155,0,0,1,0],[160,0,0,2,0],[163,0,0,2,0],[165,0,0,1,0],[168,0,0,2,0],[169,0,0,1,0],[171,0,0,1,0]],"maintaining":[[1,0,0,1,0]],"two":[[1,0,0,1,0],[2,0,0,1,0],[25,0,0,1,0],[52,0,0,1,0],[69,0,0,1,0],[70,0,0,1,0],[71,0,1,2,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,0,2,0],[75,0,0,2,0],[76,0,0,1,0],[77,0,0,1,0],[103,0,0,1,0],[155,0,0,1,0],[163,0,0,1,0]],"copies":[[1,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0]],"recognizes":[[2,0,0,1,0]],"these":[[2,0,0,1,0],[42,0,0,1,0],[72,0,0,1,0],[101,0,0,1,0],[113,0,0,1,0],[137,0,0,1,0],[152,0,0,0,1],[155,0,0,1,0]],"names":[[2,0,0,4,0],[17,0,0,1,0],[57,0,0,2,0],[69,0,0,1,0],[81,0,0,1,0],[106,0,0,1,0],[160,0,0,1,0],[167,0,0,1,0],[173,0,0,1,0]],"if":[[2,0,0,2,0],[17,0,0,1,0],[19,0,0,1,0],[20,0,0,2,0],[24,0,0,1,0],[26,0,0,1,0],[37,0,0,1,0],[38,0,0,1,0],[39,0,0,2,0],[46,0,0,1,2],[48,0,0,2,1],[50,0,0,1,0],[52,0,0,1,0],[54,0,0,1,0],[57,0,0,1,0],[58,0,0,0,3],[76,0,0,1,0],[83,0,0,1,0],[91,0,0,1,0],[92,0,0,1,0],[93,0,0,0,1],[94,0,0,2,0],[96,0,0,1,0],[106,0,0,2,0],[118,0,0,1,0],[144,0,0,0,1],[146,0,0,1,0],[153,0,0,0,1],[154,0,0,1,0],[160,0,0,1,0],[163,0,0,1,0]],"just":[[2,0,0,1,0],[96,0,0,1,0],[101,0,0,1,0],[119,0,0,1,0],[165,0,0,1,0]],"works":[[2,0,0,1,0],[24,0,0,1,0],[29,0,0,1,0],[69,1,1,0,0],[70,1,1,0,0],[71,1,1,0,0],[72,1,1,1,0],[73,1,1,0,0],[74,1,1,0,0],[75,1,1,0,0],[76,1,1,0,0],[77,1,1,0,0],[81,0,0,1,0],[104,0,0,1,0],[105,0,0,1,0],[120,0,0,1,0],[137,0,0,1,0],[140,0,0,0,3],[143,0,0,1,0],[152,0,0,0,2],[167,0,0,1,0]],"accordion":[[2,0,0,1,0],[12,0,1,0,2],[158,0,0,1,0]],"accordionitem":[[2,0,0,1,0],[12,0,0,0,2]],"audience":[[2,0,0,1,0],[10,0,1,0,4],[135,0,0,0,1],[158,0,0,2,0]],"card":[[2,0,0,1,0],[5,0,0,0,1]],"cards":[[2,0,0,1,0],[5,0,1,0,2],[158,0,0,1,0]],"commandtabs":[[2,0,0,1,0],[8,0,1,0,3],[158,0,0,1,0]],"details":[[2,0,0,1,0],[12,0,0,2,1],[158,0,0,1,0]],"example":[[2,0,0,1,0],[15,0,1,1,2],[26,0,0,0,2],[36,0,0,0,1],[37,0,0,0,2],[39,0,0,0,4],[40,0,0,0,2],[46,0,0,1,0],[50,0,0,2,0],[59,0,0,0,1],[60,0,0,2,0],[101,0,0,1,1],[140,0,1,0,0],[152,0,1,0,0],[159,0,0,1,0],[160,0,0,1,0]],"extractedtypetable":[[2,0,0,1,0],[14,0,1,1,0],[158,0,0,1,0],[162,0,0,1,1]],"file":[[2,0,0,1,0],[11,0,0,0,2],[14,0,0,1,0],[15,0,0,1,0],[18,0,0,1,0],[35,0,0,1,0],[38,0,0,1,0],[39,0,0,1,0],[42,0,0,1,0],[59,0,0,1,0],[65,0,0,1,0],[67,0,0,1,0],[72,0,0,2,0],[74,0,0,1,0],[76,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[101,0,0,1,0],[104,0,0,2,0],[106,0,0,1,0],[113,0,0,1,0],[115,0,0,1,0],[116,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0],[131,0,0,0,1],[137,0,0,1,0],[138,0,0,2,0],[139,0,0,1,0],[147,0,0,1,0],[152,0,0,0,2],[162,0,0,4,0]],"filetree":[[2,0,0,1,0],[11,0,1,0,2],[158,0,0,1,0],[159,0,0,1,0]],"folder":[[2,0,0,1,0],[11,0,0,0,2],[38,0,0,1,0],[69,0,0,1,0],[98,0,0,1,0],[104,0,0,2,0],[106,0,0,1,0]],"prompt":[[2,0,0,1,0],[9,0,1,4,4],[29,0,0,1,0],[158,0,0,2,0],[159,0,0,2,0],[169,0,0,1,1]],"section":[[2,0,0,1,0],[3,0,0,1,0],[20,0,0,1,0],[24,0,0,1,0],[31,0,0,1,0],[75,0,0,1,0],[120,0,0,1,0],[121,0,0,3,0],[122,0,0,1,0],[124,0,0,1,0],[134,0,0,1,0],[154,0,0,1,0],[158,0,0,1,0],[165,0,0,1,0]],"selector":[[2,0,0,1,0]],"step":[[2,0,0,1,0],[6,0,0,1,4],[52,0,0,1,0],[61,0,0,1,0],[76,0,0,1,0],[92,0,0,1,0],[102,0,1,0,0],[147,0,0,2,0]],"steps":[[2,0,0,1,0],[6,0,1,0,2],[37,0,0,1,0],[64,0,0,0,1],[80,0,0,1,0],[158,0,0,1,0]],"topicswitcher":[[2,0,0,1,0],[13,0,1,0,1],[22,0,0,1,0],[158,0,0,1,0],[159,0,0,1,0]],"uses":[[2,0,0,1,0],[49,0,0,1,0],[57,0,0,1,0],[64,0,0,0,2],[75,0,0,1,0],[95,0,0,1,0],[120,0,0,1,0],[124,0,0,1,0],[154,0,0,1,0]],"different":[[2,0,0,1,0],[57,0,0,1,0],[63,0,0,1,0],[71,0,0,1,0],[74,0,0,2,0],[96,0,0,1,0],[150,0,0,1,0]],"have":[[2,0,0,1,0],[20,0,0,1,0],[38,0,0,1,0],[43,0,0,1,0],[46,0,0,1,0],[66,0,0,1,0],[96,0,0,1,0],[168,0,0,1,0]],"options":[[2,0,0,1,0],[103,0,0,0,1],[104,0,0,0,1],[110,0,0,0,1],[162,0,0,1,0],[170,0,0,1,0]],"rename":[[2,0,0,1,0]],"match":[[2,0,0,1,0],[61,0,0,1,0],[173,0,0,1,0]],"add":[[2,0,0,1,0],[8,0,0,3,1],[15,0,0,1,0],[17,0,0,1,0],[25,1,1,0,0],[26,1,1,0,0],[27,1,1,0,0],[28,1,2,1,0],[29,1,1,0,0],[30,1,1,0,0],[31,1,1,0,0],[41,0,0,2,0],[46,0,1,0,0],[47,0,1,0,0],[48,0,1,1,0],[55,0,0,2,0],[57,0,0,1,0],[79,0,0,1,0],[80,0,0,1,0],[92,0,0,1,0],[95,0,0,1,0],[99,0,0,3,0],[100,0,0,1,0],[102,0,0,1,0],[105,0,0,1,0],[110,0,0,1,0],[135,0,0,1,0],[147,0,0,1,0],[161,0,0,1,0],[163,0,0,1,0],[173,0,1,1,0]],"custom":[[2,0,0,1,0],[38,0,0,1,0],[39,0,1,1,0],[40,0,1,0,0],[57,0,0,1,0],[92,0,0,1,0],[99,0,0,1,0],[109,0,1,1,0],[110,0,0,1,0],[112,0,0,2,0],[113,0,0,1,0],[130,0,0,3,0],[135,0,1,1,0],[154,0,0,1,0],[160,0,0,2,0],[163,0,0,1,0]],"plugin":[[2,0,0,1,0],[17,0,0,2,0],[39,0,0,1,0],[57,0,0,1,0],[70,0,0,0,1],[83,0,0,1,0],[84,0,0,1,0],[92,0,0,1,0],[99,0,0,1,0],[112,0,0,1,0],[113,0,0,2,0],[114,0,0,1,0],[118,0,0,1,0],[157,0,0,1,0],[158,0,0,1,0],[159,0,0,1,0],[160,0,0,2,0],[161,0,0,1,0],[162,0,0,4,0],[163,0,1,2,0]],"that":[[2,0,0,2,0],[20,0,0,3,0],[21,0,0,1,0],[22,0,0,1,0],[23,0,0,1,0],[30,0,0,1,0],[32,0,0,3,0],[33,0,0,1,0],[34,0,0,2,0],[35,0,0,2,0],[36,0,0,2,0],[37,0,0,1,0],[38,0,0,1,0],[39,0,0,1,0],[40,0,0,1,0],[41,0,0,1,0],[42,0,0,1,0],[49,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[62,0,0,1,0],[63,0,0,2,0],[65,0,0,1,0],[71,0,0,2,0],[74,0,0,3,0],[75,0,0,3,0],[76,0,0,1,0],[78,0,0,1,0],[79,0,0,1,0],[80,0,0,1,0],[83,0,0,3,0],[86,0,0,1,0],[87,0,0,1,0],[89,0,0,2,0],[90,0,0,1,0],[96,0,0,2,0],[101,0,0,2,0],[106,0,0,1,1],[107,0,0,1,0],[119,0,0,1,0],[120,0,0,1,0],[121,0,0,2,0],[122,0,0,3,0],[124,0,0,1,0],[129,0,0,1,0],[131,0,0,1,0],[135,0,0,1,0],[137,0,0,1,0],[138,0,0,3,0],[139,0,0,1,0],[140,0,0,0,2],[141,0,0,0,1],[142,0,0,1,0],[151,0,0,2,0],[152,0,0,0,1],[154,0,0,1,0],[157,0,0,1,0],[158,0,0,1,0],[159,0,0,1,0],[160,0,0,1,0],[161,0,0,1,0],[162,0,0,1,0],[163,0,0,1,0],[164,0,0,1,0],[170,0,0,1,0],[173,0,0,1,0]],"maps":[[2,0,0,1,0],[57,0,0,1,0]],"back":[[2,0,0,1,0],[57,0,0,1,0],[106,0,0,1,0],[115,0,0,1,0],[139,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0]],"above":[[2,0,0,1,0],[14,0,0,1,1],[49,0,0,1,0],[83,0,0,1,0]],"registration":[[2,0,0,1,0]],"heading":[[2,0,0,1,0],[14,0,0,1,1],[19,0,0,1,0],[27,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[58,0,1,1,0],[59,0,0,1,0],[60,0,0,1,0],[61,0,0,3,0],[75,0,0,1,0],[154,0,0,1,0],[158,0,0,1,0],[165,0,0,1,0],[167,0,0,1,0],[168,0,0,1,0]],"ids":[[2,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,1,0],[61,0,0,2,0]],"page":[[2,0,0,1,0],[10,0,0,1,0],[18,0,0,2,0],[19,0,0,1,0],[20,0,0,2,3],[21,0,0,1,0],[22,0,0,3,0],[23,0,0,1,0],[24,0,0,1,0],[27,0,0,1,0],[31,0,0,1,0],[42,0,0,3,0],[44,0,0,4,0],[45,0,0,1,0],[48,0,0,4,4],[50,0,0,1,0],[51,0,0,1,0],[55,0,0,2,0],[56,0,0,1,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,1,0],[61,0,0,1,0],[63,0,0,1,0],[69,0,0,1,0],[70,0,0,0,1],[72,0,0,3,0],[73,0,0,1,0],[75,0,0,2,0],[76,0,0,1,0],[100,0,1,2,0],[102,0,0,2,0],[106,0,0,1,0],[107,0,0,1,0],[117,0,0,1,0],[120,0,0,4,0],[121,0,0,2,0],[122,0,0,1,0],[123,0,0,2,0],[126,0,0,1,0],[129,0,0,1,0],[130,0,0,1,0],[138,0,0,2,0],[139,0,0,1,0],[144,0,0,1,0],[146,0,0,2,0],[154,0,0,3,0],[165,0,0,2,0],[168,0,0,1,0],[173,0,0,1,0]],"sidebars":[[2,0,0,1,0],[154,0,0,1,0]],"concerns":[[2,0,0,1,0]],"see":[[2,0,0,1,0],[4,0,0,1,0],[19,0,0,1,0],[23,0,0,1,0],[38,0,0,1,0],[43,0,0,1,0],[50,0,0,1,0],[63,0,0,1,0],[70,0,0,2,0],[74,0,0,1,0],[75,0,0,1,0],[81,0,0,1,0],[85,0,0,1,0],[96,0,0,1,0],[100,0,0,1,0],[101,0,0,1,0],[107,0,0,1,0],[109,0,0,1,0],[110,0,0,1,0],[118,0,0,1,0],[129,0,0,1,0],[136,0,0,1,0],[138,0,0,1,0],[147,0,0,1,0],[152,0,0,1,0],[154,0,0,1,0]],"toc":[[2,0,0,1,0],[41,0,0,1,0],[56,1,1,0,0],[57,1,1,0,0],[58,1,1,0,0],[59,1,2,1,1],[60,1,1,1,0],[61,1,1,2,0],[102,0,0,2,0],[154,0,0,3,1]],"setup":[[2,0,0,1,0],[64,0,0,0,1],[79,0,0,1,0],[101,0,0,1,0],[102,0,1,0,0],[156,0,0,1,0]],"reference":[[3,0,1,0,0],[4,0,1,0,0],[5,0,1,0,1],[6,0,1,0,0],[7,0,1,0,0],[8,0,1,0,0],[9,0,1,0,0],[10,0,1,0,0],[11,0,1,0,0],[12,0,1,1,1],[13,0,1,0,0],[14,0,1,0,0],[15,0,1,0,0],[16,0,1,0,0],[20,0,0,0,1],[23,0,0,1,0],[31,0,0,1,0],[38,0,0,0,2],[50,0,0,1,0],[63,0,0,1,0],[77,0,0,1,0],[79,0,0,1,0],[90,0,0,0,1],[97,0,0,1,0],[101,0,0,1,0],[106,0,0,0,2],[110,0,0,1,0],[120,0,0,1,0],[126,0,0,1,0],[140,0,0,0,2],[152,0,0,0,2]],"below":[[3,0,0,1,0],[130,0,0,1,0],[152,0,0,0,1]],"shows":[[3,0,0,1,0],[11,0,0,1,0],[101,0,0,1,0]],"authored":[[3,0,0,1,0],[16,0,0,1,0],[18,0,0,1,0],[19,0,0,1,0],[20,0,0,1,0],[21,0,0,1,0],[22,0,0,1,0],[23,0,0,1,0],[24,0,0,1,0]],"live":[[3,0,0,1,0],[7,0,0,1,0],[32,0,0,1,0],[33,0,0,1,0],[34,0,0,1,0],[35,0,0,1,0],[36,0,0,1,0],[37,0,0,2,0],[38,0,0,1,0],[39,0,0,1,0],[40,0,0,1,0],[41,0,0,1,0],[42,0,0,1,0],[50,0,0,1,0],[52,0,0,1,0],[125,0,0,1,0],[145,0,0,1,0],[147,0,0,1,0]],"wraps":[[4,0,0,1,0]],"supporting":[[4,0,0,2,0],[12,0,0,1,1]],"context":[[4,0,0,2,0],[26,0,0,1,0],[29,0,0,1,0],[35,0,0,1,0],[67,0,0,1,0],[84,0,0,1,0],[104,0,0,1,0],[119,0,0,1,0],[120,0,0,2,0],[122,0,0,3,0],[123,0,0,1,0],[138,0,0,1,0],[146,0,0,0,1],[168,0,0,1,0],[169,0,0,2,1]],"warnings":[[4,0,0,2,0],[35,0,0,0,1],[37,0,0,0,1],[64,0,0,2,1],[66,0,0,0,1],[110,0,0,3,0],[131,0,0,0,1],[135,0,0,1,0]],"tips":[[4,0,0,2,0]],"variants":[[4,0,0,2,0],[120,0,0,1,0],[124,0,0,1,0],[149,0,0,1,0]],"change":[[4,0,0,2,0]],"identically":[[4,0,0,2,0],[86,0,0,1,0]],"info":[[4,0,0,1,1],[14,0,0,1,1]],"heads":[[4,0,0,1,1]],"up":[[4,0,0,1,1],[43,0,0,1,0],[44,0,0,1,0],[45,0,0,1,0],[46,0,0,1,0],[47,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,2,0],[61,0,0,1,0],[62,0,0,1,0],[101,0,0,1,0]],"callouts":[[4,0,0,1,0]],"wrap":[[4,0,0,1,0]],"flattens":[[4,0,0,1,0],[5,0,0,1,0],[6,0,0,1,0],[7,0,0,1,0],[8,0,0,1,0],[57,0,0,1,0],[75,0,0,2,0],[113,0,0,1,0],[157,0,0,1,0],[158,0,0,1,0],[159,0,0,1,0],[160,0,0,1,0],[161,0,0,1,0],[162,0,0,1,0],[163,0,0,1,0]],"them":[[4,0,0,1,0],[12,0,0,1,1],[22,0,0,1,0],[25,0,0,1,0],[27,0,0,1,0],[46,0,0,2,0],[50,0,0,1,0],[57,0,0,1,0],[68,0,0,1,0],[91,0,0,1,0],[108,0,0,1,0],[118,0,0,1,0],[132,0,0,1,0],[152,0,0,0,1],[166,0,0,1,0]],"blockquotes":[[4,0,0,1,0]],"still":[[4,0,0,1,0],[12,0,0,1,0],[19,0,0,1,0],[23,0,0,1,0],[32,0,0,1,0],[58,0,0,1,0],[80,0,0,1,0],[83,0,0,1,0],[106,0,0,1,0],[123,0,0,1,0],[129,0,0,1,0],[138,0,0,1,0],[167,0,0,1,0]],"warning":[[4,0,0,2,0],[64,0,0,1,0],[110,0,0,1,0]],"don":[[4,0,0,1,0],[22,0,0,1,0],[63,0,0,1,0],[74,0,0,1,0],[78,0,0,1,0],[90,0,0,1,0],[96,0,0,2,0],[132,0,0,1,0],[149,0,0,1,0],[160,0,0,1,0],[163,0,0,1,0],[170,0,0,1,0]],"success":[[4,0,0,1,0],[15,0,0,0,1],[105,0,0,1,0]],"error":[[4,0,0,1,0],[23,0,0,2,0],[35,0,0,0,1],[37,0,0,0,2],[46,0,0,0,7],[63,0,0,1,0],[64,0,0,1,1],[65,0,0,0,1],[67,0,0,0,1],[68,0,0,1,0],[93,0,0,0,1],[105,0,0,4,0],[108,0,0,1,0],[110,0,0,2,0],[128,0,0,6,0],[129,0,0,3,0],[130,0,0,1,1],[131,0,0,0,2],[135,0,0,1,0],[150,0,0,1,0],[153,0,0,0,1],[173,0,0,1,0]],"tip":[[4,0,0,1,0],[50,0,0,1,0],[101,0,0,1,0]],"tsx":[[4,0,0,0,1],[5,0,0,0,1],[6,0,0,0,1],[7,0,0,0,1],[8,0,0,0,1],[9,0,0,0,1],[10,0,0,0,1],[11,0,0,0,1],[12,0,0,0,1],[13,0,0,0,1],[14,0,0,0,1],[15,0,0,0,3],[16,0,0,0,1],[57,0,0,0,1],[58,0,0,0,1],[60,0,0,1,0]],"title":[[4,0,0,0,1],[5,0,0,0,1],[6,0,0,0,2],[9,0,0,0,1],[12,0,0,0,1],[14,0,0,1,1],[15,0,0,0,2],[19,0,0,1,1],[21,0,0,0,3],[22,0,0,1,0],[38,0,0,0,3],[48,0,0,1,0],[70,0,0,0,1],[100,0,0,1,1],[106,0,0,1,2],[108,0,0,0,1],[117,0,0,1,0],[132,0,0,2,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,0,1],[139,0,0,1,0],[146,0,0,0,2]],"variant":[[4,0,0,0,1],[7,0,0,1,0],[14,0,0,1,1],[15,0,0,0,1],[120,0,0,3,0],[122,0,0,2,0]],"body":[[4,0,0,0,1],[9,0,0,1,0],[14,0,0,1,1],[19,0,0,1,0],[49,0,0,1,0],[54,0,0,1,0],[70,0,0,0,1],[72,0,0,1,0],[73,0,0,1,0],[75,0,0,1,0],[144,0,0,1,0],[147,0,0,1,0],[159,0,0,1,0],[165,0,0,1,0]],"goes":[[4,0,0,0,1],[49,0,0,1,0],[50,0,0,1,0]],"here":[[4,0,0,0,1],[81,0,0,1,0]],"grid":[[5,0,0,1,0]],"short":[[5,0,0,1,0],[22,0,0,1,0],[83,0,1,0,0]],"linked":[[5,0,0,1,0]],"entry":[[5,0,0,1,0],[19,0,0,1,0],[29,0,0,1,0],[48,0,0,1,2],[53,0,0,1,0],[54,0,0,1,0],[58,0,0,1,0],[99,0,0,1,0],[112,0,1,1,0],[113,0,0,1,0],[136,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[139,0,0,1,0],[150,0,0,1,0],[162,0,0,1,0],[164,0,0,1,0],[170,0,1,0,0]],"points":[[5,0,0,1,0],[23,0,0,1,0],[89,0,0,1,0],[99,0,0,1,0],[106,0,0,1,0],[112,0,1,1,0],[129,0,0,1,0],[138,0,0,1,0],[139,0,0,2,0],[140,0,0,0,1],[145,0,0,0,1],[164,0,0,1,0],[170,0,1,0,0]],"bullet":[[5,0,0,1,0]],"list":[[5,0,0,1,0],[6,0,0,2,1],[63,0,0,1,0],[91,0,0,1,0],[94,0,0,1,0],[110,0,0,1,0],[152,0,0,0,1],[158,0,0,3,0],[159,0,0,1,0]],"links":[[5,0,0,1,0],[23,0,0,1,0],[35,0,0,1,0],[42,0,0,1,0],[44,0,0,2,0],[46,0,0,1,0],[48,0,0,1,0],[52,0,0,1,0],[54,0,0,2,0],[55,0,0,1,0],[58,0,0,1,0],[61,0,0,1,0],[63,0,0,2,0],[72,0,0,2,0],[74,0,0,1,0],[76,0,0,1,0],[79,0,0,1,0],[80,0,0,1,0],[84,0,0,1,0],[89,0,0,1,0],[110,0,0,1,0],[120,0,0,3,0],[121,0,0,7,0],[122,0,0,3,0],[123,0,0,1,0],[129,0,0,2,0],[137,0,0,1,0],[138,0,0,4,0],[146,0,0,1,1],[151,0,0,1,0],[152,0,0,1,0],[168,0,0,1,0],[170,0,0,1,0]],"convert":[[5,0,0,1,2],[19,0,0,1,0],[39,0,0,0,1],[75,0,0,1,0],[76,0,0,1,0],[92,0,0,0,1],[104,0,0,1,0],[112,0,0,1,0],[113,1,1,2,1],[114,1,1,2,0],[115,1,1,2,0],[116,1,1,2,0],[117,1,1,1,0],[118,1,1,1,0],[141,0,0,0,1]],"description":[[5,0,0,0,1],[9,0,0,0,1],[14,0,0,1,2],[15,0,0,0,1],[19,0,0,1,1],[22,0,0,1,0],[48,0,0,1,0],[70,0,0,0,1],[71,0,0,1,0],[72,0,0,1,0],[75,0,0,1,0],[100,0,0,0,1],[104,0,0,2,0],[110,0,0,1,0],[114,0,0,1,0],[117,0,0,1,0],[130,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0],[139,0,0,2,0],[146,0,0,0,2],[151,0,0,1,0]],"turn":[[5,0,0,0,1],[143,0,0,1,0]],"friendly":[[5,0,0,0,1],[38,0,0,0,1],[74,0,0,1,0]],"href":[[5,0,0,0,1],[13,0,0,0,2],[48,0,0,0,2],[146,0,0,0,2]],"numbered":[[6,0,0,1,0]],"walkthroughs":[[6,0,0,1,0]],"ordered":[[6,0,0,1,0],[158,0,0,1,0]],"titles":[[6,0,0,1,0],[38,0,0,1,0],[45,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[75,0,0,1,0],[106,0,0,1,0],[109,0,0,0,1],[139,0,0,1,0],[154,0,0,1,0],[165,0,0,1,0]],"author":[[6,0,0,1,1],[22,0,0,1,0],[80,0,0,1,0],[100,0,1,0,0],[132,0,0,1,0]],"authoring":[[6,0,0,1,0],[20,0,0,0,2],[120,0,0,1,0]],"affordances":[[6,0,0,1,0]],"run":[[6,0,0,1,1],[8,0,0,2,1],[26,0,0,1,0],[27,0,0,0,1],[29,0,0,0,1],[32,0,0,1,0],[35,0,0,1,0],[37,0,0,1,3],[45,0,0,1,0],[54,0,0,2,0],[62,0,0,1,0],[63,0,0,1,0],[64,0,0,1,2],[65,0,0,1,0],[66,0,0,1,0],[67,0,1,2,0],[68,0,0,1,0],[76,0,0,1,0],[78,0,0,0,6],[80,0,0,1,0],[86,0,0,1,0],[87,0,0,1,0],[92,0,0,3,0],[94,0,0,1,1],[98,0,0,1,0],[99,0,0,1,0],[100,0,0,1,0],[101,0,0,1,0],[102,0,0,1,0],[103,0,0,1,0],[119,0,0,1,0],[125,0,1,0,2],[126,0,0,1,0],[136,0,0,2,0],[140,0,0,0,1],[141,0,0,1,0],[146,0,0,0,2],[152,0,0,0,1],[155,0,0,1,0],[160,0,0,2,0],[169,0,0,0,1]],"generate":[[6,0,0,1,1],[20,0,0,1,0],[25,0,0,1,0],[26,0,1,2,1],[27,0,0,1,0],[28,0,0,1,0],[29,0,0,1,0],[30,0,0,1,0],[31,0,0,1,0],[33,0,0,0,3],[35,0,1,0,0],[36,0,1,0,1],[37,0,0,0,4],[38,0,0,1,0],[45,0,1,0,1],[55,0,0,1,0],[59,0,1,0,0],[62,0,0,1,0],[67,0,1,2,1],[71,0,0,3,0],[76,0,0,2,0],[78,0,0,0,2],[80,0,0,1,0],[87,0,0,1,0],[88,0,0,0,1],[90,0,1,0,1],[91,0,0,0,1],[92,0,0,1,2],[94,0,0,0,1],[101,0,1,0,1],[103,0,0,2,0],[104,0,1,1,1],[105,0,1,1,0],[106,0,1,2,0],[107,0,1,1,1],[108,0,1,1,0],[109,0,1,1,0],[110,0,0,1,0],[111,0,0,1,1],[112,0,0,1,0],[113,0,0,1,0],[136,0,0,1,0],[137,0,0,3,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0],[141,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,1,0],[152,0,0,1,0],[153,0,0,1,0],[154,0,0,1,0],[155,0,0,1,0],[156,0,0,1,0],[166,0,0,1,0]],"writes":[[6,0,0,1,1],[26,0,0,2,0],[36,0,0,1,0],[45,0,0,1,0],[71,0,0,2,0],[80,0,0,1,0],[90,0,0,1,0],[101,0,0,1,0],[104,0,0,1,0],[107,0,0,1,0],[139,0,0,1,0],[142,0,0,1,0],[151,0,0,1,0],[166,0,0,1,0],[171,0,0,1,0]],"flattened":[[6,0,0,1,1],[12,0,0,1,0],[70,0,0,2,0],[72,0,0,1,0],[121,0,0,1,0],[138,0,0,1,0],[157,0,0,1,0],[158,0,0,1,0]],"public":[[6,0,0,1,0],[7,0,0,1,0],[9,0,0,0,2],[11,0,0,0,2],[26,0,0,0,4],[27,0,0,0,2],[31,0,0,2,0],[33,0,0,0,3],[34,0,0,1,0],[36,0,0,7,1],[37,0,0,0,2],[39,0,0,0,5],[40,0,0,0,1],[42,0,0,6,0],[45,0,0,2,2],[46,0,0,1,2],[48,0,0,0,1],[49,0,0,1,0],[53,0,0,1,0],[67,0,0,0,1],[71,0,0,2,0],[74,0,0,0,1],[76,0,0,1,0],[78,0,0,0,1],[86,0,0,1,0],[96,0,0,1,0],[101,0,0,2,2],[104,0,0,1,0],[108,0,0,0,10],[109,0,0,0,1],[114,0,0,0,1],[116,0,0,0,1],[122,0,0,1,0],[123,0,0,1,1],[124,0,0,1,0],[131,0,0,1,0],[141,0,0,0,4],[142,0,0,0,4],[144,0,0,1,1],[146,0,0,0,1],[149,0,0,1,0],[166,0,0,0,1],[167,0,0,0,2]],"serve":[[6,0,0,1,0],[7,0,0,1,0],[41,0,0,1,0],[46,0,0,1,0],[50,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[80,0,0,1,0],[102,0,0,1,0]],"both":[[6,0,0,1,0],[46,0,0,1,0],[50,0,0,1,0],[54,0,0,1,0],[67,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[74,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[96,0,0,1,0],[104,0,0,1,0],[105,0,0,1,0],[119,0,0,1,0],[122,0,0,1,0],[139,0,0,1,0],[146,0,0,1,0]],"formats":[[6,0,0,1,0],[75,0,0,1,0],[120,0,0,1,0]],"html":[[6,0,0,1,0],[9,0,0,0,2],[32,0,0,1,0],[33,0,0,0,1],[41,0,0,1,0],[42,0,0,1,0],[43,0,0,1,0],[44,0,0,3,0],[46,0,0,1,0],[48,0,0,2,1],[49,0,0,1,0],[50,0,0,2,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,2,0],[56,0,0,1,0],[74,0,0,1,1],[80,0,0,1,0],[102,0,0,1,0],[144,0,0,1,0],[149,0,0,1,0]],"md":[[6,0,0,1,0],[7,0,0,2,0],[9,0,0,2,0],[11,0,0,0,2],[17,0,0,1,0],[20,0,0,1,1],[24,0,0,1,0],[33,0,0,0,1],[36,0,0,2,0],[38,0,0,1,0],[42,0,0,1,0],[44,0,0,2,0],[45,0,0,0,3],[46,0,0,1,0],[47,0,0,0,2],[48,0,0,0,1],[49,0,0,2,0],[50,0,0,2,0],[51,0,0,1,0],[54,0,0,1,2],[55,0,0,3,0],[70,0,0,0,8],[71,0,0,4,0],[72,0,0,6,0],[73,0,0,2,0],[74,0,0,4,1],[75,0,0,2,0],[76,0,0,3,0],[78,0,0,2,4],[79,0,0,1,0],[80,0,0,5,0],[81,0,0,1,0],[83,0,0,1,0],[86,0,0,1,0],[87,0,0,3,0],[88,0,0,2,4],[89,0,1,6,0],[90,0,0,6,4],[91,0,0,2,0],[92,0,0,3,3],[93,0,0,2,0],[94,0,0,6,0],[95,0,0,5,2],[96,0,0,2,0],[97,0,0,2,0],[101,0,0,1,2],[102,0,0,1,0],[104,0,0,5,0],[107,0,0,2,0],[108,0,0,1,1],[114,0,0,1,0],[116,0,0,0,1],[117,0,0,1,0],[119,0,0,1,0],[120,0,0,6,0],[121,0,0,1,0],[122,0,0,2,0],[123,0,0,2,1],[124,0,0,1,0],[125,0,0,2,0],[130,0,0,1,0],[137,0,0,4,0],[138,0,0,3,0],[139,0,0,2,0],[140,0,0,1,5],[141,0,0,1,0],[142,0,0,2,1],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,1,1],[147,0,0,4,0],[148,0,0,1,0],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,7,0],[152,0,0,2,4],[153,0,0,1,0],[154,0,0,1,0],[155,0,0,2,0],[156,0,0,1,0],[162,0,0,1,0],[163,0,0,1,0]],"url":[[6,0,0,1,0],[22,0,0,1,0],[23,0,0,1,0],[26,0,0,0,1],[36,0,0,0,1],[37,0,0,0,2],[44,0,0,1,0],[45,0,0,0,1],[46,0,0,1,5],[47,0,0,0,3],[48,0,0,1,0],[49,0,0,2,0],[54,0,0,4,0],[55,0,0,1,0],[74,0,0,1,0],[89,0,0,1,0],[101,0,0,0,1],[104,0,0,3,0],[107,0,0,1,0],[112,0,0,1,0],[129,0,0,1,0],[132,0,0,1,0],[136,0,0,1,0],[139,0,0,1,0],[144,0,0,1,3],[145,0,0,0,4],[147,0,0,1,0],[151,0,0,2,0],[154,0,0,1,0],[156,0,1,2,3]],"negotiated":[[6,0,0,1,0]],"accept":[[6,0,0,1,0],[7,0,0,1,0],[30,0,0,1,0],[46,0,0,1,0],[49,0,0,3,0],[53,0,0,1,0],[54,0,0,0,1],[55,0,0,1,0],[74,0,0,1,1],[75,0,0,1,0],[78,0,0,0,1],[83,0,0,1,0],[144,0,0,1,0],[147,0,0,2,0],[148,0,0,1,0],[149,0,0,2,0]],"header":[[6,0,0,1,0],[7,0,0,1,0],[10,0,0,0,1],[53,0,0,2,0],[147,0,0,1,0],[148,0,0,1,0],[149,0,0,1,0]],"group":[[7,0,0,1,0],[18,0,0,1,0],[19,0,0,4,1],[20,0,0,8,4],[21,0,0,2,0],[22,0,0,1,0],[23,0,0,1,0],[24,0,0,2,0],[38,0,0,1,0],[39,0,0,1,0],[45,0,0,1,0],[70,0,0,0,3],[73,0,0,1,0],[75,0,0,3,0],[76,0,0,2,0],[80,0,0,1,0],[93,0,0,0,1],[100,0,0,1,1],[105,0,0,1,0],[106,0,0,6,0],[107,0,0,1,0],[120,0,0,4,0],[121,0,0,10,0],[122,0,0,1,0],[123,0,0,1,0],[132,0,0,1,0],[138,0,0,3,0],[142,0,0,1,0],[151,0,0,2,0],[153,0,0,2,1],[154,0,0,1,0],[155,0,1,1,0]],"followed":[[7,0,0,1,0],[122,0,0,1,0]],"need":[[7,0,0,1,0],[20,0,0,1,0],[39,0,0,1,0],[58,0,0,1,0],[69,0,0,1,0],[78,0,0,1,0],[79,0,0,1,0],[83,0,0,1,0],[92,0,0,1,0],[110,0,0,1,0],[112,0,0,1,0],[113,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[142,0,0,1,0],[151,0,0,1,0],[152,0,0,0,1],[154,0,0,1,0],[160,0,0,1,0],[168,0,0,1,0]],"jsx":[[7,0,0,1,0],[11,0,0,1,0],[70,0,0,1,0],[158,0,0,1,0],[162,0,0,1,0]],"aware":[[7,0,0,1,0],[8,0,0,1,0],[75,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0],[165,0,0,1,0]],"renderer":[[7,0,0,1,0],[154,0,0,1,0]],"read":[[7,0,0,1,0],[10,0,0,0,1],[11,0,0,1,0],[13,0,0,1,0],[17,0,0,1,0],[30,0,0,1,0],[34,0,0,1,0],[39,0,0,1,0],[43,0,0,1,0],[49,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[74,0,0,1,0],[78,0,0,0,1],[81,0,0,2,0],[87,0,0,1,0],[89,0,0,1,0],[95,0,0,0,1],[96,0,0,1,0],[119,0,0,1,0],[120,0,0,1,0],[139,0,0,1,0],[141,0,0,1,0],[152,0,0,0,1],[155,0,0,1,0],[160,0,0,1,0],[163,0,0,1,0],[165,0,0,1,0],[171,0,0,1,0],[172,0,0,1,0]],"every":[[7,0,0,1,0],[12,0,0,1,0],[18,0,0,1,0],[53,0,0,1,0],[55,0,0,2,0],[59,0,0,1,0],[69,0,0,2,0],[70,0,0,1,0],[72,0,0,1,0],[76,0,0,2,0],[81,0,0,1,0],[86,0,0,1,0],[87,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[100,0,0,1,0],[107,0,0,1,0],[112,0,0,1,0],[120,0,0,2,0],[121,0,0,1,0],[128,0,0,1,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,0,1],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,2,0],[152,0,0,0,1],[154,0,0,1,0],[166,0,0,1,0]],"tanstack":[[7,0,0,1,2],[49,0,0,1,0],[50,0,0,2,0],[71,0,0,1,0],[78,0,0,1,0],[83,0,0,1,0],[101,0,0,1,0],[146,0,0,1,1],[170,0,0,1,2],[171,0,0,1,0]],"start":[[7,0,0,1,2],[42,0,0,1,0],[44,0,0,1,0],[49,0,0,1,0],[50,0,0,2,0],[54,0,0,1,0],[71,0,0,1,0],[78,0,0,1,0],[83,0,0,1,0],[99,0,0,1,0],[101,0,0,2,0],[120,0,0,1,0],[173,0,0,2,0]],"vite":[[7,0,0,2,2],[37,0,0,0,1],[71,0,0,1,0],[75,0,0,1,0]],"middleware":[[7,0,0,4,0],[46,0,1,0,0],[47,0,1,0,0],[49,0,0,2,0],[50,0,0,10,0],[51,0,0,2,0],[52,0,0,1,0],[75,0,0,2,0]],"dev":[[7,0,0,1,0],[45,0,0,0,1],[48,0,0,0,2],[50,0,0,1,0],[54,0,0,1,0],[90,0,0,1,0],[109,0,0,0,1],[141,0,0,0,3],[142,0,0,0,2],[146,0,0,0,2],[150,0,0,1,0],[153,0,0,0,1],[154,0,0,0,2],[156,0,0,0,1],[166,0,0,0,1]],"preview":[[7,0,0,1,0],[15,0,0,1,1],[50,0,0,1,0],[52,0,0,1,0],[54,0,0,1,0],[145,0,0,1,0]],"nitro":[[7,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0]],"prod":[[7,0,0,1,0],[50,0,0,1,0],[52,0,0,1,0],[145,0,0,1,0]],"negotiate":[[7,0,0,1,0]],"next":[[7,0,0,1,2],[29,0,0,1,0],[32,0,0,1,0],[50,0,0,1,0],[71,0,0,1,0],[75,0,0,1,0],[77,0,1,0,0],[78,0,0,1,0],[81,0,1,0,0],[83,0,0,1,0],[86,0,0,1,0],[95,0,0,2,0],[97,0,1,0,0],[102,0,1,1,0],[146,0,0,1,0]],"js":[[7,0,0,1,2],[50,0,0,1,0],[71,0,0,1,0],[75,0,0,1,0],[78,0,0,1,0],[83,0,0,1,0],[95,0,0,1,0],[106,0,0,1,0],[146,0,0,1,0]],"wire":[[7,0,0,1,0],[9,0,0,0,2],[19,0,0,0,1],[37,0,1,0,0],[41,0,1,0,0],[62,0,0,1,0],[71,0,0,1,0],[102,0,0,1,0]],"negotiation":[[7,0,0,1,0],[49,0,0,1,0],[72,0,0,1,0],[74,0,0,1,0],[75,0,0,1,0],[80,0,0,1,0],[83,0,0,1,0],[101,0,0,1,0],[144,0,0,1,0]],"ts":[[7,0,0,1,0],[19,0,0,1,0],[20,0,0,3,1],[21,0,0,0,1],[26,0,0,0,1],[27,0,0,0,1],[28,0,0,0,1],[29,0,0,0,1],[38,0,0,1,1],[39,0,0,0,1],[46,0,0,0,1],[47,0,0,0,1],[48,0,0,0,1],[49,0,0,1,0],[50,0,0,5,0],[59,0,0,0,1],[61,0,0,1,0],[92,0,0,1,2],[104,0,0,2,0],[106,0,0,3,1],[109,0,0,1,1],[113,0,0,0,1],[114,0,0,0,1],[115,0,0,0,1],[116,0,0,0,1],[118,0,0,0,1],[126,0,0,0,1],[130,0,0,0,1],[131,0,0,0,1],[135,0,0,0,1],[137,0,0,0,1],[139,0,0,1,0],[141,0,0,0,1],[142,0,0,0,2],[143,0,0,0,1],[144,0,0,0,1],[145,0,0,0,1],[146,0,0,0,1],[148,0,0,1,0],[151,0,0,1,1],[153,0,0,0,2],[154,0,0,0,2],[155,0,0,1,0],[156,0,0,0,1],[157,0,0,0,1],[161,0,0,0,1],[162,0,0,0,2],[166,0,0,0,1],[167,0,0,0,2],[168,0,0,0,1],[169,0,0,0,1],[170,0,0,0,2],[171,0,0,0,1]],"route":[[7,0,0,1,0],[9,0,0,0,2],[23,0,0,1,0],[46,0,0,1,0],[49,0,0,1,0],[50,0,0,3,0],[75,0,0,2,0],[83,0,0,1,0],[129,0,0,1,0],[144,0,0,1,0]],"handler":[[7,0,0,1,0],[50,0,0,3,0]],"configureserver":[[7,0,0,1,0]],"enough":[[7,0,0,1,0],[20,0,0,1,0],[34,0,0,1,0],[72,0,0,1,0],[122,0,0,1,0],[123,0,0,1,0],[138,0,0,1,0]],"static":[[7,0,0,1,0],[25,0,0,2,0],[26,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[29,0,0,2,0],[30,0,0,1,0],[31,0,0,1,0],[46,0,0,1,0],[49,0,0,1,0],[50,0,0,4,0],[51,0,0,2,0],[52,0,1,2,0],[83,0,0,1,0],[84,0,0,1,0],[102,0,0,1,0],[153,0,0,1,0],[164,0,0,2,0],[165,0,0,1,0],[166,0,0,1,0],[167,0,0,1,0],[168,0,0,1,0],[169,0,0,1,0],[170,0,0,1,0],[171,0,0,1,0],[172,0,0,1,0],[173,0,0,2,0]],"deployments":[[7,0,0,1,0]],"files":[[7,0,0,1,0],[17,0,0,1,0],[25,0,0,2,0],[26,0,1,1,0],[36,0,0,1,0],[39,0,0,1,0],[41,0,0,1,0],[42,0,0,2,0],[43,0,0,2,0],[44,0,0,1,0],[45,0,0,1,0],[46,0,0,3,0],[50,0,0,1,0],[52,0,0,2,0],[54,0,0,1,0],[66,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,3,0],[76,0,0,2,0],[80,0,0,2,0],[86,0,0,1,0],[87,0,0,3,0],[88,0,0,1,0],[89,0,0,2,0],[90,0,0,1,0],[91,0,0,1,0],[92,0,0,2,1],[93,0,0,1,0],[94,0,0,3,0],[95,0,0,1,0],[96,0,0,1,0],[97,0,0,2,0],[106,0,0,1,0],[108,0,0,2,1],[109,0,0,1,0],[114,0,0,1,0],[119,0,0,2,0],[120,0,0,3,0],[121,0,0,1,0],[123,0,0,1,0],[130,0,0,1,0],[137,1,1,1,0],[138,1,1,1,0],[139,1,1,0,0],[140,1,1,0,0],[141,1,1,0,0],[142,1,1,1,0],[143,1,1,0,0],[144,1,1,0,0],[145,1,1,0,0],[146,1,1,0,0],[147,1,1,0,0],[148,1,1,0,0],[149,1,1,0,0],[150,1,1,0,0],[151,1,1,1,0],[152,1,1,1,0],[153,1,1,2,0],[154,1,1,0,0],[155,1,1,0,0],[156,1,1,0,0]],"items":[[7,0,0,0,1],[13,0,0,0,1]],"value":[[7,0,0,0,3],[13,0,0,0,2],[24,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0]],"package":[[8,0,0,4,0],[38,0,0,1,0],[71,0,0,1,0],[72,0,0,3,0],[74,0,0,3,0],[76,0,0,1,0],[78,0,0,2,0],[79,0,0,2,0],[80,0,0,2,0],[81,0,0,1,0],[83,0,0,1,0],[87,1,1,3,0],[88,1,1,1,0],[89,1,1,3,0],[90,1,2,3,4],[91,1,2,3,0],[92,1,1,1,4],[93,1,1,1,2],[94,1,1,2,2],[95,1,1,2,3],[96,1,1,2,0],[97,1,1,1,0],[99,0,0,1,0],[102,0,0,3,0],[104,0,0,3,0],[106,0,0,1,0],[107,0,0,1,1],[120,0,0,3,0],[139,0,0,1,0],[151,0,0,1,1],[152,0,0,1,1],[156,0,0,2,0]],"manager":[[8,0,0,5,0],[99,0,0,1,0]],"install":[[8,0,0,3,2],[64,0,0,0,1],[80,0,0,1,0],[87,0,0,1,0],[88,0,0,0,4],[90,0,0,1,0],[95,0,0,1,0],[98,0,0,1,0],[99,0,1,2,0],[100,0,0,1,0],[101,0,0,1,0],[102,0,0,1,0],[140,0,0,0,1],[146,0,0,0,2],[152,0,0,0,1],[155,0,0,1,0],[167,0,0,0,1]],"commands":[[8,0,0,3,1],[103,0,0,1,0],[171,0,0,2,0]],"row":[[8,0,0,1,0],[14,0,0,1,0],[162,0,0,1,0]],"mode":[[8,0,0,3,2],[26,0,0,1,0],[45,0,0,1,0],[64,0,0,1,0],[70,0,0,0,3],[71,0,0,2,0],[72,0,0,7,0],[73,0,0,2,0],[74,0,0,0,2],[76,0,0,2,0],[83,0,0,1,0],[89,0,0,2,0],[104,0,0,4,0],[107,0,1,0,0],[108,0,0,4,1],[134,0,0,1,0],[138,0,0,1,0]],"command":[[8,0,0,4,2],[36,0,0,1,0],[76,0,0,1,0],[84,0,0,1,0],[99,0,0,1,0],[101,0,0,1,0],[103,0,0,1,1],[112,0,0,1,0]],"name":[[8,0,0,2,0],[11,0,0,0,3],[22,0,0,1,0],[31,0,0,1,0],[38,0,0,0,1],[39,0,0,0,2],[45,0,0,0,1],[64,0,0,0,1],[78,0,0,0,1],[88,0,0,0,4],[90,0,0,0,1],[91,0,0,0,1],[104,0,0,4,0],[106,0,0,0,1],[108,0,0,0,1],[139,0,0,2,0],[141,0,0,0,2],[146,0,0,0,1],[162,0,0,1,1]],"cli":[[8,0,0,1,0],[20,0,0,1,0],[22,0,0,1,0],[38,0,0,1,0],[39,0,0,1,0],[66,0,0,1,0],[77,0,0,1,0],[84,0,0,1,0],[87,0,0,1,0],[88,0,0,0,3],[90,0,0,0,1],[96,0,0,1,0],[97,0,0,1,0],[99,0,0,2,0],[103,1,1,0,0],[104,1,1,0,0],[105,1,1,1,0],[106,1,1,1,0],[107,1,1,0,0],[108,1,1,0,0],[109,1,1,0,0],[110,1,1,1,0],[111,1,1,0,0],[112,1,1,2,0],[113,0,0,1,0],[120,0,0,1,0],[126,0,0,3,0],[127,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0],[130,0,0,1,0],[131,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0],[137,0,0,1,0],[139,0,0,1,0],[140,0,0,0,3],[152,0,0,0,2]],"create":[[8,0,0,1,0],[100,0,0,1,0]],"starter":[[8,0,0,1,0],[28,0,0,0,2],[167,0,0,0,2]],"prop":[[8,0,0,1,0],[14,0,0,1,0]],"exact":[[8,0,0,1,0],[31,0,0,1,0],[70,0,0,1,0],[139,0,0,1,0],[167,0,0,2,0],[173,0,0,2,0]],"overrides":[[8,0,0,1,0],[104,0,0,2,0],[110,0,0,2,0],[144,0,0,1,0]],"npm":[[8,0,0,3,2],[37,0,0,0,3],[71,0,0,1,0],[72,0,0,2,0],[80,0,0,1,0],[83,0,0,1,0],[86,0,0,1,0],[87,0,0,2,0],[88,0,0,1,2],[89,0,0,2,0],[90,0,0,1,0],[91,0,0,1,0],[92,0,0,1,0],[93,0,0,1,0],[94,0,0,2,1],[95,0,0,1,0],[96,0,0,1,0],[97,0,0,1,0],[99,0,0,2,0],[102,0,0,1,0],[107,0,0,1,0],[137,0,0,2,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0],[141,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,2,0],[152,0,0,1,0],[153,0,0,1,0],[154,0,0,1,0],[155,0,0,1,0],[156,0,0,1,0]],"pnpm":[[8,0,0,4,3],[99,0,0,2,0]],"yarn":[[8,0,0,4,0],[99,0,0,2,0]],"bun":[[8,0,0,3,0],[46,0,0,1,0],[49,0,0,1,0],[64,0,0,0,2],[92,0,0,1,0],[99,0,0,2,0],[125,0,0,0,2],[143,0,0,1,0]],"npx":[[8,0,0,1,0],[26,0,0,0,1],[35,0,0,0,1],[36,0,0,0,1],[37,0,0,0,2],[45,0,0,0,1],[54,0,0,0,1],[64,0,0,0,1],[65,0,0,0,1],[66,0,0,0,1],[67,0,0,0,2],[90,0,0,0,1],[91,0,0,0,1],[92,0,0,0,1],[94,0,0,0,1],[101,0,0,0,1]],"lint":[[8,0,0,4,1],[18,0,0,1,0],[22,0,0,1,0],[23,0,1,2,0],[24,0,0,1,0],[27,0,0,0,1],[29,0,0,0,1],[33,0,0,0,3],[35,0,1,2,1],[37,0,0,1,4],[62,0,0,2,0],[63,0,0,2,0],[64,0,0,1,3],[65,0,0,1,2],[66,0,0,2,1],[67,0,0,4,1],[68,0,0,1,0],[84,0,0,1,0],[97,0,0,1,0],[103,0,0,2,0],[104,0,0,1,0],[105,0,0,1,0],[106,0,0,1,0],[107,0,0,1,0],[108,0,0,1,0],[109,0,0,1,0],[110,0,1,3,1],[111,0,0,1,1],[112,0,0,2,0],[126,1,1,1,1],[127,1,1,0,0],[128,1,1,0,0],[129,1,1,0,0],[130,1,1,0,1],[131,1,1,0,0],[132,1,1,0,0],[133,1,1,0,0],[134,1,1,0,0],[135,1,1,0,1],[136,1,1,3,0],[169,0,0,0,1]],"dlx":[[8,0,0,2,0]],"bunx":[[8,0,0,1,0]],"defaultmanager":[[8,0,0,0,1]],"displays":[[9,0,0,1,0]],"ready":[[9,0,0,1,0],[167,0,0,1,0]],"copy":[[9,0,0,2,1],[16,0,0,1,0],[101,0,0,1,0]],"action":[[9,0,0,1,0],[34,0,0,1,0]],"preserves":[[9,0,0,1,0],[16,0,0,1,0]],"copied":[[9,0,0,1,0],[44,0,0,1,0]],"instructions":[[9,0,0,1,0],[11,0,0,1,0],[171,0,0,0,1]],"also":[[9,0,0,1,0],[22,0,0,1,0],[46,0,0,1,0],[48,0,0,1,0],[86,0,0,1,0],[106,0,0,1,0],[112,0,0,1,0],[144,0,0,1,0]],"survive":[[9,0,0,1,0],[117,0,0,1,0]],"root":[[9,0,0,1,0],[11,0,0,0,1],[19,0,0,1,0],[34,0,0,1,0],[36,0,0,1,0],[46,0,0,2,0],[52,0,0,1,0],[54,0,0,2,0],[55,0,0,1,0],[71,0,0,1,0],[72,0,0,2,0],[73,0,0,1,0],[74,0,0,1,0],[76,0,0,2,0],[78,0,0,1,0],[80,0,0,2,0],[83,0,0,1,0],[84,0,0,1,0],[86,0,0,1,0],[87,0,0,1,0],[88,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[91,0,0,1,0],[92,0,0,1,6],[93,0,0,1,5],[94,0,0,1,0],[95,0,0,2,0],[96,0,0,1,0],[97,0,0,1,0],[104,0,0,4,0],[105,0,0,2,0],[108,0,0,1,0],[110,0,0,1,0],[114,0,0,1,0],[120,0,0,3,0],[121,0,0,6,0],[122,0,0,2,0],[130,0,0,1,0],[134,0,0,1,0],[137,0,0,2,0],[138,0,0,1,0],[142,0,0,1,0],[144,0,0,1,0],[151,0,0,3,0],[155,0,0,1,0],[162,0,0,1,0]],"bundled":[[9,0,0,1,0],[78,0,0,2,0],[79,0,0,1,0],[80,0,0,1,0],[81,0,0,1,0],[86,0,0,1,0],[87,0,0,1,0],[95,0,0,1,1],[137,0,0,2,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0],[141,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,2,0],[152,0,0,1,0],[153,0,0,1,0],[154,0,0,1,0],[155,0,0,1,0],[156,0,0,1,0]],"output":[[9,0,0,1,0],[10,0,0,1,0],[15,0,0,0,1],[17,0,0,1,0],[35,0,0,1,0],[36,0,0,1,0],[43,0,0,1,0],[46,0,0,1,0],[50,0,0,1,0],[65,0,0,1,0],[69,0,0,1,0],[70,0,0,1,0],[71,0,1,1,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,0,2,0],[75,0,0,1,0],[76,0,0,4,0],[77,0,0,1,0],[78,0,0,2,0],[79,0,0,1,0],[80,0,0,1,0],[81,0,0,2,0],[87,0,0,1,0],[99,0,0,1,0],[101,0,1,0,0],[103,0,0,1,0],[104,0,0,2,0],[105,0,0,1,0],[106,0,0,1,0],[107,0,0,1,0],[108,0,1,1,0],[109,0,0,1,0],[110,0,0,1,0],[111,0,0,1,0],[112,0,0,2,0],[113,0,0,1,0],[114,0,0,1,0],[115,0,0,1,0],[116,0,0,1,0],[117,0,0,2,0],[119,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0],[122,0,0,1,0],[123,0,0,1,0],[124,0,0,1,0],[125,0,0,1,0],[137,0,0,1,0],[152,0,1,0,0],[162,0,0,1,0],[163,0,0,2,0]],"coding":[[9,0,0,1,1],[74,0,0,1,1],[78,0,0,0,1],[87,0,0,1,0],[89,0,0,1,0],[96,0,0,1,0],[120,0,0,1,0],[152,0,0,0,1]],"after":[[9,0,0,1,1],[26,0,0,1,0],[29,0,0,1,0],[41,0,0,1,0],[42,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[68,0,0,1,0],[80,0,0,1,0],[90,0,0,1,0],[91,0,0,1,0],[95,0,0,1,0],[101,0,0,1,0],[104,0,0,1,0],[105,0,0,1,0],[117,0,0,1,0],[136,0,0,1,0],[160,0,0,1,0],[166,0,0,1,0]],"generating":[[9,0,0,1,1]],"artifacts":[[9,0,0,1,1],[32,0,0,1,0],[35,0,0,1,0],[36,0,1,0,0],[39,0,0,1,0],[45,0,1,0,0],[46,0,0,1,0],[72,0,1,0,0],[73,0,1,0,0],[78,0,0,2,0],[79,0,0,1,0],[80,0,0,1,0],[81,0,0,1,0],[82,0,0,1,0],[83,0,0,1,0],[90,0,0,1,0],[98,0,0,2,0],[99,0,0,1,0],[100,0,0,1,0],[101,0,0,2,0],[102,0,0,1,0],[104,0,0,4,0],[119,0,0,1,0],[122,0,0,1,0],[124,0,0,1,0],[144,0,0,1,0]],"inspect":[[9,0,0,0,2],[15,0,0,0,1],[42,0,0,1,0],[98,0,0,1,0],[99,0,0,1,0],[100,0,0,1,0],[101,0,0,1,0],[102,0,0,1,0]],"readability":[[9,0,0,0,2],[36,0,0,1,0],[39,0,0,1,0],[42,0,0,1,0],[45,0,0,1,1],[46,0,0,1,2],[48,0,0,0,2],[49,0,0,1,0],[50,0,0,3,0],[51,0,0,1,0],[54,0,0,1,1],[55,0,0,1,0],[58,0,0,1,1],[71,0,0,2,0],[73,0,0,2,0],[76,0,0,2,0],[78,0,0,1,1],[80,0,0,1,0],[86,0,0,1,0],[101,0,0,0,1],[104,0,0,1,0],[108,0,0,0,1],[112,0,0,1,0],[138,0,0,1,0],[142,0,0,1,0],[143,0,1,0,1],[144,0,1,1,0],[145,0,1,0,0],[146,0,1,0,2],[147,0,1,0,0],[148,0,1,0,0],[149,0,1,0,0],[150,0,1,1,0]],"json":[[9,0,0,0,2],[23,0,0,1,0],[25,0,0,1,0],[26,0,0,0,2],[27,0,0,0,2],[30,0,0,1,0],[31,0,0,2,0],[36,0,0,4,1],[37,0,0,0,2],[39,0,0,2,0],[42,0,0,4,0],[43,0,0,1,0],[44,0,0,2,0],[45,0,0,2,1],[46,0,0,2,2],[47,0,0,1,0],[48,0,1,3,1],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,2,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,2,0],[55,0,0,3,0],[59,0,0,1,0],[63,0,0,1,0],[65,0,0,2,2],[67,0,0,0,1],[70,0,0,0,2],[71,0,0,2,0],[72,0,0,2,0],[73,0,0,2,0],[74,0,0,0,1],[78,0,0,1,1],[92,0,0,0,1],[94,0,0,1,0],[101,0,0,2,3],[102,0,0,1,0],[103,0,0,1,0],[104,0,0,3,0],[105,0,0,5,0],[106,0,0,2,0],[107,0,0,3,0],[108,0,1,3,4],[109,0,0,1,0],[110,0,0,3,0],[111,0,0,1,0],[112,0,0,2,0],[128,0,0,1,0],[130,0,0,2,0],[134,0,1,0,0],[136,0,0,2,0],[137,0,0,1,0],[138,0,0,1,0],[144,0,0,2,0],[146,0,0,1,5],[147,0,0,2,0],[148,0,0,1,0],[150,0,0,1,0],[153,0,0,1,2],[154,0,0,1,0],[165,0,0,2,0],[166,0,0,0,2],[167,0,0,0,2],[172,0,0,1,0]],"then":[[9,0,0,0,2],[42,0,0,1,0],[54,0,0,2,0],[79,0,0,1,0],[101,0,0,1,0],[104,0,0,1,0],[120,0,0,1,0],[142,0,0,1,0],[157,0,0,1,0],[165,0,0,1,0],[173,0,0,1,0]],"responses":[[9,0,0,0,2],[42,0,0,1,0],[44,0,0,1,0],[49,0,0,1,0],[52,0,1,0,0],[54,0,0,1,0],[145,0,0,1,0],[149,0,0,1,0],[150,0,0,1,0]],"before":[[9,0,0,0,2],[10,0,0,0,1],[23,0,0,1,0],[34,0,0,1,0],[35,0,1,1,0],[37,0,0,1,0],[45,0,0,1,0],[46,0,0,1,0],[49,0,0,1,0],[50,0,0,4,0],[57,0,0,1,0],[62,0,0,1,0],[63,0,0,1,0],[64,0,0,1,0],[65,0,0,1,0],[66,0,0,2,0],[67,0,1,1,0],[68,0,0,1,0],[73,0,0,1,0],[94,0,1,0,0],[108,0,0,1,0],[110,0,0,1,0],[115,0,0,1,0],[118,0,0,2,0],[119,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0],[122,0,0,1,0],[123,0,0,1,0],[124,0,0,2,0],[125,0,0,1,0],[126,0,0,2,0],[129,0,0,1,0],[136,0,0,1,0],[142,0,0,1,0],[145,0,0,0,1],[160,0,0,4,0],[161,0,0,2,0],[172,0,0,1,0]],"splits":[[10,0,0,1,0]],"guidance":[[10,0,0,1,0],[106,0,0,1,0],[136,0,1,0,0]],"forking":[[10,0,0,1,0]],"human":[[10,0,0,1,1],[44,0,0,1,0],[74,0,0,0,2],[158,0,0,1,0]],"renders":[[10,0,0,1,0],[16,0,0,1,0],[19,0,0,1,0],[32,0,0,1,0],[74,0,0,1,0],[86,0,0,1,0],[129,0,0,1,0]],"omitted":[[10,0,0,1,0],[19,0,0,1,0],[139,0,0,1,0],[145,0,0,1,0]],"hidden":[[10,0,0,1,0]],"included":[[10,0,0,1,0],[161,0,0,1,0]],"generated":[[10,0,0,2,1],[19,0,0,1,0],[32,0,0,1,0],[35,0,0,1,0],[39,0,0,3,0],[42,0,0,1,0],[43,0,0,1,0],[45,0,0,1,0],[46,0,0,1,0],[52,0,0,1,0],[54,0,0,1,0],[56,0,0,2,0],[57,0,0,1,0],[58,0,0,1,0],[59,0,0,2,0],[60,0,0,1,0],[61,0,0,1,0],[66,0,0,1,0],[75,0,0,1,0],[78,0,0,1,0],[81,0,0,1,0],[83,0,0,1,0],[86,0,0,1,0],[98,0,0,2,0],[99,0,0,1,0],[100,0,0,2,0],[101,0,0,1,0],[102,0,0,2,0],[106,0,0,1,0],[108,0,0,1,0],[119,0,0,1,0],[121,0,0,1,0],[137,0,0,1,0],[138,0,1,1,0],[147,0,0,2,0],[153,0,0,1,2]],"sentence":[[10,0,0,1,0],[45,0,0,0,1],[100,0,0,0,1]],"appears":[[10,0,0,1,0]],"target":[[10,0,0,0,2],[46,0,0,0,2],[144,0,0,0,2],[158,0,0,2,0]],"click":[[10,0,0,0,1]],"robot":[[10,0,0,0,1]],"icon":[[10,0,0,0,1],[22,0,0,2,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0]],"editing":[[10,0,0,0,1]],"routes":[[10,0,0,0,1],[30,0,0,1,0],[32,0,0,1,0],[39,0,0,1,0],[46,0,0,1,0],[63,0,0,1,0],[123,0,0,1,0],[142,0,0,1,0]],"project":[[11,0,0,1,0],[74,0,0,2,0],[95,0,0,1,1],[120,0,0,1,0]],"structure":[[11,0,0,1,0],[73,0,0,1,0],[114,0,0,1,0],[151,0,0,1,0]],"guides":[[11,0,0,1,0],[38,0,0,0,2],[155,0,0,1,0],[168,0,0,0,1]],"release":[[11,0,0,1,0],[133,0,0,1,0]],"emits":[[11,0,0,1,0],[12,0,0,2,0],[80,0,0,1,0],[89,0,0,1,0],[104,0,0,1,0],[137,0,0,2,0],[138,0,0,1,0],[162,0,0,1,0]],"tree":[[11,0,0,1,0],[18,0,0,1,0],[19,0,0,1,0],[20,0,1,2,1],[21,0,1,1,0],[22,0,0,1,0],[23,0,0,1,0],[24,0,0,1,0],[39,0,0,1,0],[70,0,0,0,1],[73,0,0,1,0],[75,0,0,1,0],[80,0,0,1,0],[114,0,0,1,0],[151,0,0,1,0],[153,0,0,1,0],[154,0,0,1,0],[158,0,0,1,0],[159,0,0,1,0],[160,0,0,1,0]],"hierarchy":[[11,0,0,1,0]],"index":[[11,0,0,0,2],[16,0,0,0,1],[25,0,0,1,0],[26,0,0,2,1],[27,0,0,1,3],[28,0,0,1,1],[29,0,0,2,1],[30,0,0,1,0],[31,0,0,2,0],[36,0,0,2,0],[42,0,0,3,0],[45,0,0,0,1],[70,0,0,0,1],[71,0,0,1,0],[72,0,0,5,0],[73,0,0,1,0],[74,0,0,0,1],[75,0,0,1,0],[76,0,0,1,0],[80,0,0,1,0],[82,0,0,1,0],[84,0,0,1,0],[90,0,0,1,1],[100,0,0,1,0],[101,0,0,1,2],[102,0,0,1,0],[104,0,0,2,0],[107,0,0,2,0],[108,0,0,0,2],[121,0,0,1,0],[124,0,0,1,0],[137,0,0,1,0],[138,0,0,2,0],[139,0,0,1,0],[140,0,0,0,1],[164,0,0,2,0],[165,0,0,6,0],[166,0,0,2,1],[167,0,0,1,2],[168,0,0,2,3],[169,0,0,1,1],[170,0,0,1,1],[171,0,0,1,1],[172,0,0,1,0],[173,0,0,3,0]],"collapsible":[[12,0,0,1,0]],"secondary":[[12,0,0,1,0]],"ignores":[[12,0,0,2,0],[154,0,0,1,0]],"open":[[12,0,0,2,0],[43,0,0,1,0],[101,0,0,2,0],[124,0,1,0,0],[152,0,0,0,1],[158,0,0,1,0]],"closed":[[12,0,0,3,0],[158,0,0,1,0]],"state":[[12,0,0,2,0],[117,0,0,1,0],[158,0,0,1,0]],"item":[[12,0,0,1,0]],"accordions":[[12,0,0,3,1]],"place":[[12,0,0,2,0],[46,0,0,1,0],[78,0,0,1,0],[80,0,0,1,0],[118,0,0,1,0],[161,0,0,1,0]],"hide":[[12,0,0,2,0]],"should":[[12,0,0,1,1],[30,0,0,1,0],[38,0,0,1,0],[39,0,0,1,0],[91,0,0,1,0],[94,0,0,1,0],[96,0,0,1,0],[100,0,0,1,0],[172,0,0,1,0]],"troubleshooting":[[12,0,0,1,0],[61,0,1,0,0]],"notes":[[12,0,0,1,0],[117,0,1,0,0]],"optional":[[12,0,0,1,1],[14,0,0,2,0],[19,0,0,2,0],[22,0,1,10,0],[29,0,1,0,0],[41,0,0,1,0],[46,0,0,1,0],[71,0,0,2,0],[72,0,0,3,0],[73,0,0,3,0],[75,0,0,5,0],[83,0,0,2,0],[84,0,0,1,0],[121,0,0,1,0],[139,0,0,4,0],[144,0,0,1,0],[145,0,0,1,2],[146,0,0,0,1],[148,0,0,1,0],[161,0,1,0,0],[162,0,1,0,0]],"material":[[12,0,0,1,1]],"good":[[12,0,0,1,0],[44,0,1,0,0]],"no":[[12,0,0,1,0],[20,0,0,1,0],[21,0,0,1,0],[38,0,0,2,0],[52,0,0,1,0],[75,0,0,1,0],[89,0,0,2,0],[106,0,0,1,0],[110,0,0,1,0],[117,0,0,1,0],[120,0,0,1,0],[132,0,0,12,0],[133,0,0,7,0],[134,0,0,7,0],[138,0,0,1,0],[145,0,0,1,0],[162,0,0,2,0],[167,0,0,1,0]],"everything":[[12,0,0,1,0]],"inside":[[12,0,0,1,0],[72,0,0,2,0],[74,0,0,1,0],[83,0,0,1,0],[87,0,0,2,0],[88,0,0,1,0],[89,0,0,3,0],[90,0,0,2,0],[91,0,0,1,0],[92,0,0,1,0],[93,0,0,1,0],[94,0,0,1,0],[95,0,0,2,0],[96,0,0,1,0],[97,0,0,1,0],[102,0,0,1,0],[137,0,0,1,0],[151,0,0,1,0],[152,0,0,0,1]],"navigation":[[13,0,0,1,0],[18,0,0,1,0],[19,0,0,1,0],[20,0,0,1,1],[21,0,0,1,0],[22,0,0,1,0],[23,0,0,1,0],[24,0,0,1,0],[38,0,0,1,0],[39,0,0,1,0],[40,0,0,0,1],[45,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[58,0,0,1,0],[59,0,1,2,1],[60,0,0,1,0],[61,0,0,1,0],[62,0,0,1,0],[63,0,0,1,0],[64,0,0,1,0],[65,0,0,1,0],[66,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[70,0,0,0,1],[73,0,0,1,0],[75,0,0,1,0],[76,0,0,1,0],[80,0,0,2,0],[82,0,0,1,0],[83,0,0,1,0],[84,0,0,1,0],[93,0,0,0,3],[100,0,0,1,0],[123,0,0,1,0],[126,0,0,1,0],[127,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0],[130,0,0,1,0],[131,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0],[138,0,0,1,0],[142,0,0,1,2],[153,0,0,1,4],[154,0,0,0,1],[155,0,0,1,0]],"across":[[13,0,0,1,0],[20,0,0,1,0],[86,0,0,3,0],[106,0,0,1,0],[120,0,0,1,0]],"topics":[[13,0,0,1,0]],"frameworks":[[13,0,0,1,2],[78,0,0,1,0],[86,0,0,1,0],[91,0,0,0,1]],"sdks":[[13,0,0,1,0]],"runtimes":[[13,0,0,1,0]],"deployment":[[13,0,0,1,0],[32,0,0,1,0],[49,0,0,1,0],[85,0,0,1,0],[156,0,0,1,0]],"targets":[[13,0,0,1,0]],"product":[[13,0,0,1,0],[28,0,0,1,0],[38,0,1,1,1],[39,0,0,1,6],[40,0,0,0,2],[45,0,0,0,2],[46,0,0,1,0],[73,0,0,1,0],[93,0,0,0,2],[104,0,0,2,0],[106,0,0,2,1],[108,0,0,1,1],[109,0,0,0,2],[138,0,0,2,0],[139,0,0,4,0],[141,0,0,0,4],[142,0,0,0,4],[151,0,0,2,2],[167,0,0,1,0]],"areas":[[13,0,0,1,0]],"reader":[[13,0,0,1,0],[50,0,0,1,0]],"facing":[[13,0,0,1,0],[78,0,0,1,0],[119,0,0,1,0],[137,0,0,1,0],[163,0,0,1,0]],"automatically":[[13,0,0,1,0],[20,0,0,1,0],[22,0,0,1,0],[38,0,0,1,0],[49,0,0,1,0],[106,0,0,1,0]],"llm":[[13,0,0,1,0],[39,0,0,1,1],[46,0,0,0,1],[48,0,0,0,1],[58,0,0,0,1],[59,0,0,0,1],[92,0,0,0,1],[97,0,0,1,0],[109,0,0,1,1],[112,0,0,2,0],[120,0,0,1,0],[137,1,1,1,1],[138,1,1,0,0],[139,1,1,0,0],[140,1,1,0,0],[141,1,1,0,1],[142,1,1,0,1],[143,1,1,0,1],[144,1,1,0,0],[145,1,1,0,0],[146,1,1,0,1],[147,1,1,0,0],[148,1,1,0,0],[149,1,1,0,0],[150,1,1,0,0],[151,1,1,0,1],[152,1,1,0,0],[153,1,1,2,0],[154,1,1,0,0],[155,1,1,0,0],[156,1,1,0,0],[163,0,0,1,0]],"topic":[[13,0,0,1,0],[74,0,0,1,0],[76,0,0,1,0],[80,0,0,1,0],[87,0,0,2,0],[88,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[91,0,0,1,0],[92,0,0,1,0],[93,0,0,1,0],[94,0,0,1,0],[95,0,0,1,0],[96,0,0,1,0],[97,0,0,1,0],[120,0,0,1,0],[137,0,0,1,0],[152,0,0,0,1]],"config":[[13,0,0,1,0],[19,0,0,1,0],[20,0,0,5,1],[21,0,0,1,0],[38,0,0,3,0],[39,0,0,0,1],[52,0,0,1,0],[59,0,0,0,1],[61,0,0,1,0],[68,0,0,1,0],[92,0,0,0,2],[93,0,0,0,1],[104,0,0,4,0],[105,0,0,1,0],[106,0,1,10,0],[109,0,1,2,1],[139,0,0,1,0],[151,0,0,1,0],[155,0,0,1,0],[167,0,0,1,0],[173,0,0,1,0]],"framework":[[13,0,0,1,1],[22,0,0,2,0],[23,0,0,4,0],[24,0,0,1,0],[32,0,0,1,0],[37,0,0,1,0],[38,0,0,0,1],[48,0,0,2,0],[49,0,0,2,0],[50,0,0,2,0],[63,0,0,5,0],[68,0,0,1,0],[75,0,0,1,0],[78,0,0,1,0],[82,0,0,1,0],[83,0,0,5,0],[86,0,0,1,0],[129,0,0,4,0],[131,0,0,0,1],[132,0,0,1,0],[143,0,0,2,0],[146,0,0,1,0],[147,0,0,1,0],[158,0,0,1,0]],"react":[[13,0,0,2,4],[58,0,0,0,1],[60,0,0,1,0],[83,0,0,2,0],[91,0,0,0,3]],"integration":[[13,0,0,3,0],[147,0,0,1,0]],"vue":[[13,0,0,2,3]],"svelte":[[13,0,0,2,0]],"label":[[13,0,0,0,3],[134,0,0,1,0]],"activevalue":[[13,0,0,0,1]],"explicit":[[14,0,0,1,0],[58,0,0,1,0],[91,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0],[122,0,0,1,0],[170,0,0,1,0]],"type":[[14,0,0,3,2],[22,0,0,1,0],[23,0,0,1,0],[27,0,0,0,2],[46,0,0,0,3],[48,0,0,0,1],[49,0,0,1,0],[54,0,0,1,0],[58,0,0,0,2],[71,0,0,1,0],[72,0,0,1,0],[75,0,0,1,0],[128,0,0,1,0],[131,0,0,0,1],[132,0,0,1,0],[133,0,0,2,0],[134,0,0,1,0],[139,0,0,1,0],[140,0,0,0,1],[144,0,0,1,0],[146,0,0,0,1],[147,0,0,2,0],[162,0,0,2,0],[167,0,0,0,2]],"rows":[[14,0,0,1,0]],"already":[[14,0,0,1,0],[43,0,0,1,0],[52,0,0,1,0],[168,0,0,1,0]],"know":[[14,0,0,1,0]],"reads":[[14,0,0,1,0],[18,0,0,1,0],[62,0,0,1,0],[101,0,0,1,0],[162,0,0,2,0],[166,0,0,1,0]],"typescript":[[14,0,0,1,0],[112,0,0,1,0],[162,0,0,2,0]],"extracts":[[14,0,0,1,0],[58,0,0,1,0]],"named":[[14,0,0,1,0],[157,0,0,1,0],[162,0,0,1,0],[168,0,0,1,0]],"keep":[[14,0,0,1,0],[17,0,0,2,0],[39,0,0,1,0],[46,0,0,1,0],[50,0,0,1,0],[55,0,0,1,0],[56,0,0,1,0],[66,0,0,1,0],[124,0,0,1,0],[135,0,0,1,0],[154,0,0,1,0],[167,0,0,1,0],[173,0,0,1,0]],"its":[[14,0,0,1,0],[38,0,0,1,0],[44,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[86,0,0,1,0],[146,0,0,1,0],[163,0,0,1,0]],"path":[[14,0,0,1,0],[32,0,0,1,0],[34,0,0,1,0],[39,0,0,1,0],[42,0,0,1,0],[46,0,0,0,1],[49,0,0,1,0],[72,0,0,3,0],[79,0,1,1,0],[87,0,0,1,0],[90,0,0,1,0],[108,0,0,0,12],[112,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0],[122,0,0,1,0],[140,0,0,0,1],[144,0,0,1,0],[147,0,0,1,0],[151,0,0,2,0],[162,0,0,2,1],[172,0,0,1,0]],"stable":[[14,0,0,1,0],[17,0,0,1,0],[20,0,0,1,0],[22,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,1,0],[61,0,0,1,0]],"property":[[14,0,0,1,0],[22,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[75,0,0,1,0],[139,0,0,1,0],[146,0,0,0,2],[162,0,0,1,0]],"default":[[14,0,0,1,1],[22,0,0,2,0],[23,0,0,1,0],[25,0,0,1,0],[38,0,0,0,1],[43,0,0,1,0],[47,0,0,0,1],[53,0,0,2,0],[59,0,0,1,0],[71,0,0,2,0],[72,0,0,1,0],[75,0,0,1,0],[76,0,0,2,0],[104,0,0,2,0],[106,0,0,0,1],[110,0,0,2,0],[118,0,0,1,0],[123,0,1,1,0],[124,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0],[130,0,0,2,0],[132,0,1,0,0],[133,0,1,0,0],[134,0,1,0,0],[137,0,0,1,0],[138,0,0,2,0],[139,0,0,1,0],[140,0,0,0,1],[144,0,0,1,0],[146,0,0,0,1],[149,0,0,1,0],[151,0,0,1,0],[154,0,0,2,0],[156,0,0,1,0],[157,0,0,1,0],[158,0,1,1,0],[159,0,1,1,0],[160,0,0,1,0],[161,0,0,2,0],[162,0,0,2,0],[163,0,0,1,0]],"required":[[14,0,0,2,1],[18,0,0,1,0],[19,0,0,2,0],[20,0,0,1,0],[21,0,0,1,0],[22,0,0,2,0],[23,0,0,2,0],[24,0,0,1,0],[68,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[75,0,0,1,0],[89,0,0,1,0],[128,0,0,1,0],[130,0,0,1,0],[131,0,0,2,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[139,0,0,3,0]],"string":[[14,0,0,1,1],[19,0,0,1,0],[22,0,0,3,0],[46,0,0,0,1],[48,0,0,1,0],[58,0,0,0,3],[75,0,0,1,0],[131,0,0,0,3],[132,0,0,7,0],[133,0,0,7,0],[134,0,0,5,0],[135,0,0,0,1],[139,0,0,7,0],[145,0,0,1,0],[147,0,0,1,0],[151,0,0,1,0],[154,0,0,1,0]],"rendered":[[14,0,0,1,1],[48,0,0,1,0],[56,0,0,1,0],[58,0,0,1,0],[61,0,0,1,0],[117,0,0,1,0],[139,0,0,4,0],[154,0,0,1,0],[162,0,0,1,0]],"calloutvariant":[[14,0,0,1,1]],"visual":[[14,0,0,1,1],[85,0,0,1,0]],"treatment":[[14,0,0,1,1]],"deprecated":[[14,0,0,3,0],[22,0,0,3,0],[132,0,0,1,0]],"boolean":[[14,0,0,1,0],[22,0,0,6,0],[132,0,0,6,0],[133,0,0,2,0],[134,0,0,2,0]],"marks":[[14,0,0,1,0],[22,0,0,2,0]],"false":[[14,0,0,1,0],[115,0,0,0,1]],"properties":[[14,0,0,0,1]],"true":[[14,0,0,0,1],[39,0,0,0,1],[92,0,0,0,3],[114,0,0,1,1],[153,0,0,0,1]],"data":[[15,0,0,2,0],[26,0,0,1,0],[59,0,1,0,0],[73,0,0,1,0],[137,0,0,1,0],[154,0,0,1,0]],"driven":[[15,0,0,1,0]],"examples":[[15,0,0,1,0]],"host":[[15,0,0,1,1],[73,0,0,1,0],[108,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[142,0,0,1,0]],"receives":[[15,0,0,1,0],[34,0,0,1,0]],"code":[[15,0,0,1,1],[25,0,0,1,0],[32,0,0,2,0],[33,0,0,1,0],[34,0,0,1,0],[35,0,0,1,0],[36,0,0,1,0],[37,0,0,1,0],[38,0,0,1,0],[39,0,0,1,0],[40,0,0,1,0],[41,0,0,1,0],[42,0,0,1,0],[46,0,0,0,3],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,0,0,1],[75,0,0,1,0],[86,0,0,1,0],[89,0,0,1,0],[107,0,0,1,0],[154,0,0,1,0],[159,0,0,1,0],[165,0,0,1,0],[171,0,0,1,0]],"loaders":[[15,0,0,1,0]],"dynamic":[[15,0,0,1,0]],"imports":[[15,0,0,1,0],[25,0,0,1,0],[70,0,0,0,1],[157,0,0,1,0],[160,0,0,1,0]],"outside":[[15,0,0,1,0],[61,0,0,1,0],[130,0,0,1,0]],"needs":[[15,0,0,1,0],[39,0,0,1,0],[41,0,0,1,0],[82,0,0,1,0],[91,0,0,1,0],[99,0,0,1,0],[100,0,0,1,0],[162,0,0,1,0]],"specific":[[15,0,0,1,0],[28,0,0,1,0],[91,0,1,0,0],[156,0,0,1,0],[164,0,0,1,0],[167,0,0,1,0]],"behavior":[[15,0,0,1,0],[19,0,0,1,0],[117,0,1,0,0],[119,0,0,1,0]],"filename":[[15,0,0,0,1]],"language":[[15,0,0,0,1]],"import":[[15,0,0,0,1],[26,0,0,0,1],[27,0,0,0,3],[29,0,0,1,1],[38,0,0,0,1],[39,0,0,0,5],[46,0,0,0,4],[48,0,0,0,2],[57,0,0,0,1],[58,0,0,1,2],[59,0,0,1,2],[92,0,0,0,5],[106,0,0,0,1],[109,0,0,1,2],[113,0,0,0,1],[114,0,0,0,1],[118,0,0,0,1],[126,0,0,0,1],[130,0,0,0,1],[135,0,0,0,2],[137,0,0,0,1],[141,0,0,0,3],[142,0,0,0,1],[143,0,0,0,1],[146,0,0,0,2],[151,0,0,0,1],[153,0,0,2,1],[157,0,0,0,1],[158,0,0,1,0],[162,0,0,0,1],[166,0,0,0,1],[167,0,0,0,3],[168,0,0,0,1],[169,0,0,0,1],[170,0,0,0,3],[171,0,0,0,1]],"mdxcomponents":[[15,0,0,0,1],[57,0,0,0,2]],"while":[[15,0,0,0,1],[32,0,0,1,0],[54,0,0,1,0],[166,0,0,1,0]],"diagrams":[[16,0,0,1,0]],"plain":[[16,0,0,1,0],[49,0,0,1,0],[52,0,0,2,0],[153,0,0,1,0],[154,0,0,1,0],[170,0,0,1,0]],"client":[[16,0,0,1,0],[83,0,0,1,0],[162,0,0,1,0]],"side":[[16,0,0,1,0],[83,0,0,1,0],[162,0,0,1,0]],"svg":[[16,0,0,1,0]],"tools":[[16,0,0,1,0],[81,0,0,1,0],[89,0,0,1,0],[96,0,0,1,0],[171,0,0,1,1]],"chart":[[16,0,0,0,1]],"graph":[[16,0,0,0,2]],"lr":[[16,0,0,0,2],[20,0,0,0,1],[33,0,0,0,1],[74,0,0,0,1],[78,0,0,0,1],[88,0,0,0,1]],"api":[[16,0,0,0,1],[30,0,0,1,0],[31,0,0,1,0],[48,0,0,1,0],[79,0,0,1,0],[110,0,0,1,0],[112,0,0,1,0],[126,0,0,2,0],[127,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0],[130,0,1,1,0],[131,0,1,1,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0],[143,0,0,1,0],[167,0,0,1,0],[173,0,0,1,0]],"guidelines":[[17,0,1,0,0]],"stays":[[17,0,0,1,0],[32,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[82,0,0,1,0],[117,0,0,1,0],[166,0,0,1,0]],"out":[[17,0,0,1,0],[26,0,0,0,1],[32,0,0,1,0],[34,0,0,1,0],[36,0,0,1,1],[37,0,0,0,2],[45,0,0,0,1],[53,0,0,1,0],[67,0,0,0,1],[71,0,0,2,0],[72,0,0,3,0],[73,0,0,4,0],[74,0,0,0,6],[78,0,0,0,8],[82,0,0,1,0],[88,0,0,0,1],[90,0,0,0,1],[91,0,0,0,1],[92,0,0,0,1],[94,0,0,0,1],[101,0,0,0,1],[104,0,0,5,0],[107,0,0,2,1],[138,0,0,7,0],[154,0,0,1,0],[158,0,0,0,2]],"renaming":[[17,0,0,1,0]],"breaks":[[17,0,0,1,0]],"until":[[17,0,0,1,0]],"remap":[[17,0,0,1,0]],"quality":[[17,0,0,1,0]],"converted":[[17,0,0,1,0],[42,0,0,1,0],[74,0,0,1,0],[76,0,0,1,0],[162,0,0,1,0],[163,0,0,1,0]],"first":[[17,0,0,1,0],[39,0,0,1,0],[67,0,0,1,0],[68,0,1,0,0],[72,0,0,1,0],[81,0,0,1,0],[95,0,0,0,1],[101,0,0,1,0],[121,0,0,1,0],[123,0,0,1,0],[136,0,0,1,0],[141,0,0,1,0],[157,0,0,1,0],[163,0,0,1,0]],"edit":[[17,0,0,1,0]],"order":[[17,0,0,1,0],[20,0,0,1,0],[38,0,0,2,0],[39,0,0,1,0],[61,0,0,1,0],[68,0,0,1,0],[76,0,0,1,0],[92,0,0,1,0],[99,0,0,1,0],[106,0,0,2,0],[109,0,0,0,1],[112,0,0,1,0],[113,0,0,1,0],[114,0,0,1,0],[118,0,0,1,0],[157,0,0,1,0],[158,0,0,1,0],[160,0,1,0,0]],"actually":[[17,0,0,1,0],[119,0,0,1,0]],"looks":[[17,0,0,1,0],[44,0,1,0,0],[89,0,0,1,0],[163,0,0,1,0]],"wrong":[[17,0,0,1,0],[23,0,0,1,0],[63,0,0,1,0],[68,0,0,1,0],[89,0,0,1,0],[128,0,0,1,0],[150,0,0,1,0],[163,0,0,1,0]],"frontmatter":[[18,1,1,1,0],[19,1,1,0,0],[20,1,1,0,0],[21,1,1,0,0],[22,1,1,0,0],[23,1,1,1,0],[24,1,1,1,0],[35,0,0,1,0],[38,0,0,3,0],[44,0,0,1,0],[49,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[62,0,0,1,0],[63,0,0,4,0],[64,0,0,1,0],[65,0,0,1,0],[66,0,0,1,0],[67,0,0,1,0],[68,0,0,2,0],[70,0,0,0,2],[75,0,0,1,0],[76,0,0,2,0],[77,0,0,1,0],[80,0,0,1,0],[84,0,0,1,0],[100,0,0,1,0],[105,0,0,1,0],[106,0,0,1,0],[110,0,0,2,0],[112,0,0,1,0],[115,0,0,1,1],[117,0,0,3,0],[120,0,0,1,0],[128,0,1,1,0],[130,0,0,3,0],[131,0,0,0,1],[132,0,1,0,0],[133,0,1,0,0],[135,0,0,0,1],[139,0,0,1,0],[144,0,0,1,0],[154,0,0,1,0]],"fields":[[18,0,0,1,0],[19,0,0,1,0],[20,0,0,1,0],[21,0,0,1,0],[22,0,1,1,0],[23,0,0,1,0],[24,0,0,1,0],[63,0,0,2,0],[68,0,0,1,0],[108,0,0,1,0],[110,0,0,2,0],[130,0,0,1,0],[131,0,0,1,0]],"semantics":[[18,0,0,1,0],[19,0,0,1,0],[20,0,0,1,0],[21,0,0,1,0],[22,0,0,1,0],[23,0,0,1,0],[24,0,0,1,0]],"yaml":[[18,0,0,1,0],[64,0,0,0,1],[117,0,0,1,0],[128,0,0,1,0]],"things":[[18,0,0,1,0]],"lives":[[18,0,0,1,0]],"nav":[[18,0,0,1,0],[19,0,0,1,0],[20,0,1,1,2],[21,0,1,0,0],[22,0,0,1,0],[70,0,0,0,3],[73,0,0,2,0],[134,0,0,3,0],[153,0,0,1,1]],"minimum":[[19,0,1,0,0],[79,0,0,1,0]],"non":[[19,0,0,1,0],[21,0,0,1,0],[31,0,0,1,0],[42,0,0,1,0],[62,0,0,1,0],[75,0,0,1,0],[110,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[142,0,0,1,0],[145,0,0,0,1]],"empty":[[19,0,0,1,0],[31,0,0,1,0],[42,0,0,1,0],[61,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[146,0,0,1,0]],"sidebar":[[19,0,0,1,0],[22,0,0,1,0],[24,0,0,1,0],[39,0,0,1,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,1,1,0],[61,0,0,1,0],[73,0,0,1,0],[75,0,0,1,0],[102,0,0,1,0],[134,0,0,1,0],[153,0,0,3,0]],"recommended":[[19,0,0,1,0]],"routing":[[19,0,0,1,0],[33,0,0,0,1],[42,0,0,1,0],[43,0,0,1,0],[82,0,0,1,0],[85,0,0,1,0],[101,0,0,1,0],[138,0,0,2,0],[139,0,0,2,0],[151,0,0,1,0],[155,0,0,2,0]],"hint":[[19,0,0,1,0],[22,0,0,1,0]],"converter":[[19,0,0,1,0],[129,0,0,1,0],[132,0,0,1,0]],"synthesizes":[[19,0,0,1,0]],"during":[[19,0,0,1,0],[32,0,0,1,0],[90,0,0,1,0]],"slug":[[19,0,0,1,0],[20,0,0,3,0],[21,0,0,0,3],[38,0,0,0,3],[50,0,0,1,0],[75,0,0,1,0],[76,0,0,1,0],[93,0,0,0,2],[106,0,0,0,2],[108,0,0,0,1],[151,0,0,1,0],[153,0,0,0,2],[154,0,0,1,0]],"declared":[[19,0,0,1,0],[20,0,0,1,0]],"pages":[[19,0,0,1,0],[20,0,0,1,0],[21,0,0,1,0],[22,0,0,2,0],[38,0,0,1,0],[39,0,0,1,0],[44,0,0,1,0],[46,0,0,2,0],[47,0,0,0,2],[48,0,1,0,1],[49,0,0,1,0],[50,0,0,2,0],[54,0,0,2,0],[55,0,0,1,0],[66,0,0,1,0],[73,0,0,2,0],[75,0,0,1,0],[80,0,0,1,0],[91,0,0,1,0],[102,0,0,1,0],[106,0,0,2,0],[108,0,0,1,0],[120,0,0,2,0],[121,0,0,2,0],[134,0,0,1,0],[138,0,0,2,0],[142,0,0,2,3],[144,0,0,1,0],[145,0,0,0,3],[147,0,0,1,0],[154,0,0,0,1],[155,0,0,1,0]],"excluded":[[19,0,0,1,0]],"grouped":[[19,0,0,1,0],[120,0,0,2,0],[124,0,0,1,0],[127,0,0,1,0]],"indexes":[[19,0,0,1,0],[121,0,0,2,0],[122,0,0,1,0]],"appear":[[19,0,0,1,0],[100,0,0,1,0]],"fallback":[[19,0,0,1,0],[20,0,0,1,0],[42,0,0,1,0],[72,0,0,1,0],[83,0,0,1,0],[84,0,0,1,0],[104,0,0,1,0],[122,0,0,1,0],[123,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[155,0,0,1,0],[156,0,0,2,0]],"connect":[[19,0,0,0,1],[21,0,0,0,2],[32,1,1,0,0],[33,1,1,0,0],[34,1,1,0,0],[35,1,1,0,0],[36,1,1,0,0],[37,1,1,0,0],[38,1,1,0,0],[39,1,1,0,0],[40,1,1,0,0],[41,1,1,0,0],[42,1,1,0,0],[79,0,0,1,0],[96,0,0,1,0],[102,0,0,2,0],[120,0,0,1,0]],"site":[[19,0,0,0,2],[20,0,0,0,3],[21,0,0,0,4],[26,0,0,1,0],[32,1,1,1,0],[33,1,1,0,0],[34,1,1,0,0],[35,1,1,0,0],[36,1,1,0,0],[37,1,1,0,0],[38,1,1,0,0],[39,1,1,0,0],[40,1,1,0,0],[41,1,1,1,0],[42,1,1,0,0],[43,0,0,2,0],[44,0,0,2,0],[45,0,0,2,0],[46,0,0,1,0],[47,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,2,0],[55,0,0,1,0],[70,0,0,0,3],[71,0,0,1,0],[72,0,0,3,0],[73,0,0,1,0],[74,0,0,2,5],[76,0,0,2,0],[78,0,0,0,8],[79,0,0,1,0],[82,0,0,1,0],[83,0,0,1,0],[96,0,0,1,0],[101,0,0,1,0],[102,0,0,3,0],[104,0,0,2,0],[108,0,0,2,1],[120,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0]],"build":[[19,0,0,0,1],[20,0,0,1,0],[21,0,0,1,1],[23,0,0,1,0],[24,0,0,1,0],[25,0,0,1,0],[32,0,0,2,0],[33,0,0,1,0],[34,0,0,2,0],[35,0,0,2,0],[36,0,0,1,0],[37,0,1,2,2],[38,0,0,1,0],[39,0,0,1,0],[40,0,0,1,0],[41,0,0,1,0],[42,0,0,2,0],[45,0,0,2,0],[50,0,0,2,0],[51,0,0,1,0],[71,0,0,1,0],[73,0,0,1,0],[92,0,0,3,1],[99,0,0,1,0],[102,0,0,1,0],[109,0,0,1,0],[112,0,0,1,0],[120,0,0,1,0],[126,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0],[147,0,0,3,0],[154,0,0,1,0],[164,0,0,1,0],[166,0,1,0,0],[170,0,0,1,0]],"groups":[[20,0,1,3,1],[21,0,2,2,0],[36,0,0,1,0],[38,0,1,3,1],[39,0,0,0,6],[40,0,0,0,4],[59,0,0,0,2],[61,0,0,1,0],[67,0,0,1,0],[70,0,0,0,5],[75,0,0,1,0],[76,0,0,1,0],[92,0,0,0,1],[93,0,0,0,5],[101,0,0,1,0],[106,0,0,2,1],[108,0,0,0,1],[109,0,0,0,2],[120,0,0,1,0],[123,0,0,1,0],[141,0,0,0,6],[142,0,0,0,2],[151,0,0,1,2],[153,0,0,0,2],[154,0,0,0,2],[155,0,0,3,0]],"become":[[20,0,1,0,0],[21,0,1,0,0]],"may":[[20,0,0,1,0],[46,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[89,0,0,1,0],[124,0,0,1,0],[144,0,0,1,0]],"declare":[[20,0,0,1,0],[21,0,0,1,0],[38,0,0,1,0],[106,0,0,1,0]],"more":[[20,0,0,1,0],[32,0,0,1,0],[122,0,0,1,0],[124,0,0,1,0]],"slugs":[[20,0,0,1,0],[58,0,1,0,0],[61,0,0,1,0]],"shared":[[20,0,0,1,0],[30,0,0,1,0],[32,0,0,1,0],[33,0,0,1,0],[34,0,0,1,0],[35,0,0,1,0],[36,0,0,1,0],[37,0,0,1,0],[38,0,0,1,0],[39,0,0,1,0],[40,0,0,1,0],[41,0,0,1,0],[42,0,0,1,0],[86,0,0,1,0],[91,0,0,2,1],[110,0,0,3,0],[130,0,0,2,0],[163,0,0,1,0],[172,0,0,1,0]],"multiple":[[20,0,0,1,0]],"once":[[20,0,0,1,0],[24,0,0,1,0],[80,0,0,1,0],[98,0,0,1,0],[99,0,0,1,0],[100,0,0,1,0],[101,0,0,1,0],[102,0,0,1,0],[135,0,0,1,0]],"loads":[[20,0,0,1,0],[38,0,0,1,0],[106,0,0,1,0]],"exists":[[20,0,0,1,0],[38,0,0,1,0],[44,0,0,1,0],[106,0,0,1,0]],"intersection":[[20,0,0,1,0]],"produces":[[20,0,0,1,0],[25,0,0,1,0],[69,0,0,1,0],[78,0,0,1,0],[81,0,0,1,0],[82,0,0,1,0],[137,0,0,1,0]],"metadata":[[20,0,0,1,0],[24,0,0,1,0],[31,0,0,1,0],[33,0,0,0,1],[38,0,0,2,0],[44,0,0,2,0],[48,0,0,1,0],[75,0,0,1,0],[78,0,0,1,0],[84,0,0,1,0],[104,0,0,1,0],[106,0,0,2,0],[123,0,0,1,0],[138,0,0,2,0],[146,0,0,3,1],[147,0,0,1,0],[154,0,0,1,0],[155,0,0,1,0],[170,0,0,1,0]],"grouping":[[20,0,0,1,0],[24,0,0,1,0],[75,0,0,1,0]],"declares":[[20,0,0,1,0],[38,0,0,1,0],[93,0,0,0,1],[153,0,0,0,1]],"isn":[[20,0,0,1,0],[23,0,0,1,0]],"fails":[[20,0,0,1,0],[35,0,0,1,0],[67,0,0,2,0],[68,0,0,1,0],[76,0,0,1,0],[106,0,0,1,0],[150,0,0,1,0]],"unknown":[[20,0,0,1,0],[23,0,0,2,0],[35,0,0,0,1],[37,0,0,0,2],[58,0,0,0,2],[63,0,0,1,0],[64,0,0,2,1],[65,0,0,0,1],[67,0,0,1,1],[68,0,0,1,0],[76,0,0,1,0],[92,0,0,0,1],[93,0,0,0,4],[105,0,0,1,0],[110,0,0,4,0],[128,0,0,3,0],[131,0,0,0,1],[135,0,0,2,0],[153,0,0,0,3]],"truth":[[20,0,0,1,0],[24,0,0,1,0]],"drift":[[20,0,0,1,0],[136,0,0,1,0]],"infers":[[20,0,0,1,0],[38,0,0,1,0],[106,0,0,1,0]],"values":[[20,0,0,1,0],[49,0,0,1,0],[106,0,0,1,0],[109,0,0,1,0]],"finds":[[20,0,0,1,0],[76,0,0,1,0],[162,0,0,1,0]],"sets":[[20,0,0,1,0],[21,0,0,1,0],[53,0,0,2,0],[144,0,0,1,0],[149,0,0,1,0],[171,0,0,1,0]],"descriptions":[[20,0,0,1,0],[38,0,0,2,0],[45,0,0,1,0],[106,0,0,2,0],[138,0,0,1,0],[139,0,0,1,0],[155,0,0,2,0]],"nested":[[20,0,0,1,0],[21,0,1,1,0]],"flowchart":[[20,0,0,0,1],[33,0,0,0,1],[70,0,0,0,1],[74,0,0,0,1],[78,0,0,0,1],[88,0,0,0,1],[158,0,0,0,1]],"cfg":[[20,0,0,0,2]],"page1":[[20,0,0,0,2]],"page2":[[20,0,0,0,2]],"page3":[[20,0,0,0,2]],"resolver":[[20,0,0,0,9],[70,0,0,0,1]],"sections":[[20,0,0,0,2],[38,0,0,1,0],[73,0,0,1,0],[100,0,0,1,0],[123,0,0,1,0],[138,0,0,1,0],[158,0,0,1,0]],"children":[[21,0,0,2,1],[58,0,0,0,13],[75,0,0,1,0]],"deeper":[[21,0,0,1,0],[61,0,0,1,0]],"trees":[[21,0,0,1,0],[114,0,0,1,0]],"remote":[[21,0,0,1,2]],"lands":[[21,0,0,1,0]],"slot":[[21,0,0,1,0]],"leaf":[[21,0,0,2,0],[75,0,0,2,0]],"directly":[[21,0,0,1,0],[39,0,0,1,0],[72,0,0,2,0],[73,0,0,1,0],[75,0,0,1,0],[92,0,0,1,0],[109,0,0,1,0],[113,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0],[137,0,0,1,0],[143,0,0,1,0]],"contain":[[21,0,0,1,0],[54,0,0,1,0],[75,0,0,1,0]],"schema":[[22,0,0,1,0],[23,0,0,4,0],[35,0,0,1,0],[48,0,0,1,0],[62,0,0,1,0],[63,0,0,3,0],[67,0,0,1,0],[68,0,0,2,0],[110,0,0,2,0],[126,0,0,2,0],[127,0,0,1,0],[128,0,0,3,0],[129,0,0,1,0],[130,0,0,6,0],[131,0,0,2,1],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,4,0],[136,0,0,1,0],[146,0,0,0,1],[147,0,0,1,0]],"accepts":[[22,0,0,1,0],[66,0,0,1,0],[148,0,0,1,0],[154,0,0,1,0]],"resolved":[[22,0,0,1,0],[36,0,0,1,0],[73,0,0,1,0],[157,0,0,1,0]],"deprecatedreason":[[22,0,0,1,0],[132,0,0,1,0]],"message":[[22,0,0,1,0],[131,0,0,0,1],[169,0,0,1,0]],"paired":[[22,0,0,1,0]],"experimental":[[22,0,0,2,0],[120,0,0,1,0],[132,0,0,1,0]],"canary":[[22,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0]],"hides":[[22,0,0,1,0]],"channels":[[22,0,0,1,0]],"new":[[22,0,0,1,0],[46,0,0,0,1],[81,0,0,1,0],[132,0,0,1,0],[144,0,0,0,1],[145,0,0,0,2]],"highlights":[[22,0,0,1,0],[139,0,0,1,0]],"recently":[[22,0,0,1,0]],"added":[[22,0,0,1,0]],"draft":[[22,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0]],"excludes":[[22,0,0,1,0]],"generation":[[22,0,0,1,0],[37,0,0,1,0],[41,0,0,1,0],[61,0,0,1,0],[92,0,0,1,0],[106,0,0,1,0],[110,0,0,1,0],[126,0,0,1,0],[166,0,0,1,0]],"entirely":[[22,0,0,1,0],[53,0,0,1,0]],"tags":[[22,0,0,2,0],[132,0,0,1,0],[133,0,0,1,0],[161,0,0,1,0]],"free":[[22,0,0,1,0],[58,0,0,1,0],[143,0,0,1,0],[167,0,0,1,0]],"form":[[22,0,0,1,0]],"facets":[[22,0,0,1,0]],"availablein":[[22,0,0,1,0],[132,0,0,1,0],[136,0,0,1,0]],"array":[[22,0,0,1,0],[58,0,0,0,1],[114,0,0,1,0],[131,0,0,0,1],[132,0,0,3,0],[133,0,0,2,0],[134,0,0,1,0],[139,0,0,1,0],[154,0,0,1,0]],"cross":[[22,0,0,1,0],[23,0,0,1,0],[24,0,0,1,0],[63,0,0,2,0],[68,0,0,1,0],[129,0,0,1,0],[131,0,0,0,1],[149,0,0,1,0]],"availability":[[22,0,0,1,0]],"map":[[22,0,0,1,0],[28,0,0,1,0],[58,0,0,0,1],[147,0,0,1,0],[167,0,0,1,0]],"layout":[[22,0,0,1,0],[48,0,0,1,0],[56,0,0,1,0],[82,0,0,1,0]],"uis":[[22,0,0,1,0]],"support":[[22,0,0,1,0]],"width":[[22,0,0,1,0]],"lastmodified":[[22,0,0,1,0],[105,0,0,1,0],[114,0,0,1,0],[132,0,0,1,0]],"lastauthor":[[22,0,0,1,0],[105,0,0,1,0],[114,0,0,1,0],[132,0,0,1,0]],"filled":[[22,0,0,1,0]],"pass":[[22,0,0,1,0],[46,0,0,1,0],[53,0,0,1,0],[60,0,0,1,0],[109,0,0,1,0],[110,0,0,2,0],[122,0,0,1,0],[135,0,0,1,0],[149,0,0,1,0],[155,0,0,1,0],[156,0,0,1,0],[162,0,0,1,0],[167,0,0,1,0],[169,0,0,1,0],[170,0,0,1,0]],"enrich":[[22,0,0,1,0],[105,0,0,1,0],[132,0,0,1,0]],"git":[[22,0,0,1,0],[34,0,0,0,1],[37,0,0,0,1],[105,0,0,2,0],[114,0,0,1,0],[132,0,0,1,0]],"hand":[[22,0,0,1,0]],"rules":[[23,0,1,2,0],[62,0,0,1,0],[84,0,0,1,0],[126,1,1,1,0],[127,1,2,0,0],[128,1,3,0,0],[129,1,3,0,0],[130,1,1,0,0],[131,1,1,0,0],[132,1,1,0,0],[133,1,1,0,0],[134,1,1,0,0],[135,1,1,0,0],[136,1,1,0,0],[163,0,1,0,0]],"enforces":[[23,0,0,1,0]],"violations":[[23,0,0,1,0],[64,0,0,1,0],[65,0,0,1,0],[68,0,0,1,0],[131,0,0,1,1]],"surface":[[23,0,0,1,0],[170,0,0,1,0]],"ci":[[23,0,0,1,0],[29,0,0,0,1],[34,0,0,2,0],[36,0,0,1,0],[62,1,1,2,0],[63,1,1,1,0],[64,1,1,1,0],[65,1,2,2,0],[66,1,1,2,0],[67,1,1,1,0],[68,1,1,2,0],[97,0,0,1,0],[126,0,0,1,0],[135,0,0,1,0],[136,0,0,2,0],[156,0,0,1,0]],"they":[[23,0,0,1,0],[32,0,0,1,0],[33,0,0,1,0],[34,0,0,1,0],[35,0,0,1,0],[36,0,0,1,0],[37,0,0,1,0],[38,0,0,2,0],[39,0,0,1,0],[40,0,0,1,0],[41,0,0,1,0],[42,0,0,1,0],[52,0,0,1,0],[66,0,0,1,0],[74,0,0,1,0],[95,0,0,0,1],[96,0,0,1,0],[123,0,0,1,0],[126,0,0,1,0],[127,0,0,1,0],[136,0,0,1,0],[173,0,0,1,0]],"reach":[[23,0,0,1,0],[66,0,0,1,0],[89,0,0,1,0],[126,0,0,1,0]],"relevant":[[23,0,0,1,0]],"field":[[23,0,0,3,0],[24,0,0,1,0],[46,0,0,1,0],[63,0,0,1,0],[64,0,0,1,0],[68,0,0,2,0],[75,0,0,1,0],[128,0,0,4,0],[131,0,0,1,2],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[139,0,0,1,0]],"missing":[[23,0,0,1,0],[49,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[63,0,0,1,0],[68,0,0,1,0],[94,0,0,2,0],[105,0,0,1,0],[128,0,0,1,0],[131,0,0,1,0],[136,0,0,1,0],[147,0,0,1,0]],"top":[[23,0,0,1,0],[45,0,0,1,0],[63,0,0,1,0],[117,0,0,1,0],[128,0,0,1,0],[138,0,0,1,0],[139,0,0,2,0],[164,0,0,1,0],[173,0,0,1,0]],"level":[[23,0,0,1,0],[42,0,0,1,0],[45,0,0,1,0],[55,0,0,1,0],[58,0,0,0,2],[63,0,0,1,0],[72,0,0,1,0],[79,0,0,1,0],[109,0,0,1,0],[120,0,0,3,0],[121,0,0,1,0],[122,0,0,1,0],[123,0,0,1,0],[128,0,0,1,0],[137,0,0,1,0],[138,0,0,2,0],[139,0,0,2,0],[142,0,0,1,0],[147,0,1,0,0],[148,0,1,0,0],[154,0,0,1,0]],"warn":[[23,0,0,1,0],[110,0,0,1,0],[128,0,0,1,0],[130,0,0,2,0],[131,0,0,0,1]],"fail":[[23,0,0,1,0],[62,0,0,2,0],[63,0,0,1,0],[64,0,0,2,0],[65,0,0,1,0],[66,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[92,0,0,0,1],[93,0,0,0,1],[126,0,0,1,0],[136,0,0,1,0]],"parse":[[23,0,0,2,0],[63,0,0,2,0],[68,0,0,1,0],[76,0,0,1,0],[128,0,0,3,0],[131,0,0,0,1],[172,0,0,1,0]],"meta":[[23,0,0,1,0],[63,0,0,1,0],[110,0,0,2,0],[128,0,0,1,0],[130,0,0,3,0],[131,0,0,0,1],[134,0,1,0,0],[136,0,0,1,0],[146,0,0,1,2]],"doesn":[[23,0,0,2,0],[63,0,0,1,0],[65,0,0,1,0],[129,0,0,1,0],[139,0,0,1,0],[173,0,0,1,0]],"invalid":[[23,0,0,1,0],[63,0,0,1,0],[68,0,0,1,0],[129,0,0,1,0],[131,0,0,1,1]],"link":[[23,0,0,3,0],[24,0,0,1,0],[48,0,0,0,2],[49,0,0,1,0],[62,0,0,2,0],[63,0,0,3,0],[64,0,0,1,0],[65,0,0,1,0],[66,0,0,1,0],[67,0,0,1,0],[68,0,0,4,0],[72,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[107,0,0,1,0],[120,0,0,1,0],[126,0,0,2,0],[127,0,0,1,0],[128,0,0,1,0],[129,0,1,5,0],[130,0,0,1,0],[131,0,0,1,2],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0],[144,0,0,1,0],[147,0,0,1,0],[151,0,0,2,0],[158,0,0,2,0],[159,0,0,1,0]],"exist":[[23,0,0,1,0],[31,0,0,1,0],[63,0,0,1,0],[129,0,0,1,0]],"unresolved":[[23,0,0,2,0],[63,0,0,2,0],[68,0,0,1,0],[129,0,0,1,0],[131,0,0,0,1],[136,0,0,1,0]],"placeholder":[[23,0,0,2,0],[63,0,0,1,0],[68,0,0,1,0],[129,0,0,1,0],[131,0,0,0,1],[136,0,0,1,0],[160,0,0,2,0]],"doc":[[23,0,0,1,0]],"contains":[[23,0,0,1,0],[26,0,0,2,0],[34,0,0,1,0],[45,0,0,1,0],[54,0,0,1,0],[108,0,0,1,0],[120,0,0,1,0],[121,0,0,3,0],[129,0,0,1,0],[142,0,0,1,0]],"scoped":[[23,0,0,1,0],[45,0,0,1,0],[46,0,0,2,0],[54,0,0,2,0],[55,0,0,1,0],[63,0,0,1,0],[73,0,0,1,0],[104,0,0,1,0],[108,0,0,1,0],[129,0,0,1,0],[137,0,0,1,0],[138,0,0,3,0],[142,0,0,1,0],[145,0,0,0,1]],"another":[[23,0,0,1,0],[115,0,0,1,0],[129,0,0,1,0]],"extend":[[23,0,0,1,0],[63,0,0,1,0],[68,0,0,1,0],[110,0,0,1,0],[135,0,0,1,0]],"gives":[[24,0,1,0,0],[48,0,0,1,0],[83,0,0,1,0],[143,0,0,1,0]],"consistent":[[24,0,0,1,0]],"rest":[[24,0,0,1,0],[69,0,0,1,0],[109,0,0,1,0]],"configuration":[[24,0,0,1,0]],"drives":[[24,0,0,1,0],[75,0,0,1,0],[138,0,0,1,0]],"position":[[24,0,0,1,0],[75,0,0,1,0]],"filtering":[[24,0,0,1,0],[99,0,0,1,0]],"checks":[[24,0,0,1,0],[32,0,0,1,0],[43,0,0,1,0],[44,0,0,1,0],[45,0,0,1,0],[46,0,0,1,0],[47,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[62,0,0,1,0],[120,0,0,2,0],[126,0,0,1,0],[127,0,0,1,0],[128,0,0,1,0],[129,0,0,2,0],[130,0,0,1,0],[131,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0]],"query":[[25,0,0,1,0],[26,0,0,1,0],[27,0,1,1,0],[28,0,0,1,0],[29,0,0,1,1],[30,0,0,2,0],[31,0,0,1,0],[102,0,0,1,0],[167,0,0,1,0],[169,0,0,1,0],[170,0,0,0,1],[172,0,0,1,0]],"optionally":[[25,0,0,1,0],[26,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[29,0,0,1,0],[30,0,0,1,0],[31,0,0,1,0]],"stream":[[25,0,0,1,0],[26,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[29,0,0,1,0],[30,0,0,1,0],[31,0,0,1,0],[170,0,0,1,0]],"grounded":[[25,0,0,1,0],[26,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[29,0,0,2,0],[30,0,0,1,0],[31,0,0,1,0],[41,0,0,1,0],[84,0,0,1,0],[164,0,0,2,0],[165,0,0,1,0],[166,0,0,1,0],[167,0,0,1,0],[168,0,0,1,0],[169,0,1,1,0],[170,0,0,1,0],[171,0,0,1,0],[172,0,0,1,0],[173,0,0,1,0]],"answers":[[25,0,0,1,0],[26,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[29,0,1,2,0],[30,0,0,1,0],[31,0,0,2,0],[41,0,0,1,0],[74,0,0,0,1],[78,0,0,0,1],[165,0,0,1,0],[169,0,1,0,0]],"fetches":[[25,0,0,1,0],[89,0,0,1,0]],"those":[[25,0,0,1,0],[43,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[71,0,0,1,0],[76,0,0,1,0],[85,0,0,1,0],[90,0,0,1,0],[107,0,0,1,0],[120,0,0,1,0],[155,0,0,1,0]],"queries":[[25,0,0,1,0],[30,0,0,1,0],[164,0,0,1,0]],"database":[[25,0,0,1,0],[164,0,0,1,0]],"scripts":[[26,0,0,1,0],[37,0,0,0,1],[39,0,1,0,0],[40,0,1,0,0],[92,0,0,1,2],[109,0,0,1,0],[112,0,0,1,0]],"call":[[26,0,0,1,0],[154,0,0,1,0]],"generator":[[26,0,0,1,0],[102,0,0,1,0],[139,0,0,1,0],[165,0,0,1,0],[166,0,0,1,0]],"compact":[[26,0,0,1,0],[165,0,0,1,0]],"ranking":[[26,0,0,1,0],[165,0,0,1,0]],"store":[[26,0,0,1,0],[30,0,0,1,0],[165,0,0,1,0],[172,0,0,1,0]],"used":[[26,0,0,1,0],[147,0,0,1,0],[151,0,0,1,0]],"excerpts":[[26,0,0,1,0],[165,0,0,1,0]],"answer":[[26,0,0,1,0],[29,0,0,2,0],[84,0,0,1,0],[119,0,0,1,0],[122,0,0,1,0],[164,0,0,2,0],[165,0,0,1,0],[166,0,0,2,0],[167,0,0,1,0],[168,0,0,1,0],[169,0,0,2,0],[170,0,0,2,0],[171,0,0,1,0],[172,0,0,1,0],[173,0,0,1,0]],"bash":[[26,0,0,0,1],[34,0,0,0,1],[35,0,0,0,1],[36,0,0,0,1],[37,0,0,0,1],[45,0,0,0,1],[54,0,0,0,2],[65,0,0,0,1],[66,0,0,0,1],[67,0,0,0,1],[90,0,0,0,1],[91,0,0,0,1],[94,0,0,0,1],[101,0,0,0,1],[103,0,0,0,1],[104,0,0,0,1],[107,0,0,0,1],[110,0,0,0,1],[111,0,0,0,1],[125,0,0,0,1],[171,0,1,0,1]],"src":[[26,0,0,0,1],[33,0,0,0,1],[34,0,0,0,2],[35,0,0,0,1],[36,0,0,1,2],[37,0,0,1,6],[39,0,0,0,2],[45,0,0,0,1],[60,0,0,1,0],[67,0,0,0,1],[70,0,0,0,2],[78,0,0,0,3],[88,0,0,0,2],[90,0,0,0,1],[91,0,0,0,1],[92,0,0,0,1],[94,0,0,0,1],[101,0,0,0,1],[104,0,0,2,0],[106,0,0,1,0],[107,0,0,0,1],[110,0,0,2,0],[153,0,0,1,2],[158,0,0,0,2],[162,0,0,0,1]],"base":[[26,0,0,0,1],[36,0,0,0,1],[37,0,0,0,2],[45,0,0,0,1],[54,0,0,2,0],[101,0,0,0,1],[104,0,0,2,0],[112,0,0,1,0],[156,0,1,2,2]],"https":[[26,0,0,0,2],[34,0,0,0,1],[36,0,0,0,1],[37,0,0,0,3],[39,0,0,0,4],[40,0,0,0,2],[45,0,0,0,1],[48,0,0,0,2],[59,0,0,0,1],[101,0,0,0,1],[109,0,0,0,1],[141,0,0,0,3],[142,0,0,0,2],[146,0,0,0,3],[153,0,0,0,1],[154,0,0,0,2],[156,0,0,0,1],[166,0,0,0,1]],"com":[[26,0,0,0,2],[34,0,0,0,1],[36,0,0,0,1],[37,0,0,0,3],[39,0,0,0,4],[40,0,0,0,2],[59,0,0,0,1],[101,0,0,0,1]],"generatedocssearchfiles":[[26,0,0,0,2],[39,0,0,0,2],[112,0,0,1,0],[166,0,0,0,2]],"node":[[26,0,0,0,1],[39,0,0,0,1],[46,0,0,1,2],[49,0,0,1,0],[72,0,0,1,0],[74,0,0,1,1],[78,0,0,0,1],[80,0,0,1,0],[87,0,0,1,0],[88,0,0,0,1],[89,0,0,2,0],[90,0,0,1,0],[92,0,0,0,1],[95,0,0,2,1],[110,0,0,2,0],[112,0,0,1,0],[120,0,0,1,0],[130,0,0,1,0],[137,0,0,1,0],[143,0,0,1,0],[151,0,0,1,0],[153,0,0,0,1],[166,0,0,0,1],[167,0,0,1,0]],"await":[[26,0,0,0,1],[39,0,0,0,5],[40,0,0,0,1],[46,0,0,0,1],[59,0,0,0,1],[92,0,0,0,3],[93,0,0,0,2],[109,0,0,0,1],[114,0,0,0,1],[115,0,0,0,1],[116,0,0,0,1],[130,0,0,0,1],[135,0,0,0,1],[141,0,0,0,4],[142,0,0,0,4],[144,0,0,0,2],[151,0,0,0,1],[153,0,0,0,3],[154,0,0,0,2],[166,0,0,0,1],[171,0,0,0,1]],"outdir":[[26,0,0,0,1],[39,0,0,0,5],[40,0,0,0,1],[92,0,0,0,1],[93,0,0,0,2],[108,0,0,0,1],[109,0,0,0,1],[114,0,0,1,1],[141,0,0,1,4],[142,0,0,1,1],[151,0,0,4,1],[166,0,0,1,3]],"baseurl":[[26,0,0,0,1],[39,0,0,0,4],[40,0,0,0,2],[59,0,0,0,1],[109,0,0,0,1],[141,0,0,0,3],[142,0,0,0,2],[145,0,0,1,0],[153,0,0,0,1],[154,0,0,0,2],[156,0,0,1,1],[166,0,0,0,1]],"results":[[27,0,0,1,1],[28,0,0,0,1],[54,0,0,1,0],[165,0,0,1,0],[167,0,0,1,2]],"include":[[27,0,0,1,0],[44,0,0,2,0],[55,0,0,1,0],[87,0,0,1,0],[91,0,0,2,2],[92,0,1,0,0],[93,0,1,0,0],[94,0,0,1,0],[104,0,0,3,0],[105,0,0,2,0],[108,0,0,0,1],[158,0,0,1,0],[161,0,0,1,0],[167,0,0,1,0]],"urls":[[27,0,0,2,0],[45,0,0,1,0],[46,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[52,0,0,2,0],[54,0,0,3,0],[55,0,0,1,0],[63,0,0,1,0],[74,0,0,0,1],[89,0,0,1,0],[104,0,0,1,0],[129,0,0,1,0],[138,0,0,1,0],[142,0,0,1,0],[147,0,0,1,0],[158,0,0,1,0],[160,0,0,1,0],[167,0,0,1,0]],"paths":[[27,0,0,1,0],[39,0,0,1,0],[45,0,0,1,0],[51,0,0,1,0],[64,0,0,0,1],[66,0,0,1,0],[71,0,0,1,0],[99,0,0,1,0],[110,0,0,1,0],[112,0,0,1,0],[137,0,0,1,0],[148,0,0,1,0],[152,0,0,0,1],[167,0,0,1,0],[173,0,0,1,0]],"hash":[[27,0,0,1,0],[31,0,0,1,0],[60,0,0,1,0],[167,0,0,1,0]],"snippets":[[27,0,0,1,0],[167,0,0,1,0]],"own":[[27,0,0,1,0],[38,0,0,1,0],[41,0,0,1,0],[78,0,0,1,0],[83,0,0,1,0],[85,0,1,0,0],[95,0,0,1,0],[142,0,0,1,0],[146,0,0,1,0]],"searchdocs":[[27,0,0,0,2],[28,0,0,0,1],[167,0,0,0,3]],"docssearchcontentstore":[[27,0,0,0,2],[167,0,0,0,2]],"docssearchindex":[[27,0,0,0,2],[167,0,0,0,2]],"contentjson":[[27,0,0,0,2],[167,0,0,0,2]],"indexjson":[[27,0,0,0,2],[167,0,0,0,2]],"const":[[27,0,0,0,3],[28,0,0,0,1],[29,0,0,0,1],[39,0,0,0,3],[40,0,0,0,1],[46,0,0,0,3],[48,0,0,0,3],[57,0,0,0,1],[58,0,0,0,4],[59,0,0,0,1],[92,0,0,0,2],[93,0,0,0,2],[115,0,0,0,1],[130,0,0,0,1],[135,0,0,0,1],[142,0,0,0,1],[144,0,0,0,1],[145,0,0,0,2],[146,0,0,0,1],[153,0,0,0,2],[154,0,0,0,2],[156,0,0,0,1],[162,0,0,0,1],[167,0,0,0,2],[168,0,0,0,3],[169,0,0,0,1],[170,0,0,0,1],[171,0,0,0,1]],"vocabulary":[[28,0,1,0,0],[75,0,1,0,0],[165,0,1,0,0],[167,0,0,1,0],[173,0,0,1,0]],"aliases":[[28,0,1,0,0],[49,0,0,1,0],[147,0,0,1,0]],"starts":[[28,0,0,1,0],[79,0,0,1,0]],"lexical":[[28,0,0,1,0],[173,0,0,1,0]],"matching":[[28,0,0,1,0],[58,0,0,1,0],[170,0,0,1,0],[173,0,0,1,0]],"stemming":[[28,0,0,1,0],[167,0,0,1,0]],"prefix":[[28,0,0,1,0],[151,0,0,1,0],[167,0,0,1,0]],"matches":[[28,0,0,1,0],[54,0,0,1,0],[76,0,0,1,0],[79,0,0,1,0],[89,0,0,1,0],[167,0,0,2,0],[173,0,0,1,0]],"typo":[[28,0,0,1,0],[167,0,0,1,0]],"tolerant":[[28,0,0,1,0],[147,0,0,1,0],[167,0,0,1,0]],"fallbacks":[[28,0,0,1,0],[167,0,0,1,0]],"built":[[28,0,0,1,0],[29,0,0,1,0],[73,0,0,1,0],[83,0,0,1,0],[167,0,0,1,0]],"synonym":[[28,0,0,1,0],[167,0,0,1,0]],"synonyms":[[28,0,0,1,1],[167,0,0,1,1]],"users":[[28,0,0,1,0],[173,0,0,1,0]],"words":[[28,0,0,1,0]],"quickstart":[[28,0,0,0,1],[38,0,0,0,1],[45,0,0,0,1],[48,0,0,0,3],[49,0,0,1,0],[54,0,0,0,3],[77,0,0,1,0],[81,0,0,1,0],[90,0,0,1,1],[98,1,1,0,0],[99,1,1,0,0],[100,1,1,0,0],[101,1,1,0,0],[102,1,1,0,0],[115,0,0,0,1],[116,0,0,0,2],[120,0,0,1,0],[140,0,0,0,4],[146,0,0,0,5],[152,0,0,0,2],[167,0,0,0,1],[168,0,0,0,1]],"getting":[[28,0,0,0,1],[167,0,0,0,1]],"started":[[28,0,0,0,1],[38,0,0,0,2],[100,0,0,0,1],[106,0,0,0,2],[108,0,0,0,2],[120,0,0,1,0],[140,0,0,0,1],[152,0,0,0,1],[167,0,0,0,1]],"ai":[[29,0,1,0,0],[31,0,0,1,0],[49,0,0,1,0],[53,0,0,1,0],[55,0,0,1,0],[74,0,0,0,1],[75,0,0,1,0],[78,0,0,0,1],[83,0,0,1,0],[138,0,0,1,0],[144,0,0,3,0],[147,0,0,2,0],[148,0,0,1,0],[149,0,0,1,0],[170,0,0,1,5],[171,0,0,1,0]],"basic":[[29,0,0,1,0]],"retrieves":[[29,0,0,1,0]],"chunks":[[29,0,0,2,0],[169,0,0,1,0],[171,0,0,1,0],[173,0,0,1,0]],"builds":[[29,0,0,1,0],[80,0,0,1,0],[101,0,0,1,0],[156,0,0,1,0],[164,0,0,1,0]],"constrained":[[29,0,0,1,0]],"leaves":[[29,0,0,1,0],[51,0,0,1,0],[75,0,0,1,0],[144,0,0,1,0]],"model":[[29,0,0,2,1],[32,0,0,1,0],[69,0,0,1,0],[70,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,0,1,0],[75,0,0,1,0],[76,0,0,1,0],[77,0,0,1,0],[81,0,0,1,0],[122,0,0,3,0],[125,0,0,0,1],[140,0,0,0,2],[152,0,0,0,1],[169,0,0,2,0],[170,0,0,1,1]],"choice":[[29,0,0,1,0]],"provider":[[29,0,0,1,0],[65,0,0,1,0],[164,0,0,1,0],[170,0,1,1,0]],"point":[[29,0,0,1,0],[36,0,0,1,0],[37,0,0,1,0],[54,0,0,2,0],[58,0,0,1,0],[74,0,0,1,0],[80,0,0,1,0],[92,0,0,1,0],[95,0,0,2,0],[113,0,0,1,0],[137,0,0,1,0],[150,0,0,1,0],[162,0,0,1,0]],"display":[[29,0,0,1,0],[139,0,0,1,0],[170,0,0,1,0]],"sources":[[29,0,0,1,1],[31,0,0,2,0],[169,0,0,1,1],[170,0,0,2,1]],"streamed":[[29,0,0,1,0],[170,0,0,1,0]],"response":[[29,0,0,1,1],[42,0,0,1,0],[46,0,0,0,1],[49,0,0,1,0],[50,0,0,1,0],[112,0,0,1,0],[143,0,0,2,0],[144,0,0,1,3],[147,0,0,2,0],[170,0,0,3,1]],"ask":[[29,0,0,1,0]],"memory":[[29,0,0,1,0],[113,0,0,1,0],[115,0,0,1,0],[172,0,0,1,0],[173,0,0,1,0]],"retrieved":[[29,0,0,1,0],[169,0,0,2,0]],"streamdocsanswer":[[29,0,0,0,2],[170,0,0,0,4]],"vercel":[[29,0,0,0,1],[30,0,0,1,0],[49,0,0,1,0],[54,0,0,1,1],[142,0,0,1,0],[143,0,0,1,0],[167,0,0,1,0],[170,0,0,0,2],[171,0,0,1,0],[172,0,0,1,0]],"openai":[[29,0,0,0,1],[89,0,0,1,0],[170,0,0,0,1]],"gpt":[[29,0,0,0,1],[122,0,0,2,0],[125,0,0,0,1],[170,0,0,0,1]],"productname":[[29,0,0,0,1],[169,0,0,0,1],[170,0,0,0,1]],"my":[[29,0,0,0,1],[45,0,0,0,1],[90,0,0,2,4],[94,0,0,0,2],[95,0,0,0,1],[100,0,0,0,2],[106,0,0,0,1],[107,0,0,0,1],[140,0,0,0,1],[141,0,0,0,2],[151,0,0,0,1],[152,0,0,0,1],[169,0,0,0,1],[170,0,0,0,1]],"library":[[29,0,0,0,1],[39,0,0,1,0],[85,0,0,1,0],[87,0,0,1,0],[92,0,0,1,0],[95,0,0,0,2],[99,0,0,1,0],[100,0,0,0,2],[106,0,0,0,2],[110,0,0,1,0],[112,0,1,1,0],[126,0,0,2,0],[127,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0],[130,0,1,1,0],[131,0,1,1,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0],[139,0,0,1,0],[140,0,0,0,2],[141,0,0,0,3],[152,0,0,0,2],[169,0,0,0,1],[170,0,0,0,1]],"guard":[[30,0,1,0,0]],"endpoint":[[30,0,1,0,0],[50,0,0,1,0]],"user":[[30,0,0,1,0],[49,0,0,2,0],[53,0,0,2,0],[54,0,0,0,2],[55,0,0,1,0],[75,0,0,1,0],[144,0,0,3,0],[147,0,0,2,0],[148,0,0,1,0],[149,0,0,2,0]],"request":[[30,0,0,1,0],[46,0,0,1,5],[47,0,0,0,2],[49,0,0,1,0],[52,0,0,1,0],[54,0,0,1,0],[64,0,0,0,1],[75,0,0,1,0],[87,0,0,1,0],[112,0,0,1,0],[143,0,0,1,0],[144,0,0,1,4],[145,0,0,1,2],[172,0,0,1,0]],"helpers":[[30,0,0,1,0],[42,0,0,1,0],[112,0,0,1,0],[143,0,1,1,0],[144,0,1,0,0],[145,0,1,1,0],[146,0,1,0,0],[147,0,2,0,0],[148,0,2,0,0],[149,0,1,0,0],[150,0,1,0,0],[164,0,0,1,0],[165,0,0,1,0],[166,0,0,1,0],[167,0,0,1,0],[168,0,0,1,0],[169,0,0,1,0],[170,0,0,1,0],[171,0,0,1,0],[172,0,0,1,0],[173,0,0,1,0]],"validatedocsquery":[[30,0,0,1,0],[172,0,0,1,0]],"trim":[[30,0,0,1,0],[172,0,0,1,0]],"cap":[[30,0,0,1,0],[172,0,0,1,0]],"readjsonwithlimit":[[30,0,0,1,0],[172,0,0,1,0]],"reject":[[30,0,0,1,0],[172,0,0,1,0]],"oversized":[[30,0,0,1,0],[172,0,0,1,0]],"bodies":[[30,0,0,1,0],[55,0,0,1,0],[172,0,0,1,0]],"getclientidentifier":[[30,0,0,1,0],[172,0,0,1,0]],"common":[[30,0,0,1,0],[138,0,0,1,0],[172,0,0,1,0]],"proxy":[[30,0,0,1,0],[172,0,0,1,0]],"ip":[[30,0,0,1,0],[172,0,0,1,0]],"headers":[[30,0,0,1,0],[47,0,0,0,2],[49,0,0,1,0],[53,0,0,1,0],[55,0,0,1,0],[144,0,0,1,2],[147,0,0,2,0],[172,0,0,1,0]],"creatememoryratelimiter":[[30,0,0,1,0],[172,0,0,1,0]],"demos":[[30,0,0,1,0],[172,0,0,2,0]],"production":[[30,0,0,1,0],[54,0,0,1,0],[101,0,0,1,0],[172,0,0,1,0]],"apps":[[30,0,0,1,0],[38,0,0,0,1],[50,0,0,1,0],[60,0,0,1,0],[73,0,0,1,0],[101,0,0,1,0],[138,0,0,1,0],[142,0,0,1,0],[172,0,0,1,0]],"adapt":[[30,0,0,1,0],[172,0,0,1,0]],"rate":[[30,0,0,1,0]],"limiter":[[30,0,0,1,0],[172,0,0,1,0]],"interface":[[30,0,0,1,0],[172,0,0,1,0]],"such":[[30,0,0,1,0],[49,0,0,1,0]],"redis":[[30,0,0,1,0],[172,0,0,1,0]],"kv":[[30,0,0,2,0],[49,0,0,1,0],[50,0,0,1,0],[172,0,0,2,0]],"cloudflare":[[30,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[75,0,0,1,0],[143,0,0,1,0],[167,0,0,1,0],[170,0,0,1,2],[172,0,0,1,0]],"durable":[[30,0,0,1,0],[172,0,0,1,0]],"objects":[[30,0,0,1,0],[143,0,0,1,0],[172,0,0,1,0]],"verify":[[31,0,1,0,0],[42,0,1,0,0],[54,0,1,0,0],[94,0,1,0,0]],"searching":[[31,0,0,2,0]],"returns":[[31,0,0,2,0],[49,0,0,1,0],[75,0,0,1,0],[144,0,0,2,0],[146,0,0,1,0],[151,0,0,1,0],[153,0,0,1,0],[154,0,0,1,0]],"expected":[[31,0,0,1,0],[54,0,0,1,0]],"guide":[[31,0,0,1,0],[43,0,0,1,0],[147,0,0,1,0]],"phrase":[[31,0,0,1,0]],"result":[[31,0,0,1,0],[105,0,0,1,0],[115,0,0,0,3],[130,0,0,0,1],[131,0,1,0,0],[142,0,0,1,4],[153,0,0,1,0],[166,0,0,1,0],[168,0,0,1,0]],"cite":[[31,0,0,1,0],[43,0,0,1,0],[169,0,0,1,0]],"returned":[[31,0,0,1,0],[142,0,0,1,0]],"document":[[32,0,0,1,0],[33,0,0,1,0],[34,0,0,1,0],[35,0,0,1,0],[36,0,0,1,0],[37,0,0,1,0],[38,0,0,1,0],[39,0,0,1,0],[40,0,0,1,0],[41,0,0,1,0],[42,0,0,1,0],[165,0,0,2,0]],"repos":[[32,0,0,1,0],[34,0,0,1,0],[86,0,0,1,0]],"main":[[32,0,0,1,0],[83,0,0,1,0],[111,0,0,0,1]],"documents":[[32,0,0,1,0],[86,0,0,1,0]],"clones":[[32,0,0,1,0]],"serves":[[32,0,0,1,0],[71,0,0,1,0]],"artifact":[[32,0,0,1,0],[51,0,0,1,0],[65,0,0,1,0],[70,0,0,1,0],[81,0,0,1,0],[107,0,0,1,0],[122,0,0,1,0],[123,0,0,1,0],[148,0,0,1,0]],"flow":[[33,0,1,0,0],[88,0,1,0,0],[139,0,0,1,0],[151,0,0,1,0],[152,0,0,1,0]],"repo":[[33,0,0,0,3],[34,0,1,1,0],[37,0,0,1,0],[38,0,0,1,0],[42,0,0,1,0],[43,0,0,1,0],[86,0,0,2,0],[88,0,0,0,1],[92,0,0,0,2],[93,0,0,0,3],[100,0,0,1,0],[101,0,0,1,0],[104,0,0,1,0],[108,0,0,0,3],[119,0,0,1,0],[151,0,0,1,0]],"clone":[[33,0,0,0,3],[34,0,0,1,1],[37,0,0,0,1],[101,0,0,1,0]],"checkout":[[33,0,0,0,1],[34,0,0,1,0],[37,0,0,1,0],[64,0,0,0,1]],"c15t":[[33,0,0,0,1],[34,0,0,0,4],[35,0,0,0,1],[36,0,0,0,1],[37,0,0,0,6],[38,0,0,0,1],[39,0,0,0,2],[91,0,0,0,1]],"fetch":[[34,0,1,0,0],[37,0,0,1,2],[43,0,0,1,0],[49,0,0,2,0],[50,0,0,1,0],[72,0,0,1,0],[74,0,0,1,1]],"check":[[34,0,0,1,0],[42,0,0,1,0],[54,0,0,2,0],[94,0,0,2,0],[119,0,0,1,0],[122,0,0,1,0],[128,0,0,1,0]],"shallow":[[34,0,0,1,0]],"private":[[34,0,0,1,0],[86,0,0,1,0]],"platform":[[34,0,0,1,0],[83,0,0,1,0]],"deploy":[[34,0,0,1,0]],"key":[[34,0,0,1,0],[146,0,0,0,1]],"important":[[34,0,0,1,0]],"part":[[34,0,0,1,0],[120,0,0,1,0]],"normal":[[34,0,0,1,0]],"filesystem":[[34,0,0,1,0],[89,0,0,2,0],[151,0,0,1,0],[168,0,0,1,0],[171,0,0,2,0]],"whose":[[34,0,0,1,0]],"rm":[[34,0,0,0,1],[37,0,0,0,1],[92,0,0,0,3],[158,0,0,0,2]],"rf":[[34,0,0,0,1],[37,0,0,0,1]],"depth":[[34,0,0,0,1],[37,0,0,0,1]],"github":[[34,0,0,0,1],[35,0,0,0,1],[37,0,0,0,2],[64,0,1,1,1],[65,0,0,1,0],[89,0,0,1,0],[110,0,0,1,0],[136,0,0,2,0]],"against":[[35,0,0,1,0],[54,0,0,2,0],[110,0,0,1,0],[119,0,0,1,0],[130,0,0,1,0]],"fetched":[[35,0,0,1,0],[36,0,0,1,0]],"writing":[[35,0,0,1,0],[115,0,0,1,0]],"line":[[35,0,0,1,0],[67,0,0,1,0],[139,0,0,1,0]],"internal":[[35,0,0,1,0],[63,0,0,1,0],[84,0,0,1,0],[91,0,0,0,1],[110,0,0,1,0]],"placeholders":[[35,0,0,1,0],[63,0,0,1,0],[157,0,0,1,0],[158,0,0,1,0],[160,0,0,1,0]],"issues":[[35,0,0,1,0],[62,0,0,1,0],[63,0,0,1,0],[64,0,0,1,0],[65,0,0,1,0],[66,0,0,2,0],[67,0,0,1,0],[68,0,0,1,0],[126,0,0,1,0]],"easier":[[35,0,0,1,0],[67,0,0,1,0]],"debug":[[35,0,0,1,0],[67,0,0,1,0]],"than":[[35,0,0,1,0],[61,0,0,1,0]],"later":[[35,0,0,1,0],[62,0,0,1,0]],"using":[[35,0,0,1,0],[52,0,0,1,0],[61,0,0,1,0]],"stale":[[35,0,0,1,0],[66,0,0,1,0],[68,0,0,1,0],[136,0,0,1,0],[150,0,0,1,0]],"partial":[[35,0,0,1,0],[161,0,0,1,0]],"format":[[35,0,0,0,1],[37,0,0,0,1],[64,0,0,1,1],[65,0,0,2,1],[105,0,0,2,0],[110,0,0,2,0],[122,0,0,1,0],[136,0,0,2,0],[165,0,0,1,0]],"max":[[35,0,0,0,1],[37,0,0,0,1],[49,0,0,1,0],[53,0,0,1,0],[64,0,0,1,1],[66,0,0,0,1],[110,0,0,1,0],[144,0,0,1,0],[149,0,0,1,0]],"hosted":[[36,0,1,0,0],[42,0,0,1,0],[74,0,0,1,0],[78,0,0,1,0],[79,0,0,1,0],[80,0,0,1,0],[81,0,0,1,0],[83,0,0,2,0],[89,0,0,1,0],[98,0,0,1,0],[99,0,0,1,0],[100,0,0,1,0],[101,0,1,3,0],[102,0,0,1,0],[112,0,0,1,0],[120,0,0,3,0],[122,0,0,1,0],[137,0,0,2,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0],[141,0,0,1,0],[142,0,0,2,0],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,1,0],[152,0,0,1,0],[153,0,0,1,0],[154,0,0,1,0],[155,0,0,1,0],[156,0,0,1,0]],"repository":[[36,0,0,1,0],[125,0,0,1,0]],"directory":[[36,0,0,1,0],[71,0,0,1,0],[76,0,0,1,0],[104,0,0,1,0],[114,0,0,2,0]],"sitemap":[[36,0,0,2,0],[42,0,0,1,0],[44,0,0,2,0],[45,0,0,0,2],[46,0,0,3,2],[47,0,0,0,5],[50,0,0,3,0],[51,0,0,2,0],[52,0,1,2,0],[54,0,0,1,3],[55,0,0,5,0],[70,0,0,0,1],[71,0,0,3,0],[73,0,0,3,0],[76,0,0,1,0],[78,0,0,0,1],[101,0,0,1,2],[104,0,0,2,0],[108,0,0,4,2],[137,0,0,2,0],[138,0,0,4,0],[142,0,0,2,2],[144,0,0,1,0],[145,0,0,2,4],[147,0,0,1,0],[148,0,0,1,0]],"xml":[[36,0,0,1,0],[44,0,0,1,0],[45,0,0,0,1],[46,0,0,3,2],[47,0,0,0,3],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[54,0,0,0,2],[55,0,0,2,0],[71,0,0,1,0],[73,0,0,1,0],[101,0,0,0,1],[104,0,0,1,0],[108,0,0,1,1],[137,0,0,1,0],[138,0,0,2,0],[142,0,0,1,1],[145,0,0,0,2]],"robots":[[36,0,0,1,0],[42,0,0,1,0],[43,0,0,1,0],[44,0,0,2,0],[45,0,0,1,1],[46,0,0,1,0],[47,0,0,1,2],[48,0,0,1,0],[49,0,0,1,0],[50,0,0,3,0],[51,0,0,2,0],[52,0,1,2,0],[53,0,0,1,0],[54,0,0,2,0],[55,0,0,4,0],[70,0,0,0,1],[71,0,0,2,0],[73,0,0,2,0],[76,0,0,1,0],[101,0,0,0,1],[102,0,0,1,0],[104,0,0,2,0],[108,0,0,3,1],[137,0,0,1,0],[138,0,0,1,0],[142,0,0,1,1],[144,0,0,1,0],[145,0,0,1,2],[147,0,0,1,0],[148,0,0,1,0]],"automation":[[36,0,0,1,0]],"record":[[36,0,0,1,0]],"filters":[[36,0,0,1,0],[39,0,0,1,0],[91,0,0,1,0],[94,0,0,1,0],[108,0,0,0,1]],"stats":[[36,0,0,1,0],[108,0,0,0,1]],"make":[[37,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[69,0,0,1,0],[90,0,0,1,0],[102,0,0,1,0],[149,0,0,1,0],[173,0,0,1,0]],"skip":[[37,0,0,1,0],[66,0,0,1,0],[76,0,0,1,0],[110,0,0,1,0],[163,0,0,1,0]],"configure":[[38,0,1,0,0]],"version":[[38,0,0,1,0],[46,0,0,0,1],[74,0,0,1,1],[78,0,0,0,1],[80,0,0,1,0],[83,0,1,0,0],[87,0,0,1,0],[88,0,0,0,1],[89,0,0,2,0],[95,0,0,0,1],[133,0,0,1,0],[150,0,1,2,0]],"together":[[38,0,0,1,0],[136,0,0,1,0]],"drive":[[38,0,0,1,0]],"inferred":[[38,0,0,1,0],[106,0,0,1,0],[117,0,0,1,0]],"definedocsconfig":[[38,0,0,0,2],[106,0,0,0,2]],"export":[[38,0,0,0,1],[46,0,0,0,1],[57,0,0,0,1],[106,0,0,0,1],[158,0,0,1,0]],"summary":[[38,0,0,0,1],[43,0,0,1,0],[45,0,0,0,1],[65,0,0,1,0],[75,0,0,1,0],[90,0,0,0,1],[104,0,0,2,0],[106,0,0,0,1],[108,0,0,0,1],[131,0,0,0,1],[138,0,0,1,0],[139,0,0,3,0],[141,0,0,0,1],[151,0,0,1,0]],"consent":[[38,0,0,0,2]],"infrastructure":[[38,0,0,0,1]],"modern":[[38,0,0,0,1]],"web":[[38,0,0,0,1],[49,0,0,1,0],[96,0,0,1,0],[120,0,0,1,0],[143,0,0,2,0],[144,0,0,1,0]],"bullets":[[38,0,0,0,1],[139,0,0,1,0]],"integrations":[[38,0,0,0,1]],"primitives":[[38,0,0,0,1]],"audit":[[38,0,0,0,1],[43,0,0,1,0],[44,0,0,1,0],[45,0,0,1,0],[46,0,0,1,0],[47,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,5,1],[55,0,0,1,0]],"beststartingpoints":[[38,0,0,0,1],[139,0,0,1,0]],"urlpath":[[38,0,0,0,2],[47,0,0,0,1],[48,0,0,0,1],[93,0,0,0,2],[139,0,0,1,0],[144,0,0,0,1],[146,0,0,0,1],[153,0,0,0,2]],"get":[[38,0,0,0,2],[46,0,0,0,1],[74,0,0,1,0],[80,0,1,2,0],[100,0,0,0,1],[106,0,0,0,2],[108,0,0,0,2],[115,0,0,1,0],[120,0,0,1,0],[140,0,0,0,1],[152,0,0,0,1],[157,0,0,2,0]],"pipelines":[[39,0,1,0,0],[40,0,1,0,0],[136,0,0,1,0],[154,0,0,1,0]],"happy":[[39,0,0,1,0],[112,0,0,1,0],[140,0,0,0,1]],"apis":[[39,0,0,1,0],[83,0,0,1,0],[92,0,0,1,0],[99,0,0,1,0],[109,0,0,1,0],[113,0,0,2,0],[114,0,0,1,0],[115,0,0,1,0],[116,0,0,1,0],[117,0,0,1,0],[118,0,0,1,0],[137,0,0,2,0],[139,0,0,1,0],[140,0,0,0,1],[146,0,0,0,1],[147,0,0,1,0],[154,0,0,1,0],[155,0,0,1,0],[167,0,0,1,0]],"because":[[39,0,0,1,0],[124,0,0,1,0],[160,0,0,2,0]],"write":[[39,0,0,2,0],[59,0,0,1,0],[76,0,0,2,0],[78,0,0,1,0],[80,0,0,1,0],[93,0,0,0,1],[116,0,0,1,0],[153,0,0,1,1],[155,0,0,1,0]],"agentreadability":[[39,0,0,1,1]],"manifest":[[39,0,0,1,0],[42,0,0,1,0],[45,0,0,1,0],[46,0,0,0,2],[47,0,0,0,7],[48,0,0,3,0],[52,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,2,0],[61,0,0,1,0],[70,0,0,0,2],[73,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[142,0,0,2,3],[143,0,0,1,0],[144,0,0,0,1],[145,0,0,1,3],[146,0,0,2,2],[147,0,0,1,0],[148,0,0,1,0],[150,0,1,1,0],[153,0,0,2,0]],"merge":[[39,0,0,1,0],[73,0,0,1,0],[108,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[142,0,0,1,0],[145,0,0,0,1]],"marketing":[[39,0,0,1,0],[46,0,0,1,0],[73,0,0,1,0],[108,0,0,1,0],[138,0,0,1,0]],"blog":[[39,0,0,1,0],[46,0,0,1,0],[73,0,0,1,0],[108,0,0,1,0],[138,0,0,1,0]],"changelog":[[39,0,0,1,0],[46,0,0,1,0],[73,0,0,1,0],[108,0,0,1,0],[110,0,0,2,0],[130,0,0,2,0],[131,0,0,0,1],[133,0,1,0,0],[138,0,0,1,0]],"convertallmdx":[[39,0,0,0,2],[92,0,0,0,2],[112,0,0,1,0],[113,0,0,1,1],[114,0,1,0,1],[118,0,0,1,0],[141,0,0,0,2],[152,0,0,1,0]],"generateagentreadabilityartifacts":[[39,0,0,0,2],[40,0,0,0,1],[112,0,0,1,0],[137,0,0,1,1],[139,0,0,1,0],[141,0,0,1,2],[142,0,1,0,2],[143,0,0,1,0]],"generatellmfullcontextfiles":[[39,0,0,0,2],[112,0,0,1,0],[137,0,0,1,1],[139,0,0,1,0],[141,0,0,1,2]],"generatellmstxt":[[39,0,0,0,2],[109,0,0,0,2],[112,0,0,1,0],[137,0,0,2,1],[139,0,0,1,0],[141,0,0,0,2],[151,0,0,3,0]],"resolvedocsnavigation":[[39,0,0,0,1],[40,0,0,0,1],[58,0,0,1,0],[59,0,0,1,2],[73,0,0,1,0],[92,0,0,0,1],[93,0,0,0,1],[112,0,0,1,0],[137,0,0,0,1],[153,0,1,0,1],[154,0,0,1,1]],"defaultremarkplugins":[[39,0,0,0,2],[92,0,0,0,2],[93,0,0,0,1],[112,0,0,1,0],[114,0,0,1,2],[115,0,0,0,1],[116,0,0,0,1],[118,0,0,0,2],[141,0,0,0,2],[157,0,0,0,1],[158,0,0,1,0],[161,0,0,0,1],[162,0,0,0,2],[163,0,0,1,0]],"remarkinclude":[[39,0,0,0,2],[114,0,0,1,2],[118,0,0,2,2],[141,0,0,0,2],[157,0,0,0,1],[161,0,1,0,1],[163,0,0,1,0]],"docsconfig":[[39,0,0,0,7],[40,0,0,0,3],[59,0,0,0,2],[92,0,0,0,1],[93,0,0,0,3],[109,0,0,0,3],[141,0,0,0,4],[142,0,0,0,3],[151,0,0,0,2],[153,0,0,0,1],[154,0,0,0,1]],"sourceroot":[[39,0,0,0,3],[40,0,0,0,1]],"srcdir":[[39,0,0,0,2],[40,0,0,0,1],[59,0,0,0,1],[92,0,0,0,1],[93,0,0,0,3],[108,0,0,0,1],[109,0,0,0,1],[110,0,0,2,1],[114,0,0,2,1],[130,0,0,3,1],[135,0,0,0,1],[141,0,0,0,2],[151,0,0,1,1],[153,0,0,0,1],[154,0,0,0,2]],"remarkplugins":[[39,0,0,0,1],[92,0,0,0,1],[93,0,0,0,1],[114,0,0,1,1],[116,0,0,0,1],[118,0,0,0,1],[141,0,0,0,1],[161,0,0,0,1],[162,0,0,0,1]],"enrichfrontmatterfromgit":[[39,0,0,0,1],[114,0,0,1,1],[115,0,0,0,1]],"ait":[[40,0,0,0,1]],"choose":[[41,0,0,1,0],[79,0,1,0,0],[83,0,0,1,0],[102,0,1,0,0],[120,0,0,1,0],[122,0,0,1,0]],"pieces":[[41,0,0,1,0]],"return":[[41,0,0,1,0],[46,0,0,0,4],[47,0,0,0,6],[49,0,1,0,0],[50,0,1,0,0],[51,0,1,0,0],[52,0,1,0,0],[53,0,1,0,0],[54,0,0,1,0],[55,0,0,2,0],[58,0,0,0,6],[143,0,0,1,0],[144,0,0,0,2],[147,0,0,2,0]],"requests":[[41,0,0,1,0],[44,0,0,1,0],[45,0,0,1,0],[46,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[54,0,0,1,0],[75,0,0,1,0],[144,0,0,1,0]],"discovery":[[41,0,0,1,0],[44,0,0,1,0],[46,0,0,2,0],[73,0,0,1,0],[76,0,0,1,0],[80,0,0,1,0],[142,0,0,1,0],[144,0,0,1,0]],"optimize":[[41,0,0,1,0],[43,1,1,0,0],[44,1,1,0,0],[45,1,1,0,0],[46,1,1,0,0],[47,1,1,0,0],[48,1,1,0,0],[49,1,1,0,0],[50,1,1,0,0],[51,1,1,0,0],[52,1,1,0,0],[53,1,1,0,0],[54,1,1,0,0],[55,1,1,0,0],[102,0,0,1,0],[147,0,0,1,0]],"local":[[41,0,0,1,0],[54,0,0,2,0],[66,0,1,0,0],[90,0,0,1,0],[120,0,0,1,0],[156,0,0,1,0],[162,0,0,1,0],[167,0,0,1,0],[173,0,0,1,0]],"clean":[[42,0,0,1,0],[113,0,0,1,0],[117,0,0,1,0],[158,0,0,0,1],[160,0,0,1,0]],"home":[[42,0,0,1,0]],"ld":[[42,0,0,1,0],[43,0,0,1,0],[44,0,0,2,0],[45,0,0,1,0],[46,0,0,1,0],[47,0,0,1,0],[48,0,1,3,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,2,0],[55,0,0,2,0],[101,0,0,1,0],[102,0,0,1,0],[112,0,0,1,0],[146,0,0,1,4],[147,0,0,2,0]],"least":[[42,0,0,1,0]],"set":[[43,0,0,1,0],[44,0,0,1,0],[45,0,0,1,0],[46,0,0,1,0],[47,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,1,0],[61,0,0,1,0],[123,0,0,1,0],[132,0,0,1,0],[149,0,0,1,0]],"mirrors":[[43,0,0,1,0],[44,0,0,1,0],[45,0,0,1,0],[46,0,0,1,0],[47,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,2,0],[78,0,0,1,0],[84,0,0,1,0],[114,0,0,1,0],[120,0,0,1,0]],"sitemaps":[[43,0,0,1,0],[44,0,0,1,0],[45,0,0,1,0],[46,0,0,1,0],[47,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,2,0],[55,0,0,1,0],[102,0,0,1,0]],"want":[[43,0,0,1,0],[52,0,0,1,0],[81,0,0,1,0],[83,0,0,1,0],[86,0,0,2,0],[87,0,0,1,0],[101,0,0,1,0],[115,0,0,1,0],[160,0,0,1,0],[163,0,0,2,0],[171,0,0,1,0]],"find":[[43,0,0,1,0],[48,0,0,0,1],[171,0,0,1,0]],"attribute":[[43,0,0,1,0]],"handles":[[43,0,0,1,0],[46,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[86,0,0,1,0],[140,0,0,0,1]],"wires":[[43,0,0,1,0]],"shape":[[43,0,0,1,0],[50,0,0,1,0],[69,0,0,1,0],[89,0,0,2,0],[108,0,1,1,0],[122,0,0,1,0],[131,0,1,0,0],[139,0,0,1,0],[146,0,0,1,0],[151,0,0,2,0]],"based":[[43,0,0,1,0]],"evals":[[43,0,0,2,0],[119,1,1,0,0],[120,1,1,0,0],[121,1,1,0,0],[122,1,1,0,0],[123,1,1,0,0],[124,1,1,0,0],[125,1,2,1,3],[138,0,0,1,0]],"benchmark":[[43,0,0,1,0],[120,0,1,2,0],[121,0,1,0,0],[122,0,0,1,0],[124,0,0,1,0],[138,0,0,1,0]],"question":[[43,0,0,1,0],[124,0,1,0,0]],"around":[[43,0,0,1,0],[170,0,0,1,0]],"larger":[[43,0,0,1,0],[124,0,0,2,0]],"corpus":[[43,0,0,1,0],[120,0,0,1,0],[124,0,0,2,0]],"scaling":[[43,0,0,1,0]],"four":[[44,0,0,1,0],[137,0,0,1,0]],"layers":[[44,0,0,1,0],[164,0,0,1,0]],"tell":[[44,0,0,1,0],[95,0,1,0,0]],"retrieval":[[44,0,0,1,0]],"mirror":[[44,0,0,1,0],[45,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[142,0,0,1,0]],"receive":[[44,0,0,1,0]],"instead":[[44,0,0,1,0],[150,0,0,1,0],[151,0,0,1,0],[171,0,0,1,0]],"structured":[[44,0,0,1,0],[73,0,0,1,0],[138,0,0,1,0]],"canonical":[[44,0,0,2,0],[48,0,0,2,1],[49,0,0,2,0],[50,0,0,1,0],[54,0,0,1,0],[55,0,0,2,0],[104,0,0,1,0],[138,0,0,1,0],[144,0,0,3,0],[146,0,0,1,1],[147,0,0,3,0]],"alternate":[[44,0,0,1,0],[48,0,0,1,1],[55,0,0,1,0],[112,0,0,1,0],[146,0,0,1,1],[147,0,0,1,0]],"extract":[[44,0,0,1,0]],"identity":[[44,0,0,1,0]],"guessing":[[44,0,0,1,0]],"dom":[[44,0,0,1,0]],"attribution":[[44,0,0,1,0]],"last":[[44,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[68,0,0,1,0],[144,0,0,1,0],[147,0,0,1,0],[160,0,0,1,0]],"updated":[[44,0,0,1,0],[49,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[144,0,0,1,0],[147,0,0,1,0]],"keeps":[[44,0,0,1,0],[86,0,0,1,0],[123,0,0,1,0],[154,0,0,1,0],[156,0,0,1,0],[166,0,0,1,0]],"freshness":[[44,0,0,1,0],[45,0,0,1,0],[142,0,0,1,0]],"under":[[45,0,0,1,0],[66,0,0,1,0],[76,0,0,1,0],[104,0,0,1,0],[110,0,0,1,0],[120,0,0,2,0],[130,0,0,1,0],[139,0,0,3,0],[142,0,0,1,0],[151,0,0,1,0],[166,0,0,1,0]],"bridge":[[45,0,0,1,0]],"between":[[45,0,0,1,0],[163,0,0,1,0]],"dates":[[45,0,0,1,0],[138,0,0,1,0],[142,0,0,1,0]],"about":[[45,0,0,0,1]],"put":[[46,0,0,1,0],[49,0,0,1,0]],"direct":[[46,0,0,1,0],[49,0,0,1,0],[147,0,0,1,0]],"through":[[46,0,0,1,0],[76,0,0,1,0],[129,0,0,1,0],[144,0,0,1,0],[167,0,0,1,0]],"regenerator":[[46,0,0,1,0]],"merges":[[46,0,0,1,0]],"rebased":[[46,0,0,1,0],[147,0,0,1,0]],"relative":[[46,0,0,1,0],[52,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[74,0,0,1,0],[76,0,0,1,0],[80,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[104,0,0,3,0],[105,0,0,2,0],[107,0,0,1,0],[130,0,0,1,0],[137,0,0,2,0],[138,0,0,1,0],[151,0,0,3,0],[152,0,0,0,1],[162,0,0,1,0]],"straight":[[46,0,0,1,0]],"versions":[[46,0,0,1,0]],"too":[[46,0,0,1,0],[52,0,0,1,0],[91,0,0,1,0]],"etc":[[46,0,0,1,0],[108,0,0,1,0],[146,0,0,1,0]],"audits":[[46,0,0,1,0]],"especially":[[46,0,0,1,0]],"audited":[[46,0,0,1,0]],"readfile":[[46,0,0,0,2]],"fs":[[46,0,0,0,1],[58,0,0,1,0],[92,0,0,0,1],[143,0,0,1,0],[153,0,0,0,1]],"promises":[[46,0,0,0,1],[92,0,0,0,1],[153,0,0,0,1]],"join":[[46,0,0,0,2],[58,0,0,0,1]],"manifestjson":[[46,0,0,0,2]],"createagentmarkdownresponse":[[46,0,0,0,1],[47,0,0,0,1],[49,0,0,1,0],[53,0,0,1,0],[143,0,0,0,1],[144,0,1,0,1],[147,0,0,1,0]],"createrobotstxtresponse":[[46,0,0,0,1],[47,0,0,0,2],[52,0,0,1,0],[143,0,0,0,1],[145,0,1,0,1],[147,0,0,1,0]],"createsitemapmarkdownresponse":[[46,0,0,0,1],[47,0,0,0,1],[52,0,0,1,0],[143,0,0,0,1],[145,0,1,0,0],[147,0,0,1,0]],"createsitemapxmlresponse":[[46,0,0,0,2],[47,0,0,0,2],[52,0,0,1,0],[143,0,0,0,1],[145,0,1,0,1],[147,0,0,1,0]],"agentreadabilitymanifest":[[46,0,0,0,2],[108,0,0,0,1]],"markdownmirrortarget":[[46,0,0,0,2]],"async":[[46,0,0,0,2],[49,0,0,1,0],[144,0,0,1,1]],"function":[[46,0,0,0,2],[58,0,0,0,2],[114,0,0,1,0],[165,0,0,1,0]],"readmarkdownfile":[[46,0,0,0,1],[47,0,0,0,1],[49,0,0,1,0],[144,0,0,1,1]],"promise":[[46,0,0,0,2]],"null":[[46,0,0,0,5],[49,0,0,1,0],[53,0,0,1,0],[144,0,0,3,0],[149,0,0,1,0],[153,0,0,0,1]],"try":[[46,0,0,0,1]],"process":[[46,0,0,0,1],[92,0,0,0,2],[93,0,0,0,2],[109,0,0,0,1],[114,0,0,1,0],[153,0,0,0,2],[156,0,0,0,3],[162,0,0,0,1]],"cwd":[[46,0,0,0,1],[92,0,0,0,2],[109,0,0,0,1],[162,0,0,0,1]],"filepath":[[46,0,0,0,1],[144,0,0,0,1]],"utf8":[[46,0,0,0,1]],"catch":[[46,0,0,0,1],[50,0,0,1,0],[66,0,0,1,0],[127,0,0,1,0]],"typeof":[[46,0,0,0,1],[58,0,0,0,2]],"object":[[46,0,0,0,1],[47,0,0,0,1],[59,0,0,1,0],[105,0,0,1,0],[108,0,0,1,0],[135,0,0,0,1],[139,0,0,1,0],[144,0,0,0,1],[147,0,0,1,0],[153,0,0,1,0]],"enoent":[[46,0,0,0,1]],"enotdir":[[46,0,0,0,1]],"throw":[[46,0,0,0,1]],"handledocsrequest":[[46,0,0,0,1]],"method":[[46,0,0,0,2],[47,0,0,0,2],[144,0,0,0,2]],"head":[[46,0,0,0,1],[48,0,0,1,0],[146,0,0,1,3],[147,0,0,1,0]],"requestorigin":[[46,0,0,0,2],[47,0,0,0,6],[52,0,0,1,0],[144,0,0,0,1],[145,0,0,1,2]],"origin":[[46,0,0,0,1],[47,0,0,0,1],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[54,0,0,1,0],[144,0,0,0,1],[145,0,0,1,2],[147,0,0,1,0]],"switch":[[46,0,0,0,1],[47,0,0,0,1]],"pathname":[[46,0,0,0,1],[47,0,0,0,2]],"case":[[46,0,0,0,3],[47,0,0,0,6]],"storigin":[[47,0,0,0,1]],"sitemapurlpath":[[47,0,0,0,1],[145,0,0,0,1]],"fromentries":[[47,0,0,0,1],[144,0,0,0,1]],"marketingpages":[[47,0,0,0,1],[145,0,0,0,1]],"blogpages":[[47,0,0,0,1]],"current":[[48,0,0,1,0],[54,0,0,1,0],[60,0,0,1,0],[123,0,1,0,0],[124,0,0,1,0]],"org":[[48,0,0,1,0],[146,0,0,0,1],[147,0,0,1,0],[156,0,0,1,0]],"renderjsonld":[[48,0,0,1,2],[143,0,0,0,1],[147,0,0,1,0]],"typed":[[48,0,0,1,0],[63,0,0,1,0],[68,0,0,1,0],[146,0,0,0,1]],"renderjsonldscript":[[48,0,0,1,2],[143,0,0,0,1],[147,0,0,1,0]],"expects":[[48,0,0,1,0],[54,0,0,1,0]],"modified":[[48,0,0,1,0]],"date":[[48,0,0,1,0],[133,0,0,2,0]],"breadcrumbs":[[48,0,0,1,0]],"scraping":[[48,0,0,1,0]],"agentmanifest":[[48,0,0,0,4]],"jsonld":[[48,0,0,0,1]],"script":[[48,0,0,0,1],[54,0,0,1,0],[73,0,0,1,0],[92,0,0,2,0],[109,0,1,1,0],[146,0,0,0,3],[147,0,0,1,0]],"rel":[[48,0,0,0,2],[49,0,0,1,0],[144,0,0,1,0],[146,0,0,0,2]],"oriented":[[49,0,0,1,0],[54,0,0,1,0],[144,0,0,2,0]],"respected":[[49,0,0,1,0]],"known":[[49,0,0,1,0],[76,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0]],"gptbot":[[49,0,0,1,0],[144,0,0,1,0]],"claudebot":[[49,0,0,1,0],[144,0,0,1,0]],"bingbot":[[49,0,0,1,0],[144,0,0,1,0]],"amazonbot":[[49,0,0,1,0],[144,0,0,1,0]],"metaexternalagent":[[49,0,0,1,0],[144,0,0,1,0]],"perplexitybot":[[49,0,0,1,0],[144,0,0,1,0]],"mistralbot":[[49,0,0,1,0],[144,0,0,1,0]],"applebot":[[49,0,0,1,0],[144,0,0,1,0]],"bytespider":[[49,0,0,1,0],[144,0,0,1,0]],"youbot":[[49,0,0,1,0],[144,0,0,1,0]],"injected":[[49,0,0,1,0]],"discard":[[49,0,0,1,0]],"charset":[[49,0,0,1,0],[54,0,0,1,0],[144,0,0,1,0]],"utf":[[49,0,0,1,0],[54,0,0,1,0],[144,0,0,1,0]],"vary":[[49,0,0,1,0],[53,0,0,1,0],[144,0,0,1,0],[147,0,0,1,0],[149,0,0,1,0]],"cache":[[49,0,0,1,0],[53,0,1,2,0],[144,0,0,1,0],[147,0,0,1,0],[149,0,1,2,0]],"control":[[49,0,0,1,0],[53,0,1,1,0],[92,0,0,1,0],[113,0,0,1,0],[137,0,0,1,0],[144,0,0,1,0],[147,0,0,1,0],[149,0,1,1,0]],"age":[[49,0,0,1,0],[53,0,0,1,0],[144,0,0,1,0],[149,0,0,1,0]],"must":[[49,0,0,1,0],[53,0,0,2,0],[144,0,0,1,0],[149,0,0,1,0],[154,0,0,1,0],[160,0,0,2,0]],"revalidate":[[49,0,0,1,0],[53,0,0,1,0],[144,0,0,1,0],[149,0,0,1,0]],"sync":[[49,0,0,1,0],[60,0,0,1,0],[144,0,0,1,0],[154,0,0,1,0]],"disk":[[49,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[89,0,0,1,0],[115,0,0,1,0],[119,0,0,1,0]],"r2":[[49,0,0,1,0],[50,0,0,1,0]],"asset":[[49,0,0,2,0],[50,0,0,2,0],[51,0,0,1,0]],"binding":[[49,0,0,1,0],[50,0,0,1,0],[170,0,0,1,0]],"edge":[[49,0,0,1,0],[50,0,0,1,0],[84,0,0,1,0],[143,0,0,2,0],[164,0,0,1,0],[167,0,0,1,0],[173,0,0,1,0]],"logic":[[49,0,0,1,0],[75,0,0,1,0],[153,0,0,1,0]],"wherever":[[49,0,0,1,0],[75,0,0,1,0]],"intercept":[[49,0,0,1,0],[50,0,0,1,0]],"usually":[[49,0,0,1,0],[50,0,0,1,0],[68,0,0,1,0],[114,0,0,1,0],[136,0,0,1,0],[163,0,0,1,0]],"server":[[49,0,0,1,0],[50,0,0,3,0],[75,0,0,1,0]],"h3":[[49,0,0,1,0],[50,0,0,2,0],[59,0,0,1,0],[61,0,0,1,0],[154,0,0,1,0]],"regenerators":[[50,0,0,1,0]],"runs":[[50,0,0,2,0],[51,0,0,1,0],[62,0,0,1,0],[64,0,0,0,1],[76,0,1,1,0],[84,0,0,1,0],[101,0,0,2,0],[103,0,0,1,0],[110,0,0,1,0],[158,0,0,1,0]],"nuxt":[[50,0,0,1,0]],"astro":[[50,0,0,2,0],[71,0,0,1,0],[75,0,0,1,0],[78,0,0,1,0],[83,0,0,2,0],[146,0,0,1,0]],"workers":[[50,0,0,1,0],[75,0,0,1,0],[143,0,0,1,0],[170,0,0,0,1]],"worker":[[50,0,0,1,0]],"express":[[50,0,0,1,0]],"hono":[[50,0,0,1,0]],"fastify":[[50,0,0,1,0]],"rebase":[[50,0,0,1,0]],"either":[[50,0,0,1,0],[51,0,0,1,0],[68,0,0,1,0],[104,0,0,1,0]],"delete":[[50,0,0,1,0],[51,0,0,1,0],[68,0,0,1,0]],"always":[[50,0,0,1,0],[51,0,0,1,0],[122,0,0,1,0],[141,0,0,1,0]],"sure":[[50,0,0,1,0],[51,0,0,1,0],[149,0,0,1,0]],"registered":[[50,0,0,1,0],[51,0,0,1,0]],"ahead":[[50,0,0,1,0],[51,0,0,1,0]],"serving":[[50,0,0,1,0],[51,0,0,1,0],[73,0,0,1,0],[108,0,0,1,0],[142,0,0,1,0]],"rewrite":[[51,0,0,1,0]],"helper":[[51,0,0,1,0],[53,0,0,1,0],[73,0,0,1,0],[140,0,0,0,1],[147,0,0,1,0],[149,0,0,1,0],[150,0,0,1,0],[154,0,0,1,0],[172,0,0,1,0]],"alone":[[51,0,0,1,0],[144,0,0,1,0]],"regenerated":[[52,0,1,0,0]],"loc":[[52,0,0,1,0],[145,0,0,1,0]],"requires":[[52,0,0,1,0]],"absolute":[[52,0,0,2,0],[74,0,0,0,1],[89,0,0,1,0],[151,0,0,1,0]],"directive":[[52,0,0,1,0],[53,0,0,1,0],[144,0,0,1,0],[149,0,0,1,0]],"conventionally":[[52,0,0,1,0]],"cannot":[[52,0,0,1,0]],"assets":[[52,0,0,2,0]],"previews":[[52,0,0,1,0]],"staging":[[52,0,0,2,0],[145,0,0,1,0]],"advertise":[[52,0,0,2,0]],"right":[[52,0,0,2,0],[89,0,0,1,0],[120,0,0,1,0],[122,0,0,1,0],[165,0,0,2,0],[168,0,0,1,0]],"calls":[[52,0,0,1,0],[83,0,0,1,0],[113,0,0,1,0],[137,0,0,2,0]],"rebuilds":[[52,0,0,1,0]],"environment":[[52,0,0,1,0],[156,0,0,1,0]],"served":[[52,0,0,1,0],[72,0,0,1,0]],"rewriting":[[52,0,0,1,0],[148,0,0,1,0]],"needed":[[52,0,0,1,0],[145,0,0,1,0],[162,0,0,1,0]],"cdn":[[53,0,1,2,0],[149,0,1,2,0]],"adds":[[53,0,0,1,0],[114,0,0,1,0],[122,0,0,1,0]],"pair":[[53,0,0,1,0],[86,0,0,1,0],[118,0,0,1,0],[152,0,0,1,0]],"detected":[[53,0,0,1,0],[144,0,0,1,0]],"shard":[[53,0,0,1,0]],"entries":[[53,0,0,1,0],[147,0,0,1,0]],"will":[[53,0,0,1,0],[58,0,0,1,0],[75,0,0,1,0]],"cached":[[53,0,0,1,0],[149,0,0,1,0]],"vice":[[53,0,0,1,0]],"versa":[[53,0,0,1,0]],"override":[[53,0,0,1,0],[144,0,0,1,0],[146,0,0,0,1],[148,0,0,1,0],[149,0,0,1,0],[156,0,0,1,0],[162,0,0,1,0]],"cachecontrol":[[53,0,0,2,0],[144,0,0,2,0],[149,0,0,2,0]],"omit":[[53,0,0,1,0],[144,0,0,1,0],[149,0,0,1,0],[163,0,0,1,0]],"useful":[[53,0,0,1,0],[153,0,0,1,0]],"caching":[[53,0,0,1,0],[149,0,0,1,0]],"band":[[53,0,0,1,0]],"locally":[[54,0,1,0,0]],"existing":[[54,0,0,1,0],[163,0,0,1,0]],"resolve":[[54,0,0,1,0],[76,0,0,1,0],[152,0,0,1,0],[162,0,0,1,0]],"application":[[54,0,0,1,0],[147,0,0,1,0]],"reports":[[54,0,0,1,0]],"broken":[[54,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[76,0,0,1,0]],"whether":[[54,0,0,1,0],[120,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0]],"localhost":[[54,0,0,1,8]],"curl":[[54,0,0,0,7]],"http":[[54,0,0,0,8],[72,0,0,2,0],[74,0,0,1,3],[78,0,0,0,3],[80,0,0,1,0],[87,0,0,1,0],[89,0,0,2,0],[101,0,0,1,0]],"chatgpt":[[54,0,0,0,1],[144,0,0,1,0]],"minimal":[[55,0,1,0,0]],"checklist":[[55,0,1,0,0]],"requested":[[55,0,0,1,0],[147,0,0,1,0]],"contents":[[56,0,0,1,0],[57,0,0,1,0],[58,0,0,2,0],[59,0,0,1,0],[60,0,0,2,0],[61,0,0,1,0],[154,0,1,0,0]],"website":[[56,0,0,1,0],[70,0,0,0,2],[71,0,0,2,0],[74,0,0,1,0],[76,0,0,1,0],[78,0,0,2,0],[80,0,0,1,0],[82,0,0,1,0],[83,0,0,1,0],[86,0,0,1,0],[87,0,0,1,0],[89,0,0,2,0],[90,0,0,1,0],[96,0,0,1,0],[104,0,0,1,0],[107,0,0,1,0],[123,0,0,1,0],[137,0,0,1,0],[142,0,0,1,0],[151,0,0,1,0]],"defines":[[56,0,0,1,0]],"contracts":[[56,0,0,1,0]],"aligned":[[56,0,0,1,0]],"register":[[57,0,1,0,0]],"documented":[[57,0,0,1,0],[126,0,0,1,0]],"id":[[58,0,0,2,3],[154,0,0,1,0]],"attributes":[[58,0,0,1,0],[154,0,0,1,0]],"miss":[[58,0,0,1,0]],"slugifydocsheading":[[58,0,0,1,2],[61,0,0,1,0],[154,0,0,1,0]],"authors":[[58,0,0,1,0],[133,0,0,1,0]],"pin":[[58,0,0,1,0]],"anchor":[[58,0,0,1,0]],"passing":[[58,0,0,1,0],[110,0,0,1,0]],"componentpropswithoutref":[[58,0,0,0,2]],"isvalidelement":[[58,0,0,0,2]],"headingprops":[[58,0,0,0,2]],"h1":[[58,0,0,0,1],[61,0,0,1,0],[139,0,0,2,0],[154,0,0,1,0]],"textfromchildren":[[58,0,0,0,4]],"number":[[58,0,0,0,1],[131,0,0,0,3]],"isarray":[[58,0,0,0,1]],"elementprops":[[58,0,0,0,2]],"props":[[58,0,0,0,3]],"createheading":[[58,0,0,0,1]],"headingid":[[58,0,0,0,2]],"undefined":[[58,0,0,0,1]],"includes":[[59,0,0,1,0],[60,0,0,1,0],[65,0,0,1,0],[67,0,0,1,0],[118,0,0,1,0],[119,0,0,1,0],[154,0,0,1,0]],"range":[[59,0,0,1,0],[61,0,0,1,0],[154,0,0,1,0]],"h2":[[59,0,0,1,0],[154,0,0,1,0]],"minlevel":[[59,0,0,0,1],[61,0,0,1,0],[154,0,0,0,1]],"maxlevel":[[59,0,0,0,1],[61,0,0,1,0],[154,0,0,0,1]],"look":[[60,0,0,1,0]],"currentpage":[[60,0,0,1,0]],"complete":[[60,0,0,1,0],[120,0,0,1,0],[147,0,0,1,0]],"implementation":[[60,0,0,1,0]],"scroll":[[60,0,0,1,0],[61,0,0,1,0]],"spy":[[60,0,0,1,0]],"active":[[60,0,0,1,0],[128,0,0,1,0]],"highlighting":[[60,0,0,1,0]],"sticky":[[60,0,0,1,0]],"positioning":[[60,0,0,1,0]],"anywhere":[[61,0,0,1,0],[167,0,0,1,0]],"extracted":[[61,0,0,1,0]],"configured":[[61,0,0,1,0]],"defaults":[[61,0,0,1,0],[110,0,0,3,0],[118,0,0,1,0],[119,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0],[122,0,0,1,0],[123,0,0,1,0],[124,0,0,1,0],[125,0,0,1,0],[130,0,0,1,0],[135,0,0,1,0],[144,0,0,1,0]],"exclude":[[61,0,0,1,0],[91,0,0,2,1],[94,0,0,1,0],[104,0,0,2,0],[105,0,0,2,0],[108,0,0,0,1]],"differs":[[61,0,0,1,0],[81,0,0,1,0],[82,0,0,1,0],[83,0,0,1,0],[84,0,0,1,0],[85,0,0,1,0],[86,0,0,1,0]],"validate":[[62,1,1,0,0],[63,1,1,0,0],[64,1,1,0,0],[65,1,1,0,0],[66,1,1,0,0],[67,1,1,0,0],[68,1,1,1,0],[76,0,0,1,0],[110,0,0,1,0],[115,0,0,1,0],[136,0,0,1,0]],"prs":[[62,0,0,2,0],[63,0,0,1,0],[64,0,0,1,0],[65,0,0,1,0],[66,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[126,0,0,1,0]],"publish":[[62,0,0,1,0],[63,0,0,1,0],[64,0,0,1,0],[65,0,0,1,0],[66,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[87,0,0,1,0],[88,0,0,0,4],[102,0,0,1,0]],"exits":[[62,0,0,1,0]],"zero":[[62,0,0,1,0],[110,0,0,1,0]],"errors":[[62,0,0,1,0],[64,0,0,1,0],[108,0,0,1,0],[110,0,0,3,0],[131,0,0,0,1],[136,0,0,1,0]],"fast":[[62,0,0,1,0],[92,0,0,0,1],[93,0,0,0,1],[136,0,0,1,0],[173,0,0,1,0]],"would":[[62,0,0,1,0],[151,0,0,1,0]],"otherwise":[[62,0,0,1,0],[150,0,0,1,0]],"blow":[[62,0,0,1,0]],"catches":[[63,0,1,0,0],[128,0,0,1,0],[129,0,0,1,0]],"rule":[[63,0,0,2,0],[110,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0],[131,0,0,1,1]],"pointing":[[63,0,0,1,0],[151,0,0,1,0]],"left":[[63,0,0,1,0]],"actions":[[64,0,1,0,1],[136,0,0,1,0]],"inline":[[64,0,0,1,0],[103,0,0,1,0]],"annotations":[[64,0,0,1,0],[65,0,0,1,0]],"pr":[[64,0,0,1,0],[65,0,0,1,0]],"upgrades":[[64,0,0,1,0],[128,0,0,1,0]],"strict":[[64,0,0,1,0],[135,0,0,1,0]],"makes":[[64,0,0,1,0]],"any":[[64,0,0,1,0],[65,0,0,1,0],[83,0,0,1,0],[110,0,0,1,0],[136,0,0,1,0],[140,0,0,0,1],[143,0,0,1,0],[161,0,0,1,0],[163,0,0,1,0],[169,0,0,1,0]],"remaining":[[64,0,0,1,0]],"job":[[64,0,0,1,0],[67,0,0,1,0],[79,0,0,1,0],[83,0,0,1,0]],"pull":[[64,0,0,0,1]],"jobs":[[64,0,0,0,1]],"ubuntu":[[64,0,0,0,1]],"latest":[[64,0,0,0,1]],"v4":[[64,0,0,0,1]],"oven":[[64,0,0,0,1]],"sh":[[64,0,0,0,1],[66,0,0,0,1]],"v2":[[64,0,0,0,1]],"providers":[[65,0,1,0,0]],"speak":[[65,0,0,1,0]],"counts":[[65,0,0,1,0]],"pipe":[[65,0,0,1,0],[135,0,0,0,1]],"reporter":[[65,0,0,1,0]],"post":[[65,0,0,1,0]],"comment":[[65,0,0,1,0]],"upload":[[65,0,0,1,0]],"report":[[65,0,0,0,1],[110,0,0,2,0]],"pre":[[66,0,1,1,0],[171,0,0,1,0]],"push":[[66,0,1,1,0]],"hook":[[66,0,1,1,0]],"running":[[66,0,0,1,0]],"husky":[[66,0,0,1,0]],"second":[[66,0,0,1,0]],"limiting":[[66,0,0,1,0]],"scan":[[66,0,0,1,0]],"changed":[[66,0,0,1,0]],"many":[[66,0,0,1,0],[86,0,0,1,0],[91,0,0,1,0]],"repeated":[[66,0,0,1,0]],"ignore":[[66,0,0,1,0],[110,0,0,3,0],[130,0,0,2,0]],"globs":[[66,0,0,1,0]],"usr":[[66,0,0,0,1]],"bin":[[66,0,0,0,1]],"env":[[66,0,0,0,1],[156,0,0,1,3],[170,0,0,1,0]],"noisily":[[67,0,0,1,0]],"specifically":[[67,0,0,1,0]],"problems":[[67,0,0,1,0]],"much":[[67,0,0,1,0]],"fix":[[68,0,1,1,0],[163,0,0,1,0]],"lot":[[68,0,0,1,0]],"else":[[68,0,0,1,0],[167,0,0,1,0]],"bug":[[68,0,0,2,0],[76,0,0,1,0],[136,0,0,1,0]],"move":[[68,0,0,1,0],[136,0,0,1,0]],"mental":[[69,0,0,1,0],[70,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,0,1,0],[75,0,0,1,0],[76,0,0,1,0],[77,0,0,1,0],[81,0,0,1,0],[140,0,0,0,2],[152,0,0,0,1]],"modes":[[69,0,0,1,0],[70,0,0,1,0],[71,0,1,2,0],[72,0,0,2,0],[73,0,0,1,0],[74,0,0,1,0],[75,0,0,1,0],[76,0,0,1,0],[77,0,0,1,0],[104,0,0,1,0],[105,0,0,1,0]],"takes":[[69,0,0,1,0],[139,0,0,1,0]],"input":[[69,0,0,1,0]],"take":[[69,0,0,1,0]],"piece":[[69,0,0,1,0]],"sense":[[69,0,0,1,0],[90,0,0,1,0]],"turns":[[70,0,0,1,0],[157,0,0,1,0],[169,0,0,1,0]],"gets":[[70,0,0,1,0],[117,0,0,1,0],[138,0,1,0,0]],"sequence":[[70,0,0,1,0],[141,0,1,0,0]],"consumes":[[70,0,0,1,0]],"plugins":[[70,0,0,1,0],[75,0,0,1,0],[112,0,0,1,0],[118,0,1,1,0],[157,1,1,0,0],[158,1,1,0,0],[159,1,1,0,0],[160,1,1,0,0],[161,1,2,0,0],[162,1,2,0,0],[163,1,1,1,0]],"tb":[[70,0,0,0,1],[158,0,0,0,1]],"fm":[[70,0,0,0,4]],"parser":[[70,0,0,0,1]],"strip":[[70,0,0,0,1],[158,0,0,2,0]],"idx":[[70,0,0,0,3]],"bundle":[[70,0,0,0,1],[71,0,0,2,0],[72,0,0,4,0],[73,0,0,1,0],[74,0,0,1,3],[76,0,0,2,0],[78,0,0,0,7],[80,0,0,1,0],[87,1,1,1,0],[88,1,1,0,4],[89,1,1,1,0],[90,1,1,1,1],[91,1,1,1,1],[92,1,1,0,1],[93,1,1,0,0],[94,1,1,0,1],[95,1,2,0,0],[96,1,1,0,0],[97,1,1,0,0],[102,0,0,2,0],[104,0,0,6,0],[107,0,1,1,1],[108,0,0,2,0],[120,0,0,3,0],[121,0,0,4,0],[122,0,0,2,0],[137,0,0,1,0],[152,0,0,1,0]],"emit":[[71,0,0,1,0],[96,0,0,1,0]],"shapes":[[71,0,0,1,0],[96,0,0,1,0]],"packages":[[71,0,0,1,0],[78,0,0,0,1],[86,0,0,1,0],[88,0,0,0,2],[90,0,0,1,2],[91,0,0,1,1],[94,0,0,0,2],[107,0,0,1,1],[151,0,0,0,1]],"foo":[[71,0,0,1,0],[75,0,0,1,0],[147,0,0,3,0]],"beneath":[[71,0,0,1,0]],"skips":[[71,0,0,1,0],[72,0,0,2,0],[73,0,0,1,0],[90,0,0,1,0],[104,0,0,1,0],[107,0,0,1,0]],"designed":[[71,0,0,1,0]],"tarballs":[[71,0,0,1,0],[83,0,0,1,0]],"alongside":[[71,0,0,1,0],[86,0,0,1,0],[107,0,0,1,0]],"published":[[71,0,0,1,0],[87,0,0,1,0],[92,0,1,0,0],[93,0,1,0,0],[107,0,0,1,0],[123,0,0,1,0]],"via":[[72,0,0,1,0],[78,0,0,0,1],[80,0,0,1,0],[83,0,0,3,0],[84,0,0,1,0],[110,0,0,1,0],[113,0,0,1,0],[164,0,0,1,0],[170,0,1,0,0]],"modules":[[72,0,0,1,0],[74,0,0,1,1],[78,0,0,0,1],[80,0,0,1,0],[87,0,0,1,0],[88,0,0,0,1],[89,0,0,2,0],[90,0,0,1,0],[95,0,0,2,1],[110,0,0,2,0],[120,0,0,1,0],[130,0,0,1,0],[137,0,0,1,0],[151,0,0,1,0],[160,0,0,1,0]],"offline":[[72,0,0,1,0],[74,0,0,1,2],[78,0,0,0,2],[80,0,0,1,0],[88,0,0,0,1],[89,0,0,1,0],[90,0,0,1,0],[104,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[139,0,0,2,0],[140,0,0,1,0],[141,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,2,0],[152,0,0,1,1],[153,0,0,1,0],[154,0,0,1,0],[155,0,0,1,0],[156,0,0,1,0]],"installed":[[72,0,0,1,0],[87,0,0,1,0],[89,0,0,1,0],[95,0,0,0,1],[96,0,0,1,0]],"over":[[72,0,0,2,0],[74,0,0,1,0],[89,0,0,1,0],[92,0,0,1,0],[164,0,0,1,0],[171,0,0,1,0]],"follow":[[72,0,0,1,0],[74,0,0,1,0]],"broad":[[72,0,0,1,0],[123,0,0,1,0],[155,0,0,1,0]],"useless":[[72,0,0,1,0]],"tarball":[[72,0,0,1,0],[74,0,0,1,0],[87,0,0,1,0],[88,0,0,1,0],[89,0,0,2,0],[90,0,0,1,0],[91,0,0,1,0],[92,0,1,1,0],[93,0,1,1,0],[94,0,0,1,0],[95,0,0,2,0],[96,0,0,1,0],[97,0,0,1,0],[120,0,0,1,0]],"bm25":[[72,0,0,1,0],[76,0,0,1,0],[165,0,0,1,0]],"ranked":[[72,0,0,1,0]],"inverted":[[72,0,0,1,0]],"stored":[[72,0,0,1,0],[73,0,0,1,0]],"separately":[[72,0,0,1,0],[73,0,0,1,0],[170,0,0,2,0]],"grep":[[72,0,0,1,0],[73,0,0,1,0],[171,0,0,1,0]],"ngs":[[73,0,0,1,0]],"mapping":[[73,0,0,1,0]],"locations":[[73,0,0,1,0]],"agree":[[73,0,0,1,0]],"network":[[74,0,0,1,0],[87,0,0,1,0],[89,0,0,1,0],[171,0,0,1,0]],"working":[[74,0,0,1,0],[89,0,0,1,0],[95,0,0,0,1],[101,0,0,1,0],[156,0,0,1,0]],"depends":[[74,0,0,1,0],[76,0,0,1,0]],"matched":[[74,0,0,1,1],[78,0,0,0,1],[80,0,0,1,0],[87,0,0,1,0],[88,0,0,0,1],[89,0,0,1,0],[95,0,0,0,1]],"reliable":[[74,0,0,1,0],[95,0,0,1,0],[122,0,0,1,0]],"consumer":[[74,0,0,1,0]],"pattern":[[74,0,0,1,0],[95,0,0,2,0],[120,0,0,2,0]],"consuming":[[74,0,0,1,0],[95,0,1,1,0]],"readme":[[74,0,0,1,0],[80,0,0,1,0],[92,0,0,0,1],[95,0,0,1,0],[125,0,0,1,0]],"there":[[74,0,0,1,0],[117,0,0,1,0]],"flows":[[74,0,0,2,0]],"complement":[[74,0,0,1,0]],"wants":[[74,0,0,1,0]],"publishes":[[74,0,0,1,0]],"pick":[[74,0,0,1,0],[79,0,0,1,0]],"lt":[[74,0,0,0,1],[78,0,0,0,2],[88,0,0,0,4]],"pkg":[[74,0,0,0,1],[78,0,0,0,1],[80,0,0,1,0],[89,0,0,1,0],[137,0,0,1,0],[151,0,0,1,0]],"gt":[[74,0,0,0,1],[78,0,0,0,2],[88,0,0,0,4]],"claude":[[74,0,0,0,1],[89,0,0,1,0],[122,0,0,2,0],[144,0,0,1,0]],"codex":[[74,0,0,0,1],[89,0,0,1,0]],"cursor":[[74,0,0,0,1],[89,0,0,1,0]],"copilot":[[74,0,0,0,1],[89,0,0,1,0]],"few":[[75,0,0,1,0]],"terms":[[75,0,0,1,0],[167,0,0,1,0]],"throughout":[[75,0,0,1,0]],"verb":[[75,0,0,1,0]],"declaring":[[75,0,0,1,0]],"which":[[75,0,0,1,0],[119,0,0,1,0],[154,0,0,1,0],[155,0,0,1,0]],"belongs":[[75,0,0,1,0]],"noun":[[75,0,0,3,0]],"chunk":[[75,0,0,1,0],[165,0,0,4,0],[168,0,0,0,1]],"slice":[[75,0,0,1,0],[91,0,0,1,0],[165,0,0,1,0]],"scores":[[75,0,0,1,0]],"independently":[[75,0,0,1,0]],"weigh":[[75,0,0,1,0],[165,0,0,1,0]],"advertises":[[75,0,0,1,0]],"asks":[[75,0,0,1,0]],"implement":[[75,0,0,1,0]],"intercepts":[[75,0,0,1,0]],"handlers":[[75,0,0,1,0],[83,0,0,1,0]],"endpoints":[[75,0,0,1,0]],"fixed":[[76,0,0,1,0]],"stage":[[76,0,0,1,0],[115,0,0,1,0]],"previous":[[76,0,0,1,0]],"design":[[76,0,0,1,0],[86,0,0,1,0],[155,0,1,0,0]],"problem":[[76,0,0,1,0]],"bring":[[78,0,0,1,0]],"anything":[[78,0,0,1,0]],"let":[[78,0,0,1,0]],"handle":[[78,0,0,1,0]],"validation":[[78,0,0,1,0],[86,0,0,1,0],[92,0,0,1,0]],"outputs":[[78,0,0,1,0],[86,0,0,1,0]],"building":[[79,0,0,1,0]],"lower":[[79,0,0,1,0],[109,0,0,1,0],[147,0,1,0,0],[148,0,1,0,0]],"familiar":[[80,0,0,1,0]],"others":[[80,0,0,1,0],[89,0,0,1,0]],"plus":[[80,0,0,2,0],[84,0,0,1,0],[87,0,0,1,0],[88,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[91,0,0,1,0],[92,0,0,1,0],[93,0,0,1,0],[94,0,0,1,0],[95,0,0,1,0],[96,0,0,1,0],[97,0,0,1,0],[99,0,0,1,0],[107,0,0,1,0],[115,0,0,1,0],[121,0,0,1,0],[154,0,0,1,0],[159,0,0,1,0],[169,0,0,1,0]],"generates":[[80,0,0,1,0]],"resolves":[[80,0,0,1,0],[101,0,0,1,0]],"work":[[80,0,0,1,0],[89,0,0,1,0],[106,0,0,1,0]],"consumers":[[80,0,0,1,0],[95,0,0,1,0]],"their":[[80,0,0,1,0],[95,0,0,1,0]],"five":[[81,0,0,1,0],[98,0,0,1,0],[120,0,0,1,0],[140,0,0,0,1]],"minutes":[[81,0,0,1,0],[98,0,0,1,0]],"comparing":[[81,0,0,1,0]],"methodology":[[81,0,0,1,0],[82,1,1,0,0],[83,1,1,0,0],[84,1,1,0,0],[85,1,1,0,0],[86,1,1,0,0]],"fumadocs":[[81,0,0,1,0],[82,0,0,1,0],[83,0,0,2,0],[84,0,0,1,0],[85,0,0,1,0],[86,0,0,2,0]],"starlight":[[81,0,0,1,0],[82,0,0,1,0],[83,0,0,3,0],[84,0,0,1,0],[85,0,0,1,0],[86,0,0,2,0]],"mintlify":[[81,0,0,1,0],[82,0,0,1,0],[83,0,0,3,0],[84,0,0,1,0],[85,0,0,1,0],[86,0,0,1,0]],"theming":[[82,0,0,1,0],[85,0,0,1,0]],"tool":[[83,0,0,1,0],[95,0,0,1,0],[171,0,1,1,0]],"router":[[83,0,0,1,0],[120,0,0,1,0],[121,0,0,2,0],[122,0,0,1,0],[146,0,0,1,1]],"waku":[[83,0,0,1,0]],"supports":[[83,0,0,1,0]],"community":[[83,0,0,1,0]],"pagefind":[[83,0,0,1,0]],"saas":[[83,0,0,1,0]],"headless":[[83,0,0,1,0]],"assistant":[[83,0,0,1,0]],"layer":[[83,0,0,1,0],[142,0,0,1,0],[149,0,0,1,0],[173,0,0,1,0]],"behind":[[83,0,0,1,0],[138,0,0,1,0]],"publishing":[[83,0,0,2,0],[94,0,1,0,0]],"polished":[[83,0,0,1,0]],"quickly":[[83,0,0,1,0]],"consider":[[83,0,0,1,0]],"managed":[[83,0,0,1,0]],"analytics":[[83,0,0,1,0],[85,0,0,1,0]],"features":[[83,0,0,1,0]],"service":[[83,0,0,1,0]],"dependency":[[83,0,0,1,0],[87,0,0,1,0],[95,0,0,1,0],[96,0,0,1,0],[167,0,0,1,0]],"opt":[[83,0,0,1,0]],"agnostic":[[83,0,0,1,0]],"bundles":[[83,0,0,1,0],[120,0,0,1,0]],"safe":[[84,0,0,1,0],[140,0,0,0,1],[143,0,0,1,0],[164,0,0,1,0],[167,0,0,1,0],[173,0,0,1,0]],"streaming":[[84,0,0,1,0],[164,0,0,2,0],[165,0,0,1,0],[166,0,0,1,0],[167,0,0,1,0],[168,0,0,1,0],[169,0,0,1,0],[170,0,1,1,0],[171,0,0,1,0],[172,0,0,1,0],[173,0,0,1,0]],"orchestration":[[84,0,0,1,0]],"whole":[[84,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0]],"hosting":[[85,0,0,1,0]],"prebuilt":[[85,0,0,1,0]],"provides":[[85,0,0,1,0]],"combination":[[86,0,1,0,0]],"shines":[[86,0,1,0,0]],"experience":[[86,0,0,1,0]],"templated":[[86,0,0,1,0]],"system":[[86,0,0,1,0],[169,0,0,2,1]],"available":[[87,0,0,1,0],[95,0,0,1,0],[112,0,0,1,0]],"prepack":[[87,0,0,1,0],[92,0,0,1,0]],"ships":[[87,0,0,1,0],[99,0,0,1,0],[162,0,0,1,0]],"ides":[[87,0,0,1,0]],"consume":[[88,0,0,0,2]],"convention":[[89,0,0,2,0],[137,0,0,1,0]],"able":[[89,0,0,1,0]],"major":[[89,0,0,1,0]],"anyway":[[89,0,0,1,0]],"solves":[[89,0,0,1,0]],"aider":[[89,0,0,1,0]],"devin":[[89,0,0,1,0]],"discoverable":[[89,0,0,2,0],[107,0,0,1,0]],"meaningful":[[90,0,0,1,0]],"filter":[[91,0,1,0,0],[162,0,0,0,1]],"monorepo":[[91,0,0,1,0]],"repeatable":[[91,0,0,1,0],[104,0,0,1,0],[105,0,0,1,0],[110,0,0,1,0]],"overview":[[91,0,0,1,0]],"applied":[[91,0,0,1,0],[104,0,0,1,0],[105,0,0,1,0]],"tsup":[[92,0,0,1,1]],"dist":[[92,0,0,0,1],[95,0,0,1,0]],"generateagentsmd":[[92,0,0,0,1],[93,0,0,0,1],[112,0,0,1,0],[137,0,0,2,1],[139,0,0,2,0],[151,0,1,0,2],[152,0,1,0,0]],"recursive":[[92,0,0,0,1],[153,0,0,0,1]],"force":[[92,0,0,0,2]],"bad":[[92,0,0,0,1],[93,0,0,0,1]],"length":[[93,0,0,0,1],[153,0,0,0,1]],"stderr":[[93,0,0,0,1],[108,0,0,1,0],[153,0,0,0,1]],"exit":[[93,0,0,0,1],[103,0,0,1,0],[104,0,0,1,0],[105,0,0,2,0],[106,0,0,1,0],[107,0,0,1,0],[108,0,0,1,0],[109,0,0,1,0],[110,0,0,3,0],[111,0,0,1,0],[112,0,0,1,0],[153,0,0,0,1]],"pack":[[94,0,0,1,1]],"dry":[[94,0,0,1,1]],"cd":[[94,0,0,0,1],[125,0,0,0,1]],"projects":[[95,0,1,0,0],[124,0,0,1,0]],"some":[[95,0,0,1,0],[160,0,0,1,0]],"discover":[[95,0,0,1,0],[109,0,0,1,0],[120,0,0,1,0]],"recommend":[[95,0,0,1,0]],"snippet":[[95,0,0,1,0]],"re":[[95,0,0,0,1],[110,0,0,1,0],[158,0,0,0,2],[173,0,0,1,0]],"stay":[[95,0,0,0,1],[167,0,0,1,0]],"accurate":[[95,0,0,0,1]],"updates":[[95,0,0,0,1],[136,0,0,1,0]],"understand":[[96,0,0,1,0]],"itself":[[96,0,0,1,0]],"access":[[96,0,0,1,0]],"ide":[[96,0,0,1,0]],"assistants":[[96,0,0,1,0]],"air":[[96,0,0,1,0]],"gapped":[[96,0,0,1,0]],"environments":[[96,0,0,1,0]],"goal":[[96,0,0,1,0],[102,0,0,1,0]],"focused":[[99,0,0,1,0]],"welcome":[[100,0,0,0,1],[155,0,0,1,0]],"ran":[[101,0,0,1,0]],"regeneration":[[101,0,0,1,0]],"wired":[[101,0,0,1,0]],"pastable":[[101,0,0,1,0]],"end":[[101,0,0,2,0]],"flags":[[103,0,0,1,0],[104,0,0,1,0],[105,0,0,1,0],[106,0,0,1,0],[107,0,0,1,0],[108,0,0,1,0],[109,0,0,1,0],[110,0,0,1,0],[111,0,0,1,0],[112,0,0,1,0],[126,0,0,1,0],[140,0,0,0,1]],"codes":[[103,0,0,1,0],[104,0,0,1,0],[105,0,0,2,0],[106,0,0,1,0],[107,0,0,1,0],[108,0,0,1,0],[109,0,0,1,0],[110,0,0,2,0],[111,0,0,1,0],[112,0,0,1,0]],"validates":[[103,0,0,1,0],[126,0,0,1,0]],"help":[[103,0,0,1,0],[105,0,0,1,0],[110,0,0,1,0],[111,0,1,0,3]],"usage":[[103,0,0,1,0],[105,0,0,2,0],[110,0,0,2,0],[111,0,0,1,1]],"produce":[[104,0,0,1,0],[147,0,0,1,0],[152,0,0,1,0]],"flag":[[104,0,0,1,0],[110,0,0,1,0],[140,0,0,0,1],[152,0,0,0,1]],"dir":[[104,0,0,4,0],[105,0,0,1,0],[106,0,0,1,0],[110,0,0,2,0]],"containing":[[104,0,0,1,0],[137,0,0,1,0],[151,0,0,1,0]],"off":[[104,0,0,1,0],[105,0,0,1,0],[110,0,0,1,0]],"ignored":[[104,0,0,1,0],[110,0,0,1,0],[139,0,0,1,0],[151,0,0,1,0],[158,0,0,1,0]],"written":[[104,0,0,2,0],[151,0,0,3,0]],"glob":[[104,0,0,4,0],[105,0,0,3,0],[110,0,0,2,0],[130,0,0,1,0]],"none":[[104,0,0,2,0],[105,0,0,2,0]],"lob":[[105,0,0,1,0]],"history":[[105,0,0,1,0],[114,0,0,1,0]],"fmt":[[105,0,0,1,0],[110,0,0,1,0]],"prints":[[105,0,0,1,0],[108,0,0,1,0]],"single":[[105,0,0,1,0],[108,0,0,1,0],[139,0,0,1,0]],"stdout":[[105,0,0,1,0]],"alias":[[105,0,0,1,0]],"print":[[105,0,0,1,0],[108,0,0,1,0],[110,0,0,1,0]],"load":[[105,0,0,1,0],[155,0,0,1,0],[166,0,0,2,0]],"loading":[[106,0,1,0,0],[165,0,0,1,0]],"javascript":[[106,0,0,1,0]],"mjs":[[106,0,0,1,0]],"cjs":[[106,0,0,1,0]],"supplies":[[106,0,0,1,0]],"best":[[106,0,0,1,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,0,1]],"starting":[[106,0,0,1,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,0,1]],"membership":[[106,0,0,1,0]],"loaded":[[106,0,0,1,0]],"falls":[[106,0,0,1,0]],"union":[[106,0,0,1,0]],"sorted":[[106,0,0,1,0]],"alphabetically":[[106,0,0,1,0]],"cased":[[106,0,0,1,0]],"matter":[[106,0,0,1,0]],"thing":[[106,0,0,0,1],[140,0,0,0,1],[141,0,0,0,1],[152,0,0,0,1]],"well":[[106,0,0,0,1],[140,0,0,0,1],[141,0,0,0,1],[152,0,0,0,1]],"subdirs":[[107,0,0,1,0]],"preserved":[[107,0,0,1,0],[117,0,0,1,0]],"anchored":[[107,0,0,1,0]],"describing":[[108,0,0,1,0]],"was":[[108,0,0,1,0],[122,0,0,1,0]],"varies":[[108,0,0,1,0]],"agentsmd":[[108,0,0,1,0]],"llmstxt":[[108,0,0,1,1]],"absent":[[108,0,0,1,0]],"abs":[[108,0,0,0,12]],"docsdir":[[108,0,0,0,1]],"docsllmstxt":[[108,0,0,0,1]],"llmsfulltxt":[[108,0,0,0,1]],"searchindex":[[108,0,0,0,1]],"searchcontent":[[108,0,0,0,1]],"docssitemapxml":[[108,0,0,0,1]],"docssitemapmd":[[108,0,0,0,1]],"docsrobotstxt":[[108,0,0,0,1]],"auto":[[109,0,0,1,0]],"honored":[[109,0,0,0,1]],"positional":[[110,0,0,1,0]],"subdirectory":[[110,0,0,1,0],[130,0,0,1,0],[151,0,0,1,0]],"validated":[[110,0,0,1,0],[130,0,0,1,0]],"pretty":[[110,0,0,2,0]],"annotation":[[110,0,0,1,0]],"unlimited":[[110,0,0,1,0]],"count":[[110,0,0,1,0]],"exceeds":[[110,0,0,1,0]],"within":[[110,0,0,1,0]],"budget":[[110,0,0,2,0]],"exceeded":[[110,0,0,1,0]],"partials":[[110,0,0,1,0],[118,0,0,1,0],[130,0,0,1,0]],"plug":[[110,0,0,1,0]],"valibot":[[110,0,0,1,0],[130,0,0,3,0],[135,0,0,1,1]],"schemas":[[110,0,0,1,0],[126,0,0,1,0],[130,0,0,3,0],[132,0,1,0,0],[133,0,1,0,0],[134,0,1,0,0],[135,0,1,0,1]],"show":[[111,0,0,1,0]],"thin":[[112,0,0,1,0],[170,0,0,1,0]],"wrapper":[[112,0,0,1,0]],"convertmdxtomarkdown":[[112,0,0,1,0],[113,0,0,0,1],[115,0,1,0,1]],"writemdxfileasmarkdown":[[112,0,0,1,0],[113,0,0,0,1],[116,0,1,0,1]],"sites":[[112,0,0,1,0],[142,0,0,1,0]],"lintdocs":[[112,0,0,1,0],[126,0,0,0,1],[130,0,0,0,2],[135,0,0,0,2]],"individual":[[112,0,0,1,0],[163,0,0,1,0]],"precedence":[[112,0,0,1,0],[156,0,1,0,0]],"internally":[[113,0,0,1,0]],"batch":[[114,0,0,1,0]],"option":[[114,0,0,1,0],[130,0,0,1,0],[151,0,0,1,0]],"destination":[[114,0,0,1,0]],"matters":[[114,0,0,1,0],[122,0,0,1,0],[157,0,0,1,0],[160,0,1,0,0]],"concurrent":[[114,0,0,1,0],[117,0,0,1,0]],"large":[[114,0,0,1,0]],"parallel":[[114,0,0,1,0]],"parsed":[[115,0,0,1,0]],"yourself":[[115,0,0,1,0]],"feed":[[115,0,0,1,0],[160,0,0,1,0]],"touching":[[115,0,0,1,0],[164,0,0,1,0]],"console":[[115,0,0,0,2]],"log":[[115,0,0,0,2]],"srcpath":[[116,0,0,0,1]],"outpath":[[116,0,0,0,1]],"blocks":[[117,0,0,2,0],[128,0,0,1,0],[154,0,0,1,0],[158,0,0,1,0]],"synthesized":[[117,0,0,1,0]],"sometimes":[[117,0,0,1,0]],"tables":[[117,0,0,1,0],[154,0,1,0,0]],"compacted":[[117,0,0,1,0]],"global":[[117,0,0,1,0]],"pairing":[[118,0,1,0,0]],"most":[[118,0,0,1,0],[122,0,0,1,0],[156,0,0,1,0]],"setups":[[118,0,0,1,0]],"expand":[[118,0,0,1,0],[167,0,0,1,0]],"ast":[[118,0,0,1,0]],"sees":[[118,0,0,1,0],[160,0,0,1,0],[161,0,0,1,0]],"rationale":[[118,0,0,1,0]],"benchmarks":[[119,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0],[122,0,0,1,0],[123,0,0,1,0],[124,0,0,2,0],[125,0,0,1,0]],"changing":[[119,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0],[122,0,0,1,0],[123,0,0,1,0],[124,0,0,1,0],[125,0,0,1,0]],"treats":[[119,0,0,1,0]],"eval":[[119,0,0,1,0],[124,0,0,1,0]],"harnesses":[[119,0,0,1,0]],"real":[[119,0,0,1,0]],"models":[[119,0,0,1,0]],"final":[[119,0,0,1,0],[129,0,0,1,0],[156,0,0,1,0],[160,0,0,1,0]],"we":[[120,0,1,0,0],[121,0,1,0,0],[122,0,1,0,0]],"test":[[120,0,0,2,0]],"installs":[[120,0,0,1,0]],"packed":[[120,0,0,1,0]],"sandbox":[[120,0,0,1,0]],"task":[[120,0,0,1,0]],"simulates":[[120,0,0,1,0]],"depending":[[120,0,0,1,0]],"nine":[[120,0,0,1,0]],"split":[[120,0,0,1,0]],"lists":[[120,0,0,1,0],[138,0,0,1,0]],"intended":[[120,0,0,1,0],[121,0,0,1,0],[122,0,0,2,0]],"monolith":[[121,0,0,1,0],[122,0,0,1,0]],"learned":[[122,0,1,0,0]],"monolithic":[[122,0,0,1,0],[124,0,0,1,0]],"tested":[[122,0,0,2,0]],"passed":[[122,0,0,1,0]],"six":[[122,0,0,1,0]],"fixtures":[[122,0,0,1,0]],"opus":[[122,0,0,2,0]],"readout":[[122,0,0,1,0]],"cheap":[[122,0,0,1,0],[166,0,0,1,0],[173,0,0,1,0]],"natural":[[122,0,0,1,0]],"synthesis":[[122,0,0,1,0]],"tasks":[[122,0,0,1,0]],"promising":[[122,0,0,2,0]],"dependent":[[122,0,0,1,0]],"often":[[122,0,0,1,0]],"answered":[[122,0,0,2,0]],"correctly":[[122,0,0,3,0]],"following":[[122,0,0,1,0]],"stricter":[[122,0,0,1,0]],"selection":[[122,0,0,1,0],[163,0,1,0,0]],"summaries":[[122,0,0,1,0]],"prior":[[122,0,0,1,0]],"knowledge":[[122,0,0,1,0]],"prove":[[122,0,0,1,0]],"proposed":[[122,0,0,1,0]],"made":[[122,0,0,1,0]],"organize":[[123,0,0,1,0],[155,0,0,1,0]],"suffer":[[124,0,0,1,0]],"token":[[124,0,0,1,0],[167,0,0,1,0]],"cost":[[124,0,0,1,0],[163,0,0,1,0]],"truncation":[[124,0,0,1,0]],"harness":[[124,0,0,1,0],[125,0,0,1,0]],"revisit":[[124,0,0,1,0]],"tradeoff":[[124,0,0,1,0]],"adding":[[124,0,0,1,0]],"detailed":[[125,0,0,1,0]],"covers":[[126,0,0,1,0],[154,0,0,1,0],[156,0,0,1,0]],"severity":[[128,0,0,1,0],[129,0,0,1,0],[131,0,0,0,1]],"won":[[128,0,0,1,0]],"treat":[[128,0,0,1,0],[136,0,0,1,0]],"highest":[[128,0,0,1,0],[167,0,0,1,0]],"priority":[[128,0,0,1,0]],"similar":[[129,0,0,1,0],[158,0,0,1,0]],"linting":[[129,0,0,1,0]],"walking":[[129,0,0,1,0]],"performs":[[129,0,0,1,0]],"changelogdir":[[130,0,0,1,0]],"patterns":[[130,0,0,2,0]],"shown":[[130,0,0,1,0]],"unknownfieldseverity":[[130,0,0,1,1]],"changelogfrontmatter":[[130,0,0,1,0]],"failures":[[131,0,0,1,0]],"reported":[[131,0,0,1,0]],"lintresult":[[131,0,0,0,1]],"kind":[[131,0,0,0,1]],"filesscanned":[[131,0,0,0,1]],"yes":[[132,0,0,1,0],[133,0,0,3,0],[134,0,0,1,0]],"produced":[[132,0,0,1,0]],"semver":[[133,0,0,1,0]],"iso":[[133,0,0,1,0]],"parseable":[[133,0,0,1,0]],"improvement":[[133,0,0,1,0]],"retired":[[133,0,0,1,0]],"deprecation":[[133,0,0,1,0]],"defaultopen":[[134,0,0,1,0]],"combined":[[134,0,0,1,0]],"replace":[[135,0,0,1,0],[145,0,0,1,0],[158,0,0,1,0]],"provide":[[135,0,0,1,0]],"apply":[[135,0,0,1,0],[139,0,0,1,0]],"customfrontmatter":[[135,0,0,0,2]],"minlength":[[135,0,0,0,1]],"picklist":[[135,0,0,0,1]],"beginner":[[135,0,0,0,1]],"advanced":[[135,0,0,0,1]],"practical":[[136,0,1,0,0]],"template":[[136,0,0,1,0],[160,0,0,1,0]],"wiring":[[136,0,0,1,0],[154,0,0,1,0]],"websites":[[137,0,0,2,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0],[141,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,1,0],[152,0,0,1,0],[153,0,0,1,0],[154,0,0,1,0],[155,0,0,1,0],[156,0,0,1,0]],"flavors":[[137,0,0,1,0]],"derived":[[137,0,0,1,0]],"pairs":[[137,0,0,1,0],[149,0,0,1,0]],"finer":[[137,0,0,1,0]],"extractdocstableofcontents":[[137,0,0,0,1],[154,0,0,1,0]],"renderrobotstxt":[[137,0,0,0,1],[142,0,0,0,2]],"rendersitemapmarkdown":[[137,0,0,0,1],[142,0,0,0,2]],"rendersitemapxml":[[137,0,0,0,1],[142,0,0,0,2]],"resolvedocstableofcontents":[[137,0,0,0,1],[154,0,0,1,1]],"purpose":[[138,0,0,1,0],[172,0,0,1,0]],"lastmod":[[138,0,0,1,0]],"mergeable":[[138,0,0,1,0]],"crawl":[[138,0,0,1,0]],"policy":[[138,0,0,1,0]],"explicitly":[[138,0,0,1,0],[156,0,0,1,0]],"allows":[[138,0,0,1,0]],"crawlers":[[138,0,0,1,0]],"longer":[[138,0,0,1,0]],"productinfo":[[139,0,1,0,0],[151,0,0,1,0]],"feature":[[139,0,0,1,0]],"curated":[[139,0,0,1,0]],"fall":[[139,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0]],"agentguidance":[[139,0,0,1,0],[151,0,0,1,0]],"instruction":[[139,0,0,1,0]],"appended":[[139,0,0,1,0]],"bottom":[[139,0,0,1,0]],"boring":[[140,0,0,0,1]],"parts":[[140,0,0,0,1]],"documentation":[[140,0,0,0,1]],"minute":[[140,0,0,0,1]],"typical":[[141,0,1,0,0]],"letting":[[142,0,0,1,0]],"writefile":[[142,0,0,0,3],[153,0,0,0,2]],"module":[[143,0,0,1,0]],"acceptsmarkdownheader":[[143,0,0,0,1],[147,0,0,1,0],[148,0,0,1,0]],"createdocshead":[[143,0,0,0,1],[146,0,1,0,2],[147,0,0,1,0]],"createmarkdownresponseheaders":[[143,0,0,0,1],[147,0,0,1,0]],"enrichmarkdownfrontmatter":[[143,0,0,0,1],[147,0,0,1,0]],"isagentreadabilityartifactpath":[[143,0,0,0,1],[148,0,0,1,0]],"isagentuseragent":[[143,0,0,0,1],[147,0,0,1,0],[148,0,0,1,0]],"rendermissingmarkdown":[[143,0,0,0,1],[147,0,0,1,0]],"resolvemarkdownmirrortarget":[[143,0,0,0,1],[147,0,0,1,0]],"ua":[[144,0,0,1,0]],"enriches":[[144,0,0,1,0]],"found":[[144,0,0,1,0]],"useragentpattern":[[144,0,0,1,0]],"regex":[[144,0,0,1,0],[148,0,0,1,0]],"cover":[[144,0,0,1,0]],"oai":[[144,0,0,1,0]],"searchbot":[[144,0,0,1,0]],"anthropic":[[144,0,0,1,0]],"ccbot":[[144,0,0,1,0]],"google":[[144,0,0,1,0]],"extended":[[144,0,0,1,0]],"readgeneratedfile":[[144,0,0,0,1]],"directives":[[145,0,0,1,0]],"reflect":[[145,0,0,1,0]],"hacks":[[145,0,0,1,0]],"rebasing":[[145,0,0,0,1]],"og":[[146,0,0,1,2],[147,0,0,1,0]],"neutral":[[146,0,0,1,0]],"arrays":[[146,0,0,1,0]],"caller":[[146,0,0,1,0]],"ldjson":[[146,0,0,0,1]],"jsonldmetakey":[[146,0,0,0,1]],"escaped":[[147,0,0,1,0]],"crlf":[[147,0,0,1,0]],"detect":[[147,0,0,2,0],[148,0,0,2,0]],"asking":[[147,0,0,1,0],[148,0,0,1,0]],"crawler":[[147,0,0,1,0],[148,0,0,1,0]],"avoid":[[148,0,0,1,0]],"uas":[[149,0,0,1,0]],"shards":[[149,0,0,1,0]],"browsers":[[149,0,0,1,0]],"pollinate":[[149,0,0,1,0]],"asserts":[[150,0,0,1,0]],"throws":[[150,0,0,1,0]],"clear":[[150,0,0,1,0]],"loudly":[[150,0,0,1,0]],"silently":[[150,0,0,1,0]],"producing":[[150,0,0,1,0]],"singular":[[151,0,0,1,0]],"segment":[[151,0,0,1,0]],"intentionally":[[151,0,0,1,0],[163,0,0,1,0]],"mislead":[[151,0,0,1,0]],"docssubdir":[[151,0,0,1,0]],"holds":[[151,0,0,1,0]],"outputpath":[[151,0,0,1,0]],"resolution":[[153,0,0,1,0],[160,0,0,2,0]],"driving":[[153,0,0,1,0]],"now":[[153,0,0,1,0]],"mkdir":[[153,0,0,0,2]],"stringify":[[153,0,0,0,1]],"come":[[155,0,0,1,0]],"principles":[[155,0,0,1,0]],"sharding":[[155,0,0,1,0]],"remains":[[155,0,0,1,0]],"flavor":[[155,0,0,1,0]],"decide":[[155,0,0,1,0]],"beats":[[155,0,0,1,0]],"our":[[155,0,0,1,0]],"variables":[[156,0,0,1,0]],"layered":[[156,0,0,1,0]],"lets":[[156,0,0,1,0]],"wide":[[156,0,0,1,0]],"platforms":[[156,0,0,1,0]],"hardcoded":[[156,0,0,1,0]],"portless":[[156,0,0,0,1]],"stripped":[[157,0,0,1,0]],"remarktypetabletomarkdown":[[157,0,0,0,1],[158,0,0,1,1],[162,0,1,0,3]],"remarkremoveimports":[[158,0,0,1,1]],"statements":[[158,0,0,1,0]],"remarkremovejsxcomments":[[158,0,0,1,1]],"comments":[[158,0,0,1,0]],"remarkresolvedocplaceholders":[[158,0,0,1,1],[160,0,0,1,0]],"remarkaudiencetomarkdown":[[158,0,0,1,1]],"remove":[[158,0,0,1,0]],"remarksectiontomarkdown":[[158,0,0,1,1]],"containers":[[158,0,0,1,0]],"remarkcallouttomarkdown":[[158,0,0,1,1]],"remarkcardstomarkdown":[[158,0,0,1,1]],"bulleted":[[158,0,0,1,0]],"remarkdetailstomarkdown":[[158,0,0,1,1]],"remarkmermaidtomarkdown":[[158,0,0,1,1]],"remarkcommandtabstomarkdown":[[158,0,0,1,1]],"remarkstepstomarkdown":[[158,0,0,1,1]],"remarktabstomarkdown":[[158,0,0,1,1]],"remarkaccordiontomarkdown":[[158,0,0,1,1]],"remarktopicswitchertomarkdown":[[158,0,0,1,1]],"labeled":[[158,0,0,1,0],[159,0,0,1,0]],"remarkfiletreetomarkdown":[[158,0,0,1,1],[159,0,0,1,0]],"remarkprompttomarkdown":[[158,0,0,1,1],[159,0,0,1,0]],"mdast":[[158,0,0,0,1]],"ri":[[158,0,0,0,2]],"rj":[[158,0,0,0,2]],"rd":[[158,0,0,0,2]],"rau":[[158,0,0,0,2]],"rs":[[158,0,0,0,2]],"rc":[[158,0,0,0,2]],"rcd":[[158,0,0,0,2]],"rdt":[[158,0,0,0,2]],"rct":[[158,0,0,0,2]],"rst":[[158,0,0,0,2]],"rt":[[158,0,0,0,2]],"rtt":[[158,0,0,0,2]],"ra":[[158,0,0,0,2]],"rts":[[158,0,0,0,2]],"rft":[[158,0,0,0,2]],"rp":[[158,0,0,0,2]],"remarkexampletomarkdown":[[158,0,0,0,1],[159,0,0,1,0]],"go":[[160,0,0,2,0]],"imported":[[160,0,0,1,0]],"flatteners":[[160,0,0,3,0]],"assume":[[160,0,0,1,0]],"strings":[[160,0,0,1,0]],"literals":[[160,0,0,1,0]],"reorder":[[160,0,0,1,0]],"casually":[[160,0,0,1,0]],"flattener":[[160,0,0,2,0],[161,0,0,1,0],[163,0,0,1,0]],"transform":[[160,0,0,1,0]],"contracted":[[160,0,0,1,0]],"insert":[[160,0,0,1,0]],"composition":[[161,0,0,1,0]],"expands":[[161,0,0,1,0]],"basepath":[[162,0,1,1,1]],"pipelineexampleoptions":[[162,0,0,0,1]],"types":[[162,0,0,0,1]],"composed":[[163,0,0,1,0]],"fragments":[[163,0,0,1,0]],"processing":[[163,0,0,1,0]],"almost":[[163,0,0,1,0]],"never":[[163,0,0,1,0]],"reordering":[[163,0,0,1,0]],"ones":[[163,0,0,1,0]],"exposes":[[164,0,0,1,0],[171,0,0,1,0]],"separate":[[165,0,0,1,0]],"jump":[[165,0,0,1,0]],"tunable":[[165,0,0,1,0]],"tuple":[[165,0,0,1,0]],"term":[[165,0,0,1,0]],"postings":[[165,0,0,1,0]],"refs":[[165,0,0,2,0]],"actual":[[165,0,0,1,0]],"separated":[[165,0,0,1,0]],"lazily":[[165,0,0,1,0]],"indexing":[[166,0,1,0,0]],"splitting":[[166,0,0,1,0]],"hover":[[166,0,0,1,0]],"lightweight":[[167,0,0,1,0]],"weight":[[167,0,0,1,0]],"keys":[[167,0,0,1,0],[173,0,0,1,0]],"precise":[[167,0,0,1,0]],"doubles":[[168,0,0,1,0]],"virtual":[[168,0,0,1,0],[171,0,0,1,0]],"readers":[[168,0,0,1,0]],"picked":[[168,0,0,1,0]],"readdocscontentfile":[[168,0,0,1,2]],"entire":[[168,0,0,1,0]],"readdocscontentchunk":[[168,0,0,1,2]],"listdocscontentfiles":[[168,0,0,0,2]],"allfiles":[[168,0,0,0,1]],"wholepage":[[168,0,0,0,1]],"onechunk":[[168,0,0,0,1]],"createanswercontext":[[169,0,0,1,2],[170,0,0,1,0]],"instructs":[[169,0,0,1,0]],"style":[[169,0,0,1,0]],"references":[[169,0,0,1,0]],"say":[[169,0,0,1,0]],"insufficient":[[169,0,0,1,0]],"wrappers":[[170,0,0,1,0]],"citation":[[170,0,0,1,0]],"embed":[[170,0,0,1,0]],"adapter":[[170,0,0,1,0],[171,0,0,1,0]],"createcloudflaredocsadapter":[[170,0,0,1,0]],"gateway":[[170,0,0,1,2]],"sdk":[[170,0,0,0,1],[171,0,0,1,0]],"adapters":[[171,0,1,0,0]],"explore":[[171,0,0,1,0]],"shell":[[171,0,0,1,0]],"receiving":[[171,0,0,1,0]],"selected":[[171,0,0,1,0]],"ls":[[171,0,0,1,0]],"cat":[[171,0,0,1,0]],"rg":[[171,0,0,1,0]],"execution":[[171,0,0,1,0]],"disabled":[[171,0,0,1,0]],"createdocsbashtool":[[171,0,0,1,2]],"createdocsbashtools":[[171,0,0,1,1]],"compatible":[[171,0,0,1,0]],"abuse":[[172,0,1,0,0]],"guards":[[172,0,1,0,0]],"reusable":[[172,0,0,1,0]],"utilities":[[172,0,0,1,0]],"implements":[[172,0,0,1,0]],"ratelimiter":[[172,0,0,2,0]],"embeddings":[[173,0,1,2,0]],"messages":[[173,0,0,1,0]],"faster":[[173,0,0,1,0]],"performance":[[173,0,0,1,0]],"optimization":[[173,0,0,1,0]],"grow":[[173,0,0,1,0]],"past":[[173,0,0,1,0]],"tens":[[173,0,0,1,0]],"thousands":[[173,0,0,1,0]],"cold":[[173,0,0,1,0]],"hit":[[173,0,0,1,0]],"noticeable":[[173,0,0,1,0]],"even":[[173,0,0,1,0]],"complementary":[[173,0,0,1,0]],"replacements":[[173,0,0,1,0]]},"averageChunkLength":86.39080459770115} +{"version":2,"generatedAt":"2026-05-11T23:20:44.313Z","documents":[["authoring/components","Components","MDX components the pipeline knows how to flatten into agent-readable markdown.","/docs/authoring/components","https://leadtype.dev/docs/authoring/components","authoring/components"],["authoring/frontmatter","Frontmatter","Required fields, group semantics, and how authored MDX becomes a navigation tree.","/docs/authoring/frontmatter","https://leadtype.dev/docs/authoring/frontmatter","authoring/frontmatter"],["build/add-search","Add search","Generate a static docs search index, query it at runtime, and optionally stream source-grounded answers.","/docs/build/add-search","https://leadtype.dev/docs/build/add-search","build/add-search"],["build/connect-docs-site","Connect a docs site","Build a shared docs app from source docs that live with the code they document.","/docs/build/connect-docs-site","https://leadtype.dev/docs/build/connect-docs-site","build/connect-docs-site"],["build/optimize-docs-for-agents","Optimize docs for agents","Set up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.","/docs/build/optimize-docs-for-agents","https://leadtype.dev/docs/build/optimize-docs-for-agents","build/optimize-docs-for-agents"],["build/render-mdx-and-toc","Render MDX and TOC","Set up runtime MDX components, stable heading IDs, and a table of contents from the generated navigation manifest.","/docs/build/render-mdx-and-toc","https://leadtype.dev/docs/build/render-mdx-and-toc","build/render-mdx-and-toc"],["build/validate-in-ci","Validate in CI","Run leadtype lint in CI so frontmatter, navigation, and link issues fail PRs before publish.","/docs/build/validate-in-ci","https://leadtype.dev/docs/build/validate-in-ci","build/validate-in-ci"],["how-it-works","How it works","The mental model: one MDX source, a remark pipeline, two output modes, three audiences.","/docs/how-it-works","https://leadtype.dev/docs/how-it-works","how-it-works"],["index","Leadtype","One MDX source. Hosted docs artifacts, package-bundled AGENTS.md, and search output from the same pipeline.","/docs","https://leadtype.dev/docs","index"],["methodology","Methodology","How leadtype differs from Fumadocs, Starlight, and Mintlify.","/docs/methodology","https://leadtype.dev/docs/methodology","methodology"],["package-docs/bundle","Bundle docs into a package","Ship agent-readable docs inside an npm tarball — AGENTS.md at the package root plus per-topic .md files.","/docs/package-docs/bundle","https://leadtype.dev/docs/package-docs/bundle","package-docs/bundle"],["quickstart","Quickstart","Install leadtype, run the hosted-docs pipeline once, and inspect the generated artifacts.","/docs/quickstart","https://leadtype.dev/docs/quickstart","quickstart"],["reference/cli","CLI","leadtype generate and leadtype lint — flags, exit codes, and JSON output.","/docs/reference/cli","https://leadtype.dev/docs/reference/cli","reference/cli"],["reference/convert","Convert","MDX-to-markdown conversion APIs from leadtype/convert.","/docs/reference/convert","https://leadtype.dev/docs/reference/convert","reference/convert"],["reference/evals","Evals","How Leadtype benchmarks AGENTS.md, llms.txt, and llms-full.txt output before changing defaults.","/docs/reference/evals","https://leadtype.dev/docs/reference/evals","reference/evals"],["reference/lint","Lint rules","Schema, link, and navigation checks. CLI and library API.","/docs/reference/lint","https://leadtype.dev/docs/reference/lint","reference/lint"],["reference/llm","LLM files","Generate llms.txt for hosted websites and AGENTS.md for npm-bundled offline reading.","/docs/reference/llm","https://leadtype.dev/docs/reference/llm","reference/llm"],["reference/remark","Remark plugins","The default plugin stack that flattens MDX components into markdown.","/docs/reference/remark","https://leadtype.dev/docs/reference/remark","reference/remark"],["reference/search","Search","Static search index, runtime helpers, and source-grounded answer streaming.","/docs/reference/search","https://leadtype.dev/docs/reference/search","reference/search"]],"chunks":[["chunk-0",0,"components",["Components"],44,0],["chunk-1",0,"why-flatten-at-all",["Components","Why flatten at all?"],82,1],["chunk-2",0,"the-naming-contract",["Components","The naming contract"],88,2],["chunk-3",0,"component-reference",["Components","Component reference"],21,3],["chunk-4",0,"callout",["Components","Component reference","Callout"],74,4],["chunk-5",0,"cards",["Components","Component reference","Cards"],43,5],["chunk-6",0,"steps",["Components","Component reference","Steps"],74,6],["chunk-7",0,"tabs",["Components","Component reference","Tabs"],89,7],["chunk-8",0,"commandtabs",["Components","Component reference","CommandTabs"],111,8],["chunk-9",0,"prompt",["Components","Component reference","Prompt"],93,9],["chunk-10",0,"audience",["Components","Component reference","Audience"],65,10],["chunk-11",0,"filetree",["Components","Component reference","FileTree"],56,11],["chunk-12",0,"accordion",["Components","Component reference","Accordion"],77,12],["chunk-13",0,"topicswitcher",["Components","Component reference","TopicSwitcher"],69,13],["chunk-14",0,"typetable-and-extractedtypetable",["Components","Component reference","TypeTable and ExtractedTypeTable"],86,14],["chunk-15",0,"example",["Components","Component reference","Example"],76,15],["chunk-16",0,"mermaid",["Components","Component reference","Mermaid"],62,16],["chunk-17",0,"guidelines",["Components","Guidelines"],55,17],["chunk-18",1,"frontmatter",["Frontmatter"],26,18],["chunk-19",1,"minimum",["Frontmatter","Minimum"],85,19],["chunk-20",1,"how-groups-become-a-nav-tree",["Frontmatter","How groups become a nav tree"],162,20],["chunk-21",1,"nested-groups",["Frontmatter","How groups become a nav tree","Nested groups"],68,21],["chunk-22",1,"optional-fields",["Frontmatter","Optional fields"],117,22],["chunk-23",1,"lint-rules",["Frontmatter","Lint rules"],88,23],["chunk-24",1,"what-this-gives-you",["Frontmatter","What this gives you"],55,24],["chunk-25",2,"add-search",["Add search"],36,25],["chunk-26",2,"generate-the-files",["Add search","Generate the files"],87,26],["chunk-27",2,"query-at-runtime",["Add search","Query at runtime"],71,27],["chunk-28",2,"add-vocabulary-aliases",["Add search","Add vocabulary aliases"],57,28],["chunk-29",2,"optional-ai-answers",["Add search","Optional AI answers"],84,29],["chunk-30",2,"guard-the-endpoint",["Add search","Guard the endpoint"],63,30],["chunk-31",2,"verify",["Add search","Verify"],52,31],["chunk-32",3,"connect-a-docs-site",["Connect a docs site"],67,32],["chunk-33",3,"the-flow",["Connect a docs site","The flow"],61,33],["chunk-34",3,"fetch-the-source-repo",["Connect a docs site","Fetch the source repo"],74,34],["chunk-35",3,"lint-before-generate",["Connect a docs site","Lint before generate"],65,35],["chunk-36",3,"generate-hosted-artifacts",["Connect a docs site","Generate hosted artifacts"],94,36],["chunk-37",3,"wire-it-into-the-app-build",["Connect a docs site","Wire it into the app build"],129,37],["chunk-38",3,"configure-product-and-groups",["Connect a docs site","Configure product and groups"],127,38],["chunk-39",3,"use-scripts-for-custom-pipelines",["Connect a docs site","Use scripts for custom pipelines"],186,39],["chunk-40",3,"use-scripts-for-custom-pipelines",["Connect a docs site","Use scripts for custom pipelines"],49,40],["chunk-41",3,"wire-the-app-runtime",["Connect a docs site","Wire the app runtime"],57,41],["chunk-42",3,"verify",["Connect a docs site","Verify"],96,42],["chunk-43",4,"optimize-docs-for-agents",["Optimize docs for agents"],73,43],["chunk-44",4,"what-good-looks-like",["Optimize docs for agents","What good looks like"],105,44],["chunk-45",4,"1-generate-the-artifacts",["Optimize docs for agents","1. Generate the artifacts"],113,45],["chunk-46",4,"2-add-one-middleware",["Optimize docs for agents","2. Add one middleware"],242,46],["chunk-47",4,"2-add-one-middleware",["Optimize docs for agents","2. Add one middleware"],100,47],["chunk-48",4,"3-add-json-ld-to-docs-pages",["Optimize docs for agents","3. Add JSON-LD to docs pages"],142,48],["chunk-49",4,"4-return-markdown-to-agents",["Optimize docs for agents","4. Return markdown to agents"],161,49],["chunk-50",4,"4-return-markdown-to-agents",["Optimize docs for agents","4. Return markdown to agents"],170,50],["chunk-51",4,"4-return-markdown-to-agents",["Optimize docs for agents","4. Return markdown to agents"],71,51],["chunk-52",4,"why-the-sitemap-and-robots-responses-are-regenerated-not-static",["Optimize docs for agents","4. Return markdown to agents","Why the sitemap and robots responses are regenerated, not static"],112,52],["chunk-53",4,"cache-control-and-cdn",["Optimize docs for agents","4. Return markdown to agents","Cache-Control and CDN"],88,53],["chunk-54",4,"5-verify-locally",["Optimize docs for agents","5. Verify locally"],193,54],["chunk-55",4,"minimal-checklist",["Optimize docs for agents","Minimal checklist"],100,55],["chunk-56",5,"render-mdx-and-toc",["Render MDX and TOC"],47,56],["chunk-57",5,"register-mdx-components",["Render MDX and TOC","Register MDX components"],63,57],["chunk-58",5,"use-the-same-heading-slugs",["Render MDX and TOC","Use the same heading slugs"],132,58],["chunk-59",5,"generate-navigation-with-toc-data",["Render MDX and TOC","Generate navigation with TOC data"],66,59],["chunk-60",5,"render-the-sidebar",["Render MDX and TOC","Render the sidebar"],53,60],["chunk-61",5,"troubleshooting",["Render MDX and TOC","Troubleshooting"],70,61],["chunk-62",6,"validate-in-ci",["Validate in CI"],49,62],["chunk-63",6,"what-it-catches",["Validate in CI","What it catches"],78,63],["chunk-64",6,"github-actions",["Validate in CI","GitHub Actions"],83,64],["chunk-65",6,"other-ci-providers",["Validate in CI","Other CI providers"],60,65],["chunk-66",6,"local-pre-push-hook",["Validate in CI","Local pre-push hook"],64,66],["chunk-67",6,"run-before-generate",["Validate in CI","Run before generate"],63,67],["chunk-68",6,"what-to-fix-first",["Validate in CI","What to fix first"],66,68],["chunk-69",7,"how-it-works",["How it works"],37,69],["chunk-70",7,"the-pipeline",["How it works","The pipeline"],141,70],["chunk-71",7,"two-output-modes",["How it works","Two output modes"],128,71],["chunk-72",7,"the-artifacts",["How it works","The artifacts"],166,72],["chunk-73",7,"the-artifacts",["How it works","The artifacts"],110,73],["chunk-74",7,"the-three-audiences",["How it works","The three audiences"],182,74],["chunk-75",7,"vocabulary",["How it works","Vocabulary"],153,75],["chunk-76",7,"what-runs-when",["How it works","What runs when"],123,76],["chunk-77",7,"where-to-next",["How it works","Where to next"],20,77],["chunk-78",8,"leadtype",["Leadtype"],177,78],["chunk-79",8,"choose-your-path",["Leadtype","Choose your path"],48,79],["chunk-80",8,"what-you-get",["Leadtype","What you get"],113,80],["chunk-81",8,"next",["Leadtype","Next"],46,81],["chunk-82",9,"methodology",["Methodology"],30,82],["chunk-83",9,"the-short-version",["Methodology","The short version"],131,83],["chunk-84",9,"what-leadtype-owns",["Methodology","What leadtype owns"],53,84],["chunk-85",9,"what-leadtype-does-not-own",["Methodology","What leadtype does not own"],31,85],["chunk-86",9,"when-the-combination-shines",["Methodology","When the combination shines"],86,86],["chunk-87",10,"bundle-docs-into-a-package",["Bundle docs into a package"],79,87],["chunk-88",10,"the-flow",["Bundle docs into a package","The flow"],84,88],["chunk-89",10,"why-agents-md-not-llms-txt",["Bundle docs into a package","Why AGENTS.md, not llms.txt?"],136,89],["chunk-90",10,"generate-into-the-package",["Bundle docs into a package","Generate into the package"],108,90],["chunk-91",10,"filter-to-package-specific-docs",["Bundle docs into a package","Filter to package-specific docs"],78,91],["chunk-92",10,"include-in-the-published-tarball",["Bundle docs into a package","Include in the published tarball"],156,92],["chunk-93",10,"include-in-the-published-tarball",["Bundle docs into a package","Include in the published tarball"],89,93],["chunk-94",10,"verify-before-publishing",["Bundle docs into a package","Verify before publishing"],71,94],["chunk-95",10,"tell-consuming-projects-to-use-the-bundle",["Bundle docs into a package","Tell consuming projects to use the bundle"],109,95],["chunk-96",10,"when-to-use-this",["Bundle docs into a package","When to use this"],72,96],["chunk-97",10,"what-s-next",["Bundle docs into a package","What's next"],31,97],["chunk-98",11,"quickstart",["Quickstart"],19,98],["chunk-99",11,"install",["Quickstart","Install"],53,99],["chunk-100",11,"author-one-page",["Quickstart","Author one page"],54,100],["chunk-101",11,"generate-hosted-docs-output",["Quickstart","Generate hosted docs output"],137,101],["chunk-102",11,"choose-the-next-setup-step",["Quickstart","Choose the next setup step"],77,102],["chunk-103",12,"cli",["CLI"],30,103],["chunk-104",12,"generate",["CLI","generate"],177,104],["chunk-105",12,"generate",["CLI","generate"],79,105],["chunk-106",12,"config-loading",["CLI","generate","Config loading"],135,106],["chunk-107",12,"bundle-mode",["CLI","generate","Bundle mode"],75,107],["chunk-108",12,"json-output-shape",["CLI","generate","JSON output shape"],172,108],["chunk-109",12,"custom-script-config",["CLI","generate","Custom script config"],68,109],["chunk-110",12,"lint",["CLI","lint"],145,110],["chunk-111",12,"help",["CLI","help"],25,111],["chunk-112",12,"library-entry-points",["CLI","Library entry points"],81,112],["chunk-113",13,"convert",["Convert"],47,113],["chunk-114",13,"convertallmdx",["Convert","convertAllMdx"],67,114],["chunk-115",13,"convertmdxtomarkdown",["Convert","convertMdxToMarkdown"],54,115],["chunk-116",13,"writemdxfileasmarkdown",["Convert","writeMdxFileAsMarkdown"],28,116],["chunk-117",13,"behavior-notes",["Convert","Behavior notes"],50,117],["chunk-118",13,"pairing-with-remark-plugins",["Convert","Pairing with remark plugins"],54,118],["chunk-119",14,"evals",["Evals"],46,119],["chunk-120",14,"what-we-benchmark",["Evals","What we benchmark"],176,120],["chunk-121",14,"what-we-benchmark",["Evals","What we benchmark"],120,121],["chunk-122",14,"what-we-learned",["Evals","What we learned"],132,122],["chunk-123",14,"current-default",["Evals","Current default"],72,123],["chunk-124",14,"open-question",["Evals","Open question"],55,124],["chunk-125",14,"run-the-evals",["Evals","Run the evals"],37,125],["chunk-126",15,"lint-rules",["Lint rules"],46,126],["chunk-127",15,"rules",["Lint rules","Rules"],15,127],["chunk-128",15,"frontmatter-rules",["Lint rules","Rules","Frontmatter rules"],58,128],["chunk-129",15,"content-link-rules",["Lint rules","Rules","Content / link rules"],68,129],["chunk-130",15,"library-api",["Lint rules","Library API"],90,130],["chunk-131",15,"result-shape",["Lint rules","Library API","Result shape"],67,131],["chunk-132",15,"docs-frontmatter",["Lint rules","Default schemas","Docs frontmatter"],75,132],["chunk-133",15,"changelog-frontmatter",["Lint rules","Default schemas","Changelog frontmatter"],60,133],["chunk-134",15,"meta-json",["Lint rules","Default schemas","meta.json"],49,134],["chunk-135",15,"custom-schemas",["Lint rules","Custom schemas"],63,135],["chunk-136",15,"practical-guidance",["Lint rules","Practical guidance"],65,136],["chunk-137",16,"llm-files",["LLM files"],128,137],["chunk-138",16,"what-gets-generated",["LLM files","What gets generated"],154,138],["chunk-139",16,"productinfo",["LLM files","ProductInfo"],129,139],["chunk-140",16,"example-llms-txt",["LLM files","Example llms.txt"],82,140],["chunk-141",16,"typical-sequence",["LLM files","Typical sequence"],105,141],["chunk-142",16,"generateagentreadabilityartifacts",["LLM files","generateAgentReadabilityArtifacts"],132,142],["chunk-143",16,"agent-readability-helpers",["LLM files","Agent readability helpers"],72,143],["chunk-144",16,"createagentmarkdownresponse",["LLM files","Agent readability helpers","createAgentMarkdownResponse"],180,144],["chunk-145",16,"createsitemapxmlresponse-createsitemapmarkdownresponse-createrobotstxtresponse",["LLM files","Agent readability helpers","createSitemapXmlResponse / createSitemapMarkdownResponse / createRobotsTxtResponse"],96,145],["chunk-146",16,"createdocshead",["LLM files","Agent readability helpers","createDocsHead"],148,146],["chunk-147",16,"lower-level-helpers",["LLM files","Agent readability helpers","Lower-level helpers"],144,147],["chunk-148",16,"lower-level-helpers",["LLM files","Agent readability helpers","Lower-level helpers"],58,148],["chunk-149",16,"cache-control-and-cdn",["LLM files","Agent readability helpers","Cache-Control and CDN"],73,149],["chunk-150",16,"manifest-version",["LLM files","Agent readability helpers","Manifest version"],47,150],["chunk-151",16,"generateagentsmd",["LLM files","generateAgentsMd"],138,151],["chunk-152",16,"example-output",["LLM files","generateAgentsMd","Example output"],86,152],["chunk-153",16,"resolvedocsnavigation",["LLM files","resolveDocsNavigation"],111,153],["chunk-154",16,"tables-of-contents",["LLM files","Tables of contents"],121,154],["chunk-155",16,"group-design",["LLM files","Group design"],69,155],["chunk-156",16,"base-url-precedence",["LLM files","Base URL precedence"],75,156],["chunk-157",17,"remark-plugins",["Remark plugins"],46,157],["chunk-158",17,"the-default-stack",["Remark plugins","The default stack"],182,158],["chunk-159",17,"the-default-stack",["Remark plugins","The default stack"],39,159],["chunk-160",17,"why-order-matters",["Remark plugins","Why order matters"],81,160],["chunk-161",17,"remarkinclude",["Remark plugins","Optional plugins","remarkInclude"],40,161],["chunk-162",17,"remarktypetabletomarkdown-with-basepath",["Remark plugins","Optional plugins","remarkTypeTableToMarkdown with basePath"],99,162],["chunk-163",17,"plugin-selection-rules",["Remark plugins","Plugin selection rules"],63,163],["chunk-164",18,"search",["Search"],41,164],["chunk-165",18,"vocabulary",["Search","Vocabulary"],79,165],["chunk-166",18,"build-time-indexing",["Search","Build-time indexing"],66,166],["chunk-167",18,"runtime-search",["Search","Runtime search"],123,167],["chunk-168",18,"reading-docs-at-runtime",["Search","Reading docs at runtime"],62,168],["chunk-169",18,"source-grounded-answers",["Search","Source-grounded answers"],62,169],["chunk-170",18,"streaming-via-provider-entry-points",["Search","Streaming via provider entry points"],103,170],["chunk-171",18,"bash-tool-adapters",["Search","Bash tool adapters"],71,171],["chunk-172",18,"abuse-guards",["Search","Abuse guards"],60,172],["chunk-173",18,"when-to-add-embeddings",["Search","When to add embeddings"],73,173]],"terms":{"10":[[158,0,0,1,0]],"11":[[158,0,0,1,0]],"12":[[158,0,0,1,0]],"13":[[158,0,0,1,0]],"14":[[158,0,0,1,0]],"15":[[158,0,0,1,0]],"16":[[158,0,0,1,0],[159,0,0,1,0]],"17":[[158,0,0,1,0],[159,0,0,1,0]],"18":[[158,0,0,1,0],[159,0,0,1,0]],"35":[[75,0,0,1,0],[165,0,0,1,0]],"200":[[49,0,0,1,0],[144,0,0,1,0],[147,0,0,1,0]],"300":[[49,0,0,1,0],[53,0,0,1,0],[144,0,0,1,0],[149,0,0,1,0]],"5173":[[54,0,0,0,8]],"8601":[[133,0,0,1,0]],"components":[[0,1,1,2,0],[1,1,1,2,0],[2,1,1,2,0],[3,1,1,1,0],[4,1,1,1,0],[5,1,1,1,0],[6,1,1,2,1],[7,1,1,1,0],[8,1,1,1,0],[9,1,1,1,0],[10,1,1,1,0],[11,1,1,1,0],[12,1,1,1,0],[13,1,1,1,0],[14,1,1,1,0],[15,1,1,1,4],[16,1,1,1,0],[17,1,1,3,0],[41,0,0,1,0],[56,0,0,2,0],[57,0,1,2,2],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,2,0],[61,0,0,2,0],[70,0,0,2,1],[80,0,0,1,0],[85,0,0,1,0],[120,0,0,1,0],[157,0,0,1,0],[158,0,0,1,0],[159,0,0,1,0],[160,0,0,1,0],[161,0,0,1,0],[162,0,0,1,0],[163,0,0,1,0]],"mdx":[[0,0,0,1,0],[1,0,0,2,0],[2,0,0,2,0],[3,0,0,2,0],[4,0,0,1,0],[5,0,0,1,1],[6,0,0,2,1],[7,0,0,1,0],[8,0,0,1,0],[9,0,0,1,0],[10,0,0,1,0],[11,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[14,0,0,1,0],[15,0,0,1,3],[16,0,0,1,2],[17,0,0,1,0],[18,0,0,2,0],[19,0,0,1,1],[20,0,0,1,0],[21,0,0,1,0],[22,0,0,1,0],[23,0,0,1,0],[24,0,0,1,0],[33,0,0,0,1],[41,0,0,2,0],[56,1,1,2,0],[57,1,2,2,1],[58,1,1,1,0],[59,1,1,1,0],[60,1,1,1,0],[61,1,1,1,0],[62,0,0,1,0],[64,0,0,0,1],[69,0,0,2,0],[70,0,0,2,1],[71,0,0,1,0],[72,0,0,2,0],[73,0,0,1,0],[74,0,0,2,1],[75,0,0,2,0],[76,0,0,2,0],[77,0,0,1,0],[78,0,0,2,1],[79,0,0,1,0],[80,0,0,3,0],[81,0,0,1,0],[84,0,0,1,0],[85,0,0,1,0],[88,0,0,0,1],[96,0,0,1,0],[98,0,0,1,0],[100,0,0,1,1],[101,0,0,2,0],[102,0,0,2,0],[104,0,0,1,0],[113,0,0,2,0],[114,0,0,2,0],[115,0,0,1,1],[116,0,0,1,1],[117,0,0,2,0],[118,0,0,1,0],[126,0,0,1,0],[129,0,0,1,0],[130,0,0,1,0],[154,0,0,2,0],[157,0,0,2,0],[158,0,0,2,1],[159,0,0,1,0],[160,0,0,1,0],[161,0,0,1,0],[162,0,0,2,1],[163,0,0,1,0],[166,0,0,1,0]],"pipeline":[[0,0,0,2,0],[1,0,0,1,0],[2,0,0,2,0],[3,0,0,1,0],[4,0,0,2,0],[5,0,0,1,0],[6,0,0,1,0],[7,0,0,1,0],[8,0,0,1,0],[9,0,0,1,0],[10,0,0,1,0],[11,0,0,1,0],[12,0,0,2,0],[13,0,0,1,0],[14,0,0,1,0],[15,0,0,1,0],[16,0,0,1,0],[17,0,0,1,0],[24,0,0,1,0],[26,0,0,1,0],[32,0,0,1,0],[45,0,0,1,0],[62,0,0,1,0],[69,0,0,1,0],[70,0,1,1,0],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,0,1,0],[75,0,0,1,0],[76,0,0,1,0],[77,0,0,1,0],[78,0,0,2,0],[79,0,0,1,0],[80,0,0,1,0],[81,0,0,2,0],[82,0,0,1,0],[84,0,0,1,0],[86,0,0,1,0],[98,0,0,1,0],[99,0,0,1,0],[100,0,0,1,0],[101,0,0,3,0],[102,0,0,1,0],[103,0,0,1,0],[104,0,0,1,0],[115,0,0,1,0],[140,0,0,0,1],[152,0,0,0,1]],"knows":[[0,0,0,1,0],[1,0,0,1,0],[2,0,0,1,0],[3,0,0,1,0],[4,0,0,1,0],[5,0,0,1,0],[6,0,0,1,0],[7,0,0,1,0],[8,0,0,1,0],[9,0,0,1,0],[10,0,0,1,0],[11,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[14,0,0,1,0],[15,0,0,1,0],[16,0,0,1,0],[17,0,0,1,0],[57,0,0,1,0]],"flatten":[[0,0,0,2,0],[1,0,1,1,0],[2,0,0,1,0],[3,0,0,1,0],[4,0,0,3,0],[5,0,0,1,0],[6,0,0,1,0],[7,0,0,1,0],[8,0,0,1,0],[9,0,0,1,0],[10,0,0,1,0],[11,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[14,0,0,1,0],[15,0,0,1,0],[16,0,0,1,0],[17,0,0,1,0],[57,0,0,1,0],[70,0,0,0,1],[75,0,0,1,0],[158,0,0,2,0]],"into":[[0,0,0,2,0],[1,0,0,2,0],[2,0,0,1,0],[3,0,0,1,0],[4,0,0,3,0],[5,0,0,1,1],[6,0,0,1,0],[7,0,0,1,0],[8,0,0,1,0],[9,0,0,1,0],[10,0,0,1,0],[11,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[14,0,0,1,0],[15,0,0,1,0],[16,0,0,1,0],[17,0,0,1,0],[19,0,0,0,1],[37,0,1,0,0],[43,0,0,1,0],[46,0,0,1,0],[48,0,0,1,0],[62,0,0,1,0],[65,0,0,1,0],[70,0,0,1,0],[71,0,0,1,0],[75,0,0,1,0],[87,1,1,0,0],[88,1,1,0,0],[89,1,1,0,0],[90,1,2,0,0],[91,1,1,0,0],[92,1,1,0,0],[93,1,1,0,0],[94,1,1,0,0],[95,1,1,0,0],[96,1,1,0,0],[97,1,1,0,0],[102,0,0,3,0],[104,0,0,2,0],[107,0,0,1,0],[113,0,0,1,0],[117,0,0,1,0],[118,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0],[136,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[143,0,0,1,0],[145,0,0,0,1],[152,0,0,1,0],[157,0,0,3,0],[158,0,0,1,0],[159,0,0,1,0],[160,0,0,2,0],[161,0,0,1,0],[162,0,0,1,0],[163,0,0,1,0],[169,0,0,1,0]],"agent":[[0,0,0,1,0],[1,0,0,2,0],[2,0,0,1,0],[3,0,0,1,0],[4,0,0,1,0],[5,0,0,1,1],[6,0,0,1,0],[7,0,0,1,0],[8,0,0,1,0],[9,0,0,3,3],[10,0,0,3,1],[11,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[14,0,0,1,0],[15,0,0,1,0],[16,0,0,1,0],[17,0,0,2,0],[33,0,0,0,1],[36,0,0,1,0],[39,0,0,1,0],[41,0,0,1,0],[42,0,0,1,0],[43,0,0,2,0],[44,0,0,3,0],[45,0,0,2,1],[46,0,0,3,1],[47,0,0,1,0],[48,0,0,1,1],[49,0,0,5,0],[50,0,0,4,0],[51,0,0,2,0],[52,0,0,1,0],[53,0,0,3,0],[54,0,0,3,2],[55,0,0,3,0],[70,0,0,1,0],[71,0,0,2,0],[73,0,0,2,0],[74,0,0,1,4],[75,0,0,1,0],[76,0,0,2,0],[78,0,0,2,1],[80,0,0,1,0],[86,0,0,2,0],[87,0,0,1,0],[88,0,0,1,0],[89,0,0,4,0],[90,0,0,1,0],[91,0,0,1,0],[92,0,0,1,0],[93,0,0,1,0],[94,0,0,1,0],[95,0,0,1,0],[96,0,0,1,0],[97,0,0,1,0],[101,0,0,1,1],[102,0,0,1,0],[104,0,0,1,0],[106,0,0,1,0],[107,0,0,1,0],[108,0,0,0,1],[112,0,0,1,0],[117,0,0,1,0],[119,0,0,2,0],[137,0,0,1,0],[138,0,0,1,0],[142,0,0,1,0],[143,0,1,0,0],[144,0,1,5,0],[145,0,1,0,0],[146,0,1,0,1],[147,0,1,2,0],[148,0,1,1,0],[149,0,1,2,0],[150,0,1,1,0],[151,0,0,1,0],[156,0,0,1,1],[157,0,0,1,0],[158,0,0,1,0],[163,0,0,1,0],[171,0,0,1,0]],"readable":[[0,0,0,1,0],[1,0,0,1,0],[2,0,0,1,0],[3,0,0,1,0],[4,0,0,1,0],[5,0,0,1,0],[6,0,0,1,0],[7,0,0,1,0],[8,0,0,1,0],[9,0,0,1,0],[10,0,0,1,0],[11,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[14,0,0,1,0],[15,0,0,1,0],[16,0,0,1,0],[17,0,0,1,0],[43,0,0,1,0],[44,0,0,2,0],[45,0,0,1,0],[46,0,0,2,0],[47,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[70,0,0,1,0],[72,0,0,1,0],[87,0,0,1,0],[88,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[91,0,0,1,0],[92,0,0,1,0],[93,0,0,1,0],[94,0,0,1,0],[95,0,0,1,0],[96,0,0,1,0],[97,0,0,1,0],[102,0,0,1,0],[157,0,0,1,0]],"markdown":[[0,0,0,2,0],[1,0,0,3,0],[2,0,0,1,0],[3,0,0,1,0],[4,0,0,1,0],[5,0,0,1,1],[6,0,0,2,1],[7,0,0,1,0],[8,0,0,2,0],[9,0,0,1,2],[10,0,0,4,1],[11,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[14,0,0,1,0],[15,0,0,1,0],[16,0,0,2,5],[17,0,0,2,0],[19,0,0,1,0],[39,0,0,1,0],[41,0,0,1,0],[42,0,0,5,0],[43,0,0,1,0],[44,0,0,6,0],[45,0,0,2,0],[46,0,0,2,0],[47,0,0,1,0],[48,0,0,2,1],[49,0,1,5,0],[50,0,1,3,0],[51,0,1,2,0],[52,0,1,1,0],[53,0,1,2,0],[54,0,0,5,1],[55,0,0,6,0],[56,0,0,1,0],[57,0,0,1,0],[70,0,0,3,0],[72,0,0,3,0],[74,0,0,1,1],[75,0,0,3,0],[76,0,0,1,0],[78,0,0,1,1],[80,0,0,2,0],[82,0,0,1,0],[83,0,0,1,0],[84,0,0,2,0],[86,0,0,1,0],[87,0,0,1,0],[101,0,0,2,0],[102,0,0,1,0],[112,0,0,1,0],[113,0,0,2,0],[114,0,0,1,0],[115,0,0,2,1],[116,0,0,1,0],[117,0,0,2,0],[118,0,0,1,0],[120,0,0,3,0],[121,0,0,2,0],[123,0,0,1,0],[137,0,0,2,0],[138,0,0,4,0],[142,0,0,1,0],[144,0,0,4,0],[146,0,0,0,1],[147,0,0,5,0],[148,0,0,1,0],[149,0,0,1,0],[154,0,0,1,0],[157,0,0,3,0],[158,0,0,3,1],[159,0,0,1,0],[160,0,0,1,0],[161,0,0,1,0],[162,0,0,2,0],[163,0,0,1,0],[166,0,0,1,0]],"leadtype":[[0,0,0,1,0],[6,0,0,1,1],[8,0,0,8,4],[15,0,0,1,1],[17,0,0,1,0],[18,0,0,1,0],[19,0,0,0,1],[20,0,0,1,0],[23,0,0,1,0],[25,0,0,1,0],[26,0,0,1,2],[27,0,0,0,1],[29,0,0,1,1],[30,0,0,1,0],[32,0,0,2,0],[33,0,0,0,2],[34,0,0,1,0],[35,0,0,0,1],[36,0,0,0,1],[37,0,0,0,4],[38,0,0,1,1],[39,0,0,0,4],[43,0,0,1,0],[45,0,0,0,2],[46,0,0,0,1],[48,0,0,0,3],[56,0,0,2,0],[57,0,0,2,0],[58,0,0,0,1],[59,0,0,0,1],[62,0,0,3,0],[63,0,0,1,0],[64,0,0,1,1],[65,0,0,1,1],[66,0,0,1,1],[67,0,0,3,2],[68,0,0,1,0],[69,0,0,1,0],[71,0,0,3,0],[76,0,0,1,0],[78,1,1,2,2],[79,1,1,0,0],[80,1,1,1,0],[81,1,1,1,0],[82,0,0,2,0],[83,0,0,3,0],[84,0,1,1,0],[85,0,1,1,0],[86,0,0,4,0],[87,0,0,1,0],[88,0,0,0,1],[89,0,0,1,0],[90,0,0,0,1],[91,0,0,0,1],[92,0,0,0,4],[94,0,0,0,1],[98,0,0,1,0],[99,0,0,6,0],[100,0,0,1,0],[101,0,0,2,1],[102,0,0,1,0],[103,0,0,3,1],[104,0,0,2,1],[105,0,0,2,0],[106,0,0,3,1],[107,0,0,2,1],[108,0,0,2,0],[109,0,0,2,2],[110,0,0,2,1],[111,0,0,2,3],[112,0,0,8,0],[113,0,0,3,1],[114,0,0,1,1],[115,0,0,1,0],[116,0,0,1,0],[117,0,0,1,0],[118,0,0,1,1],[119,0,0,2,0],[120,0,0,3,0],[121,0,0,1,0],[122,0,0,1,0],[123,0,0,2,0],[124,0,0,1,0],[125,0,0,1,0],[126,0,0,1,1],[130,0,0,0,1],[135,0,0,0,1],[136,0,0,1,0],[137,0,0,3,1],[141,0,0,0,6],[142,0,0,1,3],[143,0,0,0,1],[146,0,0,0,5],[150,0,0,1,0],[151,0,0,0,1],[153,0,0,0,1],[154,0,0,0,2],[156,0,0,1,2],[157,0,0,0,1],[162,0,0,0,1],[164,0,0,1,0],[166,0,0,0,2],[167,0,0,0,1],[168,0,0,0,1],[169,0,0,0,1],[170,0,0,0,3],[171,0,0,0,1]],"does":[[0,0,0,1,0],[13,0,0,1,0],[56,0,0,1,0],[85,0,1,0,0],[100,0,0,0,1],[106,0,0,0,1],[122,0,0,1,0],[140,0,0,0,1],[141,0,0,0,1],[152,0,0,0,1]],"not":[[0,0,0,1,0],[7,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[20,0,0,1,0],[28,0,0,1,0],[29,0,0,1,0],[49,0,0,2,0],[51,0,0,1,0],[52,0,1,0,0],[56,0,0,1,0],[61,0,0,3,0],[63,0,0,1,0],[68,0,0,1,0],[72,0,0,1,0],[76,0,0,1,0],[78,0,0,1,0],[82,0,0,1,0],[83,0,0,1,0],[85,0,1,0,0],[89,0,1,1,0],[106,0,0,1,0],[109,0,0,1,0],[119,0,0,1,0],[122,0,0,2,0],[123,0,0,2,0],[128,0,0,1,0],[138,0,0,1,0],[144,0,0,2,0],[146,0,0,1,0],[154,0,0,1,0],[155,0,0,2,0],[160,0,0,1,0],[165,0,0,1,0],[167,0,0,1,0],[173,0,0,1,0]],"ship":[[0,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[78,0,0,1,0],[79,0,0,1,0],[83,0,0,1,0],[87,0,0,1,0],[88,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[91,0,0,1,0],[92,0,0,1,1],[93,0,0,1,1],[94,0,0,1,0],[95,0,0,1,0],[96,0,0,1,0],[97,0,0,1,0],[107,0,0,1,0],[120,0,0,1,0],[151,0,0,1,0],[152,0,0,0,1]],"ui":[[0,0,0,1,0],[10,0,0,1,0],[17,0,0,1,0],[24,0,0,1,0],[27,0,0,1,0],[56,0,0,1,0],[74,0,0,0,3],[78,0,0,1,1],[83,0,0,1,0],[85,0,0,1,0],[86,0,0,1,0],[153,0,0,1,0],[167,0,0,1,0]],"your":[[0,0,0,1,0],[2,0,0,3,0],[9,0,0,1,1],[17,0,0,1,0],[22,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[32,0,0,1,0],[34,0,0,1,0],[39,0,0,2,0],[41,0,0,2,0],[42,0,0,1,0],[43,0,0,1,0],[45,0,0,1,0],[46,0,0,1,0],[48,0,0,3,0],[49,0,0,1,0],[50,0,0,4,0],[51,0,0,1,0],[53,0,0,2,0],[54,0,0,2,0],[56,0,0,2,0],[57,0,0,1,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,1,0],[61,0,0,1,0],[65,0,0,1,0],[69,0,0,1,0],[71,0,0,1,0],[73,0,0,2,0],[74,0,0,4,0],[75,0,0,1,0],[78,0,0,2,1],[79,0,1,1,0],[80,0,0,2,0],[85,0,0,1,0],[86,0,0,1,0],[87,0,0,2,0],[88,0,0,0,1],[89,0,0,1,0],[92,0,0,1,0],[95,0,0,3,2],[96,0,0,1,0],[99,0,0,1,0],[100,0,0,1,0],[101,0,0,1,0],[118,0,0,1,0],[135,0,0,1,0],[143,0,0,1,0],[144,0,0,1,0],[153,0,0,2,0],[162,0,0,1,0],[164,0,0,1,0],[167,0,0,1,0],[170,0,0,1,0],[173,0,0,1,0]],"docs":[[0,0,0,1,0],[2,0,0,1,0],[5,0,0,0,1],[6,0,0,2,1],[9,0,0,0,4],[10,0,0,1,0],[11,0,0,0,2],[13,0,0,1,2],[15,0,0,0,1],[17,0,0,1,0],[19,0,0,1,3],[20,0,0,4,4],[21,0,0,0,4],[22,0,0,1,0],[23,0,0,2,0],[25,0,0,1,0],[26,0,0,1,2],[27,0,0,1,2],[28,0,0,2,0],[29,0,0,2,1],[30,0,0,1,0],[31,0,0,3,0],[32,1,1,6,0],[33,1,1,2,4],[34,1,1,5,2],[35,1,1,3,2],[36,1,1,7,2],[37,1,1,5,14],[38,1,1,6,3],[39,1,1,3,10],[40,1,1,2,2],[41,1,1,3,0],[42,1,1,7,0],[43,1,1,2,0],[44,1,1,5,0],[45,1,1,3,1],[46,1,1,9,2],[47,1,1,1,4],[48,1,2,1,4],[49,1,1,4,0],[50,1,1,5,0],[51,1,1,1,0],[52,1,1,2,0],[53,1,1,1,0],[54,1,1,6,5],[55,1,1,8,0],[56,0,0,1,0],[57,0,0,0,1],[59,0,0,0,2],[61,0,0,1,0],[62,0,0,1,0],[63,0,0,2,0],[64,0,0,0,3],[65,0,0,0,1],[66,0,0,0,1],[67,0,0,0,1],[68,0,0,1,0],[69,0,0,2,0],[70,0,0,0,2],[71,0,0,9,0],[72,0,0,4,0],[73,0,0,6,0],[74,0,0,4,0],[75,0,0,2,0],[76,0,0,4,0],[78,0,0,4,3],[79,0,0,3,0],[80,0,0,2,0],[81,0,0,1,0],[82,0,0,3,0],[83,0,0,5,0],[85,0,0,1,0],[86,0,0,3,0],[87,1,1,3,0],[88,1,1,1,4],[89,1,1,2,0],[90,1,1,2,2],[91,1,2,2,0],[92,1,1,3,7],[93,1,1,1,2],[94,1,1,2,0],[95,1,1,4,1],[96,1,1,3,0],[97,1,1,1,0],[98,0,0,2,0],[99,0,0,1,0],[100,0,0,2,0],[101,0,1,5,1],[102,0,0,6,0],[104,0,0,12,0],[105,0,0,3,0],[106,0,0,8,0],[107,0,0,3,0],[108,0,0,1,8],[109,0,0,1,2],[110,0,0,1,0],[112,0,0,1,0],[114,0,0,1,2],[115,0,0,0,1],[116,0,0,0,2],[118,0,0,1,0],[119,0,0,1,0],[120,0,0,10,0],[121,0,0,4,0],[122,0,0,1,0],[123,0,0,1,1],[124,0,0,1,0],[125,0,0,1,0],[129,0,0,3,0],[130,0,0,1,1],[132,0,1,0,0],[135,0,0,0,1],[136,0,0,1,0],[137,0,0,5,0],[138,0,0,10,0],[139,0,0,2,0],[140,0,0,0,5],[141,0,0,1,2],[142,0,0,5,0],[144,0,0,1,0],[145,0,0,0,4],[146,0,0,1,4],[147,0,0,5,0],[151,0,0,5,0],[152,0,0,1,4],[153,0,0,1,1],[155,0,0,1,0],[161,0,0,1,0],[163,0,0,1,0],[164,0,0,1,0],[166,0,0,1,2],[167,0,0,1,2],[168,0,1,0,0],[170,0,0,1,0],[171,0,0,2,0],[173,0,0,2,0]],"app":[[0,0,0,1,0],[2,0,0,2,0],[15,0,0,1,1],[17,0,0,1,0],[19,0,0,0,1],[32,0,0,3,0],[33,0,0,1,3],[34,0,0,2,0],[35,0,0,2,0],[36,0,0,2,0],[37,0,1,2,0],[38,0,0,1,0],[39,0,0,1,0],[40,0,0,1,0],[41,0,1,1,0],[42,0,0,2,0],[43,0,0,1,0],[45,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[60,0,0,1,0],[61,0,0,1,0],[80,0,0,1,0],[85,0,0,1,0],[86,0,0,1,0],[102,0,0,1,0],[108,0,0,1,0],[137,0,0,1,0]],"owns":[[0,0,0,1,0],[15,0,0,0,2],[32,0,0,2,0],[56,0,0,1,0],[84,0,1,0,0],[91,0,0,1,0]],"runtime":[[0,0,0,1,0],[2,0,0,1,0],[10,0,0,0,1],[15,0,0,0,2],[17,0,0,1,0],[25,0,0,2,0],[26,0,0,1,0],[27,0,1,1,0],[28,0,0,1,0],[29,0,0,1,0],[30,0,0,1,0],[31,0,0,1,0],[39,0,0,1,0],[41,0,1,1,0],[45,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[56,0,0,2,0],[57,0,0,1,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,1,0],[61,0,0,1,0],[105,0,0,1,0],[140,0,0,0,1],[143,0,0,2,0],[164,0,0,2,0],[165,0,0,1,0],[166,0,0,1,0],[167,0,1,2,0],[168,0,1,1,0],[169,0,0,1,0],[170,0,0,2,0],[171,0,0,1,0],[172,0,0,1,0],[173,0,0,1,0]],"rendering":[[0,0,0,1,0],[117,0,0,1,0],[162,0,0,1,0]],"styling":[[0,0,0,1,0],[4,0,0,2,0],[15,0,0,0,1],[32,0,0,1,0],[85,0,0,1,0]],"accessibility":[[0,0,0,1,0],[56,0,0,1,0]],"only":[[0,0,0,1,0],[10,0,0,3,0],[13,0,0,1,0],[17,0,0,1,0],[21,0,0,2,0],[28,0,0,1,0],[29,0,0,1,0],[34,0,0,1,0],[70,0,0,0,3],[71,0,0,1,0],[72,0,0,3,0],[73,0,0,1,0],[75,0,0,1,0],[76,0,0,1,0],[79,0,0,1,0],[91,0,0,1,0],[96,0,0,1,0],[99,0,0,1,0],[104,0,0,1,0],[107,0,0,1,0],[108,0,0,2,0],[120,0,0,1,0],[121,0,0,2,0],[122,0,0,1,0],[144,0,0,1,0],[154,0,0,2,0],[163,0,0,1,0],[167,0,0,1,0],[169,0,0,1,0],[171,0,0,1,0],[173,0,0,1,0]],"has":[[0,0,0,1,0],[23,0,0,1,0],[44,0,0,2,0],[48,0,0,1,0],[71,0,0,1,0],[75,0,0,1,0],[139,0,0,1,0]],"honor":[[0,0,0,1,0]],"small":[[0,0,0,1,0],[20,0,0,1,0],[28,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[123,0,0,1,0],[124,0,0,1,0],[166,0,0,1,0],[167,0,0,1,0]],"naming":[[0,0,0,1,0],[2,0,1,0,0],[57,0,0,1,0]],"contract":[[0,0,0,1,0],[2,0,1,1,0],[17,0,0,1,0],[57,0,0,1,0],[70,0,0,1,0],[77,0,0,1,0],[100,0,0,1,0],[135,0,0,1,0],[154,0,0,1,0]],"so":[[0,0,0,1,0],[1,0,0,1,0],[4,0,0,1,0],[7,0,0,1,0],[9,0,0,1,0],[11,0,0,1,0],[16,0,0,1,0],[20,0,0,1,0],[23,0,0,1,0],[36,0,0,1,0],[38,0,0,1,0],[44,0,0,2,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,3,0],[62,0,0,2,0],[63,0,0,1,0],[64,0,0,2,0],[65,0,0,1,0],[66,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[69,0,0,1,0],[72,0,0,3,0],[73,0,0,2,0],[84,0,0,1,0],[90,0,0,1,0],[92,0,0,0,1],[93,0,0,0,1],[95,0,0,1,0],[108,0,0,1,0],[117,0,0,1,0],[118,0,0,1,0],[124,0,0,1,0],[129,0,0,1,0],[136,0,0,1,0],[137,0,0,1,0],[141,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0],[149,0,0,1,0],[150,0,0,1,0],[152,0,0,0,1],[160,0,0,1,0],[161,0,0,1,0],[165,0,0,2,0],[167,0,0,1,0],[169,0,0,1,0]],"remark":[[0,0,0,1,0],[2,0,0,2,0],[4,0,0,1,0],[5,0,0,1,0],[12,0,0,1,0],[16,0,0,0,2],[17,0,0,1,0],[39,0,0,0,1],[57,0,0,2,0],[69,0,0,1,0],[70,0,0,3,4],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,0,1,0],[75,0,0,1,0],[76,0,0,2,0],[77,0,0,1,0],[84,0,0,1,0],[92,0,0,0,1],[101,0,0,1,0],[112,0,0,1,0],[113,0,0,1,0],[114,0,0,0,1],[118,0,1,1,1],[129,0,0,1,0],[141,0,0,0,1],[157,1,1,1,1],[158,1,1,0,0],[159,1,1,0,0],[160,1,1,0,0],[161,1,1,0,0],[162,1,1,0,1],[163,1,1,0,0]],"each":[[0,0,0,1,0],[1,0,0,1,0],[3,0,0,1,0],[20,0,0,2,0],[44,0,0,1,0],[52,0,0,1,0],[72,0,0,1,0],[74,0,0,1,0],[76,0,0,2,0],[79,0,0,1,0],[86,0,0,1,0],[91,0,0,1,0],[110,0,0,1,0],[120,0,0,1,0],[121,0,0,3,0],[139,0,0,1,0],[156,0,0,1,0],[157,0,0,1,0],[160,0,0,1,0],[165,0,0,1,0]],"component":[[0,0,0,1,0],[1,0,0,1,0],[3,0,1,0,0],[4,0,1,0,0],[5,0,1,0,0],[6,0,1,0,0],[7,0,1,0,0],[8,0,1,0,0],[9,0,1,0,0],[10,0,1,0,0],[11,0,1,0,0],[12,0,1,0,0],[13,0,1,0,0],[14,0,1,0,0],[15,0,1,1,0],[16,0,1,0,0],[17,0,0,1,0],[22,0,0,1,0],[57,0,0,2,0],[58,0,0,0,3],[60,0,0,1,0],[70,0,0,1,0],[73,0,0,1,0],[75,0,0,1,0],[85,0,0,2,0],[101,0,0,1,0],[118,0,0,1,0],[153,0,0,1,0],[157,0,0,1,0],[160,0,0,3,0]],"agents":[[0,0,0,1,0],[1,0,0,1,0],[4,0,0,1,0],[6,0,0,1,0],[7,0,0,1,0],[9,0,0,1,0],[10,0,0,1,0],[11,0,0,1,0],[12,0,0,1,0],[16,0,0,0,2],[20,0,0,1,3],[24,0,0,1,0],[38,0,0,1,0],[41,0,0,1,0],[43,1,1,1,0],[44,1,1,2,0],[45,1,1,0,0],[46,1,1,1,0],[47,1,1,0,0],[48,1,1,1,0],[49,1,2,1,0],[50,1,2,0,0],[51,1,2,0,0],[52,1,2,0,0],[53,1,2,1,0],[54,1,1,1,0],[55,1,1,2,0],[70,0,0,0,3],[71,0,0,1,0],[72,0,0,5,0],[73,0,0,1,0],[74,0,0,5,3],[75,0,0,1,0],[76,0,0,1,0],[78,0,0,2,8],[79,0,0,1,0],[80,0,0,5,0],[81,0,0,1,0],[83,0,0,1,0],[84,0,0,1,0],[86,0,0,1,0],[87,0,0,4,0],[88,0,0,1,2],[89,0,1,7,0],[90,0,0,4,1],[91,0,0,1,0],[92,0,0,2,2],[93,0,0,1,0],[94,0,0,3,0],[95,0,0,6,1],[96,0,0,3,0],[97,0,0,1,0],[101,0,0,1,0],[102,0,0,3,0],[104,0,0,4,0],[107,0,0,1,0],[119,0,0,1,0],[120,0,0,5,0],[121,0,0,1,0],[122,0,0,2,0],[123,0,0,3,0],[124,0,0,1,0],[125,0,0,1,0],[137,0,0,2,0],[138,0,0,2,0],[139,0,0,2,0],[140,0,0,1,0],[141,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0],[147,0,0,5,0],[148,0,0,2,0],[149,0,0,2,0],[150,0,0,1,0],[151,0,0,5,0],[152,0,0,1,1],[153,0,0,1,0],[154,0,0,1,0],[155,0,0,3,0],[156,0,0,1,0]],"search":[[0,0,0,1,0],[1,0,0,1,0],[5,0,0,1,0],[16,0,0,0,1],[20,0,0,1,0],[22,0,0,2,0],[24,0,0,2,0],[25,1,1,2,0],[26,1,1,3,3],[27,1,1,2,3],[28,1,1,3,0],[29,1,1,2,1],[30,1,1,2,0],[31,1,1,3,0],[33,0,0,0,1],[36,0,0,3,0],[38,0,0,1,0],[39,0,0,1,1],[41,0,0,2,0],[42,0,0,3,0],[70,0,0,0,4],[71,0,0,2,0],[72,0,0,3,0],[74,0,0,0,4],[75,0,0,2,0],[76,0,0,2,0],[78,0,0,3,3],[79,0,0,2,0],[80,0,0,2,0],[81,0,0,1,0],[82,0,0,1,0],[83,0,0,4,0],[84,0,0,1,0],[86,0,0,2,0],[90,0,0,1,0],[95,0,0,1,0],[101,0,0,1,2],[102,0,0,2,0],[104,0,0,2,0],[107,0,0,2,0],[108,0,0,1,3],[112,0,0,1,0],[120,0,0,1,0],[123,0,0,1,0],[138,0,0,1,0],[144,0,0,1,0],[148,0,0,1,0],[155,0,0,1,0],[164,1,1,2,0],[165,1,1,5,0],[166,1,1,2,3],[167,1,2,3,3],[168,1,1,2,1],[169,1,1,1,1],[170,1,1,1,3],[171,1,1,1,1],[172,1,1,1,0],[173,1,1,2,0]],"llms":[[0,0,0,1,0],[9,0,0,1,0],[11,0,0,0,2],[12,0,0,1,0],[16,0,0,0,2],[19,0,0,3,0],[20,0,0,1,3],[24,0,0,1,0],[33,0,0,0,2],[36,0,0,2,0],[38,0,0,1,0],[39,0,0,1,0],[42,0,0,2,0],[43,0,0,2,0],[44,0,0,2,0],[45,0,0,2,3],[46,0,0,4,0],[47,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,3,0],[52,0,0,4,0],[53,0,0,1,0],[54,0,0,3,1],[55,0,0,3,0],[61,0,0,1,0],[70,0,0,0,2],[71,0,0,4,0],[72,0,0,6,0],[73,0,0,1,0],[74,0,0,2,1],[75,0,0,1,0],[76,0,0,4,0],[78,0,0,2,3],[80,0,0,3,0],[82,0,0,1,0],[83,0,0,5,0],[84,0,0,2,0],[86,0,0,2,0],[89,0,1,4,0],[90,0,0,2,0],[100,0,0,1,0],[101,0,0,1,3],[104,0,0,4,0],[107,0,0,2,0],[108,0,0,0,3],[119,0,0,2,0],[120,0,0,8,0],[121,0,0,13,0],[122,0,0,7,0],[123,0,0,5,2],[124,0,0,3,0],[125,0,0,2,1],[137,0,0,3,0],[138,0,0,5,0],[139,0,0,3,0],[140,0,1,1,0],[141,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0],[144,0,0,3,0],[145,0,0,1,0],[146,0,0,1,0],[147,0,0,1,0],[148,0,0,3,0],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,1,0],[152,0,0,1,0],[153,0,0,1,0],[154,0,0,1,0],[155,0,0,3,0],[156,0,0,1,0],[162,0,0,1,0]],"full":[[0,0,0,1,0],[9,0,0,1,0],[19,0,0,1,0],[22,0,0,2,0],[23,0,0,1,0],[33,0,0,0,1],[36,0,0,1,0],[42,0,0,1,0],[43,0,0,1,0],[45,0,0,0,1],[46,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[55,0,0,1,0],[63,0,0,1,0],[70,0,0,0,1],[71,0,0,2,0],[72,0,0,3,0],[76,0,0,2,0],[78,0,0,1,1],[80,0,0,1,0],[83,0,0,1,0],[84,0,0,1,0],[86,0,0,1,0],[90,0,0,1,0],[92,0,0,1,0],[100,0,0,1,0],[101,0,0,0,1],[103,0,0,1,0],[104,0,0,2,0],[107,0,0,1,0],[108,0,0,0,1],[110,0,0,1,0],[118,0,0,1,0],[119,0,0,1,0],[120,0,0,6,0],[121,0,0,10,0],[122,0,0,5,0],[123,0,0,3,1],[124,0,0,2,0],[125,0,0,1,0],[132,0,0,1,0],[137,0,0,1,0],[138,0,0,2,0],[144,0,0,1,0],[148,0,0,1,0],[152,0,0,1,0],[154,0,0,1,0],[155,0,0,1,0],[162,0,0,1,0]],"txt":[[0,0,0,1,0],[9,0,0,1,0],[11,0,0,0,2],[16,0,0,0,2],[19,0,0,3,0],[20,0,0,1,1],[24,0,0,1,0],[26,0,0,0,1],[33,0,0,0,2],[36,0,0,3,0],[38,0,0,1,0],[39,0,0,1,0],[42,0,0,2,0],[43,0,0,3,0],[44,0,0,4,0],[45,0,0,3,5],[46,0,0,5,0],[47,0,0,2,2],[48,0,0,2,0],[49,0,0,2,0],[50,0,0,3,0],[51,0,0,5,0],[52,0,0,6,0],[53,0,0,2,0],[54,0,0,4,1],[55,0,0,6,0],[61,0,0,1,0],[70,0,0,0,2],[71,0,0,5,0],[72,0,0,6,0],[73,0,0,2,0],[74,0,0,2,1],[75,0,0,1,0],[76,0,0,4,0],[78,0,0,2,3],[80,0,0,3,0],[82,0,0,1,0],[83,0,0,5,0],[84,0,0,2,0],[86,0,0,2,0],[89,0,1,4,0],[90,0,0,2,0],[100,0,0,1,0],[101,0,0,1,4],[104,0,0,5,0],[107,0,0,2,0],[108,0,0,1,4],[119,0,0,2,0],[120,0,0,8,0],[121,0,0,13,0],[122,0,0,7,0],[123,0,0,5,3],[124,0,0,3,0],[125,0,0,2,0],[137,0,0,4,0],[138,0,0,6,0],[139,0,0,3,0],[140,0,1,1,1],[141,0,0,1,0],[142,0,0,2,1],[143,0,0,1,0],[144,0,0,4,0],[145,0,0,1,0],[146,0,0,1,0],[147,0,0,1,0],[148,0,0,3,0],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,1,0],[152,0,0,1,0],[153,0,0,1,0],[154,0,0,1,0],[155,0,0,3,0],[156,0,0,1,0],[162,0,0,1,0]],"why":[[1,0,1,0,0],[52,0,1,0,0],[89,0,1,0,0],[160,0,1,0,0]],"all":[[1,0,1,0,0],[42,0,0,1,0],[50,0,0,1,0],[52,0,0,1,0],[61,0,0,1,0],[72,0,0,1,0],[80,0,0,1,0],[122,0,0,1,0],[123,0,0,1,0],[137,0,0,2,0],[138,0,0,1,0]],"interactive":[[1,0,0,1,0],[16,0,0,1,0],[70,0,0,1,0],[75,0,0,1,0],[157,0,0,1,0]],"like":[[1,0,0,1,0],[4,0,0,1,0],[44,0,1,0,0],[89,0,0,1,0],[90,0,0,1,0],[104,0,0,1,0],[151,0,0,1,0]],"tabs":[[1,0,0,2,0],[2,0,0,1,0],[7,0,1,0,2],[70,0,0,1,0],[75,0,0,1,0],[80,0,0,1,0],[158,0,0,1,0],[167,0,0,0,1]],"callout":[[1,0,0,2,0],[2,0,0,1,0],[4,0,1,0,2],[14,0,0,2,0],[15,0,0,0,2],[17,0,0,1,0],[70,0,0,1,0],[75,0,0,1,0],[80,0,0,1,0],[158,0,0,1,0]],"render":[[1,0,0,2,0],[2,0,0,1,0],[3,0,0,1,0],[15,0,0,0,1],[16,0,0,1,0],[27,0,0,1,0],[41,0,0,2,0],[48,0,0,1,0],[56,1,1,1,0],[57,1,1,0,0],[58,1,1,0,0],[59,1,1,0,0],[60,1,2,0,0],[61,1,1,0,0],[64,0,0,1,0],[74,0,0,0,1],[76,0,0,1,0],[102,0,0,3,0],[115,0,0,1,0],[147,0,0,1,0],[154,0,0,1,0]],"fine":[[1,0,0,1,0],[46,0,0,1,0],[172,0,0,1,0]],"browser":[[1,0,0,1,0],[10,0,0,2,0],[42,0,0,1,0],[43,0,0,1,0],[74,0,0,0,1],[78,0,0,0,1]],"but":[[1,0,0,1,0],[4,0,0,2,0],[19,0,0,2,0],[20,0,0,1,0],[38,0,0,1,0],[86,0,0,1,0],[122,0,0,4,0],[138,0,0,1,0],[151,0,0,1,0],[153,0,0,1,0],[167,0,0,1,0]],"do":[[1,0,0,1,0],[4,0,0,1,0],[7,0,0,1,0],[20,0,0,1,0],[28,0,0,1,0],[29,0,0,1,1],[49,0,0,1,0],[51,0,0,1,0],[61,0,0,2,0],[109,0,0,1,0],[169,0,0,0,1]],"nothing":[[1,0,0,1,0],[68,0,0,1,0]],"reading":[[1,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0],[141,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,1,0],[152,0,0,1,0],[153,0,0,1,0],[154,0,0,1,0],[155,0,0,1,0],[156,0,0,1,0],[168,0,1,0,0]],"raw":[[1,0,0,1,0]],"text":[[1,0,0,1,0],[11,0,0,1,1],[16,0,0,1,0],[19,0,0,1,0],[26,0,0,1,0],[30,0,0,1,0],[46,0,0,1,0],[48,0,0,0,1],[49,0,0,3,0],[54,0,0,1,1],[74,0,0,1,1],[75,0,0,1,0],[78,0,0,0,1],[90,0,0,0,1],[101,0,0,0,1],[104,0,0,1,0],[105,0,0,2,0],[144,0,0,1,0],[146,0,0,0,1],[155,0,0,1,0],[158,0,0,1,0],[159,0,0,1,0],[165,0,0,1,0],[170,0,0,1,0],[172,0,0,1,0]],"flattening":[[1,0,0,1,0],[2,0,0,1,0],[9,0,0,1,0],[11,0,0,1,0],[12,0,0,1,0],[16,0,0,1,0],[17,0,0,1,0],[101,0,0,1,0],[118,0,0,1,0],[129,0,0,1,0]],"converts":[[1,0,0,1,0],[80,0,0,1,0],[101,0,0,1,0]],"portable":[[1,0,0,1,0],[75,0,0,1,0],[83,0,0,1,0],[86,0,0,1,0]],"equivalent":[[1,0,0,1,0],[7,0,0,1,0],[13,0,0,1,0],[75,0,0,1,0],[110,0,0,1,0],[157,0,0,1,0]],"conversion":[[1,0,0,1,0],[6,0,0,1,1],[12,0,0,1,0],[14,0,0,1,0],[15,0,0,0,1],[19,0,0,1,0],[26,0,0,1,0],[39,0,0,1,0],[78,0,0,1,0],[84,0,0,1,0],[86,0,0,1,0],[105,0,0,1,0],[113,0,0,1,0],[114,0,0,1,0],[115,0,0,1,0],[116,0,0,1,0],[117,0,0,2,0],[118,0,0,1,0],[140,0,0,0,1],[141,0,0,1,0],[162,0,0,2,0],[166,0,0,1,0]],"time":[[1,0,0,1,0],[14,0,0,1,0],[25,0,0,1,0],[45,0,0,1,0],[76,0,0,1,0],[87,0,0,1,0],[136,0,0,1,0],[145,0,0,1,0],[154,0,0,1,0],[162,0,0,2,0],[164,0,0,1,0],[166,0,1,0,0]],"becomes":[[1,0,0,4,0],[18,0,0,1,0],[19,0,0,2,0],[20,0,0,1,0],[21,0,0,1,0],[22,0,0,1,0],[23,0,0,1,0],[24,0,0,1,0],[70,0,0,3,0],[101,0,0,1,0],[173,0,0,1,0]],"blockquote":[[1,0,0,1,0],[4,0,0,1,0],[70,0,0,1,0],[75,0,0,1,0],[139,0,0,1,0],[158,0,0,1,0]],"stack":[[1,0,0,1,0],[57,0,0,1,0],[70,0,0,2,1],[75,0,0,1,0],[76,0,0,1,0],[84,0,0,1,0],[113,0,0,1,0],[118,0,0,2,0],[129,0,0,1,0],[157,0,0,2,0],[158,0,1,2,0],[159,0,1,1,0],[160,0,0,1,0],[161,0,0,2,0],[162,0,0,1,0],[163,0,0,1,0]],"bold":[[1,0,0,1,0],[6,0,0,1,0],[7,0,0,1,0],[70,0,0,1,0],[75,0,0,1,0],[158,0,0,1,0]],"headings":[[1,0,0,1,0],[7,0,0,1,0],[20,0,0,1,0],[21,0,0,1,0],[58,0,0,2,0],[61,0,0,2,0],[70,0,0,1,0],[72,0,0,1,0],[75,0,0,3,0],[138,0,0,1,0],[154,0,0,1,0],[165,0,0,1,0]],"one":[[1,0,0,1,0],[8,0,0,1,0],[19,0,0,1,0],[20,0,0,1,0],[24,0,0,3,0],[32,0,0,1,0],[42,0,0,3,0],[45,0,0,0,1],[46,0,1,1,0],[47,0,1,0,0],[50,0,0,1,0],[54,0,0,1,0],[69,0,0,2,0],[70,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,0,2,0],[75,0,0,1,0],[76,0,0,2,0],[77,0,0,1,0],[78,0,0,2,0],[79,0,0,1,0],[80,0,0,1,0],[81,0,0,1,0],[84,0,0,1,0],[86,0,0,2,0],[91,0,0,1,0],[100,0,1,0,1],[106,0,0,0,1],[107,0,0,1,0],[115,0,0,1,0],[116,0,0,1,0],[121,0,0,2,0],[138,0,0,1,0],[140,0,0,0,1],[141,0,0,0,1],[152,0,0,0,1],[160,0,0,2,0],[162,0,0,1,0],[170,0,0,2,0]],"per":[[1,0,0,1,0],[8,0,0,2,0],[24,0,0,1,0],[52,0,0,2,0],[65,0,0,1,0],[80,0,0,1,0],[87,0,0,2,0],[88,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[91,0,0,1,0],[92,0,0,1,0],[93,0,0,1,0],[94,0,0,1,0],[95,0,0,1,0],[96,0,0,1,0],[97,0,0,1,0],[107,0,0,1,0],[113,0,0,1,0],[123,0,0,1,0],[138,0,0,1,0],[158,0,0,1,0],[162,0,0,1,0]],"tab":[[1,0,0,1,0],[2,0,0,1,0],[7,0,0,0,6],[158,0,0,1,0]],"typetable":[[1,0,0,1,0],[2,0,0,1,0],[14,0,1,1,1],[70,0,0,1,0],[80,0,0,1,0],[158,0,0,1,0],[163,0,0,1,0]],"table":[[1,0,0,1,0],[8,0,0,1,0],[14,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[58,0,0,2,0],[59,0,0,1,0],[60,0,0,2,0],[61,0,0,1,0],[70,0,0,1,0],[158,0,0,2,0],[162,0,0,1,0]],"mermaid":[[1,0,0,2,0],[2,0,0,1,0],[16,0,1,1,2],[20,0,0,0,1],[33,0,0,0,1],[70,0,0,0,1],[74,0,0,0,1],[78,0,0,0,1],[80,0,0,1,0],[88,0,0,0,1],[117,0,0,1,0],[158,0,0,2,1]],"fenced":[[1,0,0,1,0],[9,0,0,1,0],[11,0,0,1,0],[16,0,0,1,0],[154,0,0,1,0],[158,0,0,3,0],[159,0,0,3,0]],"block":[[1,0,0,1,0],[9,0,0,1,0],[16,0,0,1,0],[18,0,0,1,0],[158,0,0,2,0],[159,0,0,2,0]],"diagram":[[1,0,0,1,0],[16,0,0,1,0],[81,0,0,1,0]],"source":[[1,0,0,1,0],[15,0,0,1,1],[16,0,0,1,0],[20,0,0,1,0],[21,0,0,1,2],[24,0,0,1,0],[25,0,0,1,0],[26,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[29,0,0,2,0],[30,0,0,1,0],[31,0,0,1,0],[32,0,0,3,0],[33,0,0,1,1],[34,0,1,2,0],[35,0,0,1,0],[36,0,0,1,0],[37,0,0,3,0],[38,0,0,2,0],[39,0,0,1,0],[40,0,0,1,0],[41,0,0,3,0],[42,0,0,2,0],[44,0,0,1,0],[62,0,0,1,0],[69,0,0,1,0],[70,0,0,1,0],[71,0,0,2,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,0,1,0],[75,0,0,1,0],[76,0,0,1,0],[77,0,0,1,0],[78,0,0,1,1],[79,0,0,1,0],[80,0,0,1,0],[81,0,0,1,0],[84,0,0,1,0],[96,0,0,1,0],[110,0,0,1,0],[117,0,0,1,0],[118,0,0,1,0],[126,0,0,1,0],[137,0,0,1,0],[151,0,0,1,0],[161,0,0,1,0],[164,0,0,2,0],[165,0,0,1,0],[166,0,0,1,0],[167,0,0,1,0],[168,0,0,1,0],[169,0,1,1,0],[170,0,0,1,0],[171,0,0,1,0],[172,0,0,1,0],[173,0,0,1,0]],"survives":[[1,0,0,1,0]],"other":[[1,0,0,1,0],[16,0,0,1,0],[46,0,0,1,0],[52,0,0,1,0],[65,0,1,0,0],[70,0,0,1,0],[74,0,0,1,0],[128,0,0,1,0],[136,0,0,1,0]],"tooling":[[1,0,0,1,0],[87,0,0,1,0]],"this":[[1,0,0,1,0],[2,0,0,1,0],[4,0,0,1,0],[6,0,0,1,1],[9,0,0,1,1],[10,0,0,1,0],[24,0,1,0,0],[26,0,0,1,0],[32,0,0,2,0],[38,0,0,1,0],[43,0,0,1,0],[45,0,0,1,0],[46,0,0,1,0],[56,0,0,1,0],[68,0,0,1,0],[69,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[87,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[95,0,0,2,0],[96,0,1,2,0],[102,0,0,1,0],[107,0,0,1,0],[115,0,0,1,0],[126,0,0,1,0],[139,0,0,1,0],[152,0,0,0,1],[154,0,0,1,0],[158,0,0,1,0],[161,0,0,1,0]],"means":[[1,0,0,1,0],[122,0,0,1,0],[144,0,0,1,0]],"same":[[1,0,0,1,0],[2,0,0,1,0],[6,0,0,1,0],[11,0,0,1,0],[20,0,0,1,0],[24,0,0,1,0],[37,0,0,1,0],[39,0,0,1,0],[43,0,0,1,0],[50,0,0,1,0],[58,0,1,0,0],[61,0,0,1,0],[62,0,0,1,0],[67,0,0,1,0],[71,0,0,1,0],[75,0,0,2,0],[78,0,0,1,0],[79,0,0,1,0],[80,0,0,1,0],[81,0,0,1,0],[95,0,0,1,0],[96,0,0,1,0],[101,0,0,1,0],[110,0,0,1,0],[120,0,0,1,0],[129,0,0,1,0],[136,0,0,1,0],[137,0,0,1,0],[139,0,0,1,0],[151,0,0,3,0],[153,0,0,2,0],[154,0,0,1,0],[168,0,0,1,0],[171,0,0,1,0]],"content":[[1,0,0,1,0],[4,0,0,1,1],[6,0,0,1,0],[7,0,0,3,0],[10,0,0,2,0],[12,0,0,4,0],[26,0,0,1,1],[27,0,0,0,3],[28,0,0,0,1],[29,0,0,0,1],[31,0,0,1,0],[32,0,0,2,0],[36,0,0,1,0],[42,0,0,1,0],[43,0,0,1,0],[44,0,0,1,0],[45,0,0,1,0],[49,0,0,2,0],[54,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[70,0,0,0,1],[72,0,0,3,0],[73,0,0,1,0],[74,0,0,1,0],[75,0,0,2,0],[76,0,0,1,0],[80,0,0,1,0],[83,0,0,2,0],[86,0,0,2,0],[89,0,0,1,0],[100,0,0,1,0],[101,0,0,1,1],[103,0,0,1,0],[107,0,0,1,0],[108,0,0,0,1],[110,0,0,1,0],[120,0,0,1,0],[129,0,1,0,0],[131,0,0,0,1],[136,0,0,2,0],[144,0,0,2,0],[146,0,0,0,3],[147,0,0,1,0],[161,0,0,1,0],[165,0,0,4,0],[166,0,0,1,1],[167,0,0,0,3],[168,0,0,0,2],[169,0,0,0,1],[170,0,0,0,1],[171,0,0,0,1]],"reaches":[[1,0,0,1,0]],"three":[[1,0,0,1,0],[18,0,0,1,0],[69,0,0,1,0],[70,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,1,1,0],[75,0,0,1,0],[76,0,0,1,0],[77,0,0,1,0],[168,0,0,1,0],[170,0,0,1,0]],"audiences":[[1,0,0,1,0],[69,0,0,1,0],[70,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,1,1,0],[75,0,0,1,0],[76,0,0,1,0],[77,0,0,1,0]],"humans":[[1,0,0,1,0],[6,0,0,1,0],[43,0,0,1,0],[74,0,0,1,1],[78,0,0,0,3],[80,0,0,1,0],[87,0,0,1,0]],"without":[[1,0,0,1,0],[10,0,0,1,0],[11,0,0,1,0],[19,0,0,1,0],[24,0,0,1,0],[25,0,0,1,0],[44,0,0,1,0],[48,0,0,1,0],[52,0,0,1,0],[87,0,0,1,0],[115,0,0,1,0],[117,0,0,1,0],[122,0,0,1,0],[142,0,0,1,0],[156,0,0,1,0],[164,0,0,1,0],[165,0,0,1,0]],"you":[[1,0,0,1,0],[2,0,0,1,0],[14,0,0,1,0],[17,0,0,1,0],[20,0,0,2,0],[22,0,0,1,0],[24,0,1,1,0],[26,0,0,1,0],[29,0,0,1,0],[32,0,0,1,0],[39,0,0,1,0],[43,0,0,1,0],[46,0,0,1,0],[50,0,0,1,0],[52,0,0,1,0],[66,0,0,1,0],[71,0,0,1,0],[74,0,0,1,0],[75,0,0,1,0],[78,0,0,1,0],[79,0,0,2,0],[80,0,1,0,0],[83,0,0,3,0],[86,0,0,3,0],[87,0,0,1,0],[92,0,0,1,0],[96,0,0,1,0],[101,0,0,2,0],[110,0,0,1,0],[112,0,0,1,0],[113,0,0,1,0],[115,0,0,1,0],[135,0,0,1,0],[137,0,0,1,0],[143,0,0,1,0],[149,0,0,2,0],[152,0,0,0,1],[154,0,0,1,0],[155,0,0,1,0],[160,0,0,2,0],[163,0,0,2,0],[165,0,0,1,0],[168,0,0,2,0],[169,0,0,1,0],[171,0,0,1,0]],"maintaining":[[1,0,0,1,0]],"two":[[1,0,0,1,0],[2,0,0,1,0],[25,0,0,1,0],[52,0,0,1,0],[69,0,0,1,0],[70,0,0,1,0],[71,0,1,2,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,0,2,0],[75,0,0,2,0],[76,0,0,1,0],[77,0,0,1,0],[103,0,0,1,0],[155,0,0,1,0],[163,0,0,1,0]],"copies":[[1,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0]],"recognizes":[[2,0,0,1,0]],"these":[[2,0,0,1,0],[42,0,0,1,0],[72,0,0,1,0],[101,0,0,1,0],[113,0,0,1,0],[137,0,0,1,0],[152,0,0,0,1],[155,0,0,1,0]],"names":[[2,0,0,4,0],[17,0,0,1,0],[57,0,0,2,0],[69,0,0,1,0],[81,0,0,1,0],[106,0,0,1,0],[160,0,0,1,0],[167,0,0,1,0],[173,0,0,1,0]],"if":[[2,0,0,2,0],[17,0,0,1,0],[19,0,0,1,0],[20,0,0,2,0],[24,0,0,1,0],[26,0,0,1,0],[37,0,0,1,0],[38,0,0,1,0],[39,0,0,2,0],[46,0,0,1,2],[48,0,0,2,1],[50,0,0,1,0],[52,0,0,1,0],[54,0,0,1,0],[57,0,0,1,0],[58,0,0,0,3],[76,0,0,1,0],[83,0,0,1,0],[91,0,0,1,0],[92,0,0,1,0],[93,0,0,0,1],[94,0,0,2,0],[96,0,0,1,0],[106,0,0,2,0],[118,0,0,1,0],[144,0,0,0,1],[146,0,0,1,0],[153,0,0,0,1],[154,0,0,1,0],[160,0,0,1,0],[163,0,0,1,0]],"just":[[2,0,0,1,0],[96,0,0,1,0],[101,0,0,1,0],[119,0,0,1,0],[165,0,0,1,0]],"works":[[2,0,0,1,0],[24,0,0,1,0],[29,0,0,1,0],[69,1,1,0,0],[70,1,1,0,0],[71,1,1,0,0],[72,1,1,1,0],[73,1,1,0,0],[74,1,1,0,0],[75,1,1,0,0],[76,1,1,0,0],[77,1,1,0,0],[81,0,0,1,0],[104,0,0,1,0],[105,0,0,1,0],[120,0,0,1,0],[137,0,0,1,0],[140,0,0,0,3],[143,0,0,1,0],[152,0,0,0,2],[167,0,0,1,0]],"accordion":[[2,0,0,1,0],[12,0,1,0,2],[158,0,0,1,0]],"accordionitem":[[2,0,0,1,0],[12,0,0,0,2]],"audience":[[2,0,0,1,0],[10,0,1,0,4],[135,0,0,0,1],[158,0,0,2,0]],"card":[[2,0,0,1,0],[5,0,0,0,1]],"cards":[[2,0,0,1,0],[5,0,1,0,2],[158,0,0,1,0]],"commandtabs":[[2,0,0,1,0],[8,0,1,0,3],[158,0,0,1,0]],"details":[[2,0,0,1,0],[12,0,0,2,1],[158,0,0,1,0]],"example":[[2,0,0,1,0],[15,0,1,1,2],[26,0,0,0,2],[36,0,0,0,1],[37,0,0,0,2],[39,0,0,0,4],[40,0,0,0,2],[46,0,0,1,0],[50,0,0,2,0],[59,0,0,0,1],[60,0,0,2,0],[101,0,0,1,1],[140,0,1,0,0],[152,0,1,0,0],[159,0,0,1,0],[160,0,0,1,0]],"extractedtypetable":[[2,0,0,1,0],[14,0,1,1,0],[158,0,0,1,0],[162,0,0,1,1]],"file":[[2,0,0,1,0],[11,0,0,0,2],[14,0,0,1,0],[15,0,0,1,0],[18,0,0,1,0],[35,0,0,1,0],[38,0,0,1,0],[39,0,0,1,0],[42,0,0,1,0],[59,0,0,1,0],[65,0,0,1,0],[67,0,0,1,0],[72,0,0,2,0],[74,0,0,1,0],[76,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[101,0,0,1,0],[104,0,0,2,0],[106,0,0,1,0],[113,0,0,1,0],[115,0,0,1,0],[116,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0],[131,0,0,0,1],[137,0,0,1,0],[138,0,0,2,0],[139,0,0,1,0],[147,0,0,1,0],[152,0,0,0,2],[162,0,0,4,0]],"filetree":[[2,0,0,1,0],[11,0,1,0,2],[158,0,0,1,0],[159,0,0,1,0]],"folder":[[2,0,0,1,0],[11,0,0,0,2],[38,0,0,1,0],[69,0,0,1,0],[98,0,0,1,0],[104,0,0,2,0],[106,0,0,1,0]],"prompt":[[2,0,0,1,0],[9,0,1,4,4],[29,0,0,1,0],[158,0,0,2,0],[159,0,0,2,0],[169,0,0,1,1]],"section":[[2,0,0,1,0],[3,0,0,1,0],[20,0,0,1,0],[24,0,0,1,0],[31,0,0,1,0],[75,0,0,1,0],[120,0,0,1,0],[121,0,0,3,0],[122,0,0,1,0],[124,0,0,1,0],[134,0,0,1,0],[154,0,0,1,0],[158,0,0,1,0],[165,0,0,1,0]],"selector":[[2,0,0,1,0]],"step":[[2,0,0,1,0],[6,0,0,1,4],[52,0,0,1,0],[61,0,0,1,0],[76,0,0,1,0],[92,0,0,1,0],[102,0,1,0,0],[147,0,0,2,0]],"steps":[[2,0,0,1,0],[6,0,1,0,2],[37,0,0,1,0],[64,0,0,0,1],[80,0,0,1,0],[158,0,0,1,0]],"topicswitcher":[[2,0,0,1,0],[13,0,1,0,1],[22,0,0,1,0],[158,0,0,1,0],[159,0,0,1,0]],"uses":[[2,0,0,1,0],[49,0,0,1,0],[57,0,0,1,0],[64,0,0,0,2],[75,0,0,1,0],[95,0,0,1,0],[120,0,0,1,0],[124,0,0,1,0],[154,0,0,1,0]],"different":[[2,0,0,1,0],[57,0,0,1,0],[63,0,0,1,0],[71,0,0,1,0],[74,0,0,2,0],[96,0,0,1,0],[150,0,0,1,0]],"have":[[2,0,0,1,0],[20,0,0,1,0],[38,0,0,1,0],[43,0,0,1,0],[46,0,0,1,0],[66,0,0,1,0],[96,0,0,1,0],[168,0,0,1,0]],"options":[[2,0,0,1,0],[103,0,0,0,1],[104,0,0,0,1],[110,0,0,0,1],[162,0,0,1,0],[170,0,0,1,0]],"rename":[[2,0,0,1,0]],"match":[[2,0,0,1,0],[61,0,0,1,0],[173,0,0,1,0]],"add":[[2,0,0,1,0],[8,0,0,3,1],[15,0,0,1,0],[17,0,0,1,0],[25,1,1,0,0],[26,1,1,0,0],[27,1,1,0,0],[28,1,2,1,0],[29,1,1,0,0],[30,1,1,0,0],[31,1,1,0,0],[41,0,0,2,0],[46,0,1,0,0],[47,0,1,0,0],[48,0,1,1,0],[55,0,0,2,0],[57,0,0,1,0],[79,0,0,1,0],[80,0,0,1,0],[92,0,0,1,0],[95,0,0,1,0],[99,0,0,3,0],[100,0,0,1,0],[102,0,0,1,0],[105,0,0,1,0],[110,0,0,1,0],[135,0,0,1,0],[147,0,0,1,0],[161,0,0,1,0],[163,0,0,1,0],[173,0,1,1,0]],"custom":[[2,0,0,1,0],[38,0,0,1,0],[39,0,1,1,0],[40,0,1,0,0],[57,0,0,1,0],[92,0,0,1,0],[99,0,0,1,0],[109,0,1,1,0],[110,0,0,1,0],[112,0,0,2,0],[113,0,0,1,0],[130,0,0,3,0],[135,0,1,1,0],[154,0,0,1,0],[160,0,0,2,0],[163,0,0,1,0]],"plugin":[[2,0,0,1,0],[17,0,0,2,0],[39,0,0,1,0],[57,0,0,1,0],[70,0,0,0,1],[83,0,0,1,0],[84,0,0,1,0],[92,0,0,1,0],[99,0,0,1,0],[112,0,0,1,0],[113,0,0,2,0],[114,0,0,1,0],[118,0,0,1,0],[157,0,0,1,0],[158,0,0,1,0],[159,0,0,1,0],[160,0,0,2,0],[161,0,0,1,0],[162,0,0,4,0],[163,0,1,2,0]],"that":[[2,0,0,2,0],[20,0,0,3,0],[21,0,0,1,0],[22,0,0,1,0],[23,0,0,1,0],[30,0,0,1,0],[32,0,0,3,0],[33,0,0,1,0],[34,0,0,2,0],[35,0,0,2,0],[36,0,0,2,0],[37,0,0,1,0],[38,0,0,1,0],[39,0,0,1,0],[40,0,0,1,0],[41,0,0,1,0],[42,0,0,1,0],[49,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[62,0,0,1,0],[63,0,0,2,0],[65,0,0,1,0],[71,0,0,2,0],[74,0,0,3,0],[75,0,0,3,0],[76,0,0,1,0],[78,0,0,1,0],[79,0,0,1,0],[80,0,0,1,0],[83,0,0,3,0],[86,0,0,1,0],[87,0,0,1,0],[89,0,0,2,0],[90,0,0,1,0],[96,0,0,2,0],[101,0,0,2,0],[106,0,0,1,1],[107,0,0,1,0],[119,0,0,1,0],[120,0,0,1,0],[121,0,0,2,0],[122,0,0,3,0],[124,0,0,1,0],[129,0,0,1,0],[131,0,0,1,0],[135,0,0,1,0],[137,0,0,1,0],[138,0,0,3,0],[139,0,0,1,0],[140,0,0,0,2],[141,0,0,0,1],[142,0,0,1,0],[151,0,0,2,0],[152,0,0,0,1],[154,0,0,1,0],[157,0,0,1,0],[158,0,0,1,0],[159,0,0,1,0],[160,0,0,1,0],[161,0,0,1,0],[162,0,0,1,0],[163,0,0,1,0],[164,0,0,1,0],[170,0,0,1,0],[173,0,0,1,0]],"maps":[[2,0,0,1,0],[57,0,0,1,0]],"back":[[2,0,0,1,0],[57,0,0,1,0],[106,0,0,1,0],[115,0,0,1,0],[139,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0]],"above":[[2,0,0,1,0],[14,0,0,1,1],[49,0,0,1,0],[83,0,0,1,0]],"registration":[[2,0,0,1,0]],"heading":[[2,0,0,1,0],[14,0,0,1,1],[19,0,0,1,0],[27,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[58,0,1,1,0],[59,0,0,1,0],[60,0,0,1,0],[61,0,0,3,0],[75,0,0,1,0],[154,0,0,1,0],[158,0,0,1,0],[165,0,0,1,0],[167,0,0,1,0],[168,0,0,1,0]],"ids":[[2,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,1,0],[61,0,0,2,0]],"page":[[2,0,0,1,0],[10,0,0,1,0],[18,0,0,2,0],[19,0,0,1,0],[20,0,0,2,3],[21,0,0,1,0],[22,0,0,3,0],[23,0,0,1,0],[24,0,0,1,0],[27,0,0,1,0],[31,0,0,1,0],[42,0,0,3,0],[44,0,0,4,0],[45,0,0,1,0],[48,0,0,4,4],[50,0,0,1,0],[51,0,0,1,0],[55,0,0,2,0],[56,0,0,1,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,1,0],[61,0,0,1,0],[63,0,0,1,0],[69,0,0,1,0],[70,0,0,0,1],[72,0,0,3,0],[73,0,0,1,0],[75,0,0,2,0],[76,0,0,1,0],[100,0,1,2,0],[102,0,0,2,0],[106,0,0,1,0],[107,0,0,1,0],[117,0,0,1,0],[120,0,0,4,0],[121,0,0,2,0],[122,0,0,1,0],[123,0,0,2,0],[126,0,0,1,0],[129,0,0,1,0],[130,0,0,1,0],[138,0,0,2,0],[139,0,0,1,0],[144,0,0,1,0],[146,0,0,2,0],[154,0,0,3,0],[165,0,0,2,0],[168,0,0,1,0],[173,0,0,1,0]],"sidebars":[[2,0,0,1,0],[154,0,0,1,0]],"concerns":[[2,0,0,1,0]],"see":[[2,0,0,1,0],[4,0,0,1,0],[19,0,0,1,0],[23,0,0,1,0],[38,0,0,1,0],[43,0,0,1,0],[50,0,0,1,0],[63,0,0,1,0],[70,0,0,2,0],[74,0,0,1,0],[75,0,0,1,0],[81,0,0,1,0],[85,0,0,1,0],[96,0,0,1,0],[100,0,0,1,0],[101,0,0,1,0],[107,0,0,1,0],[109,0,0,1,0],[110,0,0,1,0],[118,0,0,1,0],[129,0,0,1,0],[136,0,0,1,0],[138,0,0,1,0],[147,0,0,1,0],[152,0,0,1,0],[154,0,0,1,0]],"toc":[[2,0,0,1,0],[41,0,0,1,0],[56,1,1,0,0],[57,1,1,0,0],[58,1,1,0,0],[59,1,2,1,1],[60,1,1,1,0],[61,1,1,2,0],[102,0,0,2,0],[154,0,0,3,1]],"setup":[[2,0,0,1,0],[64,0,0,0,1],[79,0,0,1,0],[101,0,0,1,0],[102,0,1,0,0],[156,0,0,1,0]],"reference":[[3,0,1,0,0],[4,0,1,0,0],[5,0,1,0,1],[6,0,1,0,0],[7,0,1,0,0],[8,0,1,0,0],[9,0,1,0,0],[10,0,1,0,0],[11,0,1,0,0],[12,0,1,1,1],[13,0,1,0,0],[14,0,1,0,0],[15,0,1,0,0],[16,0,1,0,0],[20,0,0,0,1],[23,0,0,1,0],[31,0,0,1,0],[38,0,0,0,2],[50,0,0,1,0],[63,0,0,1,0],[77,0,0,1,0],[79,0,0,1,0],[90,0,0,0,1],[97,0,0,1,0],[101,0,0,1,0],[106,0,0,0,2],[110,0,0,1,0],[120,0,0,1,0],[126,0,0,1,0],[140,0,0,0,2],[152,0,0,0,2]],"below":[[3,0,0,1,0],[130,0,0,1,0],[152,0,0,0,1]],"shows":[[3,0,0,1,0],[11,0,0,1,0],[101,0,0,1,0]],"authored":[[3,0,0,1,0],[16,0,0,1,0],[18,0,0,1,0],[19,0,0,1,0],[20,0,0,1,0],[21,0,0,1,0],[22,0,0,1,0],[23,0,0,1,0],[24,0,0,1,0]],"live":[[3,0,0,1,0],[7,0,0,1,0],[32,0,0,1,0],[33,0,0,1,0],[34,0,0,1,0],[35,0,0,1,0],[36,0,0,1,0],[37,0,0,2,0],[38,0,0,1,0],[39,0,0,1,0],[40,0,0,1,0],[41,0,0,1,0],[42,0,0,1,0],[50,0,0,1,0],[52,0,0,1,0],[125,0,0,1,0],[145,0,0,1,0],[147,0,0,1,0]],"wraps":[[4,0,0,1,0]],"supporting":[[4,0,0,2,0],[12,0,0,1,1]],"context":[[4,0,0,2,0],[26,0,0,1,0],[29,0,0,1,0],[35,0,0,1,0],[67,0,0,1,0],[84,0,0,1,0],[104,0,0,1,0],[119,0,0,1,0],[120,0,0,2,0],[122,0,0,3,0],[123,0,0,1,0],[138,0,0,1,0],[146,0,0,0,1],[168,0,0,1,0],[169,0,0,2,1]],"warnings":[[4,0,0,2,0],[35,0,0,0,1],[37,0,0,0,1],[64,0,0,2,1],[66,0,0,0,1],[110,0,0,3,0],[131,0,0,0,1],[135,0,0,1,0]],"tips":[[4,0,0,2,0]],"variants":[[4,0,0,2,0],[120,0,0,1,0],[124,0,0,1,0],[149,0,0,1,0]],"change":[[4,0,0,2,0]],"identically":[[4,0,0,2,0],[86,0,0,1,0]],"info":[[4,0,0,1,1],[14,0,0,1,1]],"heads":[[4,0,0,1,1]],"up":[[4,0,0,1,1],[43,0,0,1,0],[44,0,0,1,0],[45,0,0,1,0],[46,0,0,1,0],[47,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,2,0],[61,0,0,1,0],[62,0,0,1,0],[101,0,0,1,0]],"callouts":[[4,0,0,1,0]],"wrap":[[4,0,0,1,0]],"flattens":[[4,0,0,1,0],[5,0,0,1,0],[6,0,0,1,0],[7,0,0,1,0],[8,0,0,1,0],[57,0,0,1,0],[75,0,0,2,0],[113,0,0,1,0],[157,0,0,1,0],[158,0,0,1,0],[159,0,0,1,0],[160,0,0,1,0],[161,0,0,1,0],[162,0,0,1,0],[163,0,0,1,0]],"them":[[4,0,0,1,0],[12,0,0,1,1],[22,0,0,1,0],[25,0,0,1,0],[27,0,0,1,0],[46,0,0,2,0],[50,0,0,1,0],[57,0,0,1,0],[68,0,0,1,0],[91,0,0,1,0],[108,0,0,1,0],[118,0,0,1,0],[132,0,0,1,0],[152,0,0,0,1],[166,0,0,1,0]],"blockquotes":[[4,0,0,1,0]],"still":[[4,0,0,1,0],[12,0,0,1,0],[19,0,0,1,0],[23,0,0,1,0],[32,0,0,1,0],[58,0,0,1,0],[80,0,0,1,0],[83,0,0,1,0],[106,0,0,1,0],[123,0,0,1,0],[129,0,0,1,0],[138,0,0,1,0],[167,0,0,1,0]],"warning":[[4,0,0,2,0],[64,0,0,1,0],[110,0,0,1,0]],"don":[[4,0,0,1,0],[22,0,0,1,0],[63,0,0,1,0],[74,0,0,1,0],[78,0,0,1,0],[90,0,0,1,0],[96,0,0,2,0],[132,0,0,1,0],[149,0,0,1,0],[160,0,0,1,0],[163,0,0,1,0],[170,0,0,1,0]],"success":[[4,0,0,1,0],[15,0,0,0,1],[105,0,0,1,0]],"error":[[4,0,0,1,0],[23,0,0,2,0],[35,0,0,0,1],[37,0,0,0,2],[46,0,0,0,7],[63,0,0,1,0],[64,0,0,1,1],[65,0,0,0,1],[67,0,0,0,1],[68,0,0,1,0],[93,0,0,0,1],[105,0,0,4,0],[108,0,0,1,0],[110,0,0,2,0],[128,0,0,6,0],[129,0,0,3,0],[130,0,0,1,1],[131,0,0,0,2],[135,0,0,1,0],[150,0,0,1,0],[153,0,0,0,1],[173,0,0,1,0]],"tip":[[4,0,0,1,0],[50,0,0,1,0],[101,0,0,1,0]],"tsx":[[4,0,0,0,1],[5,0,0,0,1],[6,0,0,0,1],[7,0,0,0,1],[8,0,0,0,1],[9,0,0,0,1],[10,0,0,0,1],[11,0,0,0,1],[12,0,0,0,1],[13,0,0,0,1],[14,0,0,0,1],[15,0,0,0,3],[16,0,0,0,1],[57,0,0,0,1],[58,0,0,0,1],[60,0,0,1,0]],"title":[[4,0,0,0,1],[5,0,0,0,1],[6,0,0,0,2],[9,0,0,0,1],[12,0,0,0,1],[14,0,0,1,1],[15,0,0,0,2],[19,0,0,1,1],[21,0,0,0,3],[22,0,0,1,0],[38,0,0,0,3],[48,0,0,1,0],[70,0,0,0,1],[100,0,0,1,1],[106,0,0,1,2],[108,0,0,0,1],[117,0,0,1,0],[132,0,0,2,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,0,1],[139,0,0,1,0],[146,0,0,0,2]],"variant":[[4,0,0,0,1],[7,0,0,1,0],[14,0,0,1,1],[15,0,0,0,1],[120,0,0,3,0],[122,0,0,2,0]],"body":[[4,0,0,0,1],[9,0,0,1,0],[14,0,0,1,1],[19,0,0,1,0],[49,0,0,1,0],[54,0,0,1,0],[70,0,0,0,1],[72,0,0,1,0],[73,0,0,1,0],[75,0,0,1,0],[144,0,0,1,0],[147,0,0,1,0],[159,0,0,1,0],[165,0,0,1,0]],"goes":[[4,0,0,0,1],[49,0,0,1,0],[50,0,0,1,0]],"here":[[4,0,0,0,1],[81,0,0,1,0]],"grid":[[5,0,0,1,0]],"short":[[5,0,0,1,0],[22,0,0,1,0],[83,0,1,0,0]],"linked":[[5,0,0,1,0]],"entry":[[5,0,0,1,0],[19,0,0,1,0],[29,0,0,1,0],[48,0,0,1,2],[53,0,0,1,0],[54,0,0,1,0],[58,0,0,1,0],[99,0,0,1,0],[112,0,1,1,0],[113,0,0,1,0],[136,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[139,0,0,1,0],[150,0,0,1,0],[162,0,0,1,0],[164,0,0,1,0],[170,0,1,0,0]],"points":[[5,0,0,1,0],[23,0,0,1,0],[89,0,0,1,0],[99,0,0,1,0],[106,0,0,1,0],[112,0,1,1,0],[129,0,0,1,0],[138,0,0,1,0],[139,0,0,2,0],[140,0,0,0,1],[145,0,0,0,1],[164,0,0,1,0],[170,0,1,0,0]],"bullet":[[5,0,0,1,0]],"list":[[5,0,0,1,0],[6,0,0,2,1],[63,0,0,1,0],[91,0,0,1,0],[94,0,0,1,0],[110,0,0,1,0],[152,0,0,0,1],[158,0,0,3,0],[159,0,0,1,0]],"links":[[5,0,0,1,0],[23,0,0,1,0],[35,0,0,1,0],[42,0,0,1,0],[44,0,0,2,0],[46,0,0,1,0],[48,0,0,1,0],[52,0,0,1,0],[54,0,0,2,0],[55,0,0,1,0],[58,0,0,1,0],[61,0,0,1,0],[63,0,0,2,0],[72,0,0,2,0],[74,0,0,1,0],[76,0,0,1,0],[79,0,0,1,0],[80,0,0,1,0],[84,0,0,1,0],[89,0,0,1,0],[110,0,0,1,0],[120,0,0,3,0],[121,0,0,7,0],[122,0,0,3,0],[123,0,0,1,0],[129,0,0,2,0],[137,0,0,1,0],[138,0,0,4,0],[146,0,0,1,1],[151,0,0,1,0],[152,0,0,1,0],[168,0,0,1,0],[170,0,0,1,0]],"convert":[[5,0,0,1,2],[19,0,0,1,0],[39,0,0,0,1],[75,0,0,1,0],[76,0,0,1,0],[92,0,0,0,1],[104,0,0,1,0],[112,0,0,1,0],[113,1,1,2,1],[114,1,1,2,0],[115,1,1,2,0],[116,1,1,2,0],[117,1,1,1,0],[118,1,1,1,0],[141,0,0,0,1]],"description":[[5,0,0,0,1],[9,0,0,0,1],[14,0,0,1,2],[15,0,0,0,1],[19,0,0,1,1],[22,0,0,1,0],[48,0,0,1,0],[70,0,0,0,1],[71,0,0,1,0],[72,0,0,1,0],[75,0,0,1,0],[100,0,0,0,1],[104,0,0,2,0],[110,0,0,1,0],[114,0,0,1,0],[117,0,0,1,0],[130,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0],[139,0,0,2,0],[146,0,0,0,2],[151,0,0,1,0]],"turn":[[5,0,0,0,1],[143,0,0,1,0]],"friendly":[[5,0,0,0,1],[38,0,0,0,1],[74,0,0,1,0]],"href":[[5,0,0,0,1],[13,0,0,0,2],[48,0,0,0,2],[146,0,0,0,2]],"numbered":[[6,0,0,1,0]],"walkthroughs":[[6,0,0,1,0]],"ordered":[[6,0,0,1,0],[158,0,0,1,0]],"titles":[[6,0,0,1,0],[38,0,0,1,0],[45,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[75,0,0,1,0],[106,0,0,1,0],[109,0,0,0,1],[139,0,0,1,0],[154,0,0,1,0],[165,0,0,1,0]],"author":[[6,0,0,1,1],[22,0,0,1,0],[80,0,0,1,0],[100,0,1,0,0],[132,0,0,1,0]],"authoring":[[6,0,0,1,0],[20,0,0,0,2],[120,0,0,1,0]],"affordances":[[6,0,0,1,0]],"run":[[6,0,0,1,1],[8,0,0,2,1],[26,0,0,1,0],[27,0,0,0,1],[29,0,0,0,1],[32,0,0,1,0],[35,0,0,1,0],[37,0,0,1,3],[45,0,0,1,0],[54,0,0,2,0],[62,0,0,1,0],[63,0,0,1,0],[64,0,0,1,2],[65,0,0,1,0],[66,0,0,1,0],[67,0,1,2,0],[68,0,0,1,0],[76,0,0,1,0],[78,0,0,0,6],[80,0,0,1,0],[86,0,0,1,0],[87,0,0,1,0],[92,0,0,3,0],[94,0,0,1,1],[98,0,0,1,0],[99,0,0,1,0],[100,0,0,1,0],[101,0,0,1,0],[102,0,0,1,0],[103,0,0,1,0],[119,0,0,1,0],[125,0,1,0,2],[126,0,0,1,0],[136,0,0,2,0],[140,0,0,0,1],[141,0,0,1,0],[146,0,0,0,2],[152,0,0,0,1],[155,0,0,1,0],[160,0,0,2,0],[169,0,0,0,1]],"generate":[[6,0,0,1,1],[20,0,0,1,0],[25,0,0,1,0],[26,0,1,2,1],[27,0,0,1,0],[28,0,0,1,0],[29,0,0,1,0],[30,0,0,1,0],[31,0,0,1,0],[33,0,0,0,3],[35,0,1,0,0],[36,0,1,0,1],[37,0,0,0,4],[38,0,0,1,0],[45,0,1,0,1],[55,0,0,1,0],[59,0,1,0,0],[62,0,0,1,0],[67,0,1,2,1],[71,0,0,3,0],[76,0,0,2,0],[78,0,0,0,2],[80,0,0,1,0],[87,0,0,1,0],[88,0,0,0,1],[90,0,1,0,1],[91,0,0,0,1],[92,0,0,1,2],[94,0,0,0,1],[101,0,1,0,1],[103,0,0,2,0],[104,0,1,1,1],[105,0,1,1,0],[106,0,1,2,0],[107,0,1,1,1],[108,0,1,1,0],[109,0,1,1,0],[110,0,0,1,0],[111,0,0,1,1],[112,0,0,1,0],[113,0,0,1,0],[136,0,0,1,0],[137,0,0,3,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0],[141,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,1,0],[152,0,0,1,0],[153,0,0,1,0],[154,0,0,1,0],[155,0,0,1,0],[156,0,0,1,0],[166,0,0,1,0]],"writes":[[6,0,0,1,1],[26,0,0,2,0],[36,0,0,1,0],[45,0,0,1,0],[71,0,0,2,0],[80,0,0,1,0],[90,0,0,1,0],[101,0,0,1,0],[104,0,0,1,0],[107,0,0,1,0],[139,0,0,1,0],[142,0,0,1,0],[151,0,0,1,0],[166,0,0,1,0],[171,0,0,1,0]],"flattened":[[6,0,0,1,1],[12,0,0,1,0],[70,0,0,2,0],[72,0,0,1,0],[121,0,0,1,0],[138,0,0,1,0],[157,0,0,1,0],[158,0,0,1,0]],"public":[[6,0,0,1,0],[7,0,0,1,0],[9,0,0,0,2],[11,0,0,0,2],[26,0,0,0,4],[27,0,0,0,2],[31,0,0,2,0],[33,0,0,0,3],[34,0,0,1,0],[36,0,0,7,1],[37,0,0,0,2],[39,0,0,0,5],[40,0,0,0,1],[42,0,0,6,0],[45,0,0,2,2],[46,0,0,1,2],[48,0,0,0,1],[49,0,0,1,0],[53,0,0,1,0],[67,0,0,0,1],[71,0,0,2,0],[74,0,0,0,1],[76,0,0,1,0],[78,0,0,0,1],[86,0,0,1,0],[96,0,0,1,0],[101,0,0,2,2],[104,0,0,1,0],[108,0,0,0,10],[109,0,0,0,1],[114,0,0,0,1],[116,0,0,0,1],[122,0,0,1,0],[123,0,0,1,1],[124,0,0,1,0],[131,0,0,1,0],[141,0,0,0,4],[142,0,0,0,4],[144,0,0,1,1],[146,0,0,0,1],[149,0,0,1,0],[166,0,0,0,1],[167,0,0,0,2]],"serve":[[6,0,0,1,0],[7,0,0,1,0],[41,0,0,1,0],[46,0,0,1,0],[50,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[80,0,0,1,0],[102,0,0,1,0]],"both":[[6,0,0,1,0],[46,0,0,1,0],[50,0,0,1,0],[54,0,0,1,0],[67,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[74,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[96,0,0,1,0],[104,0,0,1,0],[105,0,0,1,0],[119,0,0,1,0],[122,0,0,1,0],[139,0,0,1,0],[146,0,0,1,0]],"formats":[[6,0,0,1,0],[75,0,0,1,0],[120,0,0,1,0]],"html":[[6,0,0,1,0],[9,0,0,0,2],[32,0,0,1,0],[33,0,0,0,1],[41,0,0,1,0],[42,0,0,1,0],[43,0,0,1,0],[44,0,0,3,0],[46,0,0,1,0],[48,0,0,2,1],[49,0,0,1,0],[50,0,0,2,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,2,0],[56,0,0,1,0],[74,0,0,1,1],[80,0,0,1,0],[102,0,0,1,0],[144,0,0,1,0],[149,0,0,1,0]],"md":[[6,0,0,1,0],[7,0,0,2,0],[9,0,0,2,0],[11,0,0,0,2],[17,0,0,1,0],[20,0,0,1,1],[24,0,0,1,0],[33,0,0,0,1],[36,0,0,2,0],[38,0,0,1,0],[42,0,0,1,0],[44,0,0,2,0],[45,0,0,0,3],[46,0,0,1,0],[47,0,0,0,2],[48,0,0,0,1],[49,0,0,2,0],[50,0,0,2,0],[51,0,0,1,0],[54,0,0,1,2],[55,0,0,3,0],[70,0,0,0,8],[71,0,0,4,0],[72,0,0,6,0],[73,0,0,2,0],[74,0,0,4,1],[75,0,0,2,0],[76,0,0,3,0],[78,0,0,2,4],[79,0,0,1,0],[80,0,0,5,0],[81,0,0,1,0],[83,0,0,1,0],[86,0,0,1,0],[87,0,0,3,0],[88,0,0,2,4],[89,0,1,6,0],[90,0,0,6,4],[91,0,0,2,0],[92,0,0,3,3],[93,0,0,2,0],[94,0,0,6,0],[95,0,0,5,2],[96,0,0,2,0],[97,0,0,2,0],[101,0,0,1,2],[102,0,0,1,0],[104,0,0,5,0],[107,0,0,2,0],[108,0,0,1,1],[114,0,0,1,0],[116,0,0,0,1],[117,0,0,1,0],[119,0,0,1,0],[120,0,0,6,0],[121,0,0,1,0],[122,0,0,2,0],[123,0,0,2,1],[124,0,0,1,0],[125,0,0,2,0],[130,0,0,1,0],[137,0,0,4,0],[138,0,0,3,0],[139,0,0,2,0],[140,0,0,1,5],[141,0,0,1,0],[142,0,0,2,1],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,1,1],[147,0,0,4,0],[148,0,0,1,0],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,7,0],[152,0,0,2,4],[153,0,0,1,0],[154,0,0,1,0],[155,0,0,2,0],[156,0,0,1,0],[162,0,0,1,0],[163,0,0,1,0]],"url":[[6,0,0,1,0],[22,0,0,1,0],[23,0,0,1,0],[26,0,0,0,1],[36,0,0,0,1],[37,0,0,0,2],[44,0,0,1,0],[45,0,0,0,1],[46,0,0,1,5],[47,0,0,0,3],[48,0,0,1,0],[49,0,0,2,0],[54,0,0,4,0],[55,0,0,1,0],[74,0,0,1,0],[89,0,0,1,0],[101,0,0,0,1],[104,0,0,3,0],[107,0,0,1,0],[112,0,0,1,0],[129,0,0,1,0],[132,0,0,1,0],[136,0,0,1,0],[139,0,0,1,0],[144,0,0,1,3],[145,0,0,0,4],[147,0,0,1,0],[151,0,0,2,0],[154,0,0,1,0],[156,0,1,2,3]],"negotiated":[[6,0,0,1,0]],"accept":[[6,0,0,1,0],[7,0,0,1,0],[30,0,0,1,0],[46,0,0,1,0],[49,0,0,3,0],[53,0,0,1,0],[54,0,0,0,1],[55,0,0,1,0],[74,0,0,1,1],[75,0,0,1,0],[78,0,0,0,1],[83,0,0,1,0],[144,0,0,1,0],[147,0,0,2,0],[148,0,0,1,0],[149,0,0,2,0]],"header":[[6,0,0,1,0],[7,0,0,1,0],[10,0,0,0,1],[53,0,0,2,0],[147,0,0,1,0],[148,0,0,1,0],[149,0,0,1,0]],"group":[[7,0,0,1,0],[18,0,0,1,0],[19,0,0,4,1],[20,0,0,8,4],[21,0,0,2,0],[22,0,0,1,0],[23,0,0,1,0],[24,0,0,2,0],[38,0,0,1,0],[39,0,0,1,0],[45,0,0,1,0],[70,0,0,0,3],[73,0,0,1,0],[75,0,0,3,0],[76,0,0,2,0],[80,0,0,1,0],[93,0,0,0,1],[100,0,0,1,1],[105,0,0,1,0],[106,0,0,6,0],[107,0,0,1,0],[120,0,0,4,0],[121,0,0,10,0],[122,0,0,1,0],[123,0,0,1,0],[132,0,0,1,0],[138,0,0,3,0],[142,0,0,1,0],[151,0,0,2,0],[153,0,0,2,1],[154,0,0,1,0],[155,0,1,1,0]],"followed":[[7,0,0,1,0],[122,0,0,1,0]],"need":[[7,0,0,1,0],[20,0,0,1,0],[39,0,0,1,0],[58,0,0,1,0],[69,0,0,1,0],[78,0,0,1,0],[79,0,0,1,0],[83,0,0,1,0],[92,0,0,1,0],[110,0,0,1,0],[112,0,0,1,0],[113,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[142,0,0,1,0],[151,0,0,1,0],[152,0,0,0,1],[154,0,0,1,0],[160,0,0,1,0],[168,0,0,1,0]],"jsx":[[7,0,0,1,0],[11,0,0,1,0],[70,0,0,1,0],[158,0,0,1,0],[162,0,0,1,0]],"aware":[[7,0,0,1,0],[8,0,0,1,0],[75,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0],[165,0,0,1,0]],"renderer":[[7,0,0,1,0],[154,0,0,1,0]],"read":[[7,0,0,1,0],[10,0,0,0,1],[11,0,0,1,0],[13,0,0,1,0],[17,0,0,1,0],[30,0,0,1,0],[34,0,0,1,0],[39,0,0,1,0],[43,0,0,1,0],[49,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[74,0,0,1,0],[78,0,0,0,1],[81,0,0,2,0],[87,0,0,1,0],[89,0,0,1,0],[95,0,0,0,1],[96,0,0,1,0],[119,0,0,1,0],[120,0,0,1,0],[139,0,0,1,0],[141,0,0,1,0],[152,0,0,0,1],[155,0,0,1,0],[160,0,0,1,0],[163,0,0,1,0],[165,0,0,1,0],[171,0,0,1,0],[172,0,0,1,0]],"every":[[7,0,0,1,0],[12,0,0,1,0],[18,0,0,1,0],[53,0,0,1,0],[55,0,0,2,0],[59,0,0,1,0],[69,0,0,2,0],[70,0,0,1,0],[72,0,0,1,0],[76,0,0,2,0],[81,0,0,1,0],[86,0,0,1,0],[87,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[100,0,0,1,0],[107,0,0,1,0],[112,0,0,1,0],[120,0,0,2,0],[121,0,0,1,0],[128,0,0,1,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,0,1],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,2,0],[152,0,0,0,1],[154,0,0,1,0],[166,0,0,1,0]],"tanstack":[[7,0,0,1,2],[49,0,0,1,0],[50,0,0,2,0],[71,0,0,1,0],[78,0,0,1,0],[83,0,0,1,0],[101,0,0,1,0],[146,0,0,1,1],[170,0,0,1,2],[171,0,0,1,0]],"start":[[7,0,0,1,2],[42,0,0,1,0],[44,0,0,1,0],[49,0,0,1,0],[50,0,0,2,0],[54,0,0,1,0],[71,0,0,1,0],[78,0,0,1,0],[83,0,0,1,0],[99,0,0,1,0],[101,0,0,2,0],[120,0,0,1,0],[173,0,0,2,0]],"vite":[[7,0,0,2,2],[37,0,0,0,1],[71,0,0,1,0],[75,0,0,1,0]],"middleware":[[7,0,0,4,0],[46,0,1,0,0],[47,0,1,0,0],[49,0,0,2,0],[50,0,0,10,0],[51,0,0,2,0],[52,0,0,1,0],[75,0,0,2,0]],"dev":[[7,0,0,1,0],[45,0,0,0,1],[48,0,0,0,2],[50,0,0,1,0],[54,0,0,1,0],[90,0,0,1,0],[109,0,0,0,1],[141,0,0,0,3],[142,0,0,0,2],[146,0,0,0,2],[150,0,0,1,0],[153,0,0,0,1],[154,0,0,0,2],[156,0,0,0,1],[166,0,0,0,1]],"preview":[[7,0,0,1,0],[15,0,0,1,1],[50,0,0,1,0],[52,0,0,1,0],[54,0,0,1,0],[145,0,0,1,0]],"nitro":[[7,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0]],"prod":[[7,0,0,1,0],[50,0,0,1,0],[52,0,0,1,0],[145,0,0,1,0]],"negotiate":[[7,0,0,1,0]],"next":[[7,0,0,1,2],[29,0,0,1,0],[32,0,0,1,0],[50,0,0,1,0],[71,0,0,1,0],[75,0,0,1,0],[77,0,1,0,0],[78,0,0,1,0],[81,0,1,0,0],[83,0,0,1,0],[86,0,0,1,0],[95,0,0,2,0],[97,0,1,0,0],[102,0,1,1,0],[146,0,0,1,0]],"js":[[7,0,0,1,2],[50,0,0,1,0],[71,0,0,1,0],[75,0,0,1,0],[78,0,0,1,0],[83,0,0,1,0],[95,0,0,1,0],[106,0,0,1,0],[146,0,0,1,0]],"wire":[[7,0,0,1,0],[9,0,0,0,2],[19,0,0,0,1],[37,0,1,0,0],[41,0,1,0,0],[62,0,0,1,0],[71,0,0,1,0],[102,0,0,1,0]],"negotiation":[[7,0,0,1,0],[49,0,0,1,0],[72,0,0,1,0],[74,0,0,1,0],[75,0,0,1,0],[80,0,0,1,0],[83,0,0,1,0],[101,0,0,1,0],[144,0,0,1,0]],"ts":[[7,0,0,1,0],[19,0,0,1,0],[20,0,0,3,1],[21,0,0,0,1],[26,0,0,0,1],[27,0,0,0,1],[28,0,0,0,1],[29,0,0,0,1],[38,0,0,1,1],[39,0,0,0,1],[46,0,0,0,1],[47,0,0,0,1],[48,0,0,0,1],[49,0,0,1,0],[50,0,0,5,0],[59,0,0,0,1],[61,0,0,1,0],[92,0,0,1,2],[104,0,0,2,0],[106,0,0,3,1],[109,0,0,1,1],[113,0,0,0,1],[114,0,0,0,1],[115,0,0,0,1],[116,0,0,0,1],[118,0,0,0,1],[126,0,0,0,1],[130,0,0,0,1],[131,0,0,0,1],[135,0,0,0,1],[137,0,0,0,1],[139,0,0,1,0],[141,0,0,0,1],[142,0,0,0,2],[143,0,0,0,1],[144,0,0,0,1],[145,0,0,0,1],[146,0,0,0,1],[148,0,0,1,0],[151,0,0,1,1],[153,0,0,0,2],[154,0,0,0,2],[155,0,0,1,0],[156,0,0,0,1],[157,0,0,0,1],[161,0,0,0,1],[162,0,0,0,2],[166,0,0,0,1],[167,0,0,0,2],[168,0,0,0,1],[169,0,0,0,1],[170,0,0,0,2],[171,0,0,0,1]],"route":[[7,0,0,1,0],[9,0,0,0,2],[23,0,0,1,0],[46,0,0,1,0],[49,0,0,1,0],[50,0,0,3,0],[75,0,0,2,0],[83,0,0,1,0],[129,0,0,1,0],[144,0,0,1,0]],"handler":[[7,0,0,1,0],[50,0,0,3,0]],"configureserver":[[7,0,0,1,0]],"enough":[[7,0,0,1,0],[20,0,0,1,0],[34,0,0,1,0],[72,0,0,1,0],[122,0,0,1,0],[123,0,0,1,0],[138,0,0,1,0]],"static":[[7,0,0,1,0],[25,0,0,2,0],[26,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[29,0,0,2,0],[30,0,0,1,0],[31,0,0,1,0],[46,0,0,1,0],[49,0,0,1,0],[50,0,0,4,0],[51,0,0,2,0],[52,0,1,2,0],[83,0,0,1,0],[84,0,0,1,0],[102,0,0,1,0],[153,0,0,1,0],[164,0,0,2,0],[165,0,0,1,0],[166,0,0,1,0],[167,0,0,1,0],[168,0,0,1,0],[169,0,0,1,0],[170,0,0,1,0],[171,0,0,1,0],[172,0,0,1,0],[173,0,0,2,0]],"deployments":[[7,0,0,1,0]],"files":[[7,0,0,1,0],[17,0,0,1,0],[25,0,0,2,0],[26,0,1,1,0],[36,0,0,1,0],[39,0,0,1,0],[41,0,0,1,0],[42,0,0,2,0],[43,0,0,2,0],[44,0,0,1,0],[45,0,0,1,0],[46,0,0,3,0],[50,0,0,1,0],[52,0,0,2,0],[54,0,0,1,0],[66,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,3,0],[76,0,0,2,0],[80,0,0,2,0],[86,0,0,1,0],[87,0,0,3,0],[88,0,0,1,0],[89,0,0,2,0],[90,0,0,1,0],[91,0,0,1,0],[92,0,0,2,1],[93,0,0,1,0],[94,0,0,3,0],[95,0,0,1,0],[96,0,0,1,0],[97,0,0,2,0],[106,0,0,1,0],[108,0,0,2,1],[109,0,0,1,0],[114,0,0,1,0],[119,0,0,2,0],[120,0,0,3,0],[121,0,0,1,0],[123,0,0,1,0],[130,0,0,1,0],[137,1,1,1,0],[138,1,1,1,0],[139,1,1,0,0],[140,1,1,0,0],[141,1,1,0,0],[142,1,1,1,0],[143,1,1,0,0],[144,1,1,0,0],[145,1,1,0,0],[146,1,1,0,0],[147,1,1,0,0],[148,1,1,0,0],[149,1,1,0,0],[150,1,1,0,0],[151,1,1,1,0],[152,1,1,1,0],[153,1,1,2,0],[154,1,1,0,0],[155,1,1,0,0],[156,1,1,0,0]],"items":[[7,0,0,0,1],[13,0,0,0,1]],"value":[[7,0,0,0,3],[13,0,0,0,2],[24,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0]],"package":[[8,0,0,4,0],[38,0,0,1,0],[71,0,0,1,0],[72,0,0,3,0],[74,0,0,3,0],[76,0,0,1,0],[78,0,0,2,0],[79,0,0,2,0],[80,0,0,2,0],[81,0,0,1,0],[83,0,0,1,0],[87,1,1,3,0],[88,1,1,1,0],[89,1,1,3,0],[90,1,2,3,4],[91,1,2,3,0],[92,1,1,1,4],[93,1,1,1,2],[94,1,1,2,2],[95,1,1,2,3],[96,1,1,2,0],[97,1,1,1,0],[99,0,0,1,0],[102,0,0,3,0],[104,0,0,3,0],[106,0,0,1,0],[107,0,0,1,1],[120,0,0,3,0],[139,0,0,1,0],[151,0,0,1,1],[152,0,0,1,1],[156,0,0,2,0]],"manager":[[8,0,0,5,0],[99,0,0,1,0]],"install":[[8,0,0,3,2],[64,0,0,0,1],[80,0,0,1,0],[87,0,0,1,0],[88,0,0,0,4],[90,0,0,1,0],[95,0,0,1,0],[98,0,0,1,0],[99,0,1,2,0],[100,0,0,1,0],[101,0,0,1,0],[102,0,0,1,0],[140,0,0,0,1],[146,0,0,0,2],[152,0,0,0,1],[155,0,0,1,0],[167,0,0,0,1]],"commands":[[8,0,0,3,1],[103,0,0,1,0],[171,0,0,2,0]],"row":[[8,0,0,1,0],[14,0,0,1,0],[162,0,0,1,0]],"mode":[[8,0,0,3,2],[26,0,0,1,0],[45,0,0,1,0],[64,0,0,1,0],[70,0,0,0,3],[71,0,0,2,0],[72,0,0,7,0],[73,0,0,2,0],[74,0,0,0,2],[76,0,0,2,0],[83,0,0,1,0],[89,0,0,2,0],[104,0,0,4,0],[107,0,1,0,0],[108,0,0,4,1],[134,0,0,1,0],[138,0,0,1,0]],"command":[[8,0,0,4,2],[36,0,0,1,0],[76,0,0,1,0],[84,0,0,1,0],[99,0,0,1,0],[101,0,0,1,0],[103,0,0,1,1],[112,0,0,1,0]],"name":[[8,0,0,2,0],[11,0,0,0,3],[22,0,0,1,0],[31,0,0,1,0],[38,0,0,0,1],[39,0,0,0,2],[45,0,0,0,1],[64,0,0,0,1],[78,0,0,0,1],[88,0,0,0,4],[90,0,0,0,1],[91,0,0,0,1],[104,0,0,4,0],[106,0,0,0,1],[108,0,0,0,1],[139,0,0,2,0],[141,0,0,0,2],[146,0,0,0,1],[162,0,0,1,1]],"cli":[[8,0,0,1,0],[20,0,0,1,0],[22,0,0,1,0],[38,0,0,1,0],[39,0,0,1,0],[66,0,0,1,0],[77,0,0,1,0],[84,0,0,1,0],[87,0,0,1,0],[88,0,0,0,3],[90,0,0,0,1],[96,0,0,1,0],[97,0,0,1,0],[99,0,0,2,0],[103,1,1,0,0],[104,1,1,0,0],[105,1,1,1,0],[106,1,1,1,0],[107,1,1,0,0],[108,1,1,0,0],[109,1,1,0,0],[110,1,1,1,0],[111,1,1,0,0],[112,1,1,2,0],[113,0,0,1,0],[120,0,0,1,0],[126,0,0,3,0],[127,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0],[130,0,0,1,0],[131,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0],[137,0,0,1,0],[139,0,0,1,0],[140,0,0,0,3],[152,0,0,0,2]],"create":[[8,0,0,1,0],[100,0,0,1,0]],"starter":[[8,0,0,1,0],[28,0,0,0,2],[167,0,0,0,2]],"prop":[[8,0,0,1,0],[14,0,0,1,0]],"exact":[[8,0,0,1,0],[31,0,0,1,0],[70,0,0,1,0],[139,0,0,1,0],[167,0,0,2,0],[173,0,0,2,0]],"overrides":[[8,0,0,1,0],[104,0,0,2,0],[110,0,0,2,0],[144,0,0,1,0]],"npm":[[8,0,0,3,2],[37,0,0,0,3],[71,0,0,1,0],[72,0,0,2,0],[80,0,0,1,0],[83,0,0,1,0],[86,0,0,1,0],[87,0,0,2,0],[88,0,0,1,2],[89,0,0,2,0],[90,0,0,1,0],[91,0,0,1,0],[92,0,0,1,0],[93,0,0,1,0],[94,0,0,2,1],[95,0,0,1,0],[96,0,0,1,0],[97,0,0,1,0],[99,0,0,2,0],[102,0,0,1,0],[107,0,0,1,0],[137,0,0,2,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0],[141,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,2,0],[152,0,0,1,0],[153,0,0,1,0],[154,0,0,1,0],[155,0,0,1,0],[156,0,0,1,0]],"pnpm":[[8,0,0,4,3],[99,0,0,2,0]],"yarn":[[8,0,0,4,0],[99,0,0,2,0]],"bun":[[8,0,0,3,0],[46,0,0,1,0],[49,0,0,1,0],[64,0,0,0,2],[92,0,0,1,0],[99,0,0,2,0],[125,0,0,0,2],[143,0,0,1,0]],"npx":[[8,0,0,1,0],[26,0,0,0,1],[35,0,0,0,1],[36,0,0,0,1],[37,0,0,0,2],[45,0,0,0,1],[54,0,0,0,1],[64,0,0,0,1],[65,0,0,0,1],[66,0,0,0,1],[67,0,0,0,2],[90,0,0,0,1],[91,0,0,0,1],[92,0,0,0,1],[94,0,0,0,1],[101,0,0,0,1]],"lint":[[8,0,0,4,1],[18,0,0,1,0],[22,0,0,1,0],[23,0,1,2,0],[24,0,0,1,0],[27,0,0,0,1],[29,0,0,0,1],[33,0,0,0,3],[35,0,1,2,1],[37,0,0,1,4],[62,0,0,2,0],[63,0,0,2,0],[64,0,0,1,3],[65,0,0,1,2],[66,0,0,2,1],[67,0,0,4,1],[68,0,0,1,0],[84,0,0,1,0],[97,0,0,1,0],[103,0,0,2,0],[104,0,0,1,0],[105,0,0,1,0],[106,0,0,1,0],[107,0,0,1,0],[108,0,0,1,0],[109,0,0,1,0],[110,0,1,3,1],[111,0,0,1,1],[112,0,0,2,0],[126,1,1,1,1],[127,1,1,0,0],[128,1,1,0,0],[129,1,1,0,0],[130,1,1,0,1],[131,1,1,0,0],[132,1,1,0,0],[133,1,1,0,0],[134,1,1,0,0],[135,1,1,0,1],[136,1,1,3,0],[169,0,0,0,1]],"dlx":[[8,0,0,2,0]],"bunx":[[8,0,0,1,0]],"defaultmanager":[[8,0,0,0,1]],"displays":[[9,0,0,1,0]],"ready":[[9,0,0,1,0],[167,0,0,1,0]],"copy":[[9,0,0,2,1],[16,0,0,1,0],[101,0,0,1,0]],"action":[[9,0,0,1,0],[34,0,0,1,0]],"preserves":[[9,0,0,1,0],[16,0,0,1,0]],"copied":[[9,0,0,1,0],[44,0,0,1,0]],"instructions":[[9,0,0,1,0],[11,0,0,1,0],[171,0,0,0,1]],"also":[[9,0,0,1,0],[22,0,0,1,0],[46,0,0,1,0],[48,0,0,1,0],[86,0,0,1,0],[106,0,0,1,0],[112,0,0,1,0],[144,0,0,1,0]],"survive":[[9,0,0,1,0],[117,0,0,1,0]],"root":[[9,0,0,1,0],[11,0,0,0,1],[19,0,0,1,0],[34,0,0,1,0],[36,0,0,1,0],[46,0,0,2,0],[52,0,0,1,0],[54,0,0,2,0],[55,0,0,1,0],[71,0,0,1,0],[72,0,0,2,0],[73,0,0,1,0],[74,0,0,1,0],[76,0,0,2,0],[78,0,0,1,0],[80,0,0,2,0],[83,0,0,1,0],[84,0,0,1,0],[86,0,0,1,0],[87,0,0,1,0],[88,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[91,0,0,1,0],[92,0,0,1,6],[93,0,0,1,5],[94,0,0,1,0],[95,0,0,2,0],[96,0,0,1,0],[97,0,0,1,0],[104,0,0,4,0],[105,0,0,2,0],[108,0,0,1,0],[110,0,0,1,0],[114,0,0,1,0],[120,0,0,3,0],[121,0,0,6,0],[122,0,0,2,0],[130,0,0,1,0],[134,0,0,1,0],[137,0,0,2,0],[138,0,0,1,0],[142,0,0,1,0],[144,0,0,1,0],[151,0,0,3,0],[155,0,0,1,0],[162,0,0,1,0]],"bundled":[[9,0,0,1,0],[78,0,0,2,0],[79,0,0,1,0],[80,0,0,1,0],[81,0,0,1,0],[86,0,0,1,0],[87,0,0,1,0],[95,0,0,1,1],[137,0,0,2,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0],[141,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,2,0],[152,0,0,1,0],[153,0,0,1,0],[154,0,0,1,0],[155,0,0,1,0],[156,0,0,1,0]],"output":[[9,0,0,1,0],[10,0,0,1,0],[15,0,0,0,1],[17,0,0,1,0],[35,0,0,1,0],[36,0,0,1,0],[43,0,0,1,0],[46,0,0,1,0],[50,0,0,1,0],[65,0,0,1,0],[69,0,0,1,0],[70,0,0,1,0],[71,0,1,1,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,0,2,0],[75,0,0,1,0],[76,0,0,4,0],[77,0,0,1,0],[78,0,0,2,0],[79,0,0,1,0],[80,0,0,1,0],[81,0,0,2,0],[87,0,0,1,0],[99,0,0,1,0],[101,0,1,0,0],[103,0,0,1,0],[104,0,0,2,0],[105,0,0,1,0],[106,0,0,1,0],[107,0,0,1,0],[108,0,1,1,0],[109,0,0,1,0],[110,0,0,1,0],[111,0,0,1,0],[112,0,0,2,0],[113,0,0,1,0],[114,0,0,1,0],[115,0,0,1,0],[116,0,0,1,0],[117,0,0,2,0],[119,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0],[122,0,0,1,0],[123,0,0,1,0],[124,0,0,1,0],[125,0,0,1,0],[137,0,0,1,0],[152,0,1,0,0],[162,0,0,1,0],[163,0,0,2,0]],"coding":[[9,0,0,1,1],[74,0,0,1,1],[78,0,0,0,1],[87,0,0,1,0],[89,0,0,1,0],[96,0,0,1,0],[120,0,0,1,0],[152,0,0,0,1]],"after":[[9,0,0,1,1],[26,0,0,1,0],[29,0,0,1,0],[41,0,0,1,0],[42,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[68,0,0,1,0],[80,0,0,1,0],[90,0,0,1,0],[91,0,0,1,0],[95,0,0,1,0],[101,0,0,1,0],[104,0,0,1,0],[105,0,0,1,0],[117,0,0,1,0],[136,0,0,1,0],[160,0,0,1,0],[166,0,0,1,0]],"generating":[[9,0,0,1,1]],"artifacts":[[9,0,0,1,1],[32,0,0,1,0],[35,0,0,1,0],[36,0,1,0,0],[39,0,0,1,0],[45,0,1,0,0],[46,0,0,1,0],[72,0,1,0,0],[73,0,1,0,0],[78,0,0,2,0],[79,0,0,1,0],[80,0,0,1,0],[81,0,0,1,0],[82,0,0,1,0],[83,0,0,1,0],[90,0,0,1,0],[98,0,0,2,0],[99,0,0,1,0],[100,0,0,1,0],[101,0,0,2,0],[102,0,0,1,0],[104,0,0,4,0],[119,0,0,1,0],[122,0,0,1,0],[124,0,0,1,0],[144,0,0,1,0]],"inspect":[[9,0,0,0,2],[15,0,0,0,1],[42,0,0,1,0],[98,0,0,1,0],[99,0,0,1,0],[100,0,0,1,0],[101,0,0,1,0],[102,0,0,1,0]],"readability":[[9,0,0,0,2],[36,0,0,1,0],[39,0,0,1,0],[42,0,0,1,0],[45,0,0,1,1],[46,0,0,1,2],[48,0,0,0,2],[49,0,0,1,0],[50,0,0,3,0],[51,0,0,1,0],[54,0,0,1,1],[55,0,0,1,0],[58,0,0,1,1],[71,0,0,2,0],[73,0,0,2,0],[76,0,0,2,0],[78,0,0,1,1],[80,0,0,1,0],[86,0,0,1,0],[101,0,0,0,1],[104,0,0,1,0],[108,0,0,0,1],[112,0,0,1,0],[138,0,0,1,0],[142,0,0,1,0],[143,0,1,0,1],[144,0,1,1,0],[145,0,1,0,0],[146,0,1,0,2],[147,0,1,0,0],[148,0,1,0,0],[149,0,1,0,0],[150,0,1,1,0]],"json":[[9,0,0,0,2],[23,0,0,1,0],[25,0,0,1,0],[26,0,0,0,2],[27,0,0,0,2],[30,0,0,1,0],[31,0,0,2,0],[36,0,0,4,1],[37,0,0,0,2],[39,0,0,2,0],[42,0,0,4,0],[43,0,0,1,0],[44,0,0,2,0],[45,0,0,2,1],[46,0,0,2,2],[47,0,0,1,0],[48,0,1,3,1],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,2,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,2,0],[55,0,0,3,0],[59,0,0,1,0],[63,0,0,1,0],[65,0,0,2,2],[67,0,0,0,1],[70,0,0,0,2],[71,0,0,2,0],[72,0,0,2,0],[73,0,0,2,0],[74,0,0,0,1],[78,0,0,1,1],[92,0,0,0,1],[94,0,0,1,0],[101,0,0,2,3],[102,0,0,1,0],[103,0,0,1,0],[104,0,0,3,0],[105,0,0,5,0],[106,0,0,2,0],[107,0,0,3,0],[108,0,1,3,4],[109,0,0,1,0],[110,0,0,3,0],[111,0,0,1,0],[112,0,0,2,0],[128,0,0,1,0],[130,0,0,2,0],[134,0,1,0,0],[136,0,0,2,0],[137,0,0,1,0],[138,0,0,1,0],[144,0,0,2,0],[146,0,0,1,5],[147,0,0,2,0],[148,0,0,1,0],[150,0,0,1,0],[153,0,0,1,2],[154,0,0,1,0],[165,0,0,2,0],[166,0,0,0,2],[167,0,0,0,2],[172,0,0,1,0]],"then":[[9,0,0,0,2],[42,0,0,1,0],[54,0,0,2,0],[79,0,0,1,0],[101,0,0,1,0],[104,0,0,1,0],[120,0,0,1,0],[142,0,0,1,0],[157,0,0,1,0],[165,0,0,1,0],[173,0,0,1,0]],"responses":[[9,0,0,0,2],[42,0,0,1,0],[44,0,0,1,0],[49,0,0,1,0],[52,0,1,0,0],[54,0,0,1,0],[145,0,0,1,0],[149,0,0,1,0],[150,0,0,1,0]],"before":[[9,0,0,0,2],[10,0,0,0,1],[23,0,0,1,0],[34,0,0,1,0],[35,0,1,1,0],[37,0,0,1,0],[45,0,0,1,0],[46,0,0,1,0],[49,0,0,1,0],[50,0,0,4,0],[57,0,0,1,0],[62,0,0,1,0],[63,0,0,1,0],[64,0,0,1,0],[65,0,0,1,0],[66,0,0,2,0],[67,0,1,1,0],[68,0,0,1,0],[73,0,0,1,0],[94,0,1,0,0],[108,0,0,1,0],[110,0,0,1,0],[115,0,0,1,0],[118,0,0,2,0],[119,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0],[122,0,0,1,0],[123,0,0,1,0],[124,0,0,2,0],[125,0,0,1,0],[126,0,0,2,0],[129,0,0,1,0],[136,0,0,1,0],[142,0,0,1,0],[145,0,0,0,1],[160,0,0,4,0],[161,0,0,2,0],[172,0,0,1,0]],"splits":[[10,0,0,1,0]],"guidance":[[10,0,0,1,0],[106,0,0,1,0],[136,0,1,0,0]],"forking":[[10,0,0,1,0]],"human":[[10,0,0,1,1],[44,0,0,1,0],[74,0,0,0,2],[158,0,0,1,0]],"renders":[[10,0,0,1,0],[16,0,0,1,0],[19,0,0,1,0],[32,0,0,1,0],[74,0,0,1,0],[86,0,0,1,0],[129,0,0,1,0]],"omitted":[[10,0,0,1,0],[19,0,0,1,0],[139,0,0,1,0],[145,0,0,1,0]],"hidden":[[10,0,0,1,0]],"included":[[10,0,0,1,0],[161,0,0,1,0]],"generated":[[10,0,0,2,1],[19,0,0,1,0],[32,0,0,1,0],[35,0,0,1,0],[39,0,0,3,0],[42,0,0,1,0],[43,0,0,1,0],[45,0,0,1,0],[46,0,0,1,0],[52,0,0,1,0],[54,0,0,1,0],[56,0,0,2,0],[57,0,0,1,0],[58,0,0,1,0],[59,0,0,2,0],[60,0,0,1,0],[61,0,0,1,0],[66,0,0,1,0],[75,0,0,1,0],[78,0,0,1,0],[81,0,0,1,0],[83,0,0,1,0],[86,0,0,1,0],[98,0,0,2,0],[99,0,0,1,0],[100,0,0,2,0],[101,0,0,1,0],[102,0,0,2,0],[106,0,0,1,0],[108,0,0,1,0],[119,0,0,1,0],[121,0,0,1,0],[137,0,0,1,0],[138,0,1,1,0],[147,0,0,2,0],[153,0,0,1,2]],"sentence":[[10,0,0,1,0],[45,0,0,0,1],[100,0,0,0,1]],"appears":[[10,0,0,1,0]],"target":[[10,0,0,0,2],[46,0,0,0,2],[144,0,0,0,2],[158,0,0,2,0]],"click":[[10,0,0,0,1]],"robot":[[10,0,0,0,1]],"icon":[[10,0,0,0,1],[22,0,0,2,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0]],"editing":[[10,0,0,0,1]],"routes":[[10,0,0,0,1],[30,0,0,1,0],[32,0,0,1,0],[39,0,0,1,0],[46,0,0,1,0],[63,0,0,1,0],[123,0,0,1,0],[142,0,0,1,0]],"project":[[11,0,0,1,0],[74,0,0,2,0],[95,0,0,1,1],[120,0,0,1,0]],"structure":[[11,0,0,1,0],[73,0,0,1,0],[114,0,0,1,0],[151,0,0,1,0]],"guides":[[11,0,0,1,0],[38,0,0,0,2],[155,0,0,1,0],[168,0,0,0,1]],"release":[[11,0,0,1,0],[133,0,0,1,0]],"emits":[[11,0,0,1,0],[12,0,0,2,0],[80,0,0,1,0],[89,0,0,1,0],[104,0,0,1,0],[137,0,0,2,0],[138,0,0,1,0],[162,0,0,1,0]],"tree":[[11,0,0,1,0],[18,0,0,1,0],[19,0,0,1,0],[20,0,1,2,1],[21,0,1,1,0],[22,0,0,1,0],[23,0,0,1,0],[24,0,0,1,0],[39,0,0,1,0],[70,0,0,0,1],[73,0,0,1,0],[75,0,0,1,0],[80,0,0,1,0],[114,0,0,1,0],[151,0,0,1,0],[153,0,0,1,0],[154,0,0,1,0],[158,0,0,1,0],[159,0,0,1,0],[160,0,0,1,0]],"hierarchy":[[11,0,0,1,0]],"index":[[11,0,0,0,2],[16,0,0,0,1],[25,0,0,1,0],[26,0,0,2,1],[27,0,0,1,3],[28,0,0,1,1],[29,0,0,2,1],[30,0,0,1,0],[31,0,0,2,0],[36,0,0,2,0],[42,0,0,3,0],[45,0,0,0,1],[70,0,0,0,1],[71,0,0,1,0],[72,0,0,5,0],[73,0,0,1,0],[74,0,0,0,1],[75,0,0,1,0],[76,0,0,1,0],[80,0,0,1,0],[82,0,0,1,0],[84,0,0,1,0],[90,0,0,1,1],[100,0,0,1,0],[101,0,0,1,2],[102,0,0,1,0],[104,0,0,2,0],[107,0,0,2,0],[108,0,0,0,2],[121,0,0,1,0],[124,0,0,1,0],[137,0,0,1,0],[138,0,0,2,0],[139,0,0,1,0],[140,0,0,0,1],[164,0,0,2,0],[165,0,0,6,0],[166,0,0,2,1],[167,0,0,1,2],[168,0,0,2,3],[169,0,0,1,1],[170,0,0,1,1],[171,0,0,1,1],[172,0,0,1,0],[173,0,0,3,0]],"collapsible":[[12,0,0,1,0]],"secondary":[[12,0,0,1,0]],"ignores":[[12,0,0,2,0],[154,0,0,1,0]],"open":[[12,0,0,2,0],[43,0,0,1,0],[101,0,0,2,0],[124,0,1,0,0],[152,0,0,0,1],[158,0,0,1,0]],"closed":[[12,0,0,3,0],[158,0,0,1,0]],"state":[[12,0,0,2,0],[117,0,0,1,0],[158,0,0,1,0]],"item":[[12,0,0,1,0]],"accordions":[[12,0,0,3,1]],"place":[[12,0,0,2,0],[46,0,0,1,0],[78,0,0,1,0],[80,0,0,1,0],[118,0,0,1,0],[161,0,0,1,0]],"hide":[[12,0,0,2,0]],"should":[[12,0,0,1,1],[30,0,0,1,0],[38,0,0,1,0],[39,0,0,1,0],[91,0,0,1,0],[94,0,0,1,0],[96,0,0,1,0],[100,0,0,1,0],[172,0,0,1,0]],"troubleshooting":[[12,0,0,1,0],[61,0,1,0,0]],"notes":[[12,0,0,1,0],[117,0,1,0,0]],"optional":[[12,0,0,1,1],[14,0,0,2,0],[19,0,0,2,0],[22,0,1,10,0],[29,0,1,0,0],[41,0,0,1,0],[46,0,0,1,0],[71,0,0,2,0],[72,0,0,3,0],[73,0,0,3,0],[75,0,0,5,0],[83,0,0,2,0],[84,0,0,1,0],[121,0,0,1,0],[139,0,0,4,0],[144,0,0,1,0],[145,0,0,1,2],[146,0,0,0,1],[148,0,0,1,0],[161,0,1,0,0],[162,0,1,0,0]],"material":[[12,0,0,1,1]],"good":[[12,0,0,1,0],[44,0,1,0,0]],"no":[[12,0,0,1,0],[20,0,0,1,0],[21,0,0,1,0],[38,0,0,2,0],[52,0,0,1,0],[75,0,0,1,0],[89,0,0,2,0],[106,0,0,1,0],[110,0,0,1,0],[117,0,0,1,0],[120,0,0,1,0],[132,0,0,12,0],[133,0,0,7,0],[134,0,0,7,0],[138,0,0,1,0],[145,0,0,1,0],[162,0,0,2,0],[167,0,0,1,0]],"everything":[[12,0,0,1,0]],"inside":[[12,0,0,1,0],[72,0,0,2,0],[74,0,0,1,0],[83,0,0,1,0],[87,0,0,2,0],[88,0,0,1,0],[89,0,0,3,0],[90,0,0,2,0],[91,0,0,1,0],[92,0,0,1,0],[93,0,0,1,0],[94,0,0,1,0],[95,0,0,2,0],[96,0,0,1,0],[97,0,0,1,0],[102,0,0,1,0],[137,0,0,1,0],[151,0,0,1,0],[152,0,0,0,1]],"navigation":[[13,0,0,1,0],[18,0,0,1,0],[19,0,0,1,0],[20,0,0,1,1],[21,0,0,1,0],[22,0,0,1,0],[23,0,0,1,0],[24,0,0,1,0],[38,0,0,1,0],[39,0,0,1,0],[40,0,0,0,1],[45,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[58,0,0,1,0],[59,0,1,2,1],[60,0,0,1,0],[61,0,0,1,0],[62,0,0,1,0],[63,0,0,1,0],[64,0,0,1,0],[65,0,0,1,0],[66,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[70,0,0,0,1],[73,0,0,1,0],[75,0,0,1,0],[76,0,0,1,0],[80,0,0,2,0],[82,0,0,1,0],[83,0,0,1,0],[84,0,0,1,0],[93,0,0,0,3],[100,0,0,1,0],[123,0,0,1,0],[126,0,0,1,0],[127,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0],[130,0,0,1,0],[131,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0],[138,0,0,1,0],[142,0,0,1,2],[153,0,0,1,4],[154,0,0,0,1],[155,0,0,1,0]],"across":[[13,0,0,1,0],[20,0,0,1,0],[86,0,0,3,0],[106,0,0,1,0],[120,0,0,1,0]],"topics":[[13,0,0,1,0]],"frameworks":[[13,0,0,1,2],[78,0,0,1,0],[86,0,0,1,0],[91,0,0,0,1]],"sdks":[[13,0,0,1,0]],"runtimes":[[13,0,0,1,0]],"deployment":[[13,0,0,1,0],[32,0,0,1,0],[49,0,0,1,0],[85,0,0,1,0],[156,0,0,1,0]],"targets":[[13,0,0,1,0]],"product":[[13,0,0,1,0],[28,0,0,1,0],[38,0,1,1,1],[39,0,0,1,6],[40,0,0,0,2],[45,0,0,0,2],[46,0,0,1,0],[73,0,0,1,0],[93,0,0,0,2],[104,0,0,2,0],[106,0,0,2,1],[108,0,0,1,1],[109,0,0,0,2],[138,0,0,2,0],[139,0,0,4,0],[141,0,0,0,4],[142,0,0,0,4],[151,0,0,2,2],[167,0,0,1,0]],"areas":[[13,0,0,1,0]],"reader":[[13,0,0,1,0],[50,0,0,1,0]],"facing":[[13,0,0,1,0],[78,0,0,1,0],[119,0,0,1,0],[137,0,0,1,0],[163,0,0,1,0]],"automatically":[[13,0,0,1,0],[20,0,0,1,0],[22,0,0,1,0],[38,0,0,1,0],[49,0,0,1,0],[106,0,0,1,0]],"llm":[[13,0,0,1,0],[39,0,0,1,1],[46,0,0,0,1],[48,0,0,0,1],[58,0,0,0,1],[59,0,0,0,1],[92,0,0,0,1],[97,0,0,1,0],[109,0,0,1,1],[112,0,0,2,0],[120,0,0,1,0],[137,1,1,1,1],[138,1,1,0,0],[139,1,1,0,0],[140,1,1,0,0],[141,1,1,0,1],[142,1,1,0,1],[143,1,1,0,1],[144,1,1,0,0],[145,1,1,0,0],[146,1,1,0,1],[147,1,1,0,0],[148,1,1,0,0],[149,1,1,0,0],[150,1,1,0,0],[151,1,1,0,1],[152,1,1,0,0],[153,1,1,2,0],[154,1,1,0,0],[155,1,1,0,0],[156,1,1,0,0],[163,0,0,1,0]],"topic":[[13,0,0,1,0],[74,0,0,1,0],[76,0,0,1,0],[80,0,0,1,0],[87,0,0,2,0],[88,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[91,0,0,1,0],[92,0,0,1,0],[93,0,0,1,0],[94,0,0,1,0],[95,0,0,1,0],[96,0,0,1,0],[97,0,0,1,0],[120,0,0,1,0],[137,0,0,1,0],[152,0,0,0,1]],"config":[[13,0,0,1,0],[19,0,0,1,0],[20,0,0,5,1],[21,0,0,1,0],[38,0,0,3,0],[39,0,0,0,1],[52,0,0,1,0],[59,0,0,0,1],[61,0,0,1,0],[68,0,0,1,0],[92,0,0,0,2],[93,0,0,0,1],[104,0,0,4,0],[105,0,0,1,0],[106,0,1,10,0],[109,0,1,2,1],[139,0,0,1,0],[151,0,0,1,0],[155,0,0,1,0],[167,0,0,1,0],[173,0,0,1,0]],"framework":[[13,0,0,1,1],[22,0,0,2,0],[23,0,0,4,0],[24,0,0,1,0],[32,0,0,1,0],[37,0,0,1,0],[38,0,0,0,1],[48,0,0,2,0],[49,0,0,2,0],[50,0,0,2,0],[63,0,0,5,0],[68,0,0,1,0],[75,0,0,1,0],[78,0,0,1,0],[82,0,0,1,0],[83,0,0,5,0],[86,0,0,1,0],[129,0,0,4,0],[131,0,0,0,1],[132,0,0,1,0],[143,0,0,2,0],[146,0,0,1,0],[147,0,0,1,0],[158,0,0,1,0]],"react":[[13,0,0,2,4],[58,0,0,0,1],[60,0,0,1,0],[83,0,0,2,0],[91,0,0,0,3]],"integration":[[13,0,0,3,0],[147,0,0,1,0]],"vue":[[13,0,0,2,3]],"svelte":[[13,0,0,2,0]],"label":[[13,0,0,0,3],[134,0,0,1,0]],"activevalue":[[13,0,0,0,1]],"explicit":[[14,0,0,1,0],[58,0,0,1,0],[91,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0],[122,0,0,1,0],[170,0,0,1,0]],"type":[[14,0,0,3,2],[22,0,0,1,0],[23,0,0,1,0],[27,0,0,0,2],[46,0,0,0,3],[48,0,0,0,1],[49,0,0,1,0],[54,0,0,1,0],[58,0,0,0,2],[71,0,0,1,0],[72,0,0,1,0],[75,0,0,1,0],[128,0,0,1,0],[131,0,0,0,1],[132,0,0,1,0],[133,0,0,2,0],[134,0,0,1,0],[139,0,0,1,0],[140,0,0,0,1],[144,0,0,1,0],[146,0,0,0,1],[147,0,0,2,0],[162,0,0,2,0],[167,0,0,0,2]],"rows":[[14,0,0,1,0]],"already":[[14,0,0,1,0],[43,0,0,1,0],[52,0,0,1,0],[168,0,0,1,0]],"know":[[14,0,0,1,0]],"reads":[[14,0,0,1,0],[18,0,0,1,0],[62,0,0,1,0],[101,0,0,1,0],[162,0,0,2,0],[166,0,0,1,0]],"typescript":[[14,0,0,1,0],[112,0,0,1,0],[162,0,0,2,0]],"extracts":[[14,0,0,1,0],[58,0,0,1,0]],"named":[[14,0,0,1,0],[157,0,0,1,0],[162,0,0,1,0],[168,0,0,1,0]],"keep":[[14,0,0,1,0],[17,0,0,2,0],[39,0,0,1,0],[46,0,0,1,0],[50,0,0,1,0],[55,0,0,1,0],[56,0,0,1,0],[66,0,0,1,0],[124,0,0,1,0],[135,0,0,1,0],[154,0,0,1,0],[167,0,0,1,0],[173,0,0,1,0]],"its":[[14,0,0,1,0],[38,0,0,1,0],[44,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[86,0,0,1,0],[146,0,0,1,0],[163,0,0,1,0]],"path":[[14,0,0,1,0],[32,0,0,1,0],[34,0,0,1,0],[39,0,0,1,0],[42,0,0,1,0],[46,0,0,0,1],[49,0,0,1,0],[72,0,0,3,0],[79,0,1,1,0],[87,0,0,1,0],[90,0,0,1,0],[108,0,0,0,12],[112,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0],[122,0,0,1,0],[140,0,0,0,1],[144,0,0,1,0],[147,0,0,1,0],[151,0,0,2,0],[162,0,0,2,1],[172,0,0,1,0]],"stable":[[14,0,0,1,0],[17,0,0,1,0],[20,0,0,1,0],[22,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,1,0],[61,0,0,1,0]],"property":[[14,0,0,1,0],[22,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[75,0,0,1,0],[139,0,0,1,0],[146,0,0,0,2],[162,0,0,1,0]],"default":[[14,0,0,1,1],[22,0,0,2,0],[23,0,0,1,0],[25,0,0,1,0],[38,0,0,0,1],[43,0,0,1,0],[47,0,0,0,1],[53,0,0,2,0],[59,0,0,1,0],[71,0,0,2,0],[72,0,0,1,0],[75,0,0,1,0],[76,0,0,2,0],[104,0,0,2,0],[106,0,0,0,1],[110,0,0,2,0],[118,0,0,1,0],[123,0,1,1,0],[124,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0],[130,0,0,2,0],[132,0,1,0,0],[133,0,1,0,0],[134,0,1,0,0],[137,0,0,1,0],[138,0,0,2,0],[139,0,0,1,0],[140,0,0,0,1],[144,0,0,1,0],[146,0,0,0,1],[149,0,0,1,0],[151,0,0,1,0],[154,0,0,2,0],[156,0,0,1,0],[157,0,0,1,0],[158,0,1,1,0],[159,0,1,1,0],[160,0,0,1,0],[161,0,0,2,0],[162,0,0,2,0],[163,0,0,1,0]],"required":[[14,0,0,2,1],[18,0,0,1,0],[19,0,0,2,0],[20,0,0,1,0],[21,0,0,1,0],[22,0,0,2,0],[23,0,0,2,0],[24,0,0,1,0],[68,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[75,0,0,1,0],[89,0,0,1,0],[128,0,0,1,0],[130,0,0,1,0],[131,0,0,2,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[139,0,0,3,0]],"string":[[14,0,0,1,1],[19,0,0,1,0],[22,0,0,3,0],[46,0,0,0,1],[48,0,0,1,0],[58,0,0,0,3],[75,0,0,1,0],[131,0,0,0,3],[132,0,0,7,0],[133,0,0,7,0],[134,0,0,5,0],[135,0,0,0,1],[139,0,0,7,0],[145,0,0,1,0],[147,0,0,1,0],[151,0,0,1,0],[154,0,0,1,0]],"rendered":[[14,0,0,1,1],[48,0,0,1,0],[56,0,0,1,0],[58,0,0,1,0],[61,0,0,1,0],[117,0,0,1,0],[139,0,0,4,0],[154,0,0,1,0],[162,0,0,1,0]],"calloutvariant":[[14,0,0,1,1]],"visual":[[14,0,0,1,1],[85,0,0,1,0]],"treatment":[[14,0,0,1,1]],"deprecated":[[14,0,0,3,0],[22,0,0,3,0],[132,0,0,1,0]],"boolean":[[14,0,0,1,0],[22,0,0,6,0],[132,0,0,6,0],[133,0,0,2,0],[134,0,0,2,0]],"marks":[[14,0,0,1,0],[22,0,0,2,0]],"false":[[14,0,0,1,0],[115,0,0,0,1]],"properties":[[14,0,0,0,1]],"true":[[14,0,0,0,1],[39,0,0,0,1],[92,0,0,0,3],[114,0,0,1,1],[153,0,0,0,1]],"data":[[15,0,0,2,0],[26,0,0,1,0],[59,0,1,0,0],[73,0,0,1,0],[137,0,0,1,0],[154,0,0,1,0]],"driven":[[15,0,0,1,0]],"examples":[[15,0,0,1,0]],"host":[[15,0,0,1,1],[73,0,0,1,0],[108,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[142,0,0,1,0]],"receives":[[15,0,0,1,0],[34,0,0,1,0]],"code":[[15,0,0,1,1],[25,0,0,1,0],[32,0,0,2,0],[33,0,0,1,0],[34,0,0,1,0],[35,0,0,1,0],[36,0,0,1,0],[37,0,0,1,0],[38,0,0,1,0],[39,0,0,1,0],[40,0,0,1,0],[41,0,0,1,0],[42,0,0,1,0],[46,0,0,0,3],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,0,0,1],[75,0,0,1,0],[86,0,0,1,0],[89,0,0,1,0],[107,0,0,1,0],[154,0,0,1,0],[159,0,0,1,0],[165,0,0,1,0],[171,0,0,1,0]],"loaders":[[15,0,0,1,0]],"dynamic":[[15,0,0,1,0]],"imports":[[15,0,0,1,0],[25,0,0,1,0],[70,0,0,0,1],[157,0,0,1,0],[160,0,0,1,0]],"outside":[[15,0,0,1,0],[61,0,0,1,0],[130,0,0,1,0]],"needs":[[15,0,0,1,0],[39,0,0,1,0],[41,0,0,1,0],[82,0,0,1,0],[91,0,0,1,0],[99,0,0,1,0],[100,0,0,1,0],[162,0,0,1,0]],"specific":[[15,0,0,1,0],[28,0,0,1,0],[91,0,1,0,0],[156,0,0,1,0],[164,0,0,1,0],[167,0,0,1,0]],"behavior":[[15,0,0,1,0],[19,0,0,1,0],[117,0,1,0,0],[119,0,0,1,0]],"filename":[[15,0,0,0,1]],"language":[[15,0,0,0,1]],"import":[[15,0,0,0,1],[26,0,0,0,1],[27,0,0,0,3],[29,0,0,1,1],[38,0,0,0,1],[39,0,0,0,5],[46,0,0,0,4],[48,0,0,0,2],[57,0,0,0,1],[58,0,0,1,2],[59,0,0,1,2],[92,0,0,0,5],[106,0,0,0,1],[109,0,0,1,2],[113,0,0,0,1],[114,0,0,0,1],[118,0,0,0,1],[126,0,0,0,1],[130,0,0,0,1],[135,0,0,0,2],[137,0,0,0,1],[141,0,0,0,3],[142,0,0,0,1],[143,0,0,0,1],[146,0,0,0,2],[151,0,0,0,1],[153,0,0,2,1],[157,0,0,0,1],[158,0,0,1,0],[162,0,0,0,1],[166,0,0,0,1],[167,0,0,0,3],[168,0,0,0,1],[169,0,0,0,1],[170,0,0,0,3],[171,0,0,0,1]],"mdxcomponents":[[15,0,0,0,1],[57,0,0,0,2]],"while":[[15,0,0,0,1],[32,0,0,1,0],[54,0,0,1,0],[166,0,0,1,0]],"diagrams":[[16,0,0,1,0]],"plain":[[16,0,0,1,0],[49,0,0,1,0],[52,0,0,2,0],[153,0,0,1,0],[154,0,0,1,0],[170,0,0,1,0]],"client":[[16,0,0,1,0],[83,0,0,1,0],[162,0,0,1,0]],"side":[[16,0,0,1,0],[83,0,0,1,0],[162,0,0,1,0]],"svg":[[16,0,0,1,0]],"tools":[[16,0,0,1,0],[81,0,0,1,0],[89,0,0,1,0],[96,0,0,1,0],[171,0,0,1,1]],"chart":[[16,0,0,0,1]],"graph":[[16,0,0,0,2]],"lr":[[16,0,0,0,2],[20,0,0,0,1],[33,0,0,0,1],[74,0,0,0,1],[78,0,0,0,1],[88,0,0,0,1]],"api":[[16,0,0,0,1],[30,0,0,1,0],[31,0,0,1,0],[48,0,0,1,0],[79,0,0,1,0],[110,0,0,1,0],[112,0,0,1,0],[126,0,0,2,0],[127,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0],[130,0,1,1,0],[131,0,1,1,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0],[143,0,0,1,0],[167,0,0,1,0],[173,0,0,1,0]],"guidelines":[[17,0,1,0,0]],"stays":[[17,0,0,1,0],[32,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[82,0,0,1,0],[117,0,0,1,0],[166,0,0,1,0]],"out":[[17,0,0,1,0],[26,0,0,0,1],[32,0,0,1,0],[34,0,0,1,0],[36,0,0,1,1],[37,0,0,0,2],[45,0,0,0,1],[53,0,0,1,0],[67,0,0,0,1],[71,0,0,2,0],[72,0,0,3,0],[73,0,0,4,0],[74,0,0,0,6],[78,0,0,0,8],[82,0,0,1,0],[88,0,0,0,1],[90,0,0,0,1],[91,0,0,0,1],[92,0,0,0,1],[94,0,0,0,1],[101,0,0,0,1],[104,0,0,5,0],[107,0,0,2,1],[138,0,0,7,0],[154,0,0,1,0],[158,0,0,0,2]],"renaming":[[17,0,0,1,0]],"breaks":[[17,0,0,1,0]],"until":[[17,0,0,1,0]],"remap":[[17,0,0,1,0]],"quality":[[17,0,0,1,0]],"converted":[[17,0,0,1,0],[42,0,0,1,0],[74,0,0,1,0],[76,0,0,1,0],[162,0,0,1,0],[163,0,0,1,0]],"first":[[17,0,0,1,0],[39,0,0,1,0],[67,0,0,1,0],[68,0,1,0,0],[72,0,0,1,0],[81,0,0,1,0],[95,0,0,0,1],[101,0,0,1,0],[121,0,0,1,0],[123,0,0,1,0],[136,0,0,1,0],[141,0,0,1,0],[157,0,0,1,0],[163,0,0,1,0]],"edit":[[17,0,0,1,0]],"order":[[17,0,0,1,0],[20,0,0,1,0],[38,0,0,2,0],[39,0,0,1,0],[61,0,0,1,0],[68,0,0,1,0],[76,0,0,1,0],[92,0,0,1,0],[99,0,0,1,0],[106,0,0,2,0],[109,0,0,0,1],[112,0,0,1,0],[113,0,0,1,0],[114,0,0,1,0],[118,0,0,1,0],[157,0,0,1,0],[158,0,0,1,0],[160,0,1,0,0]],"actually":[[17,0,0,1,0],[119,0,0,1,0]],"looks":[[17,0,0,1,0],[44,0,1,0,0],[89,0,0,1,0],[163,0,0,1,0]],"wrong":[[17,0,0,1,0],[23,0,0,1,0],[63,0,0,1,0],[68,0,0,1,0],[89,0,0,1,0],[128,0,0,1,0],[150,0,0,1,0],[163,0,0,1,0]],"frontmatter":[[18,1,1,1,0],[19,1,1,0,0],[20,1,1,0,0],[21,1,1,0,0],[22,1,1,0,0],[23,1,1,1,0],[24,1,1,1,0],[35,0,0,1,0],[38,0,0,3,0],[44,0,0,1,0],[49,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[62,0,0,1,0],[63,0,0,4,0],[64,0,0,1,0],[65,0,0,1,0],[66,0,0,1,0],[67,0,0,1,0],[68,0,0,2,0],[70,0,0,0,2],[75,0,0,1,0],[76,0,0,2,0],[77,0,0,1,0],[80,0,0,1,0],[84,0,0,1,0],[100,0,0,1,0],[105,0,0,1,0],[106,0,0,1,0],[110,0,0,2,0],[112,0,0,1,0],[115,0,0,1,1],[117,0,0,3,0],[120,0,0,1,0],[128,0,1,1,0],[130,0,0,3,0],[131,0,0,0,1],[132,0,1,0,0],[133,0,1,0,0],[135,0,0,0,1],[139,0,0,1,0],[144,0,0,1,0],[154,0,0,1,0]],"fields":[[18,0,0,1,0],[19,0,0,1,0],[20,0,0,1,0],[21,0,0,1,0],[22,0,1,1,0],[23,0,0,1,0],[24,0,0,1,0],[63,0,0,2,0],[68,0,0,1,0],[108,0,0,1,0],[110,0,0,2,0],[130,0,0,1,0],[131,0,0,1,0]],"semantics":[[18,0,0,1,0],[19,0,0,1,0],[20,0,0,1,0],[21,0,0,1,0],[22,0,0,1,0],[23,0,0,1,0],[24,0,0,1,0]],"yaml":[[18,0,0,1,0],[64,0,0,0,1],[117,0,0,1,0],[128,0,0,1,0]],"things":[[18,0,0,1,0]],"lives":[[18,0,0,1,0]],"nav":[[18,0,0,1,0],[19,0,0,1,0],[20,0,1,1,2],[21,0,1,0,0],[22,0,0,1,0],[70,0,0,0,3],[73,0,0,2,0],[134,0,0,3,0],[153,0,0,1,1]],"minimum":[[19,0,1,0,0],[79,0,0,1,0]],"non":[[19,0,0,1,0],[21,0,0,1,0],[31,0,0,1,0],[42,0,0,1,0],[62,0,0,1,0],[75,0,0,1,0],[110,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[142,0,0,1,0],[145,0,0,0,1]],"empty":[[19,0,0,1,0],[31,0,0,1,0],[42,0,0,1,0],[61,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[146,0,0,1,0]],"sidebar":[[19,0,0,1,0],[22,0,0,1,0],[24,0,0,1,0],[39,0,0,1,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,1,1,0],[61,0,0,1,0],[73,0,0,1,0],[75,0,0,1,0],[102,0,0,1,0],[134,0,0,1,0],[153,0,0,3,0]],"recommended":[[19,0,0,1,0]],"routing":[[19,0,0,1,0],[33,0,0,0,1],[42,0,0,1,0],[43,0,0,1,0],[82,0,0,1,0],[85,0,0,1,0],[101,0,0,1,0],[138,0,0,2,0],[139,0,0,2,0],[151,0,0,1,0],[155,0,0,2,0]],"hint":[[19,0,0,1,0],[22,0,0,1,0]],"converter":[[19,0,0,1,0],[129,0,0,1,0],[132,0,0,1,0]],"synthesizes":[[19,0,0,1,0]],"during":[[19,0,0,1,0],[32,0,0,1,0],[90,0,0,1,0]],"slug":[[19,0,0,1,0],[20,0,0,3,0],[21,0,0,0,3],[38,0,0,0,3],[50,0,0,1,0],[75,0,0,1,0],[76,0,0,1,0],[93,0,0,0,2],[106,0,0,0,2],[108,0,0,0,1],[151,0,0,1,0],[153,0,0,0,2],[154,0,0,1,0]],"declared":[[19,0,0,1,0],[20,0,0,1,0]],"pages":[[19,0,0,1,0],[20,0,0,1,0],[21,0,0,1,0],[22,0,0,2,0],[38,0,0,1,0],[39,0,0,1,0],[44,0,0,1,0],[46,0,0,2,0],[47,0,0,0,2],[48,0,1,0,1],[49,0,0,1,0],[50,0,0,2,0],[54,0,0,2,0],[55,0,0,1,0],[66,0,0,1,0],[73,0,0,2,0],[75,0,0,1,0],[80,0,0,1,0],[91,0,0,1,0],[102,0,0,1,0],[106,0,0,2,0],[108,0,0,1,0],[120,0,0,2,0],[121,0,0,2,0],[134,0,0,1,0],[138,0,0,2,0],[142,0,0,2,3],[144,0,0,1,0],[145,0,0,0,3],[147,0,0,1,0],[154,0,0,0,1],[155,0,0,1,0]],"excluded":[[19,0,0,1,0]],"grouped":[[19,0,0,1,0],[120,0,0,2,0],[124,0,0,1,0],[127,0,0,1,0]],"indexes":[[19,0,0,1,0],[121,0,0,2,0],[122,0,0,1,0]],"appear":[[19,0,0,1,0],[100,0,0,1,0]],"fallback":[[19,0,0,1,0],[20,0,0,1,0],[42,0,0,1,0],[72,0,0,1,0],[83,0,0,1,0],[84,0,0,1,0],[104,0,0,1,0],[122,0,0,1,0],[123,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[155,0,0,1,0],[156,0,0,2,0]],"connect":[[19,0,0,0,1],[21,0,0,0,2],[32,1,1,0,0],[33,1,1,0,0],[34,1,1,0,0],[35,1,1,0,0],[36,1,1,0,0],[37,1,1,0,0],[38,1,1,0,0],[39,1,1,0,0],[40,1,1,0,0],[41,1,1,0,0],[42,1,1,0,0],[79,0,0,1,0],[96,0,0,1,0],[102,0,0,2,0],[120,0,0,1,0]],"site":[[19,0,0,0,2],[20,0,0,0,3],[21,0,0,0,4],[26,0,0,1,0],[32,1,1,1,0],[33,1,1,0,0],[34,1,1,0,0],[35,1,1,0,0],[36,1,1,0,0],[37,1,1,0,0],[38,1,1,0,0],[39,1,1,0,0],[40,1,1,0,0],[41,1,1,1,0],[42,1,1,0,0],[43,0,0,2,0],[44,0,0,2,0],[45,0,0,2,0],[46,0,0,1,0],[47,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,2,0],[55,0,0,1,0],[70,0,0,0,3],[71,0,0,1,0],[72,0,0,3,0],[73,0,0,1,0],[74,0,0,2,5],[76,0,0,2,0],[78,0,0,0,8],[79,0,0,1,0],[82,0,0,1,0],[83,0,0,1,0],[96,0,0,1,0],[101,0,0,1,0],[102,0,0,3,0],[104,0,0,2,0],[108,0,0,2,1],[120,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0]],"build":[[19,0,0,0,1],[20,0,0,1,0],[21,0,0,1,1],[23,0,0,1,0],[24,0,0,1,0],[25,0,0,1,0],[32,0,0,2,0],[33,0,0,1,0],[34,0,0,2,0],[35,0,0,2,0],[36,0,0,1,0],[37,0,1,2,2],[38,0,0,1,0],[39,0,0,1,0],[40,0,0,1,0],[41,0,0,1,0],[42,0,0,2,0],[45,0,0,2,0],[50,0,0,2,0],[51,0,0,1,0],[71,0,0,1,0],[73,0,0,1,0],[92,0,0,3,1],[99,0,0,1,0],[102,0,0,1,0],[109,0,0,1,0],[112,0,0,1,0],[120,0,0,1,0],[126,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0],[147,0,0,3,0],[154,0,0,1,0],[164,0,0,1,0],[166,0,1,0,0],[170,0,0,1,0]],"groups":[[20,0,1,3,1],[21,0,2,2,0],[36,0,0,1,0],[38,0,1,3,1],[39,0,0,0,6],[40,0,0,0,4],[59,0,0,0,2],[61,0,0,1,0],[67,0,0,1,0],[70,0,0,0,5],[75,0,0,1,0],[76,0,0,1,0],[92,0,0,0,1],[93,0,0,0,5],[101,0,0,1,0],[106,0,0,2,1],[108,0,0,0,1],[109,0,0,0,2],[120,0,0,1,0],[123,0,0,1,0],[141,0,0,0,6],[142,0,0,0,2],[151,0,0,1,2],[153,0,0,0,2],[154,0,0,0,2],[155,0,0,3,0]],"become":[[20,0,1,0,0],[21,0,1,0,0]],"may":[[20,0,0,1,0],[46,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[89,0,0,1,0],[124,0,0,1,0],[144,0,0,1,0]],"declare":[[20,0,0,1,0],[21,0,0,1,0],[38,0,0,1,0],[106,0,0,1,0]],"more":[[20,0,0,1,0],[32,0,0,1,0],[122,0,0,1,0],[124,0,0,1,0]],"slugs":[[20,0,0,1,0],[58,0,1,0,0],[61,0,0,1,0]],"shared":[[20,0,0,1,0],[30,0,0,1,0],[32,0,0,1,0],[33,0,0,1,0],[34,0,0,1,0],[35,0,0,1,0],[36,0,0,1,0],[37,0,0,1,0],[38,0,0,1,0],[39,0,0,1,0],[40,0,0,1,0],[41,0,0,1,0],[42,0,0,1,0],[86,0,0,1,0],[91,0,0,2,1],[110,0,0,3,0],[130,0,0,2,0],[163,0,0,1,0],[172,0,0,1,0]],"multiple":[[20,0,0,1,0]],"once":[[20,0,0,1,0],[24,0,0,1,0],[80,0,0,1,0],[98,0,0,1,0],[99,0,0,1,0],[100,0,0,1,0],[101,0,0,1,0],[102,0,0,1,0],[135,0,0,1,0]],"loads":[[20,0,0,1,0],[38,0,0,1,0],[106,0,0,1,0]],"exists":[[20,0,0,1,0],[38,0,0,1,0],[44,0,0,1,0],[106,0,0,1,0]],"intersection":[[20,0,0,1,0]],"produces":[[20,0,0,1,0],[25,0,0,1,0],[69,0,0,1,0],[78,0,0,1,0],[81,0,0,1,0],[82,0,0,1,0],[137,0,0,1,0]],"metadata":[[20,0,0,1,0],[24,0,0,1,0],[31,0,0,1,0],[33,0,0,0,1],[38,0,0,2,0],[44,0,0,2,0],[48,0,0,1,0],[75,0,0,1,0],[78,0,0,1,0],[84,0,0,1,0],[104,0,0,1,0],[106,0,0,2,0],[123,0,0,1,0],[138,0,0,2,0],[146,0,0,3,1],[147,0,0,1,0],[154,0,0,1,0],[155,0,0,1,0],[170,0,0,1,0]],"grouping":[[20,0,0,1,0],[24,0,0,1,0],[75,0,0,1,0]],"declares":[[20,0,0,1,0],[38,0,0,1,0],[93,0,0,0,1],[153,0,0,0,1]],"isn":[[20,0,0,1,0],[23,0,0,1,0]],"fails":[[20,0,0,1,0],[35,0,0,1,0],[67,0,0,2,0],[68,0,0,1,0],[76,0,0,1,0],[106,0,0,1,0],[150,0,0,1,0]],"unknown":[[20,0,0,1,0],[23,0,0,2,0],[35,0,0,0,1],[37,0,0,0,2],[58,0,0,0,2],[63,0,0,1,0],[64,0,0,2,1],[65,0,0,0,1],[67,0,0,1,1],[68,0,0,1,0],[76,0,0,1,0],[92,0,0,0,1],[93,0,0,0,4],[105,0,0,1,0],[110,0,0,4,0],[128,0,0,3,0],[131,0,0,0,1],[135,0,0,2,0],[153,0,0,0,3]],"truth":[[20,0,0,1,0],[24,0,0,1,0]],"drift":[[20,0,0,1,0],[136,0,0,1,0]],"infers":[[20,0,0,1,0],[38,0,0,1,0],[106,0,0,1,0]],"values":[[20,0,0,1,0],[49,0,0,1,0],[106,0,0,1,0],[109,0,0,1,0]],"finds":[[20,0,0,1,0],[76,0,0,1,0],[162,0,0,1,0]],"sets":[[20,0,0,1,0],[21,0,0,1,0],[53,0,0,2,0],[144,0,0,1,0],[149,0,0,1,0],[171,0,0,1,0]],"descriptions":[[20,0,0,1,0],[38,0,0,2,0],[45,0,0,1,0],[106,0,0,2,0],[138,0,0,1,0],[139,0,0,1,0],[155,0,0,2,0]],"nested":[[20,0,0,1,0],[21,0,1,1,0]],"flowchart":[[20,0,0,0,1],[33,0,0,0,1],[70,0,0,0,1],[74,0,0,0,1],[78,0,0,0,1],[88,0,0,0,1],[158,0,0,0,1]],"cfg":[[20,0,0,0,2]],"page1":[[20,0,0,0,2]],"page2":[[20,0,0,0,2]],"page3":[[20,0,0,0,2]],"resolver":[[20,0,0,0,9],[70,0,0,0,1]],"sections":[[20,0,0,0,2],[38,0,0,1,0],[73,0,0,1,0],[100,0,0,1,0],[123,0,0,1,0],[138,0,0,1,0],[158,0,0,1,0]],"children":[[21,0,0,2,1],[58,0,0,0,13],[75,0,0,1,0]],"deeper":[[21,0,0,1,0],[61,0,0,1,0]],"trees":[[21,0,0,1,0],[114,0,0,1,0]],"remote":[[21,0,0,1,2]],"lands":[[21,0,0,1,0]],"slot":[[21,0,0,1,0]],"leaf":[[21,0,0,2,0],[75,0,0,2,0]],"directly":[[21,0,0,1,0],[39,0,0,1,0],[72,0,0,2,0],[73,0,0,1,0],[75,0,0,1,0],[92,0,0,1,0],[109,0,0,1,0],[113,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0],[137,0,0,1,0],[143,0,0,1,0]],"contain":[[21,0,0,1,0],[54,0,0,1,0],[75,0,0,1,0]],"schema":[[22,0,0,1,0],[23,0,0,4,0],[35,0,0,1,0],[48,0,0,1,0],[62,0,0,1,0],[63,0,0,3,0],[67,0,0,1,0],[68,0,0,2,0],[110,0,0,2,0],[126,0,0,2,0],[127,0,0,1,0],[128,0,0,3,0],[129,0,0,1,0],[130,0,0,6,0],[131,0,0,2,1],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,4,0],[136,0,0,1,0],[146,0,0,0,1],[147,0,0,1,0]],"accepts":[[22,0,0,1,0],[66,0,0,1,0],[148,0,0,1,0],[154,0,0,1,0]],"resolved":[[22,0,0,1,0],[36,0,0,1,0],[73,0,0,1,0],[157,0,0,1,0]],"deprecatedreason":[[22,0,0,1,0],[132,0,0,1,0]],"message":[[22,0,0,1,0],[131,0,0,0,1],[169,0,0,1,0]],"paired":[[22,0,0,1,0]],"experimental":[[22,0,0,2,0],[120,0,0,1,0],[132,0,0,1,0]],"canary":[[22,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0]],"hides":[[22,0,0,1,0]],"channels":[[22,0,0,1,0]],"new":[[22,0,0,1,0],[46,0,0,0,1],[81,0,0,1,0],[132,0,0,1,0],[144,0,0,0,1],[145,0,0,0,2]],"highlights":[[22,0,0,1,0],[139,0,0,1,0]],"recently":[[22,0,0,1,0]],"added":[[22,0,0,1,0]],"draft":[[22,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0]],"excludes":[[22,0,0,1,0]],"generation":[[22,0,0,1,0],[37,0,0,1,0],[41,0,0,1,0],[61,0,0,1,0],[92,0,0,1,0],[106,0,0,1,0],[110,0,0,1,0],[126,0,0,1,0],[166,0,0,1,0]],"entirely":[[22,0,0,1,0],[53,0,0,1,0]],"tags":[[22,0,0,2,0],[132,0,0,1,0],[133,0,0,1,0],[161,0,0,1,0]],"free":[[22,0,0,1,0],[58,0,0,1,0],[143,0,0,1,0],[167,0,0,1,0]],"form":[[22,0,0,1,0]],"facets":[[22,0,0,1,0]],"availablein":[[22,0,0,1,0],[132,0,0,1,0],[136,0,0,1,0]],"array":[[22,0,0,1,0],[58,0,0,0,1],[114,0,0,1,0],[131,0,0,0,1],[132,0,0,3,0],[133,0,0,2,0],[134,0,0,1,0],[139,0,0,1,0],[154,0,0,1,0]],"cross":[[22,0,0,1,0],[23,0,0,1,0],[24,0,0,1,0],[63,0,0,2,0],[68,0,0,1,0],[129,0,0,1,0],[131,0,0,0,1],[149,0,0,1,0]],"availability":[[22,0,0,1,0]],"map":[[22,0,0,1,0],[28,0,0,1,0],[58,0,0,0,1],[147,0,0,1,0],[167,0,0,1,0]],"layout":[[22,0,0,1,0],[48,0,0,1,0],[56,0,0,1,0],[82,0,0,1,0]],"uis":[[22,0,0,1,0]],"support":[[22,0,0,1,0]],"width":[[22,0,0,1,0]],"lastmodified":[[22,0,0,1,0],[105,0,0,1,0],[114,0,0,1,0],[132,0,0,1,0]],"lastauthor":[[22,0,0,1,0],[105,0,0,1,0],[114,0,0,1,0],[132,0,0,1,0]],"filled":[[22,0,0,1,0]],"pass":[[22,0,0,1,0],[46,0,0,1,0],[53,0,0,1,0],[60,0,0,1,0],[109,0,0,1,0],[110,0,0,2,0],[122,0,0,1,0],[135,0,0,1,0],[149,0,0,1,0],[155,0,0,1,0],[156,0,0,1,0],[162,0,0,1,0],[167,0,0,1,0],[169,0,0,1,0],[170,0,0,1,0]],"enrich":[[22,0,0,1,0],[105,0,0,1,0],[132,0,0,1,0]],"git":[[22,0,0,1,0],[34,0,0,0,1],[37,0,0,0,1],[105,0,0,2,0],[114,0,0,1,0],[132,0,0,1,0]],"hand":[[22,0,0,1,0]],"rules":[[23,0,1,2,0],[62,0,0,1,0],[84,0,0,1,0],[126,1,1,1,0],[127,1,2,0,0],[128,1,3,0,0],[129,1,3,0,0],[130,1,1,0,0],[131,1,1,0,0],[132,1,1,0,0],[133,1,1,0,0],[134,1,1,0,0],[135,1,1,0,0],[136,1,1,0,0],[163,0,1,0,0]],"enforces":[[23,0,0,1,0]],"violations":[[23,0,0,1,0],[64,0,0,1,0],[65,0,0,1,0],[68,0,0,1,0],[131,0,0,1,1]],"surface":[[23,0,0,1,0],[170,0,0,1,0]],"ci":[[23,0,0,1,0],[29,0,0,0,1],[34,0,0,2,0],[36,0,0,1,0],[62,1,1,2,0],[63,1,1,1,0],[64,1,1,1,0],[65,1,2,2,0],[66,1,1,2,0],[67,1,1,1,0],[68,1,1,2,0],[97,0,0,1,0],[126,0,0,1,0],[135,0,0,1,0],[136,0,0,2,0],[156,0,0,1,0]],"they":[[23,0,0,1,0],[32,0,0,1,0],[33,0,0,1,0],[34,0,0,1,0],[35,0,0,1,0],[36,0,0,1,0],[37,0,0,1,0],[38,0,0,2,0],[39,0,0,1,0],[40,0,0,1,0],[41,0,0,1,0],[42,0,0,1,0],[52,0,0,1,0],[66,0,0,1,0],[74,0,0,1,0],[95,0,0,0,1],[96,0,0,1,0],[123,0,0,1,0],[126,0,0,1,0],[127,0,0,1,0],[136,0,0,1,0],[173,0,0,1,0]],"reach":[[23,0,0,1,0],[66,0,0,1,0],[89,0,0,1,0],[126,0,0,1,0]],"relevant":[[23,0,0,1,0]],"field":[[23,0,0,3,0],[24,0,0,1,0],[46,0,0,1,0],[63,0,0,1,0],[64,0,0,1,0],[68,0,0,2,0],[75,0,0,1,0],[128,0,0,4,0],[131,0,0,1,2],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[139,0,0,1,0]],"missing":[[23,0,0,1,0],[49,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[63,0,0,1,0],[68,0,0,1,0],[94,0,0,2,0],[105,0,0,1,0],[128,0,0,1,0],[131,0,0,1,0],[136,0,0,1,0],[147,0,0,1,0]],"top":[[23,0,0,1,0],[45,0,0,1,0],[63,0,0,1,0],[117,0,0,1,0],[128,0,0,1,0],[138,0,0,1,0],[139,0,0,2,0],[164,0,0,1,0],[173,0,0,1,0]],"level":[[23,0,0,1,0],[42,0,0,1,0],[45,0,0,1,0],[55,0,0,1,0],[58,0,0,0,2],[63,0,0,1,0],[72,0,0,1,0],[79,0,0,1,0],[109,0,0,1,0],[120,0,0,3,0],[121,0,0,1,0],[122,0,0,1,0],[123,0,0,1,0],[128,0,0,1,0],[137,0,0,1,0],[138,0,0,2,0],[139,0,0,2,0],[142,0,0,1,0],[147,0,1,0,0],[148,0,1,0,0],[154,0,0,1,0]],"warn":[[23,0,0,1,0],[110,0,0,1,0],[128,0,0,1,0],[130,0,0,2,0],[131,0,0,0,1]],"fail":[[23,0,0,1,0],[62,0,0,2,0],[63,0,0,1,0],[64,0,0,2,0],[65,0,0,1,0],[66,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[92,0,0,0,1],[93,0,0,0,1],[126,0,0,1,0],[136,0,0,1,0]],"parse":[[23,0,0,2,0],[63,0,0,2,0],[68,0,0,1,0],[76,0,0,1,0],[128,0,0,3,0],[131,0,0,0,1],[172,0,0,1,0]],"meta":[[23,0,0,1,0],[63,0,0,1,0],[110,0,0,2,0],[128,0,0,1,0],[130,0,0,3,0],[131,0,0,0,1],[134,0,1,0,0],[136,0,0,1,0],[146,0,0,1,2]],"doesn":[[23,0,0,2,0],[63,0,0,1,0],[65,0,0,1,0],[129,0,0,1,0],[139,0,0,1,0],[173,0,0,1,0]],"invalid":[[23,0,0,1,0],[63,0,0,1,0],[68,0,0,1,0],[129,0,0,1,0],[131,0,0,1,1]],"link":[[23,0,0,3,0],[24,0,0,1,0],[48,0,0,0,2],[49,0,0,1,0],[62,0,0,2,0],[63,0,0,3,0],[64,0,0,1,0],[65,0,0,1,0],[66,0,0,1,0],[67,0,0,1,0],[68,0,0,4,0],[72,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[107,0,0,1,0],[120,0,0,1,0],[126,0,0,2,0],[127,0,0,1,0],[128,0,0,1,0],[129,0,1,5,0],[130,0,0,1,0],[131,0,0,1,2],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0],[144,0,0,1,0],[147,0,0,1,0],[151,0,0,2,0],[158,0,0,2,0],[159,0,0,1,0]],"exist":[[23,0,0,1,0],[31,0,0,1,0],[63,0,0,1,0],[129,0,0,1,0]],"unresolved":[[23,0,0,2,0],[63,0,0,2,0],[68,0,0,1,0],[129,0,0,1,0],[131,0,0,0,1],[136,0,0,1,0]],"placeholder":[[23,0,0,2,0],[63,0,0,1,0],[68,0,0,1,0],[129,0,0,1,0],[131,0,0,0,1],[136,0,0,1,0],[160,0,0,2,0]],"doc":[[23,0,0,1,0]],"contains":[[23,0,0,1,0],[26,0,0,2,0],[34,0,0,1,0],[45,0,0,1,0],[54,0,0,1,0],[108,0,0,1,0],[120,0,0,1,0],[121,0,0,3,0],[129,0,0,1,0],[142,0,0,1,0]],"scoped":[[23,0,0,1,0],[45,0,0,1,0],[46,0,0,2,0],[54,0,0,2,0],[55,0,0,1,0],[63,0,0,1,0],[73,0,0,1,0],[104,0,0,1,0],[108,0,0,1,0],[129,0,0,1,0],[137,0,0,1,0],[138,0,0,3,0],[142,0,0,1,0],[145,0,0,0,1]],"another":[[23,0,0,1,0],[115,0,0,1,0],[129,0,0,1,0]],"extend":[[23,0,0,1,0],[63,0,0,1,0],[68,0,0,1,0],[110,0,0,1,0],[135,0,0,1,0]],"gives":[[24,0,1,0,0],[48,0,0,1,0],[83,0,0,1,0],[143,0,0,1,0]],"consistent":[[24,0,0,1,0]],"rest":[[24,0,0,1,0],[69,0,0,1,0],[109,0,0,1,0]],"configuration":[[24,0,0,1,0]],"drives":[[24,0,0,1,0],[75,0,0,1,0],[138,0,0,1,0]],"position":[[24,0,0,1,0],[75,0,0,1,0]],"filtering":[[24,0,0,1,0],[99,0,0,1,0]],"checks":[[24,0,0,1,0],[32,0,0,1,0],[43,0,0,1,0],[44,0,0,1,0],[45,0,0,1,0],[46,0,0,1,0],[47,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[62,0,0,1,0],[120,0,0,2,0],[126,0,0,1,0],[127,0,0,1,0],[128,0,0,1,0],[129,0,0,2,0],[130,0,0,1,0],[131,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0]],"query":[[25,0,0,1,0],[26,0,0,1,0],[27,0,1,1,0],[28,0,0,1,0],[29,0,0,1,1],[30,0,0,2,0],[31,0,0,1,0],[102,0,0,1,0],[167,0,0,1,0],[169,0,0,1,0],[170,0,0,0,1],[172,0,0,1,0]],"optionally":[[25,0,0,1,0],[26,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[29,0,0,1,0],[30,0,0,1,0],[31,0,0,1,0]],"stream":[[25,0,0,1,0],[26,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[29,0,0,1,0],[30,0,0,1,0],[31,0,0,1,0],[170,0,0,1,0]],"grounded":[[25,0,0,1,0],[26,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[29,0,0,2,0],[30,0,0,1,0],[31,0,0,1,0],[41,0,0,1,0],[84,0,0,1,0],[164,0,0,2,0],[165,0,0,1,0],[166,0,0,1,0],[167,0,0,1,0],[168,0,0,1,0],[169,0,1,1,0],[170,0,0,1,0],[171,0,0,1,0],[172,0,0,1,0],[173,0,0,1,0]],"answers":[[25,0,0,1,0],[26,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[29,0,1,2,0],[30,0,0,1,0],[31,0,0,2,0],[41,0,0,1,0],[74,0,0,0,1],[78,0,0,0,1],[165,0,0,1,0],[169,0,1,0,0]],"fetches":[[25,0,0,1,0],[89,0,0,1,0]],"those":[[25,0,0,1,0],[43,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[71,0,0,1,0],[76,0,0,1,0],[85,0,0,1,0],[90,0,0,1,0],[107,0,0,1,0],[120,0,0,1,0],[155,0,0,1,0]],"queries":[[25,0,0,1,0],[30,0,0,1,0],[164,0,0,1,0]],"database":[[25,0,0,1,0],[164,0,0,1,0]],"scripts":[[26,0,0,1,0],[37,0,0,0,1],[39,0,1,0,0],[40,0,1,0,0],[92,0,0,1,2],[109,0,0,1,0],[112,0,0,1,0]],"call":[[26,0,0,1,0],[154,0,0,1,0]],"generator":[[26,0,0,1,0],[102,0,0,1,0],[139,0,0,1,0],[165,0,0,1,0],[166,0,0,1,0]],"compact":[[26,0,0,1,0],[165,0,0,1,0]],"ranking":[[26,0,0,1,0],[165,0,0,1,0]],"store":[[26,0,0,1,0],[30,0,0,1,0],[165,0,0,1,0],[172,0,0,1,0]],"used":[[26,0,0,1,0],[147,0,0,1,0],[151,0,0,1,0]],"excerpts":[[26,0,0,1,0],[165,0,0,1,0]],"answer":[[26,0,0,1,0],[29,0,0,2,0],[84,0,0,1,0],[119,0,0,1,0],[122,0,0,1,0],[164,0,0,2,0],[165,0,0,1,0],[166,0,0,2,0],[167,0,0,1,0],[168,0,0,1,0],[169,0,0,2,0],[170,0,0,2,0],[171,0,0,1,0],[172,0,0,1,0],[173,0,0,1,0]],"bash":[[26,0,0,0,1],[34,0,0,0,1],[35,0,0,0,1],[36,0,0,0,1],[37,0,0,0,1],[45,0,0,0,1],[54,0,0,0,2],[65,0,0,0,1],[66,0,0,0,1],[67,0,0,0,1],[90,0,0,0,1],[91,0,0,0,1],[94,0,0,0,1],[101,0,0,0,1],[103,0,0,0,1],[104,0,0,0,1],[107,0,0,0,1],[110,0,0,0,1],[111,0,0,0,1],[125,0,0,0,1],[171,0,1,0,1]],"src":[[26,0,0,0,1],[33,0,0,0,1],[34,0,0,0,2],[35,0,0,0,1],[36,0,0,1,2],[37,0,0,1,6],[39,0,0,0,2],[45,0,0,0,1],[60,0,0,1,0],[67,0,0,0,1],[70,0,0,0,2],[78,0,0,0,3],[88,0,0,0,2],[90,0,0,0,1],[91,0,0,0,1],[92,0,0,0,1],[94,0,0,0,1],[101,0,0,0,1],[104,0,0,2,0],[106,0,0,1,0],[107,0,0,0,1],[110,0,0,2,0],[153,0,0,1,2],[158,0,0,0,2],[162,0,0,0,1]],"base":[[26,0,0,0,1],[36,0,0,0,1],[37,0,0,0,2],[45,0,0,0,1],[54,0,0,2,0],[101,0,0,0,1],[104,0,0,2,0],[112,0,0,1,0],[156,0,1,2,2]],"https":[[26,0,0,0,2],[34,0,0,0,1],[36,0,0,0,1],[37,0,0,0,3],[39,0,0,0,4],[40,0,0,0,2],[45,0,0,0,1],[48,0,0,0,2],[59,0,0,0,1],[101,0,0,0,1],[109,0,0,0,1],[141,0,0,0,3],[142,0,0,0,2],[146,0,0,0,3],[153,0,0,0,1],[154,0,0,0,2],[156,0,0,0,1],[166,0,0,0,1]],"com":[[26,0,0,0,2],[34,0,0,0,1],[36,0,0,0,1],[37,0,0,0,3],[39,0,0,0,4],[40,0,0,0,2],[59,0,0,0,1],[101,0,0,0,1]],"generatedocssearchfiles":[[26,0,0,0,2],[39,0,0,0,2],[112,0,0,1,0],[166,0,0,0,2]],"node":[[26,0,0,0,1],[39,0,0,0,1],[46,0,0,1,2],[49,0,0,1,0],[72,0,0,1,0],[74,0,0,1,1],[78,0,0,0,1],[80,0,0,1,0],[87,0,0,1,0],[88,0,0,0,1],[89,0,0,2,0],[90,0,0,1,0],[92,0,0,0,1],[95,0,0,2,1],[110,0,0,2,0],[112,0,0,1,0],[120,0,0,1,0],[130,0,0,1,0],[137,0,0,1,0],[143,0,0,1,0],[151,0,0,1,0],[153,0,0,0,1],[166,0,0,0,1],[167,0,0,1,0]],"await":[[26,0,0,0,1],[39,0,0,0,5],[40,0,0,0,1],[46,0,0,0,1],[59,0,0,0,1],[92,0,0,0,3],[93,0,0,0,2],[109,0,0,0,1],[114,0,0,0,1],[115,0,0,0,1],[116,0,0,0,1],[130,0,0,0,1],[135,0,0,0,1],[141,0,0,0,4],[142,0,0,0,4],[144,0,0,0,2],[151,0,0,0,1],[153,0,0,0,3],[154,0,0,0,2],[166,0,0,0,1],[171,0,0,0,1]],"outdir":[[26,0,0,0,1],[39,0,0,0,5],[40,0,0,0,1],[92,0,0,0,1],[93,0,0,0,2],[108,0,0,0,1],[109,0,0,0,1],[114,0,0,1,1],[141,0,0,1,4],[142,0,0,1,1],[151,0,0,4,1],[166,0,0,1,3]],"baseurl":[[26,0,0,0,1],[39,0,0,0,4],[40,0,0,0,2],[59,0,0,0,1],[109,0,0,0,1],[141,0,0,0,3],[142,0,0,0,2],[145,0,0,1,0],[153,0,0,0,1],[154,0,0,0,2],[156,0,0,1,1],[166,0,0,0,1]],"results":[[27,0,0,1,1],[28,0,0,0,1],[54,0,0,1,0],[165,0,0,1,0],[167,0,0,1,2]],"include":[[27,0,0,1,0],[44,0,0,2,0],[55,0,0,1,0],[87,0,0,1,0],[91,0,0,2,2],[92,0,1,0,0],[93,0,1,0,0],[94,0,0,1,0],[104,0,0,3,0],[105,0,0,2,0],[108,0,0,0,1],[158,0,0,1,0],[161,0,0,1,0],[167,0,0,1,0]],"urls":[[27,0,0,2,0],[45,0,0,1,0],[46,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[52,0,0,2,0],[54,0,0,3,0],[55,0,0,1,0],[63,0,0,1,0],[74,0,0,0,1],[89,0,0,1,0],[104,0,0,1,0],[129,0,0,1,0],[138,0,0,1,0],[142,0,0,1,0],[147,0,0,1,0],[158,0,0,1,0],[160,0,0,1,0],[167,0,0,1,0]],"paths":[[27,0,0,1,0],[39,0,0,1,0],[45,0,0,1,0],[51,0,0,1,0],[64,0,0,0,1],[66,0,0,1,0],[71,0,0,1,0],[99,0,0,1,0],[110,0,0,1,0],[112,0,0,1,0],[137,0,0,1,0],[148,0,0,1,0],[152,0,0,0,1],[167,0,0,1,0],[173,0,0,1,0]],"hash":[[27,0,0,1,0],[31,0,0,1,0],[60,0,0,1,0],[167,0,0,1,0]],"snippets":[[27,0,0,1,0],[167,0,0,1,0]],"own":[[27,0,0,1,0],[38,0,0,1,0],[41,0,0,1,0],[78,0,0,1,0],[83,0,0,1,0],[85,0,1,0,0],[95,0,0,1,0],[142,0,0,1,0],[146,0,0,1,0]],"searchdocs":[[27,0,0,0,2],[28,0,0,0,1],[167,0,0,0,3]],"docssearchcontentstore":[[27,0,0,0,2],[167,0,0,0,2]],"docssearchindex":[[27,0,0,0,2],[167,0,0,0,2]],"contentjson":[[27,0,0,0,2],[167,0,0,0,2]],"indexjson":[[27,0,0,0,2],[167,0,0,0,2]],"const":[[27,0,0,0,3],[28,0,0,0,1],[29,0,0,0,1],[39,0,0,0,3],[40,0,0,0,1],[46,0,0,0,3],[48,0,0,0,3],[57,0,0,0,1],[58,0,0,0,4],[59,0,0,0,1],[92,0,0,0,2],[93,0,0,0,2],[115,0,0,0,1],[130,0,0,0,1],[135,0,0,0,1],[142,0,0,0,1],[144,0,0,0,1],[145,0,0,0,2],[146,0,0,0,1],[153,0,0,0,2],[154,0,0,0,2],[156,0,0,0,1],[162,0,0,0,1],[167,0,0,0,2],[168,0,0,0,3],[169,0,0,0,1],[170,0,0,0,1],[171,0,0,0,1]],"vocabulary":[[28,0,1,0,0],[75,0,1,0,0],[165,0,1,0,0],[167,0,0,1,0],[173,0,0,1,0]],"aliases":[[28,0,1,0,0],[49,0,0,1,0],[147,0,0,1,0]],"starts":[[28,0,0,1,0],[79,0,0,1,0]],"lexical":[[28,0,0,1,0],[173,0,0,1,0]],"matching":[[28,0,0,1,0],[58,0,0,1,0],[170,0,0,1,0],[173,0,0,1,0]],"stemming":[[28,0,0,1,0],[167,0,0,1,0]],"prefix":[[28,0,0,1,0],[151,0,0,1,0],[167,0,0,1,0]],"matches":[[28,0,0,1,0],[54,0,0,1,0],[76,0,0,1,0],[79,0,0,1,0],[89,0,0,1,0],[167,0,0,2,0],[173,0,0,1,0]],"typo":[[28,0,0,1,0],[167,0,0,1,0]],"tolerant":[[28,0,0,1,0],[147,0,0,1,0],[167,0,0,1,0]],"fallbacks":[[28,0,0,1,0],[167,0,0,1,0]],"built":[[28,0,0,1,0],[29,0,0,1,0],[73,0,0,1,0],[83,0,0,1,0],[167,0,0,1,0]],"synonym":[[28,0,0,1,0],[167,0,0,1,0]],"synonyms":[[28,0,0,1,1],[167,0,0,1,1]],"users":[[28,0,0,1,0],[173,0,0,1,0]],"words":[[28,0,0,1,0]],"quickstart":[[28,0,0,0,1],[38,0,0,0,1],[45,0,0,0,1],[48,0,0,0,3],[49,0,0,1,0],[54,0,0,0,3],[77,0,0,1,0],[81,0,0,1,0],[90,0,0,1,1],[98,1,1,0,0],[99,1,1,0,0],[100,1,1,0,0],[101,1,1,0,0],[102,1,1,0,0],[115,0,0,0,1],[116,0,0,0,2],[120,0,0,1,0],[140,0,0,0,4],[146,0,0,0,5],[152,0,0,0,2],[167,0,0,0,1],[168,0,0,0,1]],"getting":[[28,0,0,0,1],[167,0,0,0,1]],"started":[[28,0,0,0,1],[38,0,0,0,2],[100,0,0,0,1],[106,0,0,0,2],[108,0,0,0,2],[120,0,0,1,0],[140,0,0,0,1],[152,0,0,0,1],[167,0,0,0,1]],"ai":[[29,0,1,0,0],[31,0,0,1,0],[49,0,0,1,0],[53,0,0,1,0],[55,0,0,1,0],[74,0,0,0,1],[75,0,0,1,0],[78,0,0,0,1],[83,0,0,1,0],[138,0,0,1,0],[144,0,0,3,0],[147,0,0,2,0],[148,0,0,1,0],[149,0,0,1,0],[170,0,0,1,5],[171,0,0,1,0]],"basic":[[29,0,0,1,0]],"retrieves":[[29,0,0,1,0]],"chunks":[[29,0,0,2,0],[169,0,0,1,0],[171,0,0,1,0],[173,0,0,1,0]],"builds":[[29,0,0,1,0],[80,0,0,1,0],[101,0,0,1,0],[156,0,0,1,0],[164,0,0,1,0]],"constrained":[[29,0,0,1,0]],"leaves":[[29,0,0,1,0],[51,0,0,1,0],[75,0,0,1,0],[144,0,0,1,0]],"model":[[29,0,0,2,1],[32,0,0,1,0],[69,0,0,1,0],[70,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,0,1,0],[75,0,0,1,0],[76,0,0,1,0],[77,0,0,1,0],[81,0,0,1,0],[122,0,0,3,0],[125,0,0,0,1],[140,0,0,0,2],[152,0,0,0,1],[169,0,0,2,0],[170,0,0,1,1]],"choice":[[29,0,0,1,0]],"provider":[[29,0,0,1,0],[65,0,0,1,0],[164,0,0,1,0],[170,0,1,1,0]],"point":[[29,0,0,1,0],[36,0,0,1,0],[37,0,0,1,0],[54,0,0,2,0],[58,0,0,1,0],[74,0,0,1,0],[80,0,0,1,0],[92,0,0,1,0],[95,0,0,2,0],[113,0,0,1,0],[137,0,0,1,0],[150,0,0,1,0],[162,0,0,1,0]],"display":[[29,0,0,1,0],[139,0,0,1,0],[170,0,0,1,0]],"sources":[[29,0,0,1,1],[31,0,0,2,0],[169,0,0,1,1],[170,0,0,2,1]],"streamed":[[29,0,0,1,0],[170,0,0,1,0]],"response":[[29,0,0,1,1],[42,0,0,1,0],[46,0,0,0,1],[49,0,0,1,0],[50,0,0,1,0],[112,0,0,1,0],[143,0,0,2,0],[144,0,0,1,3],[147,0,0,2,0],[170,0,0,3,1]],"ask":[[29,0,0,1,0]],"memory":[[29,0,0,1,0],[113,0,0,1,0],[115,0,0,1,0],[172,0,0,1,0],[173,0,0,1,0]],"retrieved":[[29,0,0,1,0],[169,0,0,2,0]],"streamdocsanswer":[[29,0,0,0,2],[170,0,0,0,4]],"vercel":[[29,0,0,0,1],[30,0,0,1,0],[49,0,0,1,0],[54,0,0,1,1],[142,0,0,1,0],[143,0,0,1,0],[167,0,0,1,0],[170,0,0,0,2],[171,0,0,1,0],[172,0,0,1,0]],"openai":[[29,0,0,0,1],[89,0,0,1,0],[170,0,0,0,1]],"gpt":[[29,0,0,0,1],[122,0,0,2,0],[125,0,0,0,1],[170,0,0,0,1]],"productname":[[29,0,0,0,1],[169,0,0,0,1],[170,0,0,0,1]],"my":[[29,0,0,0,1],[45,0,0,0,1],[90,0,0,2,4],[94,0,0,0,2],[95,0,0,0,1],[100,0,0,0,2],[106,0,0,0,1],[107,0,0,0,1],[140,0,0,0,1],[141,0,0,0,2],[151,0,0,0,1],[152,0,0,0,1],[169,0,0,0,1],[170,0,0,0,1]],"library":[[29,0,0,0,1],[39,0,0,1,0],[85,0,0,1,0],[87,0,0,1,0],[92,0,0,1,0],[95,0,0,0,2],[99,0,0,1,0],[100,0,0,0,2],[106,0,0,0,2],[110,0,0,1,0],[112,0,1,1,0],[126,0,0,2,0],[127,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0],[130,0,1,1,0],[131,0,1,1,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0],[139,0,0,1,0],[140,0,0,0,2],[141,0,0,0,3],[152,0,0,0,2],[169,0,0,0,1],[170,0,0,0,1]],"guard":[[30,0,1,0,0]],"endpoint":[[30,0,1,0,0],[50,0,0,1,0]],"user":[[30,0,0,1,0],[49,0,0,2,0],[53,0,0,2,0],[54,0,0,0,2],[55,0,0,1,0],[75,0,0,1,0],[144,0,0,3,0],[147,0,0,2,0],[148,0,0,1,0],[149,0,0,2,0]],"request":[[30,0,0,1,0],[46,0,0,1,5],[47,0,0,0,2],[49,0,0,1,0],[52,0,0,1,0],[54,0,0,1,0],[64,0,0,0,1],[75,0,0,1,0],[87,0,0,1,0],[112,0,0,1,0],[143,0,0,1,0],[144,0,0,1,4],[145,0,0,1,2],[172,0,0,1,0]],"helpers":[[30,0,0,1,0],[42,0,0,1,0],[112,0,0,1,0],[143,0,1,1,0],[144,0,1,0,0],[145,0,1,1,0],[146,0,1,0,0],[147,0,2,0,0],[148,0,2,0,0],[149,0,1,0,0],[150,0,1,0,0],[164,0,0,1,0],[165,0,0,1,0],[166,0,0,1,0],[167,0,0,1,0],[168,0,0,1,0],[169,0,0,1,0],[170,0,0,1,0],[171,0,0,1,0],[172,0,0,1,0],[173,0,0,1,0]],"validatedocsquery":[[30,0,0,1,0],[172,0,0,1,0]],"trim":[[30,0,0,1,0],[172,0,0,1,0]],"cap":[[30,0,0,1,0],[172,0,0,1,0]],"readjsonwithlimit":[[30,0,0,1,0],[172,0,0,1,0]],"reject":[[30,0,0,1,0],[172,0,0,1,0]],"oversized":[[30,0,0,1,0],[172,0,0,1,0]],"bodies":[[30,0,0,1,0],[55,0,0,1,0],[172,0,0,1,0]],"getclientidentifier":[[30,0,0,1,0],[172,0,0,1,0]],"common":[[30,0,0,1,0],[138,0,0,1,0],[172,0,0,1,0]],"proxy":[[30,0,0,1,0],[172,0,0,1,0]],"ip":[[30,0,0,1,0],[172,0,0,1,0]],"headers":[[30,0,0,1,0],[47,0,0,0,2],[49,0,0,1,0],[53,0,0,1,0],[55,0,0,1,0],[144,0,0,1,2],[147,0,0,2,0],[172,0,0,1,0]],"creatememoryratelimiter":[[30,0,0,1,0],[172,0,0,1,0]],"demos":[[30,0,0,1,0],[172,0,0,2,0]],"production":[[30,0,0,1,0],[54,0,0,1,0],[101,0,0,1,0],[172,0,0,1,0]],"apps":[[30,0,0,1,0],[38,0,0,0,1],[50,0,0,1,0],[60,0,0,1,0],[73,0,0,1,0],[101,0,0,1,0],[138,0,0,1,0],[142,0,0,1,0],[172,0,0,1,0]],"adapt":[[30,0,0,1,0],[172,0,0,1,0]],"rate":[[30,0,0,1,0]],"limiter":[[30,0,0,1,0],[172,0,0,1,0]],"interface":[[30,0,0,1,0],[172,0,0,1,0]],"such":[[30,0,0,1,0],[49,0,0,1,0]],"redis":[[30,0,0,1,0],[172,0,0,1,0]],"kv":[[30,0,0,2,0],[49,0,0,1,0],[50,0,0,1,0],[172,0,0,2,0]],"cloudflare":[[30,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[75,0,0,1,0],[143,0,0,1,0],[167,0,0,1,0],[170,0,0,1,2],[172,0,0,1,0]],"durable":[[30,0,0,1,0],[172,0,0,1,0]],"objects":[[30,0,0,1,0],[143,0,0,1,0],[172,0,0,1,0]],"verify":[[31,0,1,0,0],[42,0,1,0,0],[54,0,1,0,0],[94,0,1,0,0]],"searching":[[31,0,0,2,0]],"returns":[[31,0,0,2,0],[49,0,0,1,0],[75,0,0,1,0],[144,0,0,2,0],[146,0,0,1,0],[151,0,0,1,0],[153,0,0,1,0],[154,0,0,1,0]],"expected":[[31,0,0,1,0],[54,0,0,1,0]],"guide":[[31,0,0,1,0],[43,0,0,1,0],[147,0,0,1,0]],"phrase":[[31,0,0,1,0]],"result":[[31,0,0,1,0],[105,0,0,1,0],[115,0,0,0,3],[130,0,0,0,1],[131,0,1,0,0],[142,0,0,1,4],[153,0,0,1,0],[166,0,0,1,0],[168,0,0,1,0]],"cite":[[31,0,0,1,0],[43,0,0,1,0],[169,0,0,1,0]],"returned":[[31,0,0,1,0],[142,0,0,1,0]],"document":[[32,0,0,1,0],[33,0,0,1,0],[34,0,0,1,0],[35,0,0,1,0],[36,0,0,1,0],[37,0,0,1,0],[38,0,0,1,0],[39,0,0,1,0],[40,0,0,1,0],[41,0,0,1,0],[42,0,0,1,0],[165,0,0,2,0]],"repos":[[32,0,0,1,0],[34,0,0,1,0],[86,0,0,1,0]],"main":[[32,0,0,1,0],[83,0,0,1,0],[111,0,0,0,1]],"documents":[[32,0,0,1,0],[86,0,0,1,0]],"clones":[[32,0,0,1,0]],"serves":[[32,0,0,1,0],[71,0,0,1,0]],"artifact":[[32,0,0,1,0],[51,0,0,1,0],[65,0,0,1,0],[70,0,0,1,0],[81,0,0,1,0],[107,0,0,1,0],[122,0,0,1,0],[123,0,0,1,0],[148,0,0,1,0]],"flow":[[33,0,1,0,0],[88,0,1,0,0],[139,0,0,1,0],[151,0,0,1,0],[152,0,0,1,0]],"repo":[[33,0,0,0,3],[34,0,1,1,0],[37,0,0,1,0],[38,0,0,1,0],[42,0,0,1,0],[43,0,0,1,0],[86,0,0,2,0],[88,0,0,0,1],[92,0,0,0,2],[93,0,0,0,3],[100,0,0,1,0],[101,0,0,1,0],[104,0,0,1,0],[108,0,0,0,3],[119,0,0,1,0],[151,0,0,1,0]],"clone":[[33,0,0,0,3],[34,0,0,1,1],[37,0,0,0,1],[101,0,0,1,0]],"checkout":[[33,0,0,0,1],[34,0,0,1,0],[37,0,0,1,0],[64,0,0,0,1]],"c15t":[[33,0,0,0,1],[34,0,0,0,4],[35,0,0,0,1],[36,0,0,0,1],[37,0,0,0,6],[38,0,0,0,1],[39,0,0,0,2],[91,0,0,0,1]],"fetch":[[34,0,1,0,0],[37,0,0,1,2],[43,0,0,1,0],[49,0,0,2,0],[50,0,0,1,0],[72,0,0,1,0],[74,0,0,1,1]],"check":[[34,0,0,1,0],[42,0,0,1,0],[54,0,0,2,0],[94,0,0,2,0],[119,0,0,1,0],[122,0,0,1,0],[128,0,0,1,0]],"shallow":[[34,0,0,1,0]],"private":[[34,0,0,1,0],[86,0,0,1,0]],"platform":[[34,0,0,1,0],[83,0,0,1,0]],"deploy":[[34,0,0,1,0]],"key":[[34,0,0,1,0],[146,0,0,0,1]],"important":[[34,0,0,1,0]],"part":[[34,0,0,1,0],[120,0,0,1,0]],"normal":[[34,0,0,1,0]],"filesystem":[[34,0,0,1,0],[89,0,0,2,0],[151,0,0,1,0],[168,0,0,1,0],[171,0,0,2,0]],"whose":[[34,0,0,1,0]],"rm":[[34,0,0,0,1],[37,0,0,0,1],[92,0,0,0,3],[158,0,0,0,2]],"rf":[[34,0,0,0,1],[37,0,0,0,1]],"depth":[[34,0,0,0,1],[37,0,0,0,1]],"github":[[34,0,0,0,1],[35,0,0,0,1],[37,0,0,0,2],[64,0,1,1,1],[65,0,0,1,0],[89,0,0,1,0],[110,0,0,1,0],[136,0,0,2,0]],"against":[[35,0,0,1,0],[54,0,0,2,0],[110,0,0,1,0],[119,0,0,1,0],[130,0,0,1,0]],"fetched":[[35,0,0,1,0],[36,0,0,1,0]],"writing":[[35,0,0,1,0],[115,0,0,1,0]],"line":[[35,0,0,1,0],[67,0,0,1,0],[139,0,0,1,0]],"internal":[[35,0,0,1,0],[63,0,0,1,0],[84,0,0,1,0],[91,0,0,0,1],[110,0,0,1,0]],"placeholders":[[35,0,0,1,0],[63,0,0,1,0],[157,0,0,1,0],[158,0,0,1,0],[160,0,0,1,0]],"issues":[[35,0,0,1,0],[62,0,0,1,0],[63,0,0,1,0],[64,0,0,1,0],[65,0,0,1,0],[66,0,0,2,0],[67,0,0,1,0],[68,0,0,1,0],[126,0,0,1,0]],"easier":[[35,0,0,1,0],[67,0,0,1,0]],"debug":[[35,0,0,1,0],[67,0,0,1,0]],"than":[[35,0,0,1,0],[61,0,0,1,0]],"later":[[35,0,0,1,0],[62,0,0,1,0]],"using":[[35,0,0,1,0],[52,0,0,1,0],[61,0,0,1,0]],"stale":[[35,0,0,1,0],[66,0,0,1,0],[68,0,0,1,0],[136,0,0,1,0],[150,0,0,1,0]],"partial":[[35,0,0,1,0],[161,0,0,1,0]],"format":[[35,0,0,0,1],[37,0,0,0,1],[64,0,0,1,1],[65,0,0,2,1],[105,0,0,2,0],[110,0,0,2,0],[122,0,0,1,0],[136,0,0,2,0],[165,0,0,1,0]],"max":[[35,0,0,0,1],[37,0,0,0,1],[49,0,0,1,0],[53,0,0,1,0],[64,0,0,1,1],[66,0,0,0,1],[110,0,0,1,0],[144,0,0,1,0],[149,0,0,1,0]],"hosted":[[36,0,1,0,0],[42,0,0,1,0],[74,0,0,1,0],[78,0,0,1,0],[79,0,0,1,0],[80,0,0,1,0],[81,0,0,1,0],[83,0,0,2,0],[89,0,0,1,0],[98,0,0,1,0],[99,0,0,1,0],[100,0,0,1,0],[101,0,1,3,0],[102,0,0,1,0],[112,0,0,1,0],[120,0,0,3,0],[122,0,0,1,0],[137,0,0,2,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0],[141,0,0,1,0],[142,0,0,2,0],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,1,0],[152,0,0,1,0],[153,0,0,1,0],[154,0,0,1,0],[155,0,0,1,0],[156,0,0,1,0]],"repository":[[36,0,0,1,0],[125,0,0,1,0]],"directory":[[36,0,0,1,0],[71,0,0,1,0],[76,0,0,1,0],[104,0,0,1,0],[114,0,0,2,0]],"sitemap":[[36,0,0,2,0],[42,0,0,1,0],[44,0,0,2,0],[45,0,0,0,2],[46,0,0,3,2],[47,0,0,0,5],[50,0,0,3,0],[51,0,0,2,0],[52,0,1,2,0],[54,0,0,1,3],[55,0,0,5,0],[70,0,0,0,1],[71,0,0,3,0],[73,0,0,3,0],[76,0,0,1,0],[78,0,0,0,1],[101,0,0,1,2],[104,0,0,2,0],[108,0,0,4,2],[137,0,0,2,0],[138,0,0,4,0],[142,0,0,2,2],[144,0,0,1,0],[145,0,0,2,4],[147,0,0,1,0],[148,0,0,1,0]],"xml":[[36,0,0,1,0],[44,0,0,1,0],[45,0,0,0,1],[46,0,0,3,2],[47,0,0,0,3],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[54,0,0,0,2],[55,0,0,2,0],[71,0,0,1,0],[73,0,0,1,0],[101,0,0,0,1],[104,0,0,1,0],[108,0,0,1,1],[137,0,0,1,0],[138,0,0,2,0],[142,0,0,1,1],[145,0,0,0,2]],"robots":[[36,0,0,1,0],[42,0,0,1,0],[43,0,0,1,0],[44,0,0,2,0],[45,0,0,1,1],[46,0,0,1,0],[47,0,0,1,2],[48,0,0,1,0],[49,0,0,1,0],[50,0,0,3,0],[51,0,0,2,0],[52,0,1,2,0],[53,0,0,1,0],[54,0,0,2,0],[55,0,0,4,0],[70,0,0,0,1],[71,0,0,2,0],[73,0,0,2,0],[76,0,0,1,0],[101,0,0,0,1],[102,0,0,1,0],[104,0,0,2,0],[108,0,0,3,1],[137,0,0,1,0],[138,0,0,1,0],[142,0,0,1,1],[144,0,0,1,0],[145,0,0,1,2],[147,0,0,1,0],[148,0,0,1,0]],"automation":[[36,0,0,1,0]],"record":[[36,0,0,1,0]],"filters":[[36,0,0,1,0],[39,0,0,1,0],[91,0,0,1,0],[94,0,0,1,0],[108,0,0,0,1]],"stats":[[36,0,0,1,0],[108,0,0,0,1]],"make":[[37,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[69,0,0,1,0],[90,0,0,1,0],[102,0,0,1,0],[149,0,0,1,0],[173,0,0,1,0]],"skip":[[37,0,0,1,0],[66,0,0,1,0],[76,0,0,1,0],[110,0,0,1,0],[163,0,0,1,0]],"configure":[[38,0,1,0,0]],"version":[[38,0,0,1,0],[46,0,0,0,1],[74,0,0,1,1],[78,0,0,0,1],[80,0,0,1,0],[83,0,1,0,0],[87,0,0,1,0],[88,0,0,0,1],[89,0,0,2,0],[95,0,0,0,1],[133,0,0,1,0],[150,0,1,2,0]],"together":[[38,0,0,1,0],[136,0,0,1,0]],"drive":[[38,0,0,1,0]],"inferred":[[38,0,0,1,0],[106,0,0,1,0],[117,0,0,1,0]],"definedocsconfig":[[38,0,0,0,2],[106,0,0,0,2]],"export":[[38,0,0,0,1],[46,0,0,0,1],[57,0,0,0,1],[106,0,0,0,1],[158,0,0,1,0]],"summary":[[38,0,0,0,1],[43,0,0,1,0],[45,0,0,0,1],[65,0,0,1,0],[75,0,0,1,0],[90,0,0,0,1],[104,0,0,2,0],[106,0,0,0,1],[108,0,0,0,1],[131,0,0,0,1],[138,0,0,1,0],[139,0,0,3,0],[141,0,0,0,1],[151,0,0,1,0]],"consent":[[38,0,0,0,2]],"infrastructure":[[38,0,0,0,1]],"modern":[[38,0,0,0,1]],"web":[[38,0,0,0,1],[49,0,0,1,0],[96,0,0,1,0],[120,0,0,1,0],[143,0,0,2,0],[144,0,0,1,0]],"bullets":[[38,0,0,0,1],[139,0,0,1,0]],"integrations":[[38,0,0,0,1]],"primitives":[[38,0,0,0,1]],"audit":[[38,0,0,0,1],[43,0,0,1,0],[44,0,0,1,0],[45,0,0,1,0],[46,0,0,1,0],[47,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,5,1],[55,0,0,1,0]],"beststartingpoints":[[38,0,0,0,1],[139,0,0,1,0]],"urlpath":[[38,0,0,0,2],[47,0,0,0,1],[48,0,0,0,1],[93,0,0,0,2],[139,0,0,1,0],[144,0,0,0,1],[146,0,0,0,1],[153,0,0,0,2]],"get":[[38,0,0,0,2],[46,0,0,0,1],[74,0,0,1,0],[80,0,1,2,0],[100,0,0,0,1],[106,0,0,0,2],[108,0,0,0,2],[115,0,0,1,0],[120,0,0,1,0],[140,0,0,0,1],[152,0,0,0,1],[157,0,0,2,0]],"pipelines":[[39,0,1,0,0],[40,0,1,0,0],[136,0,0,1,0],[154,0,0,1,0]],"happy":[[39,0,0,1,0],[112,0,0,1,0],[140,0,0,0,1]],"apis":[[39,0,0,1,0],[83,0,0,1,0],[92,0,0,1,0],[99,0,0,1,0],[109,0,0,1,0],[113,0,0,2,0],[114,0,0,1,0],[115,0,0,1,0],[116,0,0,1,0],[117,0,0,1,0],[118,0,0,1,0],[137,0,0,2,0],[139,0,0,1,0],[140,0,0,0,1],[146,0,0,0,1],[147,0,0,1,0],[154,0,0,1,0],[155,0,0,1,0],[167,0,0,1,0]],"because":[[39,0,0,1,0],[124,0,0,1,0],[160,0,0,2,0]],"write":[[39,0,0,2,0],[59,0,0,1,0],[76,0,0,2,0],[78,0,0,1,0],[80,0,0,1,0],[93,0,0,0,1],[116,0,0,1,0],[153,0,0,1,1],[155,0,0,1,0]],"agentreadability":[[39,0,0,1,1]],"manifest":[[39,0,0,1,0],[42,0,0,1,0],[45,0,0,1,0],[46,0,0,0,2],[47,0,0,0,7],[48,0,0,3,0],[52,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,2,0],[61,0,0,1,0],[70,0,0,0,2],[73,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[142,0,0,2,3],[143,0,0,1,0],[144,0,0,0,1],[145,0,0,1,3],[146,0,0,2,2],[147,0,0,1,0],[148,0,0,1,0],[150,0,1,1,0],[153,0,0,2,0]],"merge":[[39,0,0,1,0],[73,0,0,1,0],[108,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[142,0,0,1,0],[145,0,0,0,1]],"marketing":[[39,0,0,1,0],[46,0,0,1,0],[73,0,0,1,0],[108,0,0,1,0],[138,0,0,1,0]],"blog":[[39,0,0,1,0],[46,0,0,1,0],[73,0,0,1,0],[108,0,0,1,0],[138,0,0,1,0]],"changelog":[[39,0,0,1,0],[46,0,0,1,0],[73,0,0,1,0],[108,0,0,1,0],[110,0,0,2,0],[130,0,0,2,0],[131,0,0,0,1],[133,0,1,0,0],[138,0,0,1,0]],"convertallmdx":[[39,0,0,0,2],[92,0,0,0,2],[112,0,0,1,0],[113,0,0,1,1],[114,0,1,0,1],[118,0,0,1,0],[141,0,0,0,2],[152,0,0,1,0]],"generateagentreadabilityartifacts":[[39,0,0,0,2],[40,0,0,0,1],[112,0,0,1,0],[137,0,0,1,1],[139,0,0,1,0],[141,0,0,1,2],[142,0,1,0,2],[143,0,0,1,0]],"generatellmfullcontextfiles":[[39,0,0,0,2],[112,0,0,1,0],[137,0,0,1,1],[139,0,0,1,0],[141,0,0,1,2]],"generatellmstxt":[[39,0,0,0,2],[109,0,0,0,2],[112,0,0,1,0],[137,0,0,2,1],[139,0,0,1,0],[141,0,0,0,2],[151,0,0,3,0]],"resolvedocsnavigation":[[39,0,0,0,1],[40,0,0,0,1],[58,0,0,1,0],[59,0,0,1,2],[73,0,0,1,0],[92,0,0,0,1],[93,0,0,0,1],[112,0,0,1,0],[137,0,0,0,1],[153,0,1,0,1],[154,0,0,1,1]],"defaultremarkplugins":[[39,0,0,0,2],[92,0,0,0,2],[93,0,0,0,1],[112,0,0,1,0],[114,0,0,1,2],[115,0,0,0,1],[116,0,0,0,1],[118,0,0,0,2],[141,0,0,0,2],[157,0,0,0,1],[158,0,0,1,0],[161,0,0,0,1],[162,0,0,0,2],[163,0,0,1,0]],"remarkinclude":[[39,0,0,0,2],[114,0,0,1,2],[118,0,0,2,2],[141,0,0,0,2],[157,0,0,0,1],[161,0,1,0,1],[163,0,0,1,0]],"docsconfig":[[39,0,0,0,7],[40,0,0,0,3],[59,0,0,0,2],[92,0,0,0,1],[93,0,0,0,3],[109,0,0,0,3],[141,0,0,0,4],[142,0,0,0,3],[151,0,0,0,2],[153,0,0,0,1],[154,0,0,0,1]],"sourceroot":[[39,0,0,0,3],[40,0,0,0,1]],"srcdir":[[39,0,0,0,2],[40,0,0,0,1],[59,0,0,0,1],[92,0,0,0,1],[93,0,0,0,3],[108,0,0,0,1],[109,0,0,0,1],[110,0,0,2,1],[114,0,0,2,1],[130,0,0,3,1],[135,0,0,0,1],[141,0,0,0,2],[151,0,0,1,1],[153,0,0,0,1],[154,0,0,0,2]],"remarkplugins":[[39,0,0,0,1],[92,0,0,0,1],[93,0,0,0,1],[114,0,0,1,1],[116,0,0,0,1],[118,0,0,0,1],[141,0,0,0,1],[161,0,0,0,1],[162,0,0,0,1]],"enrichfrontmatterfromgit":[[39,0,0,0,1],[114,0,0,1,1],[115,0,0,0,1]],"ait":[[40,0,0,0,1]],"choose":[[41,0,0,1,0],[79,0,1,0,0],[83,0,0,1,0],[102,0,1,0,0],[120,0,0,1,0],[122,0,0,1,0]],"pieces":[[41,0,0,1,0]],"return":[[41,0,0,1,0],[46,0,0,0,4],[47,0,0,0,6],[49,0,1,0,0],[50,0,1,0,0],[51,0,1,0,0],[52,0,1,0,0],[53,0,1,0,0],[54,0,0,1,0],[55,0,0,2,0],[58,0,0,0,6],[143,0,0,1,0],[144,0,0,0,2],[147,0,0,2,0]],"requests":[[41,0,0,1,0],[44,0,0,1,0],[45,0,0,1,0],[46,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[54,0,0,1,0],[75,0,0,1,0],[144,0,0,1,0]],"discovery":[[41,0,0,1,0],[44,0,0,1,0],[46,0,0,2,0],[73,0,0,1,0],[76,0,0,1,0],[80,0,0,1,0],[142,0,0,1,0],[144,0,0,1,0]],"optimize":[[41,0,0,1,0],[43,1,1,0,0],[44,1,1,0,0],[45,1,1,0,0],[46,1,1,0,0],[47,1,1,0,0],[48,1,1,0,0],[49,1,1,0,0],[50,1,1,0,0],[51,1,1,0,0],[52,1,1,0,0],[53,1,1,0,0],[54,1,1,0,0],[55,1,1,0,0],[102,0,0,1,0],[147,0,0,1,0]],"local":[[41,0,0,1,0],[54,0,0,2,0],[66,0,1,0,0],[90,0,0,1,0],[120,0,0,1,0],[156,0,0,1,0],[162,0,0,1,0],[167,0,0,1,0],[173,0,0,1,0]],"clean":[[42,0,0,1,0],[113,0,0,1,0],[117,0,0,1,0],[158,0,0,0,1],[160,0,0,1,0]],"home":[[42,0,0,1,0]],"ld":[[42,0,0,1,0],[43,0,0,1,0],[44,0,0,2,0],[45,0,0,1,0],[46,0,0,1,0],[47,0,0,1,0],[48,0,1,3,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,2,0],[55,0,0,2,0],[101,0,0,1,0],[102,0,0,1,0],[112,0,0,1,0],[146,0,0,1,4],[147,0,0,2,0]],"least":[[42,0,0,1,0]],"set":[[43,0,0,1,0],[44,0,0,1,0],[45,0,0,1,0],[46,0,0,1,0],[47,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,1,0],[61,0,0,1,0],[123,0,0,1,0],[132,0,0,1,0],[149,0,0,1,0]],"mirrors":[[43,0,0,1,0],[44,0,0,1,0],[45,0,0,1,0],[46,0,0,1,0],[47,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,2,0],[78,0,0,1,0],[84,0,0,1,0],[114,0,0,1,0],[120,0,0,1,0]],"sitemaps":[[43,0,0,1,0],[44,0,0,1,0],[45,0,0,1,0],[46,0,0,1,0],[47,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,2,0],[55,0,0,1,0],[102,0,0,1,0]],"want":[[43,0,0,1,0],[52,0,0,1,0],[81,0,0,1,0],[83,0,0,1,0],[86,0,0,2,0],[87,0,0,1,0],[101,0,0,1,0],[115,0,0,1,0],[160,0,0,1,0],[163,0,0,2,0],[171,0,0,1,0]],"find":[[43,0,0,1,0],[48,0,0,0,1],[171,0,0,1,0]],"attribute":[[43,0,0,1,0]],"handles":[[43,0,0,1,0],[46,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[86,0,0,1,0],[140,0,0,0,1]],"wires":[[43,0,0,1,0]],"shape":[[43,0,0,1,0],[50,0,0,1,0],[69,0,0,1,0],[89,0,0,2,0],[108,0,1,1,0],[122,0,0,1,0],[131,0,1,0,0],[139,0,0,1,0],[146,0,0,1,0],[151,0,0,2,0]],"based":[[43,0,0,1,0]],"evals":[[43,0,0,2,0],[119,1,1,0,0],[120,1,1,0,0],[121,1,1,0,0],[122,1,1,0,0],[123,1,1,0,0],[124,1,1,0,0],[125,1,2,1,3],[138,0,0,1,0]],"benchmark":[[43,0,0,1,0],[120,0,1,2,0],[121,0,1,0,0],[122,0,0,1,0],[124,0,0,1,0],[138,0,0,1,0]],"question":[[43,0,0,1,0],[124,0,1,0,0]],"around":[[43,0,0,1,0],[170,0,0,1,0]],"larger":[[43,0,0,1,0],[124,0,0,2,0]],"corpus":[[43,0,0,1,0],[120,0,0,1,0],[124,0,0,2,0]],"scaling":[[43,0,0,1,0]],"four":[[44,0,0,1,0],[137,0,0,1,0]],"layers":[[44,0,0,1,0],[164,0,0,1,0]],"tell":[[44,0,0,1,0],[95,0,1,0,0]],"retrieval":[[44,0,0,1,0]],"mirror":[[44,0,0,1,0],[45,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[142,0,0,1,0]],"receive":[[44,0,0,1,0]],"instead":[[44,0,0,1,0],[150,0,0,1,0],[151,0,0,1,0],[171,0,0,1,0]],"structured":[[44,0,0,1,0],[73,0,0,1,0],[138,0,0,1,0]],"canonical":[[44,0,0,2,0],[48,0,0,2,1],[49,0,0,2,0],[50,0,0,1,0],[54,0,0,1,0],[55,0,0,2,0],[104,0,0,1,0],[138,0,0,1,0],[144,0,0,3,0],[146,0,0,1,1],[147,0,0,3,0]],"alternate":[[44,0,0,1,0],[48,0,0,1,1],[55,0,0,1,0],[112,0,0,1,0],[146,0,0,1,1],[147,0,0,1,0]],"extract":[[44,0,0,1,0]],"identity":[[44,0,0,1,0]],"guessing":[[44,0,0,1,0]],"dom":[[44,0,0,1,0]],"attribution":[[44,0,0,1,0]],"last":[[44,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[68,0,0,1,0],[144,0,0,1,0],[147,0,0,1,0],[160,0,0,1,0]],"updated":[[44,0,0,1,0],[49,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[144,0,0,1,0],[147,0,0,1,0]],"keeps":[[44,0,0,1,0],[86,0,0,1,0],[123,0,0,1,0],[154,0,0,1,0],[156,0,0,1,0],[166,0,0,1,0]],"freshness":[[44,0,0,1,0],[45,0,0,1,0],[142,0,0,1,0]],"under":[[45,0,0,1,0],[66,0,0,1,0],[76,0,0,1,0],[104,0,0,1,0],[110,0,0,1,0],[120,0,0,2,0],[130,0,0,1,0],[139,0,0,3,0],[142,0,0,1,0],[151,0,0,1,0],[166,0,0,1,0]],"bridge":[[45,0,0,1,0]],"between":[[45,0,0,1,0],[163,0,0,1,0]],"dates":[[45,0,0,1,0],[138,0,0,1,0],[142,0,0,1,0]],"about":[[45,0,0,0,1]],"put":[[46,0,0,1,0],[49,0,0,1,0]],"direct":[[46,0,0,1,0],[49,0,0,1,0],[147,0,0,1,0]],"through":[[46,0,0,1,0],[76,0,0,1,0],[129,0,0,1,0],[144,0,0,1,0],[167,0,0,1,0]],"regenerator":[[46,0,0,1,0]],"merges":[[46,0,0,1,0]],"rebased":[[46,0,0,1,0],[147,0,0,1,0]],"relative":[[46,0,0,1,0],[52,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[74,0,0,1,0],[76,0,0,1,0],[80,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[104,0,0,3,0],[105,0,0,2,0],[107,0,0,1,0],[130,0,0,1,0],[137,0,0,2,0],[138,0,0,1,0],[151,0,0,3,0],[152,0,0,0,1],[162,0,0,1,0]],"straight":[[46,0,0,1,0]],"versions":[[46,0,0,1,0]],"too":[[46,0,0,1,0],[52,0,0,1,0],[91,0,0,1,0]],"etc":[[46,0,0,1,0],[108,0,0,1,0],[146,0,0,1,0]],"audits":[[46,0,0,1,0]],"especially":[[46,0,0,1,0]],"audited":[[46,0,0,1,0]],"readfile":[[46,0,0,0,2]],"fs":[[46,0,0,0,1],[58,0,0,1,0],[92,0,0,0,1],[143,0,0,1,0],[153,0,0,0,1]],"promises":[[46,0,0,0,1],[92,0,0,0,1],[153,0,0,0,1]],"join":[[46,0,0,0,2],[58,0,0,0,1]],"manifestjson":[[46,0,0,0,2]],"createagentmarkdownresponse":[[46,0,0,0,1],[47,0,0,0,1],[49,0,0,1,0],[53,0,0,1,0],[143,0,0,0,1],[144,0,1,0,1],[147,0,0,1,0]],"createrobotstxtresponse":[[46,0,0,0,1],[47,0,0,0,2],[52,0,0,1,0],[143,0,0,0,1],[145,0,1,0,1],[147,0,0,1,0]],"createsitemapmarkdownresponse":[[46,0,0,0,1],[47,0,0,0,1],[52,0,0,1,0],[143,0,0,0,1],[145,0,1,0,0],[147,0,0,1,0]],"createsitemapxmlresponse":[[46,0,0,0,2],[47,0,0,0,2],[52,0,0,1,0],[143,0,0,0,1],[145,0,1,0,1],[147,0,0,1,0]],"agentreadabilitymanifest":[[46,0,0,0,2],[108,0,0,0,1]],"markdownmirrortarget":[[46,0,0,0,2]],"async":[[46,0,0,0,2],[49,0,0,1,0],[144,0,0,1,1]],"function":[[46,0,0,0,2],[58,0,0,0,2],[114,0,0,1,0],[165,0,0,1,0]],"readmarkdownfile":[[46,0,0,0,1],[47,0,0,0,1],[49,0,0,1,0],[144,0,0,1,1]],"promise":[[46,0,0,0,2]],"null":[[46,0,0,0,5],[49,0,0,1,0],[53,0,0,1,0],[144,0,0,3,0],[149,0,0,1,0],[153,0,0,0,1]],"try":[[46,0,0,0,1]],"process":[[46,0,0,0,1],[92,0,0,0,2],[93,0,0,0,2],[109,0,0,0,1],[114,0,0,1,0],[153,0,0,0,2],[156,0,0,0,3],[162,0,0,0,1]],"cwd":[[46,0,0,0,1],[92,0,0,0,2],[109,0,0,0,1],[162,0,0,0,1]],"filepath":[[46,0,0,0,1],[144,0,0,0,1]],"utf8":[[46,0,0,0,1]],"catch":[[46,0,0,0,1],[50,0,0,1,0],[66,0,0,1,0],[127,0,0,1,0]],"typeof":[[46,0,0,0,1],[58,0,0,0,2]],"object":[[46,0,0,0,1],[47,0,0,0,1],[59,0,0,1,0],[105,0,0,1,0],[108,0,0,1,0],[135,0,0,0,1],[139,0,0,1,0],[144,0,0,0,1],[147,0,0,1,0],[153,0,0,1,0]],"enoent":[[46,0,0,0,1]],"enotdir":[[46,0,0,0,1]],"throw":[[46,0,0,0,1]],"handledocsrequest":[[46,0,0,0,1]],"method":[[46,0,0,0,2],[47,0,0,0,2],[144,0,0,0,2]],"head":[[46,0,0,0,1],[48,0,0,1,0],[146,0,0,1,3],[147,0,0,1,0]],"requestorigin":[[46,0,0,0,2],[47,0,0,0,6],[52,0,0,1,0],[144,0,0,0,1],[145,0,0,1,2]],"origin":[[46,0,0,0,1],[47,0,0,0,1],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[54,0,0,1,0],[144,0,0,0,1],[145,0,0,1,2],[147,0,0,1,0]],"switch":[[46,0,0,0,1],[47,0,0,0,1]],"pathname":[[46,0,0,0,1],[47,0,0,0,2]],"case":[[46,0,0,0,3],[47,0,0,0,6]],"storigin":[[47,0,0,0,1]],"sitemapurlpath":[[47,0,0,0,1],[145,0,0,0,1]],"fromentries":[[47,0,0,0,1],[144,0,0,0,1]],"marketingpages":[[47,0,0,0,1],[145,0,0,0,1]],"blogpages":[[47,0,0,0,1]],"current":[[48,0,0,1,0],[54,0,0,1,0],[60,0,0,1,0],[123,0,1,0,0],[124,0,0,1,0]],"org":[[48,0,0,1,0],[146,0,0,0,1],[147,0,0,1,0],[156,0,0,1,0]],"renderjsonld":[[48,0,0,1,2],[143,0,0,0,1],[147,0,0,1,0]],"typed":[[48,0,0,1,0],[63,0,0,1,0],[68,0,0,1,0],[146,0,0,0,1]],"renderjsonldscript":[[48,0,0,1,2],[143,0,0,0,1],[147,0,0,1,0]],"expects":[[48,0,0,1,0],[54,0,0,1,0]],"modified":[[48,0,0,1,0]],"date":[[48,0,0,1,0],[133,0,0,2,0]],"breadcrumbs":[[48,0,0,1,0]],"scraping":[[48,0,0,1,0]],"agentmanifest":[[48,0,0,0,4]],"jsonld":[[48,0,0,0,1]],"script":[[48,0,0,0,1],[54,0,0,1,0],[73,0,0,1,0],[92,0,0,2,0],[109,0,1,1,0],[146,0,0,0,3],[147,0,0,1,0]],"rel":[[48,0,0,0,2],[49,0,0,1,0],[144,0,0,1,0],[146,0,0,0,2]],"oriented":[[49,0,0,1,0],[54,0,0,1,0],[144,0,0,2,0]],"respected":[[49,0,0,1,0]],"known":[[49,0,0,1,0],[76,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0]],"gptbot":[[49,0,0,1,0],[144,0,0,1,0]],"claudebot":[[49,0,0,1,0],[144,0,0,1,0]],"bingbot":[[49,0,0,1,0],[144,0,0,1,0]],"amazonbot":[[49,0,0,1,0],[144,0,0,1,0]],"metaexternalagent":[[49,0,0,1,0],[144,0,0,1,0]],"perplexitybot":[[49,0,0,1,0],[144,0,0,1,0]],"mistralbot":[[49,0,0,1,0],[144,0,0,1,0]],"applebot":[[49,0,0,1,0],[144,0,0,1,0]],"bytespider":[[49,0,0,1,0],[144,0,0,1,0]],"youbot":[[49,0,0,1,0],[144,0,0,1,0]],"injected":[[49,0,0,1,0]],"discard":[[49,0,0,1,0]],"charset":[[49,0,0,1,0],[54,0,0,1,0],[144,0,0,1,0]],"utf":[[49,0,0,1,0],[54,0,0,1,0],[144,0,0,1,0]],"vary":[[49,0,0,1,0],[53,0,0,1,0],[144,0,0,1,0],[147,0,0,1,0],[149,0,0,1,0]],"cache":[[49,0,0,1,0],[53,0,1,2,0],[144,0,0,1,0],[147,0,0,1,0],[149,0,1,2,0]],"control":[[49,0,0,1,0],[53,0,1,1,0],[92,0,0,1,0],[113,0,0,1,0],[137,0,0,1,0],[144,0,0,1,0],[147,0,0,1,0],[149,0,1,1,0]],"age":[[49,0,0,1,0],[53,0,0,1,0],[144,0,0,1,0],[149,0,0,1,0]],"must":[[49,0,0,1,0],[53,0,0,2,0],[144,0,0,1,0],[149,0,0,1,0],[154,0,0,1,0],[160,0,0,2,0]],"revalidate":[[49,0,0,1,0],[53,0,0,1,0],[144,0,0,1,0],[149,0,0,1,0]],"sync":[[49,0,0,1,0],[60,0,0,1,0],[144,0,0,1,0],[154,0,0,1,0]],"disk":[[49,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[89,0,0,1,0],[115,0,0,1,0],[119,0,0,1,0]],"r2":[[49,0,0,1,0],[50,0,0,1,0]],"asset":[[49,0,0,2,0],[50,0,0,2,0],[51,0,0,1,0]],"binding":[[49,0,0,1,0],[50,0,0,1,0],[170,0,0,1,0]],"edge":[[49,0,0,1,0],[50,0,0,1,0],[84,0,0,1,0],[143,0,0,2,0],[164,0,0,1,0],[167,0,0,1,0],[173,0,0,1,0]],"logic":[[49,0,0,1,0],[75,0,0,1,0],[153,0,0,1,0]],"wherever":[[49,0,0,1,0],[75,0,0,1,0]],"intercept":[[49,0,0,1,0],[50,0,0,1,0]],"usually":[[49,0,0,1,0],[50,0,0,1,0],[68,0,0,1,0],[114,0,0,1,0],[136,0,0,1,0],[163,0,0,1,0]],"server":[[49,0,0,1,0],[50,0,0,3,0],[75,0,0,1,0]],"h3":[[49,0,0,1,0],[50,0,0,2,0],[59,0,0,1,0],[61,0,0,1,0],[154,0,0,1,0]],"regenerators":[[50,0,0,1,0]],"runs":[[50,0,0,2,0],[51,0,0,1,0],[62,0,0,1,0],[64,0,0,0,1],[76,0,1,1,0],[84,0,0,1,0],[101,0,0,2,0],[103,0,0,1,0],[110,0,0,1,0],[158,0,0,1,0]],"nuxt":[[50,0,0,1,0]],"astro":[[50,0,0,2,0],[71,0,0,1,0],[75,0,0,1,0],[78,0,0,1,0],[83,0,0,2,0],[146,0,0,1,0]],"workers":[[50,0,0,1,0],[75,0,0,1,0],[143,0,0,1,0],[170,0,0,0,1]],"worker":[[50,0,0,1,0]],"express":[[50,0,0,1,0]],"hono":[[50,0,0,1,0]],"fastify":[[50,0,0,1,0]],"rebase":[[50,0,0,1,0]],"either":[[50,0,0,1,0],[51,0,0,1,0],[68,0,0,1,0],[104,0,0,1,0]],"delete":[[50,0,0,1,0],[51,0,0,1,0],[68,0,0,1,0]],"always":[[50,0,0,1,0],[51,0,0,1,0],[122,0,0,1,0],[141,0,0,1,0]],"sure":[[50,0,0,1,0],[51,0,0,1,0],[149,0,0,1,0]],"registered":[[50,0,0,1,0],[51,0,0,1,0]],"ahead":[[50,0,0,1,0],[51,0,0,1,0]],"serving":[[50,0,0,1,0],[51,0,0,1,0],[73,0,0,1,0],[108,0,0,1,0],[142,0,0,1,0]],"rewrite":[[51,0,0,1,0]],"helper":[[51,0,0,1,0],[53,0,0,1,0],[73,0,0,1,0],[140,0,0,0,1],[147,0,0,1,0],[149,0,0,1,0],[150,0,0,1,0],[154,0,0,1,0],[172,0,0,1,0]],"alone":[[51,0,0,1,0],[144,0,0,1,0]],"regenerated":[[52,0,1,0,0]],"loc":[[52,0,0,1,0],[145,0,0,1,0]],"requires":[[52,0,0,1,0]],"absolute":[[52,0,0,2,0],[74,0,0,0,1],[89,0,0,1,0],[151,0,0,1,0]],"directive":[[52,0,0,1,0],[53,0,0,1,0],[144,0,0,1,0],[149,0,0,1,0]],"conventionally":[[52,0,0,1,0]],"cannot":[[52,0,0,1,0]],"assets":[[52,0,0,2,0]],"previews":[[52,0,0,1,0]],"staging":[[52,0,0,2,0],[145,0,0,1,0]],"advertise":[[52,0,0,2,0]],"right":[[52,0,0,2,0],[89,0,0,1,0],[120,0,0,1,0],[122,0,0,1,0],[165,0,0,2,0],[168,0,0,1,0]],"calls":[[52,0,0,1,0],[83,0,0,1,0],[113,0,0,1,0],[137,0,0,2,0]],"rebuilds":[[52,0,0,1,0]],"environment":[[52,0,0,1,0],[156,0,0,1,0]],"served":[[52,0,0,1,0],[72,0,0,1,0]],"rewriting":[[52,0,0,1,0],[148,0,0,1,0]],"needed":[[52,0,0,1,0],[145,0,0,1,0],[162,0,0,1,0]],"cdn":[[53,0,1,2,0],[149,0,1,2,0]],"adds":[[53,0,0,1,0],[114,0,0,1,0],[122,0,0,1,0]],"pair":[[53,0,0,1,0],[86,0,0,1,0],[118,0,0,1,0],[152,0,0,1,0]],"detected":[[53,0,0,1,0],[144,0,0,1,0]],"shard":[[53,0,0,1,0]],"entries":[[53,0,0,1,0],[147,0,0,1,0]],"will":[[53,0,0,1,0],[58,0,0,1,0],[75,0,0,1,0]],"cached":[[53,0,0,1,0],[149,0,0,1,0]],"vice":[[53,0,0,1,0]],"versa":[[53,0,0,1,0]],"override":[[53,0,0,1,0],[144,0,0,1,0],[146,0,0,0,1],[148,0,0,1,0],[149,0,0,1,0],[156,0,0,1,0],[162,0,0,1,0]],"cachecontrol":[[53,0,0,2,0],[144,0,0,2,0],[149,0,0,2,0]],"omit":[[53,0,0,1,0],[144,0,0,1,0],[149,0,0,1,0],[163,0,0,1,0]],"useful":[[53,0,0,1,0],[153,0,0,1,0]],"caching":[[53,0,0,1,0],[149,0,0,1,0]],"band":[[53,0,0,1,0]],"locally":[[54,0,1,0,0]],"existing":[[54,0,0,1,0],[163,0,0,1,0]],"resolve":[[54,0,0,1,0],[76,0,0,1,0],[152,0,0,1,0],[162,0,0,1,0]],"application":[[54,0,0,1,0],[147,0,0,1,0]],"reports":[[54,0,0,1,0]],"broken":[[54,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[76,0,0,1,0]],"whether":[[54,0,0,1,0],[120,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0]],"localhost":[[54,0,0,1,8]],"curl":[[54,0,0,0,7]],"http":[[54,0,0,0,8],[72,0,0,2,0],[74,0,0,1,3],[78,0,0,0,3],[80,0,0,1,0],[87,0,0,1,0],[89,0,0,2,0],[101,0,0,1,0]],"chatgpt":[[54,0,0,0,1],[144,0,0,1,0]],"minimal":[[55,0,1,0,0]],"checklist":[[55,0,1,0,0]],"requested":[[55,0,0,1,0],[147,0,0,1,0]],"contents":[[56,0,0,1,0],[57,0,0,1,0],[58,0,0,2,0],[59,0,0,1,0],[60,0,0,2,0],[61,0,0,1,0],[154,0,1,0,0]],"website":[[56,0,0,1,0],[70,0,0,0,2],[71,0,0,2,0],[74,0,0,1,0],[76,0,0,1,0],[78,0,0,2,0],[80,0,0,1,0],[82,0,0,1,0],[83,0,0,1,0],[86,0,0,1,0],[87,0,0,1,0],[89,0,0,2,0],[90,0,0,1,0],[96,0,0,1,0],[104,0,0,1,0],[107,0,0,1,0],[123,0,0,1,0],[137,0,0,1,0],[142,0,0,1,0],[151,0,0,1,0]],"defines":[[56,0,0,1,0]],"contracts":[[56,0,0,1,0]],"aligned":[[56,0,0,1,0]],"register":[[57,0,1,0,0]],"documented":[[57,0,0,1,0],[126,0,0,1,0]],"id":[[58,0,0,2,3],[154,0,0,1,0]],"attributes":[[58,0,0,1,0],[154,0,0,1,0]],"miss":[[58,0,0,1,0]],"slugifydocsheading":[[58,0,0,1,2],[61,0,0,1,0],[154,0,0,1,0]],"authors":[[58,0,0,1,0],[133,0,0,1,0]],"pin":[[58,0,0,1,0]],"anchor":[[58,0,0,1,0]],"passing":[[58,0,0,1,0],[110,0,0,1,0]],"componentpropswithoutref":[[58,0,0,0,2]],"isvalidelement":[[58,0,0,0,2]],"headingprops":[[58,0,0,0,2]],"h1":[[58,0,0,0,1],[61,0,0,1,0],[139,0,0,2,0],[154,0,0,1,0]],"textfromchildren":[[58,0,0,0,4]],"number":[[58,0,0,0,1],[131,0,0,0,3]],"isarray":[[58,0,0,0,1]],"elementprops":[[58,0,0,0,2]],"props":[[58,0,0,0,3]],"createheading":[[58,0,0,0,1]],"headingid":[[58,0,0,0,2]],"undefined":[[58,0,0,0,1]],"includes":[[59,0,0,1,0],[60,0,0,1,0],[65,0,0,1,0],[67,0,0,1,0],[118,0,0,1,0],[119,0,0,1,0],[154,0,0,1,0]],"range":[[59,0,0,1,0],[61,0,0,1,0],[154,0,0,1,0]],"h2":[[59,0,0,1,0],[154,0,0,1,0]],"minlevel":[[59,0,0,0,1],[61,0,0,1,0],[154,0,0,0,1]],"maxlevel":[[59,0,0,0,1],[61,0,0,1,0],[154,0,0,0,1]],"look":[[60,0,0,1,0]],"currentpage":[[60,0,0,1,0]],"complete":[[60,0,0,1,0],[120,0,0,1,0],[147,0,0,1,0]],"implementation":[[60,0,0,1,0]],"scroll":[[60,0,0,1,0],[61,0,0,1,0]],"spy":[[60,0,0,1,0]],"active":[[60,0,0,1,0],[128,0,0,1,0]],"highlighting":[[60,0,0,1,0]],"sticky":[[60,0,0,1,0]],"positioning":[[60,0,0,1,0]],"anywhere":[[61,0,0,1,0],[167,0,0,1,0]],"extracted":[[61,0,0,1,0]],"configured":[[61,0,0,1,0]],"defaults":[[61,0,0,1,0],[110,0,0,3,0],[118,0,0,1,0],[119,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0],[122,0,0,1,0],[123,0,0,1,0],[124,0,0,1,0],[125,0,0,1,0],[130,0,0,1,0],[135,0,0,1,0],[144,0,0,1,0]],"exclude":[[61,0,0,1,0],[91,0,0,2,1],[94,0,0,1,0],[104,0,0,2,0],[105,0,0,2,0],[108,0,0,0,1]],"differs":[[61,0,0,1,0],[81,0,0,1,0],[82,0,0,1,0],[83,0,0,1,0],[84,0,0,1,0],[85,0,0,1,0],[86,0,0,1,0]],"validate":[[62,1,1,0,0],[63,1,1,0,0],[64,1,1,0,0],[65,1,1,0,0],[66,1,1,0,0],[67,1,1,0,0],[68,1,1,1,0],[76,0,0,1,0],[110,0,0,1,0],[115,0,0,1,0],[136,0,0,1,0]],"prs":[[62,0,0,2,0],[63,0,0,1,0],[64,0,0,1,0],[65,0,0,1,0],[66,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[126,0,0,1,0]],"publish":[[62,0,0,1,0],[63,0,0,1,0],[64,0,0,1,0],[65,0,0,1,0],[66,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[87,0,0,1,0],[88,0,0,0,4],[102,0,0,1,0]],"exits":[[62,0,0,1,0]],"zero":[[62,0,0,1,0],[110,0,0,1,0]],"errors":[[62,0,0,1,0],[64,0,0,1,0],[108,0,0,1,0],[110,0,0,3,0],[131,0,0,0,1],[136,0,0,1,0]],"fast":[[62,0,0,1,0],[92,0,0,0,1],[93,0,0,0,1],[136,0,0,1,0],[173,0,0,1,0]],"would":[[62,0,0,1,0],[151,0,0,1,0]],"otherwise":[[62,0,0,1,0],[150,0,0,1,0]],"blow":[[62,0,0,1,0]],"catches":[[63,0,1,0,0],[128,0,0,1,0],[129,0,0,1,0]],"rule":[[63,0,0,2,0],[110,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0],[131,0,0,1,1]],"pointing":[[63,0,0,1,0],[151,0,0,1,0]],"left":[[63,0,0,1,0]],"actions":[[64,0,1,0,1],[136,0,0,1,0]],"inline":[[64,0,0,1,0],[103,0,0,1,0]],"annotations":[[64,0,0,1,0],[65,0,0,1,0]],"pr":[[64,0,0,1,0],[65,0,0,1,0]],"upgrades":[[64,0,0,1,0],[128,0,0,1,0]],"strict":[[64,0,0,1,0],[135,0,0,1,0]],"makes":[[64,0,0,1,0]],"any":[[64,0,0,1,0],[65,0,0,1,0],[83,0,0,1,0],[110,0,0,1,0],[136,0,0,1,0],[140,0,0,0,1],[143,0,0,1,0],[161,0,0,1,0],[163,0,0,1,0],[169,0,0,1,0]],"remaining":[[64,0,0,1,0]],"job":[[64,0,0,1,0],[67,0,0,1,0],[79,0,0,1,0],[83,0,0,1,0]],"pull":[[64,0,0,0,1]],"jobs":[[64,0,0,0,1]],"ubuntu":[[64,0,0,0,1]],"latest":[[64,0,0,0,1]],"v4":[[64,0,0,0,1]],"oven":[[64,0,0,0,1]],"sh":[[64,0,0,0,1],[66,0,0,0,1]],"v2":[[64,0,0,0,1]],"providers":[[65,0,1,0,0]],"speak":[[65,0,0,1,0]],"counts":[[65,0,0,1,0]],"pipe":[[65,0,0,1,0],[135,0,0,0,1]],"reporter":[[65,0,0,1,0]],"post":[[65,0,0,1,0]],"comment":[[65,0,0,1,0]],"upload":[[65,0,0,1,0]],"report":[[65,0,0,0,1],[110,0,0,2,0]],"pre":[[66,0,1,1,0],[171,0,0,1,0]],"push":[[66,0,1,1,0]],"hook":[[66,0,1,1,0]],"running":[[66,0,0,1,0]],"husky":[[66,0,0,1,0]],"second":[[66,0,0,1,0]],"limiting":[[66,0,0,1,0]],"scan":[[66,0,0,1,0]],"changed":[[66,0,0,1,0]],"many":[[66,0,0,1,0],[86,0,0,1,0],[91,0,0,1,0]],"repeated":[[66,0,0,1,0]],"ignore":[[66,0,0,1,0],[110,0,0,3,0],[130,0,0,2,0]],"globs":[[66,0,0,1,0]],"usr":[[66,0,0,0,1]],"bin":[[66,0,0,0,1]],"env":[[66,0,0,0,1],[156,0,0,1,3],[170,0,0,1,0]],"noisily":[[67,0,0,1,0]],"specifically":[[67,0,0,1,0]],"problems":[[67,0,0,1,0]],"much":[[67,0,0,1,0]],"fix":[[68,0,1,1,0],[163,0,0,1,0]],"lot":[[68,0,0,1,0]],"else":[[68,0,0,1,0],[167,0,0,1,0]],"bug":[[68,0,0,2,0],[76,0,0,1,0],[136,0,0,1,0]],"move":[[68,0,0,1,0],[136,0,0,1,0]],"mental":[[69,0,0,1,0],[70,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,0,1,0],[75,0,0,1,0],[76,0,0,1,0],[77,0,0,1,0],[81,0,0,1,0],[140,0,0,0,2],[152,0,0,0,1]],"modes":[[69,0,0,1,0],[70,0,0,1,0],[71,0,1,2,0],[72,0,0,2,0],[73,0,0,1,0],[74,0,0,1,0],[75,0,0,1,0],[76,0,0,1,0],[77,0,0,1,0],[104,0,0,1,0],[105,0,0,1,0]],"takes":[[69,0,0,1,0],[139,0,0,1,0]],"input":[[69,0,0,1,0]],"take":[[69,0,0,1,0]],"piece":[[69,0,0,1,0]],"sense":[[69,0,0,1,0],[90,0,0,1,0]],"turns":[[70,0,0,1,0],[157,0,0,1,0],[169,0,0,1,0]],"gets":[[70,0,0,1,0],[117,0,0,1,0],[138,0,1,0,0]],"sequence":[[70,0,0,1,0],[141,0,1,0,0]],"consumes":[[70,0,0,1,0]],"plugins":[[70,0,0,1,0],[75,0,0,1,0],[112,0,0,1,0],[118,0,1,1,0],[157,1,1,0,0],[158,1,1,0,0],[159,1,1,0,0],[160,1,1,0,0],[161,1,2,0,0],[162,1,2,0,0],[163,1,1,1,0]],"tb":[[70,0,0,0,1],[158,0,0,0,1]],"fm":[[70,0,0,0,4]],"parser":[[70,0,0,0,1]],"strip":[[70,0,0,0,1],[158,0,0,2,0]],"idx":[[70,0,0,0,3]],"bundle":[[70,0,0,0,1],[71,0,0,2,0],[72,0,0,4,0],[73,0,0,1,0],[74,0,0,1,3],[76,0,0,2,0],[78,0,0,0,7],[80,0,0,1,0],[87,1,1,1,0],[88,1,1,0,4],[89,1,1,1,0],[90,1,1,1,1],[91,1,1,1,1],[92,1,1,0,1],[93,1,1,0,0],[94,1,1,0,1],[95,1,2,0,0],[96,1,1,0,0],[97,1,1,0,0],[102,0,0,2,0],[104,0,0,6,0],[107,0,1,1,1],[108,0,0,2,0],[120,0,0,3,0],[121,0,0,4,0],[122,0,0,2,0],[137,0,0,1,0],[152,0,0,1,0]],"emit":[[71,0,0,1,0],[96,0,0,1,0]],"shapes":[[71,0,0,1,0],[96,0,0,1,0]],"packages":[[71,0,0,1,0],[78,0,0,0,1],[86,0,0,1,0],[88,0,0,0,2],[90,0,0,1,2],[91,0,0,1,1],[94,0,0,0,2],[107,0,0,1,1],[151,0,0,0,1]],"foo":[[71,0,0,1,0],[75,0,0,1,0],[147,0,0,3,0]],"beneath":[[71,0,0,1,0]],"skips":[[71,0,0,1,0],[72,0,0,2,0],[73,0,0,1,0],[90,0,0,1,0],[104,0,0,1,0],[107,0,0,1,0]],"designed":[[71,0,0,1,0]],"tarballs":[[71,0,0,1,0],[83,0,0,1,0]],"alongside":[[71,0,0,1,0],[86,0,0,1,0],[107,0,0,1,0]],"published":[[71,0,0,1,0],[87,0,0,1,0],[92,0,1,0,0],[93,0,1,0,0],[107,0,0,1,0],[123,0,0,1,0]],"via":[[72,0,0,1,0],[78,0,0,0,1],[80,0,0,1,0],[83,0,0,3,0],[84,0,0,1,0],[110,0,0,1,0],[113,0,0,1,0],[164,0,0,1,0],[170,0,1,0,0]],"modules":[[72,0,0,1,0],[74,0,0,1,1],[78,0,0,0,1],[80,0,0,1,0],[87,0,0,1,0],[88,0,0,0,1],[89,0,0,2,0],[90,0,0,1,0],[95,0,0,2,1],[110,0,0,2,0],[120,0,0,1,0],[130,0,0,1,0],[137,0,0,1,0],[151,0,0,1,0],[160,0,0,1,0]],"offline":[[72,0,0,1,0],[74,0,0,1,2],[78,0,0,0,2],[80,0,0,1,0],[88,0,0,0,1],[89,0,0,1,0],[90,0,0,1,0],[104,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[139,0,0,2,0],[140,0,0,1,0],[141,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,2,0],[152,0,0,1,1],[153,0,0,1,0],[154,0,0,1,0],[155,0,0,1,0],[156,0,0,1,0]],"installed":[[72,0,0,1,0],[87,0,0,1,0],[89,0,0,1,0],[95,0,0,0,1],[96,0,0,1,0]],"over":[[72,0,0,2,0],[74,0,0,1,0],[89,0,0,1,0],[92,0,0,1,0],[164,0,0,1,0],[171,0,0,1,0]],"follow":[[72,0,0,1,0],[74,0,0,1,0]],"broad":[[72,0,0,1,0],[123,0,0,1,0],[155,0,0,1,0]],"useless":[[72,0,0,1,0]],"tarball":[[72,0,0,1,0],[74,0,0,1,0],[87,0,0,1,0],[88,0,0,1,0],[89,0,0,2,0],[90,0,0,1,0],[91,0,0,1,0],[92,0,1,1,0],[93,0,1,1,0],[94,0,0,1,0],[95,0,0,2,0],[96,0,0,1,0],[97,0,0,1,0],[120,0,0,1,0]],"bm25":[[72,0,0,1,0],[76,0,0,1,0],[165,0,0,1,0]],"ranked":[[72,0,0,1,0]],"inverted":[[72,0,0,1,0]],"stored":[[72,0,0,1,0],[73,0,0,1,0]],"separately":[[72,0,0,1,0],[73,0,0,1,0],[170,0,0,2,0]],"grep":[[72,0,0,1,0],[73,0,0,1,0],[171,0,0,1,0]],"ngs":[[73,0,0,1,0]],"mapping":[[73,0,0,1,0]],"locations":[[73,0,0,1,0]],"agree":[[73,0,0,1,0]],"network":[[74,0,0,1,0],[87,0,0,1,0],[89,0,0,1,0],[171,0,0,1,0]],"working":[[74,0,0,1,0],[89,0,0,1,0],[95,0,0,0,1],[101,0,0,1,0],[156,0,0,1,0]],"depends":[[74,0,0,1,0],[76,0,0,1,0]],"matched":[[74,0,0,1,1],[78,0,0,0,1],[80,0,0,1,0],[87,0,0,1,0],[88,0,0,0,1],[89,0,0,1,0],[95,0,0,0,1]],"reliable":[[74,0,0,1,0],[95,0,0,1,0],[122,0,0,1,0]],"consumer":[[74,0,0,1,0]],"pattern":[[74,0,0,1,0],[95,0,0,2,0],[120,0,0,2,0]],"consuming":[[74,0,0,1,0],[95,0,1,1,0]],"readme":[[74,0,0,1,0],[80,0,0,1,0],[92,0,0,0,1],[95,0,0,1,0],[125,0,0,1,0]],"there":[[74,0,0,1,0],[117,0,0,1,0]],"flows":[[74,0,0,2,0]],"complement":[[74,0,0,1,0]],"wants":[[74,0,0,1,0]],"publishes":[[74,0,0,1,0]],"pick":[[74,0,0,1,0],[79,0,0,1,0]],"lt":[[74,0,0,0,1],[78,0,0,0,2],[88,0,0,0,4]],"pkg":[[74,0,0,0,1],[78,0,0,0,1],[80,0,0,1,0],[89,0,0,1,0],[137,0,0,1,0],[151,0,0,1,0]],"gt":[[74,0,0,0,1],[78,0,0,0,2],[88,0,0,0,4]],"claude":[[74,0,0,0,1],[89,0,0,1,0],[122,0,0,2,0],[144,0,0,1,0]],"codex":[[74,0,0,0,1],[89,0,0,1,0]],"cursor":[[74,0,0,0,1],[89,0,0,1,0]],"copilot":[[74,0,0,0,1],[89,0,0,1,0]],"few":[[75,0,0,1,0]],"terms":[[75,0,0,1,0],[167,0,0,1,0]],"throughout":[[75,0,0,1,0]],"verb":[[75,0,0,1,0]],"declaring":[[75,0,0,1,0]],"which":[[75,0,0,1,0],[119,0,0,1,0],[154,0,0,1,0],[155,0,0,1,0]],"belongs":[[75,0,0,1,0]],"noun":[[75,0,0,3,0]],"chunk":[[75,0,0,1,0],[165,0,0,4,0],[168,0,0,0,1]],"slice":[[75,0,0,1,0],[91,0,0,1,0],[165,0,0,1,0]],"scores":[[75,0,0,1,0]],"independently":[[75,0,0,1,0]],"weigh":[[75,0,0,1,0],[165,0,0,1,0]],"advertises":[[75,0,0,1,0]],"asks":[[75,0,0,1,0]],"implement":[[75,0,0,1,0]],"intercepts":[[75,0,0,1,0]],"handlers":[[75,0,0,1,0],[83,0,0,1,0]],"endpoints":[[75,0,0,1,0]],"fixed":[[76,0,0,1,0]],"stage":[[76,0,0,1,0],[115,0,0,1,0]],"previous":[[76,0,0,1,0]],"design":[[76,0,0,1,0],[86,0,0,1,0],[155,0,1,0,0]],"problem":[[76,0,0,1,0]],"bring":[[78,0,0,1,0]],"anything":[[78,0,0,1,0]],"let":[[78,0,0,1,0]],"handle":[[78,0,0,1,0]],"validation":[[78,0,0,1,0],[86,0,0,1,0],[92,0,0,1,0]],"outputs":[[78,0,0,1,0],[86,0,0,1,0]],"building":[[79,0,0,1,0]],"lower":[[79,0,0,1,0],[109,0,0,1,0],[147,0,1,0,0],[148,0,1,0,0]],"familiar":[[80,0,0,1,0]],"others":[[80,0,0,1,0],[89,0,0,1,0]],"plus":[[80,0,0,2,0],[84,0,0,1,0],[87,0,0,1,0],[88,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[91,0,0,1,0],[92,0,0,1,0],[93,0,0,1,0],[94,0,0,1,0],[95,0,0,1,0],[96,0,0,1,0],[97,0,0,1,0],[99,0,0,1,0],[107,0,0,1,0],[115,0,0,1,0],[121,0,0,1,0],[154,0,0,1,0],[159,0,0,1,0],[169,0,0,1,0]],"generates":[[80,0,0,1,0]],"resolves":[[80,0,0,1,0],[101,0,0,1,0]],"work":[[80,0,0,1,0],[89,0,0,1,0],[106,0,0,1,0]],"consumers":[[80,0,0,1,0],[95,0,0,1,0]],"their":[[80,0,0,1,0],[95,0,0,1,0]],"five":[[81,0,0,1,0],[98,0,0,1,0],[120,0,0,1,0],[140,0,0,0,1]],"minutes":[[81,0,0,1,0],[98,0,0,1,0]],"comparing":[[81,0,0,1,0]],"methodology":[[81,0,0,1,0],[82,1,1,0,0],[83,1,1,0,0],[84,1,1,0,0],[85,1,1,0,0],[86,1,1,0,0]],"fumadocs":[[81,0,0,1,0],[82,0,0,1,0],[83,0,0,2,0],[84,0,0,1,0],[85,0,0,1,0],[86,0,0,2,0]],"starlight":[[81,0,0,1,0],[82,0,0,1,0],[83,0,0,3,0],[84,0,0,1,0],[85,0,0,1,0],[86,0,0,2,0]],"mintlify":[[81,0,0,1,0],[82,0,0,1,0],[83,0,0,3,0],[84,0,0,1,0],[85,0,0,1,0],[86,0,0,1,0]],"theming":[[82,0,0,1,0],[85,0,0,1,0]],"tool":[[83,0,0,1,0],[95,0,0,1,0],[171,0,1,1,0]],"router":[[83,0,0,1,0],[120,0,0,1,0],[121,0,0,2,0],[122,0,0,1,0],[146,0,0,1,1]],"waku":[[83,0,0,1,0]],"supports":[[83,0,0,1,0]],"community":[[83,0,0,1,0]],"pagefind":[[83,0,0,1,0]],"saas":[[83,0,0,1,0]],"headless":[[83,0,0,1,0]],"assistant":[[83,0,0,1,0]],"layer":[[83,0,0,1,0],[142,0,0,1,0],[149,0,0,1,0],[173,0,0,1,0]],"behind":[[83,0,0,1,0],[138,0,0,1,0]],"publishing":[[83,0,0,2,0],[94,0,1,0,0]],"polished":[[83,0,0,1,0]],"quickly":[[83,0,0,1,0]],"consider":[[83,0,0,1,0]],"managed":[[83,0,0,1,0]],"analytics":[[83,0,0,1,0],[85,0,0,1,0]],"features":[[83,0,0,1,0]],"service":[[83,0,0,1,0]],"dependency":[[83,0,0,1,0],[87,0,0,1,0],[95,0,0,1,0],[96,0,0,1,0],[167,0,0,1,0]],"opt":[[83,0,0,1,0]],"agnostic":[[83,0,0,1,0]],"bundles":[[83,0,0,1,0],[120,0,0,1,0]],"safe":[[84,0,0,1,0],[140,0,0,0,1],[143,0,0,1,0],[164,0,0,1,0],[167,0,0,1,0],[173,0,0,1,0]],"streaming":[[84,0,0,1,0],[164,0,0,2,0],[165,0,0,1,0],[166,0,0,1,0],[167,0,0,1,0],[168,0,0,1,0],[169,0,0,1,0],[170,0,1,1,0],[171,0,0,1,0],[172,0,0,1,0],[173,0,0,1,0]],"orchestration":[[84,0,0,1,0]],"whole":[[84,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0]],"hosting":[[85,0,0,1,0]],"prebuilt":[[85,0,0,1,0]],"provides":[[85,0,0,1,0]],"combination":[[86,0,1,0,0]],"shines":[[86,0,1,0,0]],"experience":[[86,0,0,1,0]],"templated":[[86,0,0,1,0]],"system":[[86,0,0,1,0],[169,0,0,2,1]],"available":[[87,0,0,1,0],[95,0,0,1,0],[112,0,0,1,0]],"prepack":[[87,0,0,1,0],[92,0,0,1,0]],"ships":[[87,0,0,1,0],[99,0,0,1,0],[162,0,0,1,0]],"ides":[[87,0,0,1,0]],"consume":[[88,0,0,0,2]],"convention":[[89,0,0,2,0],[137,0,0,1,0]],"able":[[89,0,0,1,0]],"major":[[89,0,0,1,0]],"anyway":[[89,0,0,1,0]],"solves":[[89,0,0,1,0]],"aider":[[89,0,0,1,0]],"devin":[[89,0,0,1,0]],"discoverable":[[89,0,0,2,0],[107,0,0,1,0]],"meaningful":[[90,0,0,1,0]],"filter":[[91,0,1,0,0],[162,0,0,0,1]],"monorepo":[[91,0,0,1,0]],"repeatable":[[91,0,0,1,0],[104,0,0,1,0],[105,0,0,1,0],[110,0,0,1,0]],"overview":[[91,0,0,1,0]],"applied":[[91,0,0,1,0],[104,0,0,1,0],[105,0,0,1,0]],"tsup":[[92,0,0,1,1]],"dist":[[92,0,0,0,1],[95,0,0,1,0]],"generateagentsmd":[[92,0,0,0,1],[93,0,0,0,1],[112,0,0,1,0],[137,0,0,2,1],[139,0,0,2,0],[151,0,1,0,2],[152,0,1,0,0]],"recursive":[[92,0,0,0,1],[153,0,0,0,1]],"force":[[92,0,0,0,2]],"bad":[[92,0,0,0,1],[93,0,0,0,1]],"length":[[93,0,0,0,1],[153,0,0,0,1]],"stderr":[[93,0,0,0,1],[108,0,0,1,0],[153,0,0,0,1]],"exit":[[93,0,0,0,1],[103,0,0,1,0],[104,0,0,1,0],[105,0,0,2,0],[106,0,0,1,0],[107,0,0,1,0],[108,0,0,1,0],[109,0,0,1,0],[110,0,0,3,0],[111,0,0,1,0],[112,0,0,1,0],[153,0,0,0,1]],"pack":[[94,0,0,1,1]],"dry":[[94,0,0,1,1]],"cd":[[94,0,0,0,1],[125,0,0,0,1]],"projects":[[95,0,1,0,0],[124,0,0,1,0]],"some":[[95,0,0,1,0],[160,0,0,1,0]],"discover":[[95,0,0,1,0],[109,0,0,1,0],[120,0,0,1,0]],"recommend":[[95,0,0,1,0]],"snippet":[[95,0,0,1,0]],"re":[[95,0,0,0,1],[110,0,0,1,0],[158,0,0,0,2],[173,0,0,1,0]],"stay":[[95,0,0,0,1],[167,0,0,1,0]],"accurate":[[95,0,0,0,1]],"updates":[[95,0,0,0,1],[136,0,0,1,0]],"understand":[[96,0,0,1,0]],"itself":[[96,0,0,1,0]],"access":[[96,0,0,1,0]],"ide":[[96,0,0,1,0]],"assistants":[[96,0,0,1,0]],"air":[[96,0,0,1,0]],"gapped":[[96,0,0,1,0]],"environments":[[96,0,0,1,0]],"goal":[[96,0,0,1,0],[102,0,0,1,0]],"focused":[[99,0,0,1,0]],"welcome":[[100,0,0,0,1],[155,0,0,1,0]],"ran":[[101,0,0,1,0]],"regeneration":[[101,0,0,1,0]],"wired":[[101,0,0,1,0]],"pastable":[[101,0,0,1,0]],"end":[[101,0,0,2,0]],"flags":[[103,0,0,1,0],[104,0,0,1,0],[105,0,0,1,0],[106,0,0,1,0],[107,0,0,1,0],[108,0,0,1,0],[109,0,0,1,0],[110,0,0,1,0],[111,0,0,1,0],[112,0,0,1,0],[126,0,0,1,0],[140,0,0,0,1]],"codes":[[103,0,0,1,0],[104,0,0,1,0],[105,0,0,2,0],[106,0,0,1,0],[107,0,0,1,0],[108,0,0,1,0],[109,0,0,1,0],[110,0,0,2,0],[111,0,0,1,0],[112,0,0,1,0]],"validates":[[103,0,0,1,0],[126,0,0,1,0]],"help":[[103,0,0,1,0],[105,0,0,1,0],[110,0,0,1,0],[111,0,1,0,3]],"usage":[[103,0,0,1,0],[105,0,0,2,0],[110,0,0,2,0],[111,0,0,1,1]],"produce":[[104,0,0,1,0],[147,0,0,1,0],[152,0,0,1,0]],"flag":[[104,0,0,1,0],[110,0,0,1,0],[140,0,0,0,1],[152,0,0,0,1]],"dir":[[104,0,0,4,0],[105,0,0,1,0],[106,0,0,1,0],[110,0,0,2,0]],"containing":[[104,0,0,1,0],[137,0,0,1,0],[151,0,0,1,0]],"off":[[104,0,0,1,0],[105,0,0,1,0],[110,0,0,1,0]],"ignored":[[104,0,0,1,0],[110,0,0,1,0],[139,0,0,1,0],[151,0,0,1,0],[158,0,0,1,0]],"written":[[104,0,0,2,0],[151,0,0,3,0]],"glob":[[104,0,0,4,0],[105,0,0,3,0],[110,0,0,2,0],[130,0,0,1,0]],"none":[[104,0,0,2,0],[105,0,0,2,0]],"lob":[[105,0,0,1,0]],"history":[[105,0,0,1,0],[114,0,0,1,0]],"fmt":[[105,0,0,1,0],[110,0,0,1,0]],"prints":[[105,0,0,1,0],[108,0,0,1,0]],"single":[[105,0,0,1,0],[108,0,0,1,0],[139,0,0,1,0]],"stdout":[[105,0,0,1,0]],"alias":[[105,0,0,1,0]],"print":[[105,0,0,1,0],[108,0,0,1,0],[110,0,0,1,0]],"load":[[105,0,0,1,0],[155,0,0,1,0],[166,0,0,2,0]],"loading":[[106,0,1,0,0],[165,0,0,1,0]],"javascript":[[106,0,0,1,0]],"mjs":[[106,0,0,1,0]],"cjs":[[106,0,0,1,0]],"supplies":[[106,0,0,1,0]],"best":[[106,0,0,1,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,0,1]],"starting":[[106,0,0,1,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,0,1]],"membership":[[106,0,0,1,0]],"loaded":[[106,0,0,1,0]],"falls":[[106,0,0,1,0]],"union":[[106,0,0,1,0]],"sorted":[[106,0,0,1,0]],"alphabetically":[[106,0,0,1,0]],"cased":[[106,0,0,1,0]],"matter":[[106,0,0,1,0]],"thing":[[106,0,0,0,1],[140,0,0,0,1],[141,0,0,0,1],[152,0,0,0,1]],"well":[[106,0,0,0,1],[140,0,0,0,1],[141,0,0,0,1],[152,0,0,0,1]],"subdirs":[[107,0,0,1,0]],"preserved":[[107,0,0,1,0],[117,0,0,1,0]],"anchored":[[107,0,0,1,0]],"describing":[[108,0,0,1,0]],"was":[[108,0,0,1,0],[122,0,0,1,0]],"varies":[[108,0,0,1,0]],"agentsmd":[[108,0,0,1,0]],"llmstxt":[[108,0,0,1,1]],"absent":[[108,0,0,1,0]],"abs":[[108,0,0,0,12]],"docsdir":[[108,0,0,0,1]],"docsllmstxt":[[108,0,0,0,1]],"llmsfulltxt":[[108,0,0,0,1]],"searchindex":[[108,0,0,0,1]],"searchcontent":[[108,0,0,0,1]],"docssitemapxml":[[108,0,0,0,1]],"docssitemapmd":[[108,0,0,0,1]],"docsrobotstxt":[[108,0,0,0,1]],"auto":[[109,0,0,1,0]],"honored":[[109,0,0,0,1]],"positional":[[110,0,0,1,0]],"subdirectory":[[110,0,0,1,0],[130,0,0,1,0],[151,0,0,1,0]],"validated":[[110,0,0,1,0],[130,0,0,1,0]],"pretty":[[110,0,0,2,0]],"annotation":[[110,0,0,1,0]],"unlimited":[[110,0,0,1,0]],"count":[[110,0,0,1,0]],"exceeds":[[110,0,0,1,0]],"within":[[110,0,0,1,0]],"budget":[[110,0,0,2,0]],"exceeded":[[110,0,0,1,0]],"partials":[[110,0,0,1,0],[118,0,0,1,0],[130,0,0,1,0]],"plug":[[110,0,0,1,0]],"valibot":[[110,0,0,1,0],[130,0,0,3,0],[135,0,0,1,1]],"schemas":[[110,0,0,1,0],[126,0,0,1,0],[130,0,0,3,0],[132,0,1,0,0],[133,0,1,0,0],[134,0,1,0,0],[135,0,1,0,1]],"show":[[111,0,0,1,0]],"thin":[[112,0,0,1,0],[170,0,0,1,0]],"wrapper":[[112,0,0,1,0]],"convertmdxtomarkdown":[[112,0,0,1,0],[113,0,0,0,1],[115,0,1,0,1]],"writemdxfileasmarkdown":[[112,0,0,1,0],[113,0,0,0,1],[116,0,1,0,1]],"sites":[[112,0,0,1,0],[142,0,0,1,0]],"lintdocs":[[112,0,0,1,0],[126,0,0,0,1],[130,0,0,0,2],[135,0,0,0,2]],"individual":[[112,0,0,1,0],[163,0,0,1,0]],"precedence":[[112,0,0,1,0],[156,0,1,0,0]],"internally":[[113,0,0,1,0]],"batch":[[114,0,0,1,0]],"option":[[114,0,0,1,0],[130,0,0,1,0],[151,0,0,1,0]],"destination":[[114,0,0,1,0]],"matters":[[114,0,0,1,0],[122,0,0,1,0],[157,0,0,1,0],[160,0,1,0,0]],"concurrent":[[114,0,0,1,0],[117,0,0,1,0]],"large":[[114,0,0,1,0]],"parallel":[[114,0,0,1,0]],"parsed":[[115,0,0,1,0]],"yourself":[[115,0,0,1,0]],"feed":[[115,0,0,1,0],[160,0,0,1,0]],"touching":[[115,0,0,1,0],[164,0,0,1,0]],"console":[[115,0,0,0,2]],"log":[[115,0,0,0,2]],"srcpath":[[116,0,0,0,1]],"outpath":[[116,0,0,0,1]],"blocks":[[117,0,0,2,0],[128,0,0,1,0],[154,0,0,1,0],[158,0,0,1,0]],"synthesized":[[117,0,0,1,0]],"sometimes":[[117,0,0,1,0]],"tables":[[117,0,0,1,0],[154,0,1,0,0]],"compacted":[[117,0,0,1,0]],"global":[[117,0,0,1,0]],"pairing":[[118,0,1,0,0]],"most":[[118,0,0,1,0],[122,0,0,1,0],[156,0,0,1,0]],"setups":[[118,0,0,1,0]],"expand":[[118,0,0,1,0],[167,0,0,1,0]],"ast":[[118,0,0,1,0]],"sees":[[118,0,0,1,0],[160,0,0,1,0],[161,0,0,1,0]],"rationale":[[118,0,0,1,0]],"benchmarks":[[119,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0],[122,0,0,1,0],[123,0,0,1,0],[124,0,0,2,0],[125,0,0,1,0]],"changing":[[119,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0],[122,0,0,1,0],[123,0,0,1,0],[124,0,0,1,0],[125,0,0,1,0]],"treats":[[119,0,0,1,0]],"eval":[[119,0,0,1,0],[124,0,0,1,0]],"harnesses":[[119,0,0,1,0]],"real":[[119,0,0,1,0]],"models":[[119,0,0,1,0]],"final":[[119,0,0,1,0],[129,0,0,1,0],[156,0,0,1,0],[160,0,0,1,0]],"we":[[120,0,1,0,0],[121,0,1,0,0],[122,0,1,0,0]],"test":[[120,0,0,2,0]],"installs":[[120,0,0,1,0]],"packed":[[120,0,0,1,0]],"sandbox":[[120,0,0,1,0]],"task":[[120,0,0,1,0]],"simulates":[[120,0,0,1,0]],"depending":[[120,0,0,1,0]],"nine":[[120,0,0,1,0]],"split":[[120,0,0,1,0]],"lists":[[120,0,0,1,0],[138,0,0,1,0]],"intended":[[120,0,0,1,0],[121,0,0,1,0],[122,0,0,2,0]],"monolith":[[121,0,0,1,0],[122,0,0,1,0]],"learned":[[122,0,1,0,0]],"monolithic":[[122,0,0,1,0],[124,0,0,1,0]],"tested":[[122,0,0,2,0]],"passed":[[122,0,0,1,0]],"six":[[122,0,0,1,0]],"fixtures":[[122,0,0,1,0]],"opus":[[122,0,0,2,0]],"readout":[[122,0,0,1,0]],"cheap":[[122,0,0,1,0],[166,0,0,1,0],[173,0,0,1,0]],"natural":[[122,0,0,1,0]],"synthesis":[[122,0,0,1,0]],"tasks":[[122,0,0,1,0]],"promising":[[122,0,0,2,0]],"dependent":[[122,0,0,1,0]],"often":[[122,0,0,1,0]],"answered":[[122,0,0,2,0]],"correctly":[[122,0,0,3,0]],"following":[[122,0,0,1,0]],"stricter":[[122,0,0,1,0]],"selection":[[122,0,0,1,0],[163,0,1,0,0]],"summaries":[[122,0,0,1,0]],"prior":[[122,0,0,1,0]],"knowledge":[[122,0,0,1,0]],"prove":[[122,0,0,1,0]],"proposed":[[122,0,0,1,0]],"made":[[122,0,0,1,0]],"organize":[[123,0,0,1,0],[155,0,0,1,0]],"suffer":[[124,0,0,1,0]],"token":[[124,0,0,1,0],[167,0,0,1,0]],"cost":[[124,0,0,1,0],[163,0,0,1,0]],"truncation":[[124,0,0,1,0]],"harness":[[124,0,0,1,0],[125,0,0,1,0]],"revisit":[[124,0,0,1,0]],"tradeoff":[[124,0,0,1,0]],"adding":[[124,0,0,1,0]],"detailed":[[125,0,0,1,0]],"covers":[[126,0,0,1,0],[154,0,0,1,0],[156,0,0,1,0]],"severity":[[128,0,0,1,0],[129,0,0,1,0],[131,0,0,0,1]],"won":[[128,0,0,1,0]],"treat":[[128,0,0,1,0],[136,0,0,1,0]],"highest":[[128,0,0,1,0],[167,0,0,1,0]],"priority":[[128,0,0,1,0]],"similar":[[129,0,0,1,0],[158,0,0,1,0]],"linting":[[129,0,0,1,0]],"walking":[[129,0,0,1,0]],"performs":[[129,0,0,1,0]],"changelogdir":[[130,0,0,1,0]],"patterns":[[130,0,0,2,0]],"shown":[[130,0,0,1,0]],"unknownfieldseverity":[[130,0,0,1,1]],"changelogfrontmatter":[[130,0,0,1,0]],"failures":[[131,0,0,1,0]],"reported":[[131,0,0,1,0]],"lintresult":[[131,0,0,0,1]],"kind":[[131,0,0,0,1]],"filesscanned":[[131,0,0,0,1]],"yes":[[132,0,0,1,0],[133,0,0,3,0],[134,0,0,1,0]],"produced":[[132,0,0,1,0]],"semver":[[133,0,0,1,0]],"iso":[[133,0,0,1,0]],"parseable":[[133,0,0,1,0]],"improvement":[[133,0,0,1,0]],"retired":[[133,0,0,1,0]],"deprecation":[[133,0,0,1,0]],"defaultopen":[[134,0,0,1,0]],"combined":[[134,0,0,1,0]],"replace":[[135,0,0,1,0],[145,0,0,1,0],[158,0,0,1,0]],"provide":[[135,0,0,1,0]],"apply":[[135,0,0,1,0],[139,0,0,1,0]],"customfrontmatter":[[135,0,0,0,2]],"minlength":[[135,0,0,0,1]],"picklist":[[135,0,0,0,1]],"beginner":[[135,0,0,0,1]],"advanced":[[135,0,0,0,1]],"practical":[[136,0,1,0,0]],"template":[[136,0,0,1,0],[160,0,0,1,0]],"wiring":[[136,0,0,1,0],[154,0,0,1,0]],"websites":[[137,0,0,2,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0],[141,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,1,0],[152,0,0,1,0],[153,0,0,1,0],[154,0,0,1,0],[155,0,0,1,0],[156,0,0,1,0]],"flavors":[[137,0,0,1,0]],"derived":[[137,0,0,1,0]],"pairs":[[137,0,0,1,0],[149,0,0,1,0]],"finer":[[137,0,0,1,0]],"extractdocstableofcontents":[[137,0,0,0,1],[154,0,0,1,0]],"renderrobotstxt":[[137,0,0,0,1],[142,0,0,0,2]],"rendersitemapmarkdown":[[137,0,0,0,1],[142,0,0,0,2]],"rendersitemapxml":[[137,0,0,0,1],[142,0,0,0,2]],"resolvedocstableofcontents":[[137,0,0,0,1],[154,0,0,1,1]],"purpose":[[138,0,0,1,0],[172,0,0,1,0]],"lastmod":[[138,0,0,1,0]],"mergeable":[[138,0,0,1,0]],"crawl":[[138,0,0,1,0]],"policy":[[138,0,0,1,0]],"explicitly":[[138,0,0,1,0],[156,0,0,1,0]],"allows":[[138,0,0,1,0]],"crawlers":[[138,0,0,1,0]],"longer":[[138,0,0,1,0]],"productinfo":[[139,0,1,0,0],[151,0,0,1,0]],"feature":[[139,0,0,1,0]],"curated":[[139,0,0,1,0]],"fall":[[139,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0]],"agentguidance":[[139,0,0,1,0],[151,0,0,1,0]],"instruction":[[139,0,0,1,0]],"appended":[[139,0,0,1,0]],"bottom":[[139,0,0,1,0]],"boring":[[140,0,0,0,1]],"parts":[[140,0,0,0,1]],"documentation":[[140,0,0,0,1]],"minute":[[140,0,0,0,1]],"typical":[[141,0,1,0,0]],"letting":[[142,0,0,1,0]],"writefile":[[142,0,0,0,3],[153,0,0,0,2]],"module":[[143,0,0,1,0]],"acceptsmarkdownheader":[[143,0,0,0,1],[147,0,0,1,0],[148,0,0,1,0]],"createdocshead":[[143,0,0,0,1],[146,0,1,0,2],[147,0,0,1,0]],"createmarkdownresponseheaders":[[143,0,0,0,1],[147,0,0,1,0]],"enrichmarkdownfrontmatter":[[143,0,0,0,1],[147,0,0,1,0]],"isagentreadabilityartifactpath":[[143,0,0,0,1],[148,0,0,1,0]],"isagentuseragent":[[143,0,0,0,1],[147,0,0,1,0],[148,0,0,1,0]],"rendermissingmarkdown":[[143,0,0,0,1],[147,0,0,1,0]],"resolvemarkdownmirrortarget":[[143,0,0,0,1],[147,0,0,1,0]],"ua":[[144,0,0,1,0]],"enriches":[[144,0,0,1,0]],"found":[[144,0,0,1,0]],"useragentpattern":[[144,0,0,1,0]],"regex":[[144,0,0,1,0],[148,0,0,1,0]],"cover":[[144,0,0,1,0]],"oai":[[144,0,0,1,0]],"searchbot":[[144,0,0,1,0]],"anthropic":[[144,0,0,1,0]],"ccbot":[[144,0,0,1,0]],"google":[[144,0,0,1,0]],"extended":[[144,0,0,1,0]],"readgeneratedfile":[[144,0,0,0,1]],"directives":[[145,0,0,1,0]],"reflect":[[145,0,0,1,0]],"hacks":[[145,0,0,1,0]],"rebasing":[[145,0,0,0,1]],"og":[[146,0,0,1,2],[147,0,0,1,0]],"neutral":[[146,0,0,1,0]],"arrays":[[146,0,0,1,0]],"caller":[[146,0,0,1,0]],"ldjson":[[146,0,0,0,1]],"jsonldmetakey":[[146,0,0,0,1]],"escaped":[[147,0,0,1,0]],"crlf":[[147,0,0,1,0]],"detect":[[147,0,0,2,0],[148,0,0,2,0]],"asking":[[147,0,0,1,0],[148,0,0,1,0]],"crawler":[[147,0,0,1,0],[148,0,0,1,0]],"avoid":[[148,0,0,1,0]],"uas":[[149,0,0,1,0]],"shards":[[149,0,0,1,0]],"browsers":[[149,0,0,1,0]],"pollinate":[[149,0,0,1,0]],"asserts":[[150,0,0,1,0]],"throws":[[150,0,0,1,0]],"clear":[[150,0,0,1,0]],"loudly":[[150,0,0,1,0]],"silently":[[150,0,0,1,0]],"producing":[[150,0,0,1,0]],"singular":[[151,0,0,1,0]],"segment":[[151,0,0,1,0]],"intentionally":[[151,0,0,1,0],[163,0,0,1,0]],"mislead":[[151,0,0,1,0]],"docssubdir":[[151,0,0,1,0]],"holds":[[151,0,0,1,0]],"outputpath":[[151,0,0,1,0]],"resolution":[[153,0,0,1,0],[160,0,0,2,0]],"driving":[[153,0,0,1,0]],"now":[[153,0,0,1,0]],"mkdir":[[153,0,0,0,2]],"stringify":[[153,0,0,0,1]],"come":[[155,0,0,1,0]],"principles":[[155,0,0,1,0]],"sharding":[[155,0,0,1,0]],"remains":[[155,0,0,1,0]],"flavor":[[155,0,0,1,0]],"decide":[[155,0,0,1,0]],"beats":[[155,0,0,1,0]],"our":[[155,0,0,1,0]],"variables":[[156,0,0,1,0]],"layered":[[156,0,0,1,0]],"lets":[[156,0,0,1,0]],"wide":[[156,0,0,1,0]],"platforms":[[156,0,0,1,0]],"hardcoded":[[156,0,0,1,0]],"portless":[[156,0,0,0,1]],"stripped":[[157,0,0,1,0]],"remarktypetabletomarkdown":[[157,0,0,0,1],[158,0,0,1,1],[162,0,1,0,3]],"remarkremoveimports":[[158,0,0,1,1]],"statements":[[158,0,0,1,0]],"remarkremovejsxcomments":[[158,0,0,1,1]],"comments":[[158,0,0,1,0]],"remarkresolvedocplaceholders":[[158,0,0,1,1],[160,0,0,1,0]],"remarkaudiencetomarkdown":[[158,0,0,1,1]],"remove":[[158,0,0,1,0]],"remarksectiontomarkdown":[[158,0,0,1,1]],"containers":[[158,0,0,1,0]],"remarkcallouttomarkdown":[[158,0,0,1,1]],"remarkcardstomarkdown":[[158,0,0,1,1]],"bulleted":[[158,0,0,1,0]],"remarkdetailstomarkdown":[[158,0,0,1,1]],"remarkmermaidtomarkdown":[[158,0,0,1,1]],"remarkcommandtabstomarkdown":[[158,0,0,1,1]],"remarkstepstomarkdown":[[158,0,0,1,1]],"remarktabstomarkdown":[[158,0,0,1,1]],"remarkaccordiontomarkdown":[[158,0,0,1,1]],"remarktopicswitchertomarkdown":[[158,0,0,1,1]],"labeled":[[158,0,0,1,0],[159,0,0,1,0]],"remarkfiletreetomarkdown":[[158,0,0,1,1],[159,0,0,1,0]],"remarkprompttomarkdown":[[158,0,0,1,1],[159,0,0,1,0]],"mdast":[[158,0,0,0,1]],"ri":[[158,0,0,0,2]],"rj":[[158,0,0,0,2]],"rd":[[158,0,0,0,2]],"rau":[[158,0,0,0,2]],"rs":[[158,0,0,0,2]],"rc":[[158,0,0,0,2]],"rcd":[[158,0,0,0,2]],"rdt":[[158,0,0,0,2]],"rct":[[158,0,0,0,2]],"rst":[[158,0,0,0,2]],"rt":[[158,0,0,0,2]],"rtt":[[158,0,0,0,2]],"ra":[[158,0,0,0,2]],"rts":[[158,0,0,0,2]],"rft":[[158,0,0,0,2]],"rp":[[158,0,0,0,2]],"remarkexampletomarkdown":[[158,0,0,0,1],[159,0,0,1,0]],"go":[[160,0,0,2,0]],"imported":[[160,0,0,1,0]],"flatteners":[[160,0,0,3,0]],"assume":[[160,0,0,1,0]],"strings":[[160,0,0,1,0]],"literals":[[160,0,0,1,0]],"reorder":[[160,0,0,1,0]],"casually":[[160,0,0,1,0]],"flattener":[[160,0,0,2,0],[161,0,0,1,0],[163,0,0,1,0]],"transform":[[160,0,0,1,0]],"contracted":[[160,0,0,1,0]],"insert":[[160,0,0,1,0]],"composition":[[161,0,0,1,0]],"expands":[[161,0,0,1,0]],"basepath":[[162,0,1,1,1]],"pipelineexampleoptions":[[162,0,0,0,1]],"types":[[162,0,0,0,1]],"composed":[[163,0,0,1,0]],"fragments":[[163,0,0,1,0]],"processing":[[163,0,0,1,0]],"almost":[[163,0,0,1,0]],"never":[[163,0,0,1,0]],"reordering":[[163,0,0,1,0]],"ones":[[163,0,0,1,0]],"exposes":[[164,0,0,1,0],[171,0,0,1,0]],"separate":[[165,0,0,1,0]],"jump":[[165,0,0,1,0]],"tunable":[[165,0,0,1,0]],"tuple":[[165,0,0,1,0]],"term":[[165,0,0,1,0]],"postings":[[165,0,0,1,0]],"refs":[[165,0,0,2,0]],"actual":[[165,0,0,1,0]],"separated":[[165,0,0,1,0]],"lazily":[[165,0,0,1,0]],"indexing":[[166,0,1,0,0]],"splitting":[[166,0,0,1,0]],"hover":[[166,0,0,1,0]],"lightweight":[[167,0,0,1,0]],"weight":[[167,0,0,1,0]],"keys":[[167,0,0,1,0],[173,0,0,1,0]],"precise":[[167,0,0,1,0]],"doubles":[[168,0,0,1,0]],"virtual":[[168,0,0,1,0],[171,0,0,1,0]],"readers":[[168,0,0,1,0]],"picked":[[168,0,0,1,0]],"readdocscontentfile":[[168,0,0,1,2]],"entire":[[168,0,0,1,0]],"readdocscontentchunk":[[168,0,0,1,2]],"listdocscontentfiles":[[168,0,0,0,2]],"allfiles":[[168,0,0,0,1]],"wholepage":[[168,0,0,0,1]],"onechunk":[[168,0,0,0,1]],"createanswercontext":[[169,0,0,1,2],[170,0,0,1,0]],"instructs":[[169,0,0,1,0]],"style":[[169,0,0,1,0]],"references":[[169,0,0,1,0]],"say":[[169,0,0,1,0]],"insufficient":[[169,0,0,1,0]],"wrappers":[[170,0,0,1,0]],"citation":[[170,0,0,1,0]],"embed":[[170,0,0,1,0]],"adapter":[[170,0,0,1,0],[171,0,0,1,0]],"createcloudflaredocsadapter":[[170,0,0,1,0]],"gateway":[[170,0,0,1,2]],"sdk":[[170,0,0,0,1],[171,0,0,1,0]],"adapters":[[171,0,1,0,0]],"explore":[[171,0,0,1,0]],"shell":[[171,0,0,1,0]],"receiving":[[171,0,0,1,0]],"selected":[[171,0,0,1,0]],"ls":[[171,0,0,1,0]],"cat":[[171,0,0,1,0]],"rg":[[171,0,0,1,0]],"execution":[[171,0,0,1,0]],"disabled":[[171,0,0,1,0]],"createdocsbashtool":[[171,0,0,1,2]],"createdocsbashtools":[[171,0,0,1,1]],"compatible":[[171,0,0,1,0]],"abuse":[[172,0,1,0,0]],"guards":[[172,0,1,0,0]],"reusable":[[172,0,0,1,0]],"utilities":[[172,0,0,1,0]],"implements":[[172,0,0,1,0]],"ratelimiter":[[172,0,0,2,0]],"embeddings":[[173,0,1,2,0]],"messages":[[173,0,0,1,0]],"faster":[[173,0,0,1,0]],"performance":[[173,0,0,1,0]],"optimization":[[173,0,0,1,0]],"grow":[[173,0,0,1,0]],"past":[[173,0,0,1,0]],"tens":[[173,0,0,1,0]],"thousands":[[173,0,0,1,0]],"cold":[[173,0,0,1,0]],"hit":[[173,0,0,1,0]],"noticeable":[[173,0,0,1,0]],"even":[[173,0,0,1,0]],"complementary":[[173,0,0,1,0]],"replacements":[[173,0,0,1,0]]},"averageChunkLength":86.39080459770115} diff --git a/bun.lock b/bun.lock index 7a03cd5..7a8767c 100644 --- a/bun.lock +++ b/bun.lock @@ -12,7 +12,6 @@ "@typescript/native-preview": "7.0.0-dev.20260509.2", "husky": "^9.1.7", "leadtype": "workspace:*", - "prettier": "^3.7.4", "turbo": "^2.9.12", "typescript": "6.0.3", "ultracite": "7.6.5", @@ -74,7 +73,7 @@ "devDependencies": { "ai": "^6.0.168", "tinyglobby": "0.2.16", - "vitest": "^2.1.8", + "vitest": "^4.1.5", "zod": "^3.23.8", }, }, @@ -84,22 +83,18 @@ "bin": "./dist/cli.js", "dependencies": { "@types/mdast": "4.0.4", - "decode-named-character-reference": "1.3.0", - "gray-matter": "4.0.3", - "jiti": "^2.7.0", "json5": "2.2.3", - "mdast-util-compact": "5.0.0", - "mdast-util-to-markdown": "2.1.2", "mdast-util-to-string": "4.0.0", "remark": "15.0.1", "remark-gfm": "4.0.1", "remark-mdx": "3.1.1", "tinyglobby": "0.2.16", "unified": "11.0.5", - "unist-builder": "4.0.0", - "unist-util-is": "6.0.1", "unist-util-visit": "5.1.0", "valibot": "1.4.0", + "vfile": "^6.0.3", + "vfile-matter": "^5.0.1", + "yaml": "^2.9.0", }, "devDependencies": { "@cloudflare/tanstack-ai": "^0.1.7", @@ -108,6 +103,7 @@ "@typescript/native-preview": "7.0.0-dev.20260509.2", "ai": "^6.0.177", "bash-tool": "1.3.16", + "jiti": "^2.7.0", "just-bash": "2.14.5", "mdast-util-mdx": "3.0.0", "mdast-util-mdx-jsx": "3.2.0", @@ -116,7 +112,6 @@ "rollup-plugin-dts": "^6.2.1", "rollup-plugin-esbuild": "^6.2.1", "typescript": "6.0.3", - "ultracite": "7.6.5", "vitest": "^4.1.5", }, "peerDependencies": { @@ -124,6 +119,7 @@ "@tanstack/ai": ">=0.15.0", "ai": ">=6.0.0", "bash-tool": ">=1.3.16", + "jiti": ">=2.0.0", "just-bash": ">=2.14.5", "typescript": ">=5.0.0", }, @@ -132,6 +128,7 @@ "@tanstack/ai", "ai", "bash-tool", + "jiti", "just-bash", "typescript", ], @@ -770,7 +767,7 @@ "anymatch": ["anymatch@3.1.3", "", { "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" } }, "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw=="], - "argparse": ["argparse@1.0.10", "", { "dependencies": { "sprintf-js": "~1.0.2" } }, "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="], + "argparse": ["argparse@2.0.1", "", {}, "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="], "array-union": ["array-union@2.1.0", "", {}, "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw=="], @@ -810,13 +807,11 @@ "buffer-equal-constant-time": ["buffer-equal-constant-time@1.0.1", "", {}, "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA=="], - "cac": ["cac@6.7.14", "", {}, "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ=="], - "caniuse-lite": ["caniuse-lite@1.0.30001791", "", {}, "sha512-yk0l/YSrOnFZk3UROpDLQD9+kC1l4meK/wed583AXrzoarMGJcbRi2Q4RaUYbKxYAsZ8sWmaSa/DsLmdBeI1vQ=="], "ccount": ["ccount@2.0.1", "", {}, "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="], - "chai": ["chai@5.3.3", "", { "dependencies": { "assertion-error": "^2.0.1", "check-error": "^2.1.1", "deep-eql": "^5.0.1", "loupe": "^3.1.0", "pathval": "^2.0.0" } }, "sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw=="], + "chai": ["chai@6.2.2", "", {}, "sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg=="], "character-entities": ["character-entities@2.0.2", "", {}, "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ=="], @@ -828,8 +823,6 @@ "chardet": ["chardet@2.1.1", "", {}, "sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ=="], - "check-error": ["check-error@2.1.3", "", {}, "sha512-PAJdDJusoxnwm1VwW07VWwUN1sl7smmC3OKggvndJFadxxDRyFJBX/ggnu/KE4kQAB7a3Dp8f/YXC1FlUprWmA=="], - "cheerio": ["cheerio@1.2.0", "", { "dependencies": { "cheerio-select": "^2.1.0", "dom-serializer": "^2.0.0", "domhandler": "^5.0.3", "domutils": "^3.2.2", "encoding-sniffer": "^0.2.1", "htmlparser2": "^10.1.0", "parse5": "^7.3.0", "parse5-htmlparser2-tree-adapter": "^7.1.0", "parse5-parser-stream": "^7.1.2", "undici": "^7.19.0", "whatwg-mimetype": "^4.0.0" } }, "sha512-WDrybc/gKFpTYQutKIK6UvfcuxijIZfMfXaYm8NMsPQxSYvf+13fXUJ4rztGGbJcBQ/GF55gvrZ0Bc0bj/mqvg=="], "cheerio-select": ["cheerio-select@2.1.0", "", { "dependencies": { "boolbase": "^1.0.0", "css-select": "^5.1.0", "css-what": "^6.1.0", "domelementtype": "^2.3.0", "domhandler": "^5.0.3", "domutils": "^3.0.1" } }, "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g=="], @@ -960,8 +953,6 @@ "decompress-response": ["decompress-response@6.0.0", "", { "dependencies": { "mimic-response": "^3.1.0" } }, "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ=="], - "deep-eql": ["deep-eql@5.0.2", "", {}, "sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q=="], - "deep-extend": ["deep-extend@0.6.0", "", {}, "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA=="], "deepmerge": ["deepmerge@4.3.1", "", {}, "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A=="], @@ -1048,8 +1039,6 @@ "extend": ["extend@3.0.2", "", {}, "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="], - "extend-shallow": ["extend-shallow@2.0.1", "", { "dependencies": { "is-extendable": "^0.1.0" } }, "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug=="], - "extendable-error": ["extendable-error@0.1.7", "", {}, "sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg=="], "fast-glob": ["fast-glob@3.3.3", "", { "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", "micromatch": "^4.0.8" } }, "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg=="], @@ -1114,8 +1103,6 @@ "graceful-fs": ["graceful-fs@4.2.11", "", {}, "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="], - "gray-matter": ["gray-matter@4.0.3", "", { "dependencies": { "js-yaml": "^3.13.1", "kind-of": "^6.0.2", "section-matter": "^1.0.0", "strip-bom-string": "^1.0.0" } }, "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q=="], - "h3": ["h3@2.0.1-rc.21", "", { "dependencies": { "rou3": "^0.8.1", "srvx": "^0.11.15" }, "peerDependencies": { "crossws": "^0.4.1" }, "optionalPeers": ["crossws"], "bin": { "h3": "bin/h3.mjs" } }, "sha512-lDeqAgCQXWT7C+5Zs3ler2phZPeX5yTk9KqQuL8taSSngIhcPR0r83TZyYwTO/cLogm6a4+9slZcngrfdyZtrQ=="], "h3-v2": ["h3@2.0.1-rc.20", "", { "dependencies": { "rou3": "^0.8.1", "srvx": "^0.11.13" }, "peerDependencies": { "crossws": "^0.4.1" }, "optionalPeers": ["crossws"], "bin": { "h3": "bin/h3.mjs" } }, "sha512-28ljodXuUp0fZovdiSRq4G9OgrxCztrJe5VdYzXAB7ueRvI7pIUqLU14Xi3XqdYJ/khXjfpUOOD2EQa6CmBgsg=="], @@ -1178,8 +1165,6 @@ "is-decimal": ["is-decimal@2.0.1", "", {}, "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A=="], - "is-extendable": ["is-extendable@0.1.1", "", {}, "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw=="], - "is-extglob": ["is-extglob@2.1.1", "", {}, "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ=="], "is-glob": ["is-glob@4.0.3", "", { "dependencies": { "is-extglob": "^2.1.1" } }, "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg=="], @@ -1202,7 +1187,7 @@ "js-tokens": ["js-tokens@4.0.0", "", {}, "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="], - "js-yaml": ["js-yaml@3.14.2", "", { "dependencies": { "argparse": "^1.0.7", "esprima": "^4.0.0" }, "bin": { "js-yaml": "bin/js-yaml.js" } }, "sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg=="], + "js-yaml": ["js-yaml@4.1.1", "", { "dependencies": { "argparse": "^2.0.1" }, "bin": { "js-yaml": "bin/js-yaml.js" } }, "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA=="], "jsesc": ["jsesc@3.1.0", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA=="], @@ -1228,8 +1213,6 @@ "khroma": ["khroma@2.1.0", "", {}, "sha512-Ls993zuzfayK269Svk9hzpeGUKob/sIgZzyHYdjQoAdQetRKpOLj+k/QQQ/6Qi0Yz65mlROrfd+Ev+1+7dz9Kw=="], - "kind-of": ["kind-of@6.0.3", "", {}, "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="], - "langium": ["langium@4.2.2", "", { "dependencies": { "@chevrotain/regexp-to-ast": "~12.0.0", "chevrotain": "~12.0.0", "chevrotain-allstar": "~0.4.1", "vscode-languageserver": "~9.0.1", "vscode-languageserver-textdocument": "~1.0.11", "vscode-uri": "~3.1.0" } }, "sha512-JUshTRAfHI4/MF9dH2WupvjSXyn8JBuUEWazB8ZVJUtXutT0doDlAv1XKbZ1Pb5sMexa8FF4CFBc0iiul7gbUQ=="], "layout-base": ["layout-base@1.0.2", "", {}, "sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg=="], @@ -1272,8 +1255,6 @@ "longest-streak": ["longest-streak@3.1.0", "", {}, "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g=="], - "loupe": ["loupe@3.2.1", "", {}, "sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ=="], - "lru-cache": ["lru-cache@11.3.5", "", {}, "sha512-NxVFwLAnrd9i7KUBxC4DrUhmgjzOs+1Qm50D3oF1/oL+r1NpZ4gA7xvG0/zJ8evR7zIKn4vLf7qTNduWFtCrRw=="], "magic-string": ["magic-string@0.30.21", "", { "dependencies": { "@jridgewell/sourcemap-codec": "^1.5.5" } }, "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ=="], @@ -1284,8 +1265,6 @@ "marked": ["marked@17.0.6", "", { "bin": { "marked": "bin/marked.js" } }, "sha512-gB0gkNafnonOw0obSTEGZTT86IuhILt2Wfx0mWH/1Au83kybTayroZ/V6nS25mN7u8ASy+5fMhgB3XPNrOZdmA=="], - "mdast-util-compact": ["mdast-util-compact@5.0.0", "", { "dependencies": { "@types/mdast": "^4.0.0", "devlop": "^1.0.0", "unist-util-visit": "^5.0.0" } }, "sha512-Ss1dkGVDFPNaGR4nN1ohe1I1FWZjb8QBsDSh0YmmlF+/SfU4JaMWcNRDl63fmw0x06FXLpNxu9DiWdkORWziZw=="], - "mdast-util-find-and-replace": ["mdast-util-find-and-replace@3.0.2", "", { "dependencies": { "@types/mdast": "^4.0.0", "escape-string-regexp": "^5.0.0", "unist-util-is": "^6.0.0", "unist-util-visit-parents": "^6.0.0" } }, "sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg=="], "mdast-util-from-markdown": ["mdast-util-from-markdown@2.0.3", "", { "dependencies": { "@types/mdast": "^4.0.0", "@types/unist": "^3.0.0", "decode-named-character-reference": "^1.0.0", "devlop": "^1.0.0", "mdast-util-to-string": "^4.0.0", "micromark": "^4.0.0", "micromark-util-decode-numeric-character-reference": "^2.0.0", "micromark-util-decode-string": "^2.0.0", "micromark-util-normalize-identifier": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0", "unist-util-stringify-position": "^4.0.0" } }, "sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q=="], @@ -1498,8 +1477,6 @@ "pathe": ["pathe@2.0.3", "", {}, "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w=="], - "pathval": ["pathval@2.0.1", "", {}, "sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ=="], - "picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], "picomatch": ["picomatch@4.0.4", "", {}, "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A=="], @@ -1520,7 +1497,7 @@ "prebuild-install": ["prebuild-install@7.1.3", "", { "dependencies": { "detect-libc": "^2.0.0", "expand-template": "^2.0.3", "github-from-package": "0.0.0", "minimist": "^1.2.3", "mkdirp-classic": "^0.5.3", "napi-build-utils": "^2.0.0", "node-abi": "^3.3.0", "pump": "^3.0.0", "rc": "^1.2.7", "simple-get": "^4.0.0", "tar-fs": "^2.0.0", "tunnel-agent": "^0.6.0" }, "bin": { "prebuild-install": "bin.js" } }, "sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug=="], - "prettier": ["prettier@3.8.3", "", { "bin": { "prettier": "bin/prettier.cjs" } }, "sha512-7igPTM53cGHMW8xWuVTydi2KO233VFiTNyF5hLJqpilHfmn8C8gPf+PS7dUT64YcXFbiMGZxS9pCSxL/Dxm/Jw=="], + "prettier": ["prettier@2.8.8", "", { "bin": { "prettier": "bin-prettier.js" } }, "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q=="], "property-information": ["property-information@7.1.0", "", {}, "sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ=="], @@ -1614,8 +1591,6 @@ "scheduler": ["scheduler@0.27.0", "", {}, "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q=="], - "section-matter": ["section-matter@1.0.0", "", { "dependencies": { "extend-shallow": "^2.0.1", "kind-of": "^6.0.0" } }, "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA=="], - "seek-bzip": ["seek-bzip@2.0.0", "", { "dependencies": { "commander": "^6.0.0" }, "bin": { "seek-bunzip": "bin/seek-bunzip", "seek-table": "bin/seek-bzip-table" } }, "sha512-SMguiTnYrhpLdk3PwfzHeotrcwi8bNV4iemL9tx9poR/yeaMYwB9VzR1w7b57DuWpuqR8n6oZboi0hj3AxZxQg=="], "semver": ["semver@7.7.4", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA=="], @@ -1670,8 +1645,6 @@ "strip-bom": ["strip-bom@3.0.0", "", {}, "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA=="], - "strip-bom-string": ["strip-bom-string@1.0.0", "", {}, "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g=="], - "strip-json-comments": ["strip-json-comments@2.0.1", "", {}, "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ=="], "strnum": ["strnum@2.2.3", "", {}, "sha512-oKx6RUCuHfT3oyVjtnrmn19H1SiCqgJSg+54XqURKp5aCMbrXrhLjRN9TjuwMjiYstZ0MzDrHqkGZ5dFTKd+zg=="], @@ -1702,12 +1675,8 @@ "tinyglobby": ["tinyglobby@0.2.16", "", { "dependencies": { "fdir": "^6.5.0", "picomatch": "^4.0.4" } }, "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg=="], - "tinypool": ["tinypool@1.1.1", "", {}, "sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg=="], - "tinyrainbow": ["tinyrainbow@3.1.0", "", {}, "sha512-Bf+ILmBgretUrdJxzXM0SgXLZ3XfiaUuOj/IKQHuTXip+05Xn+uyEYdVg0kYDipTBcLrCVyUzAPz7QmArb0mmw=="], - "tinyspy": ["tinyspy@3.0.2", "", {}, "sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q=="], - "to-regex-range": ["to-regex-range@5.0.1", "", { "dependencies": { "is-number": "^7.0.0" } }, "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ=="], "token-types": ["token-types@6.1.2", "", { "dependencies": { "@borewit/text-codec": "^0.2.1", "@tokenizer/token": "^0.3.0", "ieee754": "^1.2.1" } }, "sha512-dRXchy+C0IgK8WPC6xvCHFRIWYUbqqdEIKPaKo/AcTUNzwLTK6AH7RjdLWsEZcAN/TBdtfUw3PYEgPr5VPr6ww=="], @@ -1750,8 +1719,6 @@ "unified": ["unified@11.0.5", "", { "dependencies": { "@types/unist": "^3.0.0", "bail": "^2.0.0", "devlop": "^1.0.0", "extend": "^3.0.0", "is-plain-obj": "^4.0.0", "trough": "^2.0.0", "vfile": "^6.0.0" } }, "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA=="], - "unist-builder": ["unist-builder@4.0.0", "", { "dependencies": { "@types/unist": "^3.0.0" } }, "sha512-wmRFnH+BLpZnTKpc5L7O67Kac89s9HMrtELpnNaE6TAobq5DTZZs5YaTQfAZBA9bFPECx2uVAPO31c+GVug8mg=="], - "unist-util-is": ["unist-util-is@6.0.1", "", { "dependencies": { "@types/unist": "^3.0.0" } }, "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g=="], "unist-util-position": ["unist-util-position@5.0.0", "", { "dependencies": { "@types/unist": "^3.0.0" } }, "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA=="], @@ -1786,12 +1753,12 @@ "vfile-location": ["vfile-location@5.0.3", "", { "dependencies": { "@types/unist": "^3.0.0", "vfile": "^6.0.0" } }, "sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg=="], + "vfile-matter": ["vfile-matter@5.0.1", "", { "dependencies": { "vfile": "^6.0.0", "yaml": "^2.0.0" } }, "sha512-o6roP82AiX0XfkyTHyRCMXgHfltUNlXSEqCIS80f+mbAyiQBE2fxtDVMtseyytGx75sihiJFo/zR6r/4LTs2Cw=="], + "vfile-message": ["vfile-message@4.0.3", "", { "dependencies": { "@types/unist": "^3.0.0", "unist-util-stringify-position": "^4.0.0" } }, "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw=="], "vite": ["vite@8.0.11", "", { "dependencies": { "lightningcss": "^1.32.0", "picomatch": "^4.0.4", "postcss": "^8.5.14", "rolldown": "1.0.0-rc.18", "tinyglobby": "^0.2.16" }, "optionalDependencies": { "fsevents": "~2.3.3" }, "peerDependencies": { "@types/node": "^20.19.0 || >=22.12.0", "@vitejs/devtools": "^0.1.18", "esbuild": "^0.27.0 || ^0.28.0", "jiti": ">=1.21.0", "less": "^4.0.0", "sass": "^1.70.0", "sass-embedded": "^1.70.0", "stylus": ">=0.54.8", "sugarss": "^5.0.0", "terser": "^5.16.0", "tsx": "^4.8.1", "yaml": "^2.4.2" }, "optionalPeers": ["@types/node", "@vitejs/devtools", "esbuild", "jiti", "less", "sass", "sass-embedded", "stylus", "sugarss", "terser", "tsx", "yaml"], "bin": { "vite": "bin/vite.js" } }, "sha512-Jz1mxtUBR5xTT65VOdJZUUeoyLtqljmFkiUXhPTLZka3RDc9vpi/xXkyrnsdRcm2lIi3l3GPMnAidTsEGIj3Ow=="], - "vite-node": ["vite-node@2.1.9", "", { "dependencies": { "cac": "^6.7.14", "debug": "^4.3.7", "es-module-lexer": "^1.5.4", "pathe": "^1.1.2", "vite": "^5.0.0" }, "bin": { "vite-node": "vite-node.mjs" } }, "sha512-AM9aQ/IPrW/6ENLQg3AGY4K1N2TGZdR5e4gu/MmmR2xR3Ll1+dib+nook92g4TV3PXVyeyxdWwtaCAiUL0hMxA=="], - "vite-tsconfig-paths": ["vite-tsconfig-paths@6.1.1", "", { "dependencies": { "debug": "^4.1.1", "globrex": "^0.1.2", "tsconfck": "^3.0.3" }, "peerDependencies": { "vite": "*" } }, "sha512-2cihq7zliibCCZ8P9cKJrQBkfgdvcFkOOc3Y02o3GWUDLgqjWsZudaoiuOwO/gzTzy17cS5F7ZPo4bsnS4DGkg=="], "vitefu": ["vitefu@1.1.3", "", { "peerDependencies": { "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0" }, "optionalPeers": ["vite"] }, "sha512-ub4okH7Z5KLjb6hDyjqrGXqWtWvoYdU3IGm/NorpgHncKoLTCfRIbvlhBm7r0YstIaQRYlp4yEbFqDcKSzXSSg=="], @@ -1838,7 +1805,7 @@ "yallist": ["yallist@3.1.1", "", {}, "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g=="], - "yaml": ["yaml@2.8.4", "", { "bin": { "yaml": "bin.mjs" } }, "sha512-ml/JPOj9fOQK8RNnWojA67GbZ0ApXAUlN2UQclwv2eVgTgn7O9gg9o7paZWKMp4g0H3nTLtS9LVzhkpOFIKzog=="], + "yaml": ["yaml@2.9.0", "", { "bin": { "yaml": "bin.mjs" } }, "sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA=="], "zod": ["zod@3.25.76", "", {}, "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ=="], @@ -1852,12 +1819,6 @@ "@babel/helper-compilation-targets/semver": ["semver@6.3.1", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], - "@changesets/apply-release-plan/prettier": ["prettier@2.8.8", "", { "bin": { "prettier": "bin-prettier.js" } }, "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q=="], - - "@changesets/parse/js-yaml": ["js-yaml@4.1.1", "", { "dependencies": { "argparse": "^2.0.1" }, "bin": { "js-yaml": "bin/js-yaml.js" } }, "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA=="], - - "@changesets/write/prettier": ["prettier@2.8.8", "", { "bin": { "prettier": "bin-prettier.js" } }, "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q=="], - "@manypkg/find-root/@types/node": ["@types/node@12.20.55", "", {}, "sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ=="], "@manypkg/find-root/fs-extra": ["fs-extra@8.1.0", "", { "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^4.0.0", "universalify": "^0.1.0" } }, "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g=="], @@ -1902,18 +1863,16 @@ "@tanstack/ai-openrouter/@tanstack/ai": ["@tanstack/ai@0.14.0", "", { "dependencies": { "@ag-ui/core": "0.0.49", "@tanstack/ai-event-client": "0.2.8", "partial-json": "^0.1.7" } }, "sha512-oiyYHcWMmyVoKDf018xZMEX62BaJVhdgeeRQeRbqP3p5Nvar2UZUhKzFkUiE4L9KzklPqrtI5aYhVdAp9Z142g=="], + "@tanstack/router-generator/prettier": ["prettier@3.8.3", "", { "bin": { "prettier": "bin/prettier.cjs" } }, "sha512-7igPTM53cGHMW8xWuVTydi2KO233VFiTNyF5hLJqpilHfmn8C8gPf+PS7dUT64YcXFbiMGZxS9pCSxL/Dxm/Jw=="], + "@tanstack/router-plugin/chokidar": ["chokidar@3.6.0", "", { "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", "glob-parent": "~5.1.2", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", "readdirp": "~3.6.0" }, "optionalDependencies": { "fsevents": "~2.3.2" } }, "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw=="], "@tanstack/start-plugin-core/@babel/code-frame": ["@babel/code-frame@7.27.1", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.27.1", "js-tokens": "^4.0.0", "picocolors": "^1.1.1" } }, "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg=="], "@tanstack/start-plugin-core/@rolldown/pluginutils": ["@rolldown/pluginutils@1.0.0-beta.40", "", {}, "sha512-s3GeJKSQOwBlzdUrj4ISjJj5SfSh+aqn0wjOar4Bx95iV1ETI7F6S/5hLcfAxZ9kXDcyrAkxPlqmd1ZITttf+w=="], - "@vitest/expect/chai": ["chai@6.2.2", "", {}, "sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg=="], - "anymatch/picomatch": ["picomatch@2.3.2", "", {}, "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA=="], - "argparse/sprintf-js": ["sprintf-js@1.0.3", "", {}, "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g=="], - "bash-tool/just-bash": ["just-bash@2.14.2", "", { "dependencies": { "diff": "^8.0.2", "fast-xml-parser": "^5.3.3", "file-type": "^21.2.0", "ini": "^6.0.0", "minimatch": "^10.1.1", "modern-tar": "^0.7.3", "papaparse": "^5.5.3", "quickjs-emscripten": "^0.32.0", "re2js": "^1.2.1", "seek-bzip": "^2.0.0", "smol-toml": "^1.6.0", "sprintf-js": "^1.1.3", "sql.js": "^1.13.0", "turndown": "^7.2.2", "yaml": "^2.8.2" }, "optionalDependencies": { "@mongodb-js/zstd": "^7.0.0", "node-liblzma": "^2.0.3" }, "bin": { "just-bash": "dist/bin/just-bash.js", "just-bash-shell": "dist/bin/shell/shell.js" } }, "sha512-9Na1rH03Ta5ydHTNotJ7dms1iZwb2kToOnKbnS29AlrCvi1CQ21Fm2lfu4S4rfwDGHYi4E4evgTDC/DcDx8tuQ=="], "bash-tool/yaml": ["yaml@2.8.3", "", { "bin": { "yaml": "bin.mjs" } }, "sha512-AvbaCLOO2Otw/lW5bmh9d/WEdcDFdQp2Z2ZUH3pX9U2ihyUY0nvLv7J6TrWowklRGPYbB/IuIMfYgxaCPg5Bpg=="], @@ -1934,12 +1893,12 @@ "htmlparser2/entities": ["entities@7.0.1", "", {}, "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA=="], + "just-bash/yaml": ["yaml@2.8.4", "", { "bin": { "yaml": "bin.mjs" } }, "sha512-ml/JPOj9fOQK8RNnWojA67GbZ0ApXAUlN2UQclwv2eVgTgn7O9gg9o7paZWKMp4g0H3nTLtS9LVzhkpOFIKzog=="], + "katex/commander": ["commander@8.3.0", "", {}, "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww=="], "leadtype/@types/node": ["@types/node@22.19.17", "", { "dependencies": { "undici-types": "~6.21.0" } }, "sha512-wGdMcf+vPYM6jikpS/qhg6WiqSV/OhG+jeeHT/KlVqxYfD40iYJf9/AE1uQxVWFvU7MipKRkRv8NSHiCGgPr8Q=="], - "leadtype-evals/vitest": ["vitest@2.1.9", "", { "dependencies": { "@vitest/expect": "2.1.9", "@vitest/mocker": "2.1.9", "@vitest/pretty-format": "^2.1.9", "@vitest/runner": "2.1.9", "@vitest/snapshot": "2.1.9", "@vitest/spy": "2.1.9", "@vitest/utils": "2.1.9", "chai": "^5.1.2", "debug": "^4.3.7", "expect-type": "^1.1.0", "magic-string": "^0.30.12", "pathe": "^1.1.2", "std-env": "^3.8.0", "tinybench": "^2.9.0", "tinyexec": "^0.3.1", "tinypool": "^1.0.1", "tinyrainbow": "^1.2.0", "vite": "^5.0.0", "vite-node": "2.1.9", "why-is-node-running": "^2.3.0" }, "peerDependencies": { "@edge-runtime/vm": "*", "@types/node": "^18.0.0 || >=20.0.0", "@vitest/browser": "2.1.9", "@vitest/ui": "2.1.9", "happy-dom": "*", "jsdom": "*" }, "optionalPeers": ["@edge-runtime/vm", "@types/node", "@vitest/browser", "@vitest/ui", "happy-dom", "jsdom"], "bin": { "vitest": "vitest.mjs" } }, "sha512-MSmPM9REYqDGBI8439mA4mWhV5sKmDlBKWIYbA3lRb2PTHACE0mgKwA8yQ2xq9vxDTuk4iPrECBAEW2aoFXY0Q=="], - "mermaid/marked": ["marked@16.4.2", "", { "bin": { "marked": "bin/marked.js" } }, "sha512-TI3V8YYWvkVf3KJe1dRkpnjs68JUPyEa5vjKrp1XEEJUAOaQc+Qj+L1qWbPd0SJuAdQkFU0h73sXXqwDYxsiDA=="], "micromatch/picomatch": ["picomatch@2.3.2", "", {}, "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA=="], @@ -1954,24 +1913,20 @@ "rc/ini": ["ini@1.3.8", "", {}, "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="], + "read-yaml-file/js-yaml": ["js-yaml@3.14.2", "", { "dependencies": { "argparse": "^1.0.7", "esprima": "^4.0.0" }, "bin": { "js-yaml": "bin/js-yaml.js" } }, "sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg=="], + "rolldown/@rolldown/pluginutils": ["@rolldown/pluginutils@1.0.0-rc.18", "", {}, "sha512-CUY5Mnhe64xQBGZEEXQ5WyZwsc1JU3vAZLIxtrsBt3LO6UOb+C8GunVKqe9sT8NeWb4lqSaoJtp2xo6GxT1MNw=="], "seek-bzip/commander": ["commander@6.2.1", "", {}, "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA=="], - "ultracite/zod": ["zod@4.4.3", "", {}, "sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ=="], - - "vite-node/pathe": ["pathe@1.1.2", "", {}, "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ=="], + "ultracite/yaml": ["yaml@2.8.4", "", { "bin": { "yaml": "bin.mjs" } }, "sha512-ml/JPOj9fOQK8RNnWojA67GbZ0ApXAUlN2UQclwv2eVgTgn7O9gg9o7paZWKMp4g0H3nTLtS9LVzhkpOFIKzog=="], - "vite-node/vite": ["vite@5.4.21", "", { "dependencies": { "esbuild": "^0.21.3", "postcss": "^8.4.43", "rollup": "^4.20.0" }, "optionalDependencies": { "fsevents": "~2.3.3" }, "peerDependencies": { "@types/node": "^18.0.0 || >=20.0.0", "less": "*", "lightningcss": "^1.21.0", "sass": "*", "sass-embedded": "*", "stylus": "*", "sugarss": "*", "terser": "^5.4.0" }, "optionalPeers": ["@types/node", "less", "lightningcss", "sass", "sass-embedded", "stylus", "sugarss", "terser"], "bin": { "vite": "bin/vite.js" } }, "sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw=="], + "ultracite/zod": ["zod@4.4.3", "", {}, "sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ=="], "vitest/es-module-lexer": ["es-module-lexer@2.1.0", "", {}, "sha512-n27zTYMjYu1aj4MjCWzSP7G9r75utsaoc8m61weK+W8JMBGGQybd43GstCXZ3WNmSFtGT9wi59qQTW6mhTR5LQ=="], "whatwg-encoding/iconv-lite": ["iconv-lite@0.6.3", "", { "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" } }, "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw=="], - "xmlbuilder2/js-yaml": ["js-yaml@4.1.1", "", { "dependencies": { "argparse": "^2.0.1" }, "bin": { "js-yaml": "bin/js-yaml.js" } }, "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA=="], - - "@changesets/parse/js-yaml/argparse": ["argparse@2.0.1", "", {}, "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="], - "@tanstack/ai-anthropic/@tanstack/ai/@tanstack/ai-event-client": ["@tanstack/ai-event-client@0.2.8", "", { "dependencies": { "@tanstack/devtools-event-client": "^0.4.1" }, "peerDependencies": { "@tanstack/ai": "0.14.0" } }, "sha512-pdvT1hh7UorwBiDLrXnI5BFDfc7JSqnN06LaQHG4TGRl/621UnUrh16hQKOMn/msArKiCj+n+TG+cw4mDwMaLw=="], "@tanstack/ai-gemini/@tanstack/ai/@tanstack/ai-event-client": ["@tanstack/ai-event-client@0.2.8", "", { "dependencies": { "@tanstack/devtools-event-client": "^0.4.1" }, "peerDependencies": { "@tanstack/ai": "0.14.0" } }, "sha512-pdvT1hh7UorwBiDLrXnI5BFDfc7JSqnN06LaQHG4TGRl/621UnUrh16hQKOMn/msArKiCj+n+TG+cw4mDwMaLw=="], @@ -1992,134 +1947,16 @@ "d3-sankey/d3-shape/d3-path": ["d3-path@1.0.9", "", {}, "sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg=="], - "leadtype-evals/vitest/@vitest/expect": ["@vitest/expect@2.1.9", "", { "dependencies": { "@vitest/spy": "2.1.9", "@vitest/utils": "2.1.9", "chai": "^5.1.2", "tinyrainbow": "^1.2.0" } }, "sha512-UJCIkTBenHeKT1TTlKMJWy1laZewsRIzYighyYiJKZreqtdxSos/S1t+ktRMQWu2CKqaarrkeszJx1cgC5tGZw=="], - - "leadtype-evals/vitest/@vitest/mocker": ["@vitest/mocker@2.1.9", "", { "dependencies": { "@vitest/spy": "2.1.9", "estree-walker": "^3.0.3", "magic-string": "^0.30.12" }, "peerDependencies": { "msw": "^2.4.9", "vite": "^5.0.0" }, "optionalPeers": ["msw", "vite"] }, "sha512-tVL6uJgoUdi6icpxmdrn5YNo3g3Dxv+IHJBr0GXHaEdTcw3F+cPKnsXFhli6nO+f/6SDKPHEK1UN+k+TQv0Ehg=="], - - "leadtype-evals/vitest/@vitest/pretty-format": ["@vitest/pretty-format@2.1.9", "", { "dependencies": { "tinyrainbow": "^1.2.0" } }, "sha512-KhRIdGV2U9HOUzxfiHmY8IFHTdqtOhIzCpd8WRdJiE7D/HUcZVD0EgQCVjm+Q9gkUXWgBvMmTtZgIG48wq7sOQ=="], - - "leadtype-evals/vitest/@vitest/runner": ["@vitest/runner@2.1.9", "", { "dependencies": { "@vitest/utils": "2.1.9", "pathe": "^1.1.2" } }, "sha512-ZXSSqTFIrzduD63btIfEyOmNcBmQvgOVsPNPe0jYtESiXkhd8u2erDLnMxmGrDCwHCCHE7hxwRDCT3pt0esT4g=="], - - "leadtype-evals/vitest/@vitest/snapshot": ["@vitest/snapshot@2.1.9", "", { "dependencies": { "@vitest/pretty-format": "2.1.9", "magic-string": "^0.30.12", "pathe": "^1.1.2" } }, "sha512-oBO82rEjsxLNJincVhLhaxxZdEtV0EFHMK5Kmx5sJ6H9L183dHECjiefOAdnqpIgT5eZwT04PoggUnW88vOBNQ=="], - - "leadtype-evals/vitest/@vitest/spy": ["@vitest/spy@2.1.9", "", { "dependencies": { "tinyspy": "^3.0.2" } }, "sha512-E1B35FwzXXTs9FHNK6bDszs7mtydNi5MIfUWpceJ8Xbfb1gBMscAnwLbEu+B44ed6W3XjL9/ehLPHR1fkf1KLQ=="], - - "leadtype-evals/vitest/@vitest/utils": ["@vitest/utils@2.1.9", "", { "dependencies": { "@vitest/pretty-format": "2.1.9", "loupe": "^3.1.2", "tinyrainbow": "^1.2.0" } }, "sha512-v0psaMSkNJ3A2NMrUEHFRzJtDPFn+/VWZ5WxImB21T9fjucJRmS7xCS3ppEnARb9y11OAzaD+P2Ps+b+BGX5iQ=="], - - "leadtype-evals/vitest/pathe": ["pathe@1.1.2", "", {}, "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ=="], - - "leadtype-evals/vitest/std-env": ["std-env@3.10.0", "", {}, "sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg=="], - - "leadtype-evals/vitest/tinyexec": ["tinyexec@0.3.2", "", {}, "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA=="], - - "leadtype-evals/vitest/tinyrainbow": ["tinyrainbow@1.2.0", "", {}, "sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ=="], - - "leadtype-evals/vitest/vite": ["vite@5.4.21", "", { "dependencies": { "esbuild": "^0.21.3", "postcss": "^8.4.43", "rollup": "^4.20.0" }, "optionalDependencies": { "fsevents": "~2.3.3" }, "peerDependencies": { "@types/node": "^18.0.0 || >=20.0.0", "less": "*", "lightningcss": "^1.21.0", "sass": "*", "sass-embedded": "*", "stylus": "*", "sugarss": "*", "terser": "^5.4.0" }, "optionalPeers": ["@types/node", "less", "lightningcss", "sass", "sass-embedded", "stylus", "sugarss", "terser"], "bin": { "vite": "bin/vite.js" } }, "sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw=="], - "leadtype/@types/node/undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="], "protobufjs/@types/node/undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="], - "vite-node/vite/esbuild": ["esbuild@0.21.5", "", { "optionalDependencies": { "@esbuild/aix-ppc64": "0.21.5", "@esbuild/android-arm": "0.21.5", "@esbuild/android-arm64": "0.21.5", "@esbuild/android-x64": "0.21.5", "@esbuild/darwin-arm64": "0.21.5", "@esbuild/darwin-x64": "0.21.5", "@esbuild/freebsd-arm64": "0.21.5", "@esbuild/freebsd-x64": "0.21.5", "@esbuild/linux-arm": "0.21.5", "@esbuild/linux-arm64": "0.21.5", "@esbuild/linux-ia32": "0.21.5", "@esbuild/linux-loong64": "0.21.5", "@esbuild/linux-mips64el": "0.21.5", "@esbuild/linux-ppc64": "0.21.5", "@esbuild/linux-riscv64": "0.21.5", "@esbuild/linux-s390x": "0.21.5", "@esbuild/linux-x64": "0.21.5", "@esbuild/netbsd-x64": "0.21.5", "@esbuild/openbsd-x64": "0.21.5", "@esbuild/sunos-x64": "0.21.5", "@esbuild/win32-arm64": "0.21.5", "@esbuild/win32-ia32": "0.21.5", "@esbuild/win32-x64": "0.21.5" }, "bin": { "esbuild": "bin/esbuild" } }, "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw=="], - - "xmlbuilder2/js-yaml/argparse": ["argparse@2.0.1", "", {}, "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="], + "read-yaml-file/js-yaml/argparse": ["argparse@1.0.10", "", { "dependencies": { "sprintf-js": "~1.0.2" } }, "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="], "@tanstack/router-plugin/chokidar/readdirp/picomatch": ["picomatch@2.3.2", "", {}, "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA=="], "bash-tool/just-bash/fast-xml-parser/fast-xml-builder": ["fast-xml-builder@1.1.5", "", { "dependencies": { "path-expression-matcher": "^1.1.3" } }, "sha512-4TJn/8FKLeslLAH3dnohXqE3QSoxkhvaMzepOIZytwJXZO69Bfz0HBdDHzOTOon6G59Zrk6VQ2bEiv1t61rfkA=="], - "leadtype-evals/vitest/vite/esbuild": ["esbuild@0.21.5", "", { "optionalDependencies": { "@esbuild/aix-ppc64": "0.21.5", "@esbuild/android-arm": "0.21.5", "@esbuild/android-arm64": "0.21.5", "@esbuild/android-x64": "0.21.5", "@esbuild/darwin-arm64": "0.21.5", "@esbuild/darwin-x64": "0.21.5", "@esbuild/freebsd-arm64": "0.21.5", "@esbuild/freebsd-x64": "0.21.5", "@esbuild/linux-arm": "0.21.5", "@esbuild/linux-arm64": "0.21.5", "@esbuild/linux-ia32": "0.21.5", "@esbuild/linux-loong64": "0.21.5", "@esbuild/linux-mips64el": "0.21.5", "@esbuild/linux-ppc64": "0.21.5", "@esbuild/linux-riscv64": "0.21.5", "@esbuild/linux-s390x": "0.21.5", "@esbuild/linux-x64": "0.21.5", "@esbuild/netbsd-x64": "0.21.5", "@esbuild/openbsd-x64": "0.21.5", "@esbuild/sunos-x64": "0.21.5", "@esbuild/win32-arm64": "0.21.5", "@esbuild/win32-ia32": "0.21.5", "@esbuild/win32-x64": "0.21.5" }, "bin": { "esbuild": "bin/esbuild" } }, "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw=="], - - "vite-node/vite/esbuild/@esbuild/aix-ppc64": ["@esbuild/aix-ppc64@0.21.5", "", { "os": "aix", "cpu": "ppc64" }, "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ=="], - - "vite-node/vite/esbuild/@esbuild/android-arm": ["@esbuild/android-arm@0.21.5", "", { "os": "android", "cpu": "arm" }, "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg=="], - - "vite-node/vite/esbuild/@esbuild/android-arm64": ["@esbuild/android-arm64@0.21.5", "", { "os": "android", "cpu": "arm64" }, "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A=="], - - "vite-node/vite/esbuild/@esbuild/android-x64": ["@esbuild/android-x64@0.21.5", "", { "os": "android", "cpu": "x64" }, "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA=="], - - "vite-node/vite/esbuild/@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.21.5", "", { "os": "darwin", "cpu": "arm64" }, "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ=="], - - "vite-node/vite/esbuild/@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.21.5", "", { "os": "darwin", "cpu": "x64" }, "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw=="], - - "vite-node/vite/esbuild/@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.21.5", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g=="], - - "vite-node/vite/esbuild/@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.21.5", "", { "os": "freebsd", "cpu": "x64" }, "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ=="], - - "vite-node/vite/esbuild/@esbuild/linux-arm": ["@esbuild/linux-arm@0.21.5", "", { "os": "linux", "cpu": "arm" }, "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA=="], - - "vite-node/vite/esbuild/@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.21.5", "", { "os": "linux", "cpu": "arm64" }, "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q=="], - - "vite-node/vite/esbuild/@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.21.5", "", { "os": "linux", "cpu": "ia32" }, "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg=="], - - "vite-node/vite/esbuild/@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.21.5", "", { "os": "linux", "cpu": "none" }, "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg=="], - - "vite-node/vite/esbuild/@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.21.5", "", { "os": "linux", "cpu": "none" }, "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg=="], - - "vite-node/vite/esbuild/@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.21.5", "", { "os": "linux", "cpu": "ppc64" }, "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w=="], - - "vite-node/vite/esbuild/@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.21.5", "", { "os": "linux", "cpu": "none" }, "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA=="], - - "vite-node/vite/esbuild/@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.21.5", "", { "os": "linux", "cpu": "s390x" }, "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A=="], - - "vite-node/vite/esbuild/@esbuild/linux-x64": ["@esbuild/linux-x64@0.21.5", "", { "os": "linux", "cpu": "x64" }, "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ=="], - - "vite-node/vite/esbuild/@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.21.5", "", { "os": "none", "cpu": "x64" }, "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg=="], - - "vite-node/vite/esbuild/@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.21.5", "", { "os": "openbsd", "cpu": "x64" }, "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow=="], - - "vite-node/vite/esbuild/@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.21.5", "", { "os": "sunos", "cpu": "x64" }, "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg=="], - - "vite-node/vite/esbuild/@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.21.5", "", { "os": "win32", "cpu": "arm64" }, "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A=="], - - "vite-node/vite/esbuild/@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.21.5", "", { "os": "win32", "cpu": "ia32" }, "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA=="], - - "vite-node/vite/esbuild/@esbuild/win32-x64": ["@esbuild/win32-x64@0.21.5", "", { "os": "win32", "cpu": "x64" }, "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw=="], - - "leadtype-evals/vitest/vite/esbuild/@esbuild/aix-ppc64": ["@esbuild/aix-ppc64@0.21.5", "", { "os": "aix", "cpu": "ppc64" }, "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ=="], - - "leadtype-evals/vitest/vite/esbuild/@esbuild/android-arm": ["@esbuild/android-arm@0.21.5", "", { "os": "android", "cpu": "arm" }, "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg=="], - - "leadtype-evals/vitest/vite/esbuild/@esbuild/android-arm64": ["@esbuild/android-arm64@0.21.5", "", { "os": "android", "cpu": "arm64" }, "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A=="], - - "leadtype-evals/vitest/vite/esbuild/@esbuild/android-x64": ["@esbuild/android-x64@0.21.5", "", { "os": "android", "cpu": "x64" }, "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA=="], - - "leadtype-evals/vitest/vite/esbuild/@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.21.5", "", { "os": "darwin", "cpu": "arm64" }, "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ=="], - - "leadtype-evals/vitest/vite/esbuild/@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.21.5", "", { "os": "darwin", "cpu": "x64" }, "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw=="], - - "leadtype-evals/vitest/vite/esbuild/@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.21.5", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g=="], - - "leadtype-evals/vitest/vite/esbuild/@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.21.5", "", { "os": "freebsd", "cpu": "x64" }, "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ=="], - - "leadtype-evals/vitest/vite/esbuild/@esbuild/linux-arm": ["@esbuild/linux-arm@0.21.5", "", { "os": "linux", "cpu": "arm" }, "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA=="], - - "leadtype-evals/vitest/vite/esbuild/@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.21.5", "", { "os": "linux", "cpu": "arm64" }, "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q=="], - - "leadtype-evals/vitest/vite/esbuild/@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.21.5", "", { "os": "linux", "cpu": "ia32" }, "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg=="], - - "leadtype-evals/vitest/vite/esbuild/@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.21.5", "", { "os": "linux", "cpu": "none" }, "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg=="], - - "leadtype-evals/vitest/vite/esbuild/@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.21.5", "", { "os": "linux", "cpu": "none" }, "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg=="], - - "leadtype-evals/vitest/vite/esbuild/@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.21.5", "", { "os": "linux", "cpu": "ppc64" }, "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w=="], - - "leadtype-evals/vitest/vite/esbuild/@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.21.5", "", { "os": "linux", "cpu": "none" }, "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA=="], - - "leadtype-evals/vitest/vite/esbuild/@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.21.5", "", { "os": "linux", "cpu": "s390x" }, "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A=="], - - "leadtype-evals/vitest/vite/esbuild/@esbuild/linux-x64": ["@esbuild/linux-x64@0.21.5", "", { "os": "linux", "cpu": "x64" }, "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ=="], - - "leadtype-evals/vitest/vite/esbuild/@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.21.5", "", { "os": "none", "cpu": "x64" }, "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg=="], - - "leadtype-evals/vitest/vite/esbuild/@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.21.5", "", { "os": "openbsd", "cpu": "x64" }, "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow=="], - - "leadtype-evals/vitest/vite/esbuild/@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.21.5", "", { "os": "sunos", "cpu": "x64" }, "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg=="], - - "leadtype-evals/vitest/vite/esbuild/@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.21.5", "", { "os": "win32", "cpu": "arm64" }, "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A=="], - - "leadtype-evals/vitest/vite/esbuild/@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.21.5", "", { "os": "win32", "cpu": "ia32" }, "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA=="], - - "leadtype-evals/vitest/vite/esbuild/@esbuild/win32-x64": ["@esbuild/win32-x64@0.21.5", "", { "os": "win32", "cpu": "x64" }, "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw=="], + "read-yaml-file/js-yaml/argparse/sprintf-js": ["sprintf-js@1.0.3", "", {}, "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g=="], } } diff --git a/evals/package.json b/evals/package.json index e7413a4..c5f802b 100644 --- a/evals/package.json +++ b/evals/package.json @@ -13,7 +13,7 @@ "devDependencies": { "ai": "^6.0.168", "tinyglobby": "0.2.16", - "vitest": "^2.1.8", + "vitest": "^4.1.5", "zod": "^3.23.8" } } diff --git a/package.json b/package.json index 2af3e73..1135ebc 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,6 @@ "@mdx-js/react": "^3.1.1", "@typescript/native-preview": "7.0.0-dev.20260509.2", "husky": "^9.1.7", - "prettier": "^3.7.4", "turbo": "^2.9.12", "typescript": "6.0.3", "ultracite": "7.6.5" @@ -17,7 +16,7 @@ "build": "turbo run build", "dev": "turbo run dev --filter=example", "lint": "turbo run lint", - "format": "prettier --write \"**/*.{ts,tsx,md}\"", + "format": "ultracite fix", "check-types": "turbo run check-types", "check": "ultracite check", "fix": "ultracite fix", diff --git a/packages/leadtype/package.json b/packages/leadtype/package.json index 9351256..c5a2154 100644 --- a/packages/leadtype/package.json +++ b/packages/leadtype/package.json @@ -91,22 +91,18 @@ }, "dependencies": { "@types/mdast": "4.0.4", - "decode-named-character-reference": "1.3.0", - "gray-matter": "4.0.3", - "jiti": "^2.7.0", "json5": "2.2.3", - "mdast-util-compact": "5.0.0", - "mdast-util-to-markdown": "2.1.2", "mdast-util-to-string": "4.0.0", "remark": "15.0.1", "remark-gfm": "4.0.1", "remark-mdx": "3.1.1", "tinyglobby": "0.2.16", "unified": "11.0.5", - "unist-builder": "4.0.0", - "unist-util-is": "6.0.1", "unist-util-visit": "5.1.0", - "valibot": "1.4.0" + "valibot": "1.4.0", + "vfile": "^6.0.3", + "vfile-matter": "^5.0.1", + "yaml": "^2.9.0" }, "devDependencies": { "@cloudflare/tanstack-ai": "^0.1.7", @@ -115,6 +111,7 @@ "@types/node": "^22.0.0", "ai": "^6.0.177", "bash-tool": "1.3.16", + "jiti": "^2.7.0", "just-bash": "2.14.5", "mdast-util-mdx": "3.0.0", "mdast-util-mdx-jsx": "3.2.0", @@ -123,7 +120,6 @@ "rollup-plugin-dts": "^6.2.1", "rollup-plugin-esbuild": "^6.2.1", "typescript": "6.0.3", - "ultracite": "7.6.5", "vitest": "^4.1.5" }, "peerDependencies": { @@ -131,6 +127,7 @@ "@tanstack/ai": ">=0.15.0", "ai": ">=6.0.0", "bash-tool": ">=1.3.16", + "jiti": ">=2.0.0", "just-bash": ">=2.14.5", "typescript": ">=5.0.0" }, @@ -147,6 +144,9 @@ "bash-tool": { "optional": true }, + "jiti": { + "optional": true + }, "just-bash": { "optional": true }, diff --git a/packages/leadtype/src/cli/generate.ts b/packages/leadtype/src/cli/generate.ts index 16372b2..df5caba 100644 --- a/packages/leadtype/src/cli/generate.ts +++ b/packages/leadtype/src/cli/generate.ts @@ -2,10 +2,12 @@ import { existsSync } from "node:fs"; import { cp, mkdir, mkdtemp, readFile, rm } from "node:fs/promises"; import { tmpdir } from "node:os"; import path from "node:path"; -import matter from "gray-matter"; -import { createJiti } from "jiti"; + +import { pathToFileURL } from "node:url"; import { glob as fg } from "tinyglobby"; + import { convertAllMdx } from "../convert"; +import { parseFrontmatter } from "../internal/frontmatter"; import { logger, setLogFormat, @@ -237,7 +239,7 @@ async function inferGroups(docsDir: string): Promise { const groupArrays = await Promise.all( batch.map(async (file) => { const raw = await readFile(file, "utf8"); - const parsed = matter(raw); + const parsed = parseFrontmatter(raw); return normalizeGroupValues(parsed.data.group); }) ); @@ -314,6 +316,26 @@ function validateDocsConfig(value: unknown, configPath: string): DocsConfig { return { groups, product }; } +async function importConfigModule(configPath: string): Promise { + if (configPath.endsWith(".ts")) { + let createJiti: typeof import("jiti").createJiti; + try { + ({ createJiti } = await import("jiti")); + } catch { + throw new Error( + `loading TypeScript docs config at "${configPath}" requires the optional peer dependency \`jiti\`. Install it (\`bun add -D jiti\`) or use a .js/.mjs/.cjs config.` + ); + } + const jiti = createJiti(import.meta.url, { moduleCache: false }); + return jiti.import(configPath, { default: true }); + } + + const mod = (await import(pathToFileURL(configPath).href)) as { + default?: unknown; + }; + return mod.default ?? mod; +} + async function loadDocsConfig( docsDir: string ): Promise { @@ -325,9 +347,8 @@ async function loadDocsConfig( return null; } - const jiti = createJiti(import.meta.url, { moduleCache: false }); try { - const imported = await jiti.import(configPath, { default: true }); + const imported = await importConfigModule(configPath); return { config: validateDocsConfig(imported, configPath), path: configPath, diff --git a/packages/leadtype/src/convert/convert.ts b/packages/leadtype/src/convert/convert.ts index 9d5e28d..69c15d9 100644 --- a/packages/leadtype/src/convert/convert.ts +++ b/packages/leadtype/src/convert/convert.ts @@ -4,7 +4,6 @@ import { mkdir, readFile, writeFile } from "node:fs/promises"; import { cpus } from "node:os"; import { basename, dirname, join, relative, resolve, sep } from "node:path"; import { promisify } from "node:util"; -import matter from "gray-matter"; import { remark } from "remark"; import remarkGfm from "remark-gfm"; import remarkMdx from "remark-mdx"; @@ -14,6 +13,10 @@ import { deriveDocContext, resolvePlaceholderStrings, } from "../internal/docs-context"; +import { + parseFrontmatter, + stringifyFrontmatter, +} from "../internal/frontmatter"; import { logger } from "../internal/logger"; const execFileAsync = promisify(execFile); @@ -298,17 +301,13 @@ function applyEnrichment( if (!(enrichment.lastModified || enrichment.lastAuthor)) { return frontmatterBlock; } - const parsed = matter(`---\n${frontmatterBlock}\n---\n`); + const parsed = parseFrontmatter(`---\n${frontmatterBlock}\n---\n`); const merged: Record = { ...parsed.data, ...(enrichment.lastModified && { lastModified: enrichment.lastModified }), ...(enrichment.lastAuthor && { lastAuthor: enrichment.lastAuthor }), }; - const restringified = matter.stringify("", merged).trim(); - return restringified - .replace(/^---\s*\n/, "") - .replace(/\n---\s*$/, "") - .trim(); + return stringifyFrontmatter(merged); } function resolveFrontmatterPlaceholders( @@ -319,17 +318,12 @@ function resolveFrontmatterPlaceholders( return frontmatterBlock; } - const parsed = matter(`---\n${frontmatterBlock}\n---\n`); + const parsed = parseFrontmatter(`---\n${frontmatterBlock}\n---\n`); const resolvedData = resolvePlaceholderStrings( parsed.data, deriveDocContext(sourcePath) ); - const restringified = matter.stringify("", resolvedData).trim(); - - return restringified - .replace(/^---\s*\n/, "") - .replace(/\n---\s*$/, "") - .trim(); + return stringifyFrontmatter(resolvedData); } export type ConvertResult = { diff --git a/packages/leadtype/src/internal/frontmatter.ts b/packages/leadtype/src/internal/frontmatter.ts new file mode 100644 index 0000000..2b10fcb --- /dev/null +++ b/packages/leadtype/src/internal/frontmatter.ts @@ -0,0 +1,24 @@ +import { VFile } from "vfile"; +import { matter } from "vfile-matter"; +import { stringify as stringifyYaml } from "yaml"; + +export type ParsedFrontmatter = { + content: string; + data: Record; +}; + +// Opt into YAML 1.1 timestamp parsing so YAML date/datetime scalars round-trip +// as `Date` instances. Without this, yaml v2 leaves them as strings — see +// https://eemeli.org/yaml/v2/#built-in-custom-tags. +const YAML_OPTIONS = { customTags: ["timestamp" as const] }; + +export function parseFrontmatter(raw: string): ParsedFrontmatter { + const file = new VFile(raw); + matter(file, { strip: true, yaml: YAML_OPTIONS }); + const data = (file.data.matter ?? {}) as Record; + return { data, content: String(file.value) }; +} + +export function stringifyFrontmatter(data: Record): string { + return stringifyYaml(data, YAML_OPTIONS).trim(); +} diff --git a/packages/leadtype/src/lint/runner.ts b/packages/leadtype/src/lint/runner.ts index 84fc211..e963600 100644 --- a/packages/leadtype/src/lint/runner.ts +++ b/packages/leadtype/src/lint/runner.ts @@ -1,7 +1,6 @@ import { existsSync } from "node:fs"; import { readFile } from "node:fs/promises"; import { relative, resolve, sep } from "node:path"; -import matter from "gray-matter"; import { remark } from "remark"; import remarkGfm from "remark-gfm"; import { glob as fg } from "tinyglobby"; @@ -14,6 +13,7 @@ import { normalizeDocsUrl, routeFromFilePath, } from "../internal/docs-context"; +import { parseFrontmatter } from "../internal/frontmatter"; import { defaultRemarkPlugins, remarkInclude } from "../remark"; import { allowedKeys, @@ -395,8 +395,8 @@ export async function lintDocs(options: LintOptions): Promise { const relativeFile = toRelative(srcDir, file); try { const raw = await readFile(file, "utf-8"); - const parsed = matter(raw); - data = parsed.data as Record; + const parsed = parseFrontmatter(raw); + data = parsed.data; } catch (error) { violations.push({ file: relativeFile, @@ -417,7 +417,7 @@ export async function lintDocs(options: LintOptions): Promise { remarkInclude, ...defaultRemarkPlugins, ]); - const rendered = matter(converted.markdown); + const rendered = parseFrontmatter(converted.markdown); const currentFramework = deriveDocContext(file).framework; violations.push( diff --git a/packages/leadtype/src/llm/llm.ts b/packages/leadtype/src/llm/llm.ts index 18b1b0d..a138d92 100644 --- a/packages/leadtype/src/llm/llm.ts +++ b/packages/leadtype/src/llm/llm.ts @@ -8,7 +8,6 @@ import { writeFile, } from "node:fs/promises"; import path from "node:path"; -import matter from "gray-matter"; import { slugifyDocsHeading } from "../internal/docs-heading"; import { GENERIC_DOC_TITLES, @@ -20,6 +19,7 @@ import { toMarkdownUrlPath, toDocsUrlPath as toUrlPath, } from "../internal/docs-url"; +import { parseFrontmatter } from "../internal/frontmatter"; import { type AgentReadabilityManifest, type AgentReadabilityPage, @@ -527,7 +527,7 @@ async function readSourceDocs( files.map(async (filePath) => { const relativePath = normalizeDocsPath(path.relative(docsDir, filePath)); const raw = await readFile(filePath, "utf-8"); - const parsed = matter(raw); + const parsed = parseFrontmatter(raw); const title = String(parsed.data.title ?? "").trim() || titleFromRelativePath( @@ -583,7 +583,7 @@ async function readMarkdownDocs( const relativePath = normalizeDocsPath(path.relative(docsDir, filePath)); const raw = await readFile(filePath, "utf-8"); const fileStat = await stat(filePath); - const parsed = matter(raw); + const parsed = parseFrontmatter(raw); const title = String(parsed.data.title ?? "").trim() || titleFromRelativePath(relativePath, ".md") || diff --git a/packages/leadtype/src/remark/libs/content-processor.ts b/packages/leadtype/src/remark/libs/content-processor.ts index 56f96fa..6cc460c 100644 --- a/packages/leadtype/src/remark/libs/content-processor.ts +++ b/packages/leadtype/src/remark/libs/content-processor.ts @@ -1,8 +1,6 @@ /** @biome-ignore lint/complexity/noExcessiveCognitiveComplexity: this is okay */ import type { Blockquote, List, Node, Paragraph, Table, Text } from "mdast"; import { toString as mdastToString } from "mdast-util-to-string"; -import { u } from "unist-builder"; -import { is } from "unist-util-is"; import { extractBlockquoteContent, extractParagraphContent, @@ -18,7 +16,7 @@ import { export function processContentNode( node: Node ): Paragraph | Table | Blockquote | List | Node | null { - if (is(node, "paragraph")) { + if (node.type === "paragraph") { const content = extractParagraphContent(node as Paragraph); if (content.length === 0) { return null; @@ -34,17 +32,17 @@ export function processContentNode( children: [{ type: "text", value: text }], } as Paragraph; } - if (is(node, "table")) { + if (node.type === "table") { // Return the table node as-is instead of extracting text content // This preserves the full table structure including all rows return node as Table; } - if (is(node, "list")) { + if (node.type === "list") { // Preserve nested list structure so step/checklist content survives // markdown round-tripping instead of collapsing into plain text. return node as List; } - if (is(node, "blockquote")) { + if (node.type === "blockquote") { const content = extractBlockquoteContent(node as Blockquote); if (content.length === 0) { return null; @@ -71,11 +69,11 @@ export function processContentNode( if (node.type === "code") { // Handle code blocks directly as AST nodes const codeNode = node as { lang?: string; value?: string }; - return u( - "code", - { lang: codeNode.lang || "" }, - codeNode.value || "" - ) as Node; + return { + type: "code", + lang: codeNode.lang || "", + value: codeNode.value || "", + } as Node; } if (node.type === "text") { const textNode = node as Text; diff --git a/packages/leadtype/src/remark/plugins/cards.remark.ts b/packages/leadtype/src/remark/plugins/cards.remark.ts index a635aba..5af42d8 100644 --- a/packages/leadtype/src/remark/plugins/cards.remark.ts +++ b/packages/leadtype/src/remark/plugins/cards.remark.ts @@ -5,10 +5,8 @@ import type { Paragraph, PhrasingContent, Root, - Text, } from "mdast"; import type { Transformer } from "unified"; -import { u } from "unist-builder"; import { visit } from "unist-util-visit"; import { extractNodeText, @@ -93,16 +91,18 @@ function collectLinksFromContainer(container: MdxNode): LinkItem[] { } function toListItem(item: LinkItem, withDescriptions: boolean): ListItem { - const linkNode: Link = u("link", { url: item.href }, [ - u("text", item.text) as Text, - ]) as Link; + const linkNode: Link = { + type: "link", + url: item.href, + children: [{ type: "text", value: item.text }], + }; const phrasing: PhrasingContent[] = [linkNode]; if (withDescriptions && item.description) { - phrasing.push(u("text", ` — ${item.description}`) as Text); + phrasing.push({ type: "text", value: ` — ${item.description}` }); } - const para: Paragraph = u("paragraph", phrasing) as Paragraph; + const para: Paragraph = { type: "paragraph", children: phrasing }; return { type: "listItem", diff --git a/packages/leadtype/src/remark/plugins/prompt.remark.ts b/packages/leadtype/src/remark/plugins/prompt.remark.ts index 282791f..732cd02 100644 --- a/packages/leadtype/src/remark/plugins/prompt.remark.ts +++ b/packages/leadtype/src/remark/plugins/prompt.remark.ts @@ -1,5 +1,6 @@ import type { Code, Root, RootContent } from "mdast"; -import { toMarkdown } from "mdast-util-to-markdown"; +import { remark } from "remark"; +import remarkGfm from "remark-gfm"; import type { Transformer } from "unified"; import { createJsxComponentProcessor, @@ -9,6 +10,15 @@ import { normalizeWhitespace, } from "../libs"; +const stringifier = remark().use(remarkGfm).data("settings", { + bullet: "-", + emphasis: "_", + fence: "`", + fences: true, + listItemIndent: "one", + rule: "-", +}); + function createCodeBlock(value: string): Code { return { type: "code", @@ -18,20 +28,9 @@ function createCodeBlock(value: string): Code { } function childrenToMarkdown(children: readonly RootContent[]): string { - return toMarkdown( - { - type: "root", - children: [...children], - }, - { - bullet: "-", - emphasis: "_", - fence: "`", - fences: true, - listItemIndent: "one", - rule: "-", - } - ).trim(); + return stringifier + .stringify({ type: "root", children: [...children] }) + .trim(); } export function remarkPromptToMarkdown(): Transformer { diff --git a/packages/leadtype/src/remark/plugins/steps.remark.ts b/packages/leadtype/src/remark/plugins/steps.remark.ts index f796d63..d1da90a 100644 --- a/packages/leadtype/src/remark/plugins/steps.remark.ts +++ b/packages/leadtype/src/remark/plugins/steps.remark.ts @@ -1,9 +1,7 @@ -import { decodeNamedCharacterReference } from "decode-named-character-reference"; import type { Blockquote, ListItem, Node, Paragraph, Root, Table } from "mdast"; -import { compact } from "mdast-util-compact"; import { toString as mdastToString } from "mdast-util-to-string"; import type { Plugin } from "unified"; -import { is } from "unist-util-is"; +import { visit } from "unist-util-visit"; import { createJsxComponentProcessor, createOrderedList, @@ -15,8 +13,29 @@ import { processContentNode, } from "../libs"; +const NAMED_ENTITIES: Record = { + amp: "&", + apos: "'", + copy: "©", + gt: ">", + hellip: "…", + ldquo: "“", + lsquo: "‘", + lt: "<", + mdash: "—", + nbsp: " ", + ndash: "–", + quot: '"', + rdquo: "”", + reg: "®", + rsquo: "’", + trade: "™", +}; + /** - * Decode HTML entities in text (both named and numeric character references) + * Decode HTML entities in text (both named and numeric character references). + * Named entities are limited to the common set above; rare ones are left as-is, + * matching the existing behavior for entities the previous library couldn't resolve. */ function decodeText(text: string): string { const HEX_PREFIX_LENGTH = 2; // Length of "#x" prefix @@ -45,9 +64,8 @@ function decodeText(text: string): string { !(num >= SURROGATE_MIN && num <= SURROGATE_MAX); // exclude surrogate range return inUnicodeRange ? String.fromCodePoint(num) : `&${ent};`; } - // Named - const decoded = decodeNamedCharacterReference(`&${ent};`); - return decoded === false ? `&${ent};` : decoded; + // Named — use a small map of common entities; pass through the rest. + return NAMED_ENTITIES[ent] ?? `&${ent};`; } ); return normalizeWhitespace(decodedText); @@ -63,8 +81,9 @@ function isStepNode(node: unknown): node is MdxNode { return false; } + const type = (node as { type?: unknown }).type; const isJsxElement = - is(node, "mdxJsxFlowElement") || is(node, "mdxJsxTextElement"); + type === "mdxJsxFlowElement" || type === "mdxJsxTextElement"; if (!isJsxElement) { return false; } @@ -88,7 +107,7 @@ function extractStepTitle( const children = (step.children ?? []) as unknown[] as Node[]; const titleNode = - children.find((c) => is(c, "heading") || is(c, "paragraph")) ?? + children.find((c) => c.type === "heading" || c.type === "paragraph") ?? children.find((c) => c.type === "text" || c.type === "mdxTextExpression") ?? null; if (!titleNode) { @@ -176,7 +195,11 @@ function stepToListItem(step: MdxNode): ListItem | null { const contentNodes = getContentNodes(step, titleNode); // Handle special case: if first paragraph was used as title and there are no following siblings - if (contentNodes.length === 0 && titleNode && is(titleNode, "paragraph")) { + if ( + contentNodes.length === 0 && + titleNode && + titleNode.type === "paragraph" + ) { return { type: "listItem", children: [createStrongParagraph(title)], @@ -250,6 +273,39 @@ function processStepsNode(node: MdxNode): ListItem[] { return listItems; } +/** + * Merge adjacent text nodes and blockquotes in place. Mirrors the small subset + * of mdast-util-compact behavior that this plugin relies on. + */ +function compactTree(tree: Root): void { + visit(tree, (child, index, parent) => { + if ( + !parent || + index === null || + index === undefined || + index === 0 || + (child.type !== "text" && child.type !== "blockquote") + ) { + return; + } + const previous = parent.children[index - 1]; + if (!previous || previous.type !== child.type) { + return; + } + if ("value" in child && "value" in previous) { + (previous as { value: string }).value += child.value; + } + if ("children" in child && "children" in previous) { + (previous as { children: Node[] }).children = [ + ...(previous as { children: Node[] }).children, + ...(child.children as Node[]), + ]; + } + parent.children.splice(index, 1); + return index; + }); +} + /** * Remark plugin to convert Steps JSX elements to numbered markdown lists */ @@ -269,8 +325,7 @@ export const remarkStepsToMarkdown: Plugin<[], Root> = () => { processor(tree); - // Clean up whitespace and empty paragraphs - compact(tree); + compactTree(tree); return tree; }; }; diff --git a/packages/leadtype/src/remark/plugins/topic-switcher.remark.ts b/packages/leadtype/src/remark/plugins/topic-switcher.remark.ts index a1ad8fc..6e05ca7 100644 --- a/packages/leadtype/src/remark/plugins/topic-switcher.remark.ts +++ b/packages/leadtype/src/remark/plugins/topic-switcher.remark.ts @@ -8,7 +8,6 @@ import type { Root, } from "mdast"; import type { Transformer } from "unified"; -import { u } from "unist-builder"; import { SKIP, visit } from "unist-util-visit"; import { deriveDocContext, @@ -77,16 +76,18 @@ function itemToListItem( ): ListItem { const context = deriveDocContext(sourcePath); const href = resolveDocPlaceholders(item.href, context).value; - const linkNode: Link = u("link", { url: href }, [ - u("text", item.label), - ]) as Link; + const linkNode: Link = { + type: "link", + url: href, + children: [{ type: "text", value: item.label }], + }; const children: PhrasingContent[] = [linkNode]; if (withDescriptions && item.description) { - children.push(u("text", ` — ${item.description}`) as PhrasingContent); + children.push({ type: "text", value: ` — ${item.description}` }); } - const paragraph: Paragraph = u("paragraph", children) as Paragraph; + const paragraph: Paragraph = { type: "paragraph", children }; return { type: "listItem", diff --git a/packages/leadtype/src/remark/plugins/type-table.remark.ts b/packages/leadtype/src/remark/plugins/type-table.remark.ts index c74811a..518bd6e 100644 --- a/packages/leadtype/src/remark/plugins/type-table.remark.ts +++ b/packages/leadtype/src/remark/plugins/type-table.remark.ts @@ -5,7 +5,6 @@ import JSON5 from "json5"; import type { RootContent, Table } from "mdast"; import type { MdxJsxFlowElement, MdxJsxTextElement } from "mdast-util-mdx"; import type * as ts from "typescript"; -import { u } from "unist-builder"; import { createHeading, createJsxComponentProcessor, @@ -868,13 +867,7 @@ function processTypeTableNode( const tableRows = [createTableRow(headers), ...rows.map(createTableRow)]; - const table: Table = u( - "table", - { - align, - }, - tableRows - ) as Table; + const table: Table = { type: "table", align, children: tableRows }; const content: RootContent[] = []; diff --git a/packages/leadtype/src/remark/remark-output.test.ts b/packages/leadtype/src/remark/remark-output.test.ts index fff80d6..5ac6b85 100644 --- a/packages/leadtype/src/remark/remark-output.test.ts +++ b/packages/leadtype/src/remark/remark-output.test.ts @@ -482,7 +482,7 @@ You are helping wire leadtype into a docs site. path.join("docs", "frameworks", "next", "quickstart.mdx"), `--- title: Quickstart -publishedAt: 2026-04-19 +publishedAt: 2026-04-19T12:00:00Z url: /docs/frameworks/{framework}/quickstart --- Body @@ -491,7 +491,7 @@ Body const result = await convertMdxToMarkdown(sourcePath, defaultRemarkPlugins); - expect(result.markdown).toContain("publishedAt: 2026-04-19T00:00:00.000Z"); + expect(result.markdown).toContain("publishedAt: 2026-04-19T12:00:00"); expect(result.markdown).toContain("url: /docs/frameworks/next/quickstart"); }); diff --git a/packages/leadtype/src/search/node.ts b/packages/leadtype/src/search/node.ts index 791d715..61eb4ba 100644 --- a/packages/leadtype/src/search/node.ts +++ b/packages/leadtype/src/search/node.ts @@ -1,7 +1,6 @@ import { existsSync } from "node:fs"; import { mkdir, readdir, readFile, writeFile } from "node:fs/promises"; import path from "node:path"; -import matter from "gray-matter"; import { GENERIC_DOC_TITLES, normalizeBaseUrl, @@ -11,6 +10,7 @@ import { toAbsoluteUrl, toDocsUrlPath, } from "../internal/docs-url"; +import { parseFrontmatter } from "../internal/frontmatter"; import { logger } from "../internal/logger"; import { type CreateDocsSearchIndexOptions, @@ -95,7 +95,7 @@ async function readMarkdownDocs( continue; } const raw = await readFile(filePath, "utf-8"); - const parsed = matter(raw); + const parsed = parseFrontmatter(raw); const title = String(parsed.data.title ?? "").trim() || titleFromRelativePath(relativePath);